Extract $dropdown-min-width variable

[skip sauce]
[skip validator]
This commit is contained in:
Chris Rebert 2016-02-16 00:42:10 -08:00
parent 5f455319e2
commit 4c6946b3a9
2 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,7 @@
z-index: $zindex-dropdown;
display: none; // none by default, but block on "open" of the menu
float: left;
min-width: 160px;
min-width: $dropdown-min-width;
padding: 5px 0;
margin: 2px 0 0; // override default ul
font-size: $font-size-base;

View File

@ -426,6 +426,7 @@ $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www
//
// Dropdown menu container and contents.
$dropdown-min-width: 160px !default;
$dropdown-bg: #fff !default;
$dropdown-border-color: rgba(0,0,0,.15) !default;
$dropdown-border-width: $border-width !default;