Commit af68bc2c authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #19216 from twbs/dropdown-min-width

Extract $dropdown-min-width variable
parents 5f455319 4c6946b3
Showing with 2 additions and 1 deletion
+2 -1
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
z-index: $zindex-dropdown; z-index: $zindex-dropdown;
display: none; // none by default, but block on "open" of the menu display: none; // none by default, but block on "open" of the menu
float: left; float: left;
min-width: 160px; min-width: $dropdown-min-width;
padding: 5px 0; padding: 5px 0;
margin: 2px 0 0; // override default ul margin: 2px 0 0; // override default ul
font-size: $font-size-base; font-size: $font-size-base;
......
...@@ -426,6 +426,7 @@ $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www ...@@ -426,6 +426,7 @@ $form-icon-danger: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www
// //
// Dropdown menu container and contents. // Dropdown menu container and contents.
$dropdown-min-width: 160px !default;
$dropdown-bg: #fff !default; $dropdown-bg: #fff !default;
$dropdown-border-color: rgba(0,0,0,.15) !default; $dropdown-border-color: rgba(0,0,0,.15) !default;
$dropdown-border-width: $border-width !default; $dropdown-border-width: $border-width !default;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment