Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuilherme Duarte <gjsduarte@gmail.com>2015-09-10 15:16:23 +0300
committerGuilherme Duarte <gjsduarte@gmail.com>2015-09-10 15:16:23 +0300
commitdf040671bb3a74eaf8bb6e0ba55823fff795080b (patch)
treea08dfac371075dd8ec64eaa4aac808ff38bbb0c3 /scss/_list-group.scss
parent4ee6d99c9d7dcba154772c7c8c3901fbe3cb0b04 (diff)
Border width variable in list group items
Added usage of $border-width variable in all _list-group.scss references
Diffstat (limited to 'scss/_list-group.scss')
-rw-r--r--scss/_list-group.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_list-group.scss b/scss/_list-group.scss
index 4e3d73cc5a..cff9d17b79 100644
--- a/scss/_list-group.scss
+++ b/scss/_list-group.scss
@@ -18,9 +18,9 @@
display: block;
padding: .75rem 1.25rem;
// Place the border on the list items and negative margin up for better styling
- margin-bottom: -.0625rem;
+ margin-bottom: -$border-width;
background-color: $list-group-bg;
- border: .0625rem solid $list-group-border;
+ border: $border-width solid $list-group-border;
// Round the first and last items
&:first-child {
@@ -34,7 +34,7 @@
.list-group-flush {
.list-group-item {
- border-width: .0625rem 0;
+ border-width: $border-width 0;
border-radius: 0;
}
}