twbs--bootstrap/less/dropdowns.less

174 lines
3.8 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Dropdown menus
// --------------------------------------------------
// Use the .menu class on any <li> element within the topbar or ul.tabs and you'll get some superfancy dropdowns
2012-03-26 05:28:43 +00:00
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle {
// The caret makes the toggle a bit too tall in IE7
*margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
outline: 0;
}
// Dropdown arrow/caret
// --------------------
.caret {
display: inline-block;
width: 0;
height: 0;
vertical-align: top;
2012-01-21 23:24:06 +00:00
border-top: 4px solid @black;
2012-04-16 23:34:08 +00:00
border-right: 4px solid transparent;
border-left: 4px solid transparent;
content: "";
2012-04-16 23:34:08 +00:00
.opacity(30);
}
// Place the caret
.dropdown .caret {
margin-top: 8px;
margin-left: 2px;
}
.dropdown a:focus .caret,
.dropdown a:hover .caret,
.open .caret {
.opacity(100);
}
.navbar .nav .open > a {
color: @navbarLinkColorActive;
}
// The dropdown menu (ul)
// ----------------------
.dropdown-menu {
position: absolute;
2012-01-18 13:02:18 +00:00
top: 100%;
left: 0;
z-index: @zindexDropdown;
display: none; // none by default, but block on "open" of the menu
2012-04-16 23:34:08 +00:00
float: left;
min-width: 160px;
2012-06-25 03:42:31 +00:00
padding: 5px 0;
margin: 1px 0 0; // override default ul
list-style: none;
2012-03-05 08:32:02 +00:00
background-color: @dropdownBackground;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,.2);
2012-04-16 23:34:08 +00:00
*border-right-width: 2px;
*border-bottom-width: 2px;
2012-06-25 03:42:31 +00:00
.border-radius(6px);
.box-shadow(0 5px 10px rgba(0,0,0,.2));
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
// Aligns the dropdown menu to right
&.pull-right {
right: 0;
left: auto;
}
// Dividers (basically an hr) within the dropdown
.divider {
.nav-divider(@dropdownDividerTop, @dropdownDividerBottom);
}
// Links within the dropdown menu
a {
display: block;
padding: 3px 15px;
clear: both;
font-weight: normal;
2012-02-07 08:16:05 +00:00
line-height: @baseLineHeight;
2012-03-05 08:32:02 +00:00
color: @dropdownLinkColor;
white-space: nowrap;
2012-01-08 08:49:38 +00:00
}
}
2012-01-08 08:49:38 +00:00
// Hover state
// -----------
.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus {
text-decoration: none;
color: @dropdownLinkColorActive;
background-color: @dropdownLinkBackgroundHover;
}
// Active state
// ------------
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
2012-03-05 08:32:02 +00:00
color: @dropdownLinkColorHover;
text-decoration: none;
background-color: @dropdownLinkBackgroundActive;
outline: 0;
}
// Disabled state
// --------------
// Gray out text and ensure the hover state remains gray
.dropdown-menu .disabled > a,
.dropdown-menu .disabled > a:hover {
color: @grayLight;
}
// Nuke hover effects
.dropdown-menu .disabled > a:hover {
text-decoration: none;
background-color: transparent;
cursor: default;
}
// Open state for the dropdown
// ---------------------------
.open {
// IE7's z-index only goes to the nearest positioned ancestor, which would
// make the menu appear below buttons that appeared later on the page
*z-index: @zindexDropdown;
& > .dropdown-menu {
display: block;
}
}
2012-02-19 04:06:38 +00:00
// Right aligned dropdowns
// ---------------------------
.pull-right > .dropdown-menu {
2012-02-19 04:06:38 +00:00
right: 0;
2012-04-16 23:34:08 +00:00
left: auto;
2012-02-19 04:06:38 +00:00
}
// Allow for dropdowns to go bottom up (aka, dropup-menu)
// ------------------------------------------------------
// Just add .dropup after the standard .dropdown class and you're set, bro.
// TODO: abstract this so that the navbar fixed styles are not placed here?
.dropup,
.navbar-fixed-bottom .dropdown {
// Reverse the caret
.caret {
border-top: 0;
border-bottom: 4px solid @black;
content: "\2191";
}
// Different positioning for bottom up menu
.dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 1px;
}
}
// Typeahead
// ---------
.typeahead {
margin-top: 2px; // give it some space to breathe
.border-radius(4px);
}