clear: both;
font-weight: normal;
line-height: 18px;
- color: #555555;
+ color: #333333;
white-space: nowrap;
}
.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
color: #ffffff;
text-decoration: none;
- background-color: #0088cc;
+ background-color: #333333;
}
.dropdown.open {
*z-index: 1000;
padding: 4px 0;
margin: 0; // override default ul
list-style: none;
- background-color: @white;
+ background-color: @dropdownBackground;
border-color: #ccc;
border-color: rgba(0,0,0,.2);
border-style: solid;
clear: both;
font-weight: normal;
line-height: @baseLineHeight;
- color: @gray;
+ color: @dropdownLinkColor;
white-space: nowrap;
}
}
.dropdown-menu li > a:hover,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
- color: @white;
+ color: @dropdownLinkColorHover;
text-decoration: none;
- background-color: @linkColor;
+ background-color: @dropdownLinkBackgroundHover;
}
// Open state for the dropdown
@inputDisabledBackground: @grayLighter;
// Dropdowns
+@dropdownBackground: @white;
@dropdownLinkColor: @grayDark;
@dropdownLinkColorHover: @white;
@dropdownLinkBackgroundHover: @grayDark;