2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Dropdown menus
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 05:40:28 +01:00
|
|
|
|
2011-12-21 23:22:20 +01:00
|
|
|
// Use the .menu class on any <li> element within the topbar or ul.tabs and you'll get some superfancy dropdowns
|
2012-03-26 07:28:43 +02:00
|
|
|
.dropup,
|
2011-12-21 23:22:20 +01:00
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
|
|
|
}
|
2012-01-28 20:21:39 +01:00
|
|
|
.dropdown-toggle {
|
2012-01-27 22:06:58 +01:00
|
|
|
// The caret makes the toggle a bit too tall in IE7
|
|
|
|
*margin-bottom: -3px;
|
|
|
|
}
|
2012-01-28 20:21:39 +01:00
|
|
|
.dropdown-toggle:active,
|
|
|
|
.open .dropdown-toggle {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2012-02-22 07:01:39 +01:00
|
|
|
|
2012-01-07 12:45:24 +01:00
|
|
|
// Dropdown arrow/caret
|
2012-02-22 07:01:39 +01:00
|
|
|
// --------------------
|
2012-01-07 12:45:24 +01:00
|
|
|
.caret {
|
2011-12-21 23:22:20 +01:00
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
2012-07-09 09:31:54 +02:00
|
|
|
height: 0;
|
|
|
|
vertical-align: top;
|
2012-01-22 00:24:06 +01:00
|
|
|
border-top: 4px solid @black;
|
2012-04-17 01:34:08 +02:00
|
|
|
border-right: 4px solid transparent;
|
|
|
|
border-left: 4px solid transparent;
|
2012-03-12 04:38:17 +01:00
|
|
|
content: "";
|
2011-12-21 23:22:20 +01:00
|
|
|
}
|
2012-01-29 23:50:47 +01:00
|
|
|
|
2012-03-06 05:49:39 +01:00
|
|
|
// Place the caret
|
2012-01-07 12:45:24 +01:00
|
|
|
.dropdown .caret {
|
2012-07-09 09:31:54 +02:00
|
|
|
margin-top: 8px;
|
2012-01-07 12:45:24 +01:00
|
|
|
margin-left: 2px;
|
|
|
|
}
|
2012-05-17 09:23:11 +02:00
|
|
|
|
2011-12-21 23:22:20 +01:00
|
|
|
// The dropdown menu (ul)
|
2012-02-22 07:01:39 +01:00
|
|
|
// ----------------------
|
2011-12-21 23:22:20 +01:00
|
|
|
.dropdown-menu {
|
|
|
|
position: absolute;
|
2012-01-18 14:02:18 +01:00
|
|
|
top: 100%;
|
2012-01-27 22:06:58 +01:00
|
|
|
left: 0;
|
2012-01-07 13:17:33 +01:00
|
|
|
z-index: @zindexDropdown;
|
2012-01-07 12:45:24 +01:00
|
|
|
display: none; // none by default, but block on "open" of the menu
|
2012-04-17 01:34:08 +02:00
|
|
|
float: left;
|
2011-12-21 23:22:20 +01:00
|
|
|
min-width: 160px;
|
2012-06-25 05:42:31 +02:00
|
|
|
padding: 5px 0;
|
2012-07-29 09:30:15 +02:00
|
|
|
margin: 2px 0 0; // override default ul
|
2012-01-07 12:45:24 +01:00
|
|
|
list-style: none;
|
2012-03-05 09:32:02 +01:00
|
|
|
background-color: @dropdownBackground;
|
2012-07-22 23:31:39 +02:00
|
|
|
border: 1px solid #ccc; // Fallback for IE7-8
|
|
|
|
border: 1px solid @dropdownBorder;
|
2012-04-17 01:34:08 +02:00
|
|
|
*border-right-width: 2px;
|
|
|
|
*border-bottom-width: 2px;
|
2012-06-25 05:42:31 +02:00
|
|
|
.border-radius(6px);
|
2012-01-07 12:45:24 +01:00
|
|
|
.box-shadow(0 5px 10px rgba(0,0,0,.2));
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
-moz-background-clip: padding;
|
|
|
|
background-clip: padding-box;
|
2011-12-21 23:22:20 +01:00
|
|
|
|
2012-01-29 23:50:47 +01:00
|
|
|
// Aligns the dropdown menu to right
|
|
|
|
&.pull-right {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
2012-01-24 19:45:29 +01:00
|
|
|
}
|
|
|
|
|
2011-12-21 23:22:20 +01:00
|
|
|
// Dividers (basically an hr) within the dropdown
|
|
|
|
.divider {
|
2012-05-13 22:58:42 +02:00
|
|
|
.nav-divider(@dropdownDividerTop, @dropdownDividerBottom);
|
2011-12-21 23:22:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Links within the dropdown menu
|
2012-10-05 20:13:21 +02:00
|
|
|
li > a {
|
2011-12-21 23:22:20 +01:00
|
|
|
display: block;
|
2012-07-18 07:26:53 +02:00
|
|
|
padding: 3px 20px;
|
2011-12-21 23:22:20 +01:00
|
|
|
clear: both;
|
|
|
|
font-weight: normal;
|
2012-02-07 09:16:05 +01:00
|
|
|
line-height: @baseLineHeight;
|
2012-03-05 09:32:02 +01:00
|
|
|
color: @dropdownLinkColor;
|
2012-01-13 00:29:16 +01:00
|
|
|
white-space: nowrap;
|
2012-01-08 09:49:38 +01:00
|
|
|
}
|
2012-01-08 10:50:12 +01:00
|
|
|
}
|
2012-01-08 09:49:38 +01:00
|
|
|
|
2012-01-09 00:33:44 +01:00
|
|
|
// Hover state
|
2012-02-22 07:01:39 +01:00
|
|
|
// -----------
|
2012-01-13 19:07:56 +01:00
|
|
|
.dropdown-menu li > a:hover,
|
2012-07-27 19:06:54 +02:00
|
|
|
.dropdown-menu li > a:focus,
|
|
|
|
.dropdown-submenu:hover > a {
|
2012-06-20 04:17:42 +02:00
|
|
|
text-decoration: none;
|
2012-07-18 07:26:53 +02:00
|
|
|
color: @dropdownLinkColorHover;
|
|
|
|
#gradient > .vertical(@dropdownLinkBackgroundHover, darken(@dropdownLinkBackgroundHover, 5%));
|
2012-06-20 04:17:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Active state
|
|
|
|
// ------------
|
2012-01-09 00:33:44 +01:00
|
|
|
.dropdown-menu .active > a,
|
|
|
|
.dropdown-menu .active > a:hover {
|
2012-10-17 05:34:42 +02:00
|
|
|
color: @dropdownLinkColorActive;
|
2012-01-13 19:07:56 +01:00
|
|
|
text-decoration: none;
|
2012-05-17 09:39:14 +02:00
|
|
|
outline: 0;
|
2012-07-18 07:26:53 +02:00
|
|
|
#gradient > .vertical(@dropdownLinkBackgroundActive, darken(@dropdownLinkBackgroundActive, 5%));
|
2012-01-09 00:33:44 +01:00
|
|
|
}
|
|
|
|
|
2012-06-19 22:52:07 +02:00
|
|
|
// 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;
|
2012-10-08 06:45:16 +02:00
|
|
|
background-image: none; // Remove CSS gradient
|
2012-11-28 11:22:37 +01:00
|
|
|
.reset-filter();
|
2012-06-19 22:52:07 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2011-12-21 23:22:20 +01:00
|
|
|
// Open state for the dropdown
|
2012-02-22 07:01:39 +01:00
|
|
|
// ---------------------------
|
2012-03-23 07:09:31 +01:00
|
|
|
.open {
|
2012-01-27 22:06:58 +01:00
|
|
|
// 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;
|
|
|
|
|
2012-05-14 06:52:18 +02:00
|
|
|
& > .dropdown-menu {
|
2011-12-21 23:22:20 +01:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2012-01-08 10:50:12 +01:00
|
|
|
|
2012-02-19 05:06:38 +01:00
|
|
|
// Right aligned dropdowns
|
2012-03-23 07:09:31 +01:00
|
|
|
// ---------------------------
|
2012-05-28 10:13:24 +02:00
|
|
|
.pull-right > .dropdown-menu {
|
2012-02-19 05:06:38 +01:00
|
|
|
right: 0;
|
2012-04-17 01:34:08 +02:00
|
|
|
left: auto;
|
2012-02-19 05:06:38 +01:00
|
|
|
}
|
|
|
|
|
2012-02-22 07:01:39 +01:00
|
|
|
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
|
|
|
// ------------------------------------------------------
|
|
|
|
// Just add .dropup after the standard .dropdown class and you're set, bro.
|
2012-02-22 07:09:51 +01:00
|
|
|
// TODO: abstract this so that the navbar fixed styles are not placed here?
|
|
|
|
.dropup,
|
|
|
|
.navbar-fixed-bottom .dropdown {
|
2012-02-22 07:01:39 +01:00
|
|
|
// Reverse the caret
|
|
|
|
.caret {
|
|
|
|
border-top: 0;
|
|
|
|
border-bottom: 4px solid @black;
|
2012-08-21 22:02:02 +02:00
|
|
|
content: "";
|
2012-02-22 07:01:39 +01:00
|
|
|
}
|
|
|
|
// Different positioning for bottom up menu
|
|
|
|
.dropdown-menu {
|
|
|
|
top: auto;
|
|
|
|
bottom: 100%;
|
|
|
|
margin-bottom: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-27 19:06:54 +02:00
|
|
|
// Sub menus
|
|
|
|
// ---------------------------
|
|
|
|
.dropdown-submenu {
|
|
|
|
position: relative;
|
|
|
|
}
|
2012-09-07 20:34:05 +02:00
|
|
|
// Default dropdowns
|
2012-07-27 19:06:54 +02:00
|
|
|
.dropdown-submenu > .dropdown-menu {
|
|
|
|
top: 0;
|
|
|
|
left: 100%;
|
2012-07-27 19:35:15 +02:00
|
|
|
margin-top: -6px;
|
2012-07-27 19:06:54 +02:00
|
|
|
margin-left: -1px;
|
2012-10-30 10:22:09 +01:00
|
|
|
.border-radius(0 6px 6px 6px);
|
2012-07-27 19:06:54 +02:00
|
|
|
}
|
2012-08-21 23:10:36 +02:00
|
|
|
.dropdown-submenu:hover > .dropdown-menu {
|
2012-07-27 19:06:54 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2012-09-07 20:34:05 +02:00
|
|
|
// Dropups
|
|
|
|
.dropup .dropdown-submenu > .dropdown-menu {
|
|
|
|
top: auto;
|
|
|
|
bottom: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: -2px;
|
2012-10-30 10:22:09 +01:00
|
|
|
.border-radius(5px 5px 5px 0);
|
2012-09-07 20:34:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Caret to indicate there is a submenu
|
2012-07-27 19:35:15 +02:00
|
|
|
.dropdown-submenu > a:after {
|
|
|
|
display: block;
|
|
|
|
content: " ";
|
|
|
|
float: right;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 0 5px 5px;
|
|
|
|
border-left-color: darken(@dropdownBackground, 20%);
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-right: -10px;
|
|
|
|
}
|
|
|
|
.dropdown-submenu:hover > a:after {
|
|
|
|
border-left-color: @dropdownLinkColorHover;
|
|
|
|
}
|
|
|
|
|
2012-10-02 01:41:13 +02:00
|
|
|
// Left aligned submenus
|
|
|
|
.dropdown-submenu.pull-left {
|
|
|
|
// Undo the float
|
|
|
|
// Yes, this is awkward since .pull-left adds a float, but it sticks to our conventions elsewhere.
|
|
|
|
float: none;
|
|
|
|
|
|
|
|
// Positioning the submenu
|
|
|
|
> .dropdown-menu {
|
|
|
|
left: -100%;
|
|
|
|
margin-left: 10px;
|
2012-10-30 10:22:09 +01:00
|
|
|
.border-radius(6px 0 6px 6px);
|
2012-10-02 01:41:13 +02:00
|
|
|
}
|
2012-09-16 09:02:31 +02:00
|
|
|
}
|
2012-07-27 19:06:54 +02:00
|
|
|
|
|
|
|
// Tweak nav headers
|
|
|
|
// -----------------
|
|
|
|
// Increase padding from 15px to 20px on sides
|
|
|
|
.dropdown .dropdown-menu .nav-header {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
2012-01-08 10:50:12 +01:00
|
|
|
// Typeahead
|
2012-02-22 07:01:39 +01:00
|
|
|
// ---------
|
2012-01-08 10:50:12 +01:00
|
|
|
.typeahead {
|
2012-11-04 22:01:31 +01:00
|
|
|
z-index: 1051;
|
2012-01-08 10:50:12 +01:00
|
|
|
margin-top: 2px; // give it some space to breathe
|
2012-10-03 18:26:52 +02:00
|
|
|
.border-radius(@baseBorderRadius);
|
2012-01-08 10:50:12 +01:00
|
|
|
}
|