aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-11-14 22:30:16 -0800
committerChris Rebert <[email protected]>2015-11-14 22:40:43 -0800
commit2ea8950b26b22c296c859949f648a37cbbd4ceaa (patch)
tree2958dc89a740541ad3737988966ab042ad7c904b
parent76f705632155931bcf3cb7b23b439e0e2930cd1f (diff)
downloadbootstrap-2ea8950b26b22c296c859949f648a37cbbd4ceaa.tar.xz
bootstrap-2ea8950b26b22c296c859949f648a37cbbd4ceaa.zip
Add $dropdown-border-width; refs #18150
-rw-r--r--scss/_dropdown.scss2
-rw-r--r--scss/_variables.scss1
2 files changed, 2 insertions, 1 deletions
diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss
index f1213065a..eb3321377 100644
--- a/scss/_dropdown.scss
+++ b/scss/_dropdown.scss
@@ -51,7 +51,7 @@
list-style: none;
background-color: $dropdown-bg;
background-clip: padding-box;
- border: 1px solid $dropdown-border-color;
+ border: $dropdown-border-width solid $dropdown-border-color;
@include border-radius($border-radius);
@include box-shadow(0 6px 12px rgba(0,0,0,.175));
}
diff --git a/scss/_variables.scss b/scss/_variables.scss
index be8c9d81b..ba9d663fd 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -306,6 +306,7 @@ $form-icon-danger: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My
$dropdown-bg: #fff !default;
$dropdown-border-color: rgba(0,0,0,.15) !default;
+$dropdown-border-width: $border-width !default;
$dropdown-divider-bg: #e5e5e5 !default;
$dropdown-link-color: $gray-dark !default;