<h3>Dropdowns</h3>
<label>@dropdownBackground</label>
<input type="text" class="span3" placeholder="@white">
+ <label>@dropdownBorder</label>
+ <input type="text" class="span3" placeholder="rgba(0,0,0,.2)">
<label>@dropdownLinkColor</label>
<input type="text" class="span3" placeholder="@grayDark">
<label>@dropdownLinkColorHover</label>
<h3>{{_i}}Dropdowns{{/i}}</h3>
<label>@dropdownBackground</label>
<input type="text" class="span3" placeholder="@white">
+ <label>@dropdownBorder</label>
+ <input type="text" class="span3" placeholder="rgba(0,0,0,.2)">
<label>@dropdownLinkColor</label>
<input type="text" class="span3" placeholder="@grayDark">
<label>@dropdownLinkColorHover</label>
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
- border-bottom-color: rgba(0,0,0,.2);
+ border-bottom-color: @dropdownBorder;
position: absolute;
top: -7px;
left: 9px;
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
- border-bottom: 6px solid @white;
+ border-bottom: 6px solid @dropdownBackground;
position: absolute;
top: -6px;
left: 10px;
.navbar-fixed-bottom .dropdown-menu {
&:before {
border-top: 7px solid #ccc;
- border-top-color: rgba(0, 0, 0, 0.2);
+ border-top-color: @dropdownBorder;
border-bottom: 0;
bottom: -7px;
top: auto;
}
&:after {
- border-top: 6px solid #ffffff;
+ border-top: 6px solid @dropdownBackground;
border-bottom: 0;
bottom: -6px;
top: auto;
// Dropdowns
// -------------------------
@dropdownBackground: @white;
+@dropdownBorder: rgba(0,0,0,.2);
@dropdownLinkColor: @grayDark;
@dropdownLinkColorHover: @white;
@dropdownLinkBackgroundHover: @linkColor;