2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Dropdown menus
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2015-04-18 14:17:42 -04:00
|
|
|
|
2013-08-01 14:07:34 -04:00
|
|
|
// The dropdown wrapper (div)
|
2015-01-18 16:39:40 -05:00
|
|
|
.dropup,
|
2013-08-01 14:07:34 -04:00
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-07-08 17:23:34 -04:00
|
|
|
.dropdown-toggle {
|
|
|
|
// Generate the caret automatically
|
|
|
|
&:after {
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
margin-left: .25rem;
|
|
|
|
vertical-align: middle;
|
2014-12-11 15:05:29 -05:00
|
|
|
content: "";
|
|
|
|
border-top: $caret-width-base solid;
|
2014-12-02 17:02:35 -05:00
|
|
|
border-right: $caret-width-base solid transparent;
|
2014-12-11 15:05:29 -05:00
|
|
|
border-left: $caret-width-base solid transparent;
|
2014-07-08 17:23:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent the focus on the dropdown toggle when closing dropdowns
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2013-08-13 00:23:28 -04:00
|
|
|
}
|
|
|
|
|
2011-12-21 17:22:20 -05:00
|
|
|
// The dropdown menu (ul)
|
|
|
|
.dropdown-menu {
|
|
|
|
position: absolute;
|
2012-01-18 08:02:18 -05:00
|
|
|
top: 100%;
|
2012-01-27 16:06:58 -05:00
|
|
|
left: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
z-index: $zindex-dropdown;
|
2012-01-07 06:45:24 -05:00
|
|
|
display: none; // none by default, but block on "open" of the menu
|
2012-04-16 19:34:08 -04:00
|
|
|
float: left;
|
2011-12-21 17:22:20 -05:00
|
|
|
min-width: 160px;
|
2012-06-24 23:42:31 -04:00
|
|
|
padding: 5px 0;
|
2012-07-29 03:30:15 -04:00
|
|
|
margin: 2px 0 0; // override default ul
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: $font-size-base;
|
2014-03-24 23:02:56 -04:00
|
|
|
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
2014-12-11 15:05:29 -05:00
|
|
|
list-style: none;
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $dropdown-bg;
|
2014-12-11 15:05:29 -05:00
|
|
|
background-clip: padding-box;
|
2014-12-02 17:02:35 -05:00
|
|
|
border: 1px solid $dropdown-border;
|
|
|
|
@include border-radius($border-radius-base);
|
|
|
|
@include box-shadow(0 6px 12px rgba(0,0,0,.175));
|
2011-12-21 17:22:20 -05:00
|
|
|
|
|
|
|
// Dividers (basically an hr) within the dropdown
|
|
|
|
.divider {
|
2014-12-02 17:02:35 -05:00
|
|
|
@include nav-divider($dropdown-divider-bg);
|
2011-12-21 17:22:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Links within the dropdown menu
|
2012-12-10 01:42:41 -05:00
|
|
|
> li > a {
|
2011-12-21 17:22:20 -05:00
|
|
|
display: block;
|
2012-07-18 01:26:53 -04:00
|
|
|
padding: 3px 20px;
|
2011-12-21 17:22:20 -05:00
|
|
|
clear: both;
|
|
|
|
font-weight: normal;
|
2014-12-02 17:02:35 -05:00
|
|
|
line-height: $line-height-base;
|
|
|
|
color: $dropdown-link-color;
|
2013-04-14 02:54:51 -04:00
|
|
|
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
2012-01-08 03:49:38 -05:00
|
|
|
}
|
2012-01-08 04:50:12 -05:00
|
|
|
}
|
2012-01-08 03:49:38 -05:00
|
|
|
|
2013-01-02 17:39:21 -05:00
|
|
|
// Hover/Focus state
|
2013-07-07 01:27:56 -04:00
|
|
|
.dropdown-menu > li > a {
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $dropdown-link-hover-color;
|
2014-12-11 15:05:29 -05:00
|
|
|
text-decoration: none;
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $dropdown-link-hover-bg;
|
2013-07-07 01:27:56 -04:00
|
|
|
}
|
2012-06-19 22:17:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Active state
|
2013-07-07 01:27:56 -04:00
|
|
|
.dropdown-menu > .active > a {
|
2015-01-01 04:05:01 -05:00
|
|
|
@include plain-hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $dropdown-link-active-color;
|
2013-07-07 01:27:56 -04:00
|
|
|
text-decoration: none;
|
2014-12-02 17:02:35 -05:00
|
|
|
background-color: $dropdown-link-active-bg;
|
2014-12-11 15:05:29 -05:00
|
|
|
outline: 0;
|
2013-07-07 01:27:56 -04:00
|
|
|
}
|
2012-01-08 18:33:44 -05:00
|
|
|
}
|
|
|
|
|
2012-06-19 16:52:07 -04:00
|
|
|
// Disabled state
|
2013-08-11 20:47:30 -04:00
|
|
|
//
|
2013-01-02 17:39:21 -05:00
|
|
|
// Gray out text and ensure the hover/focus state remains gray
|
2013-08-11 20:47:30 -04:00
|
|
|
|
2013-07-07 01:27:56 -04:00
|
|
|
.dropdown-menu > .disabled > a {
|
2015-01-01 04:05:01 -05:00
|
|
|
@include plain-hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $dropdown-link-disabled-color;
|
2013-07-07 01:27:56 -04:00
|
|
|
}
|
2014-08-16 11:20:13 -04:00
|
|
|
|
|
|
|
// Nuke hover/focus effects
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2013-07-07 01:27:56 -04:00
|
|
|
text-decoration: none;
|
2014-12-11 15:05:29 -05:00
|
|
|
cursor: $cursor-disabled;
|
2013-07-07 01:27:56 -04:00
|
|
|
background-color: transparent;
|
|
|
|
background-image: none; // Remove CSS gradient
|
2014-12-02 17:02:35 -05:00
|
|
|
@include reset-filter();
|
2013-07-07 01:27:56 -04:00
|
|
|
}
|
2012-06-19 16:52:07 -04:00
|
|
|
}
|
|
|
|
|
2011-12-21 17:22:20 -05:00
|
|
|
// Open state for the dropdown
|
2012-03-23 02:09:31 -04:00
|
|
|
.open {
|
2013-05-12 19:03:56 -04:00
|
|
|
// Show the menu
|
|
|
|
> .dropdown-menu {
|
2011-12-21 17:22:20 -05:00
|
|
|
display: block;
|
|
|
|
}
|
2013-05-12 19:03:56 -04:00
|
|
|
|
|
|
|
// Remove the outline when :focus is triggered
|
|
|
|
> a {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2011-12-21 17:22:20 -05:00
|
|
|
}
|
2012-01-08 04:50:12 -05:00
|
|
|
|
2013-12-14 16:22:56 -05:00
|
|
|
// Menu positioning
|
|
|
|
//
|
|
|
|
// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
|
|
|
|
// menu with the parent.
|
|
|
|
.dropdown-menu-right {
|
|
|
|
right: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: auto; // Reset the default from `.dropdown-menu`
|
2013-12-14 16:22:56 -05:00
|
|
|
}
|
|
|
|
// With v3, we enabled auto-flipping if you have a dropdown within a right
|
|
|
|
// aligned nav component. To enable the undoing of that, we provide an override
|
|
|
|
// to restore the default dropdown menu alignment.
|
|
|
|
//
|
|
|
|
// This is only for left-aligning a dropdown menu within a `.navbar-right` or
|
|
|
|
// `.pull-right` nav component.
|
|
|
|
.dropdown-menu-left {
|
|
|
|
right: auto;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 0;
|
2013-12-14 16:22:56 -05:00
|
|
|
}
|
|
|
|
|
2013-07-18 02:54:09 -04:00
|
|
|
// Dropdown section headers
|
|
|
|
.dropdown-header {
|
|
|
|
display: block;
|
|
|
|
padding: 3px 20px;
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: $font-size-sm;
|
|
|
|
line-height: $line-height-base;
|
|
|
|
color: $dropdown-header-color;
|
2014-06-18 13:07:55 -04:00
|
|
|
white-space: nowrap; // as with > li > a
|
2013-07-18 02:54:09 -04:00
|
|
|
}
|
|
|
|
|
2013-05-16 15:50:06 -04:00
|
|
|
// Backdrop to catch body clicks on mobile, etc.
|
|
|
|
.dropdown-backdrop {
|
|
|
|
position: fixed;
|
2014-12-11 15:05:29 -05:00
|
|
|
top: 0;
|
2013-05-16 15:50:06 -04:00
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2014-12-11 15:05:29 -05:00
|
|
|
left: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
z-index: ($zindex-dropdown - 10);
|
2013-05-16 15:50:06 -04:00
|
|
|
}
|
|
|
|
|
2012-02-18 23:06:38 -05:00
|
|
|
// Right aligned dropdowns
|
2012-05-28 04:13:24 -04:00
|
|
|
.pull-right > .dropdown-menu {
|
2012-02-18 23:06:38 -05:00
|
|
|
right: 0;
|
2012-04-16 19:34:08 -04:00
|
|
|
left: auto;
|
2012-02-18 23:06:38 -05:00
|
|
|
}
|
|
|
|
|
2012-02-22 01:01:39 -05:00
|
|
|
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
2013-08-11 20:47:30 -04:00
|
|
|
//
|
2012-02-22 01:01:39 -05:00
|
|
|
// Just add .dropup after the standard .dropdown class and you're set, bro.
|
2012-02-22 01:09:51 -05:00
|
|
|
// TODO: abstract this so that the navbar fixed styles are not placed here?
|
2013-08-11 20:47:30 -04:00
|
|
|
|
2012-02-22 01:09:51 -05:00
|
|
|
.dropup,
|
|
|
|
.navbar-fixed-bottom .dropdown {
|
2012-02-22 01:01:39 -05:00
|
|
|
// Reverse the caret
|
|
|
|
.caret {
|
2014-12-11 15:05:29 -05:00
|
|
|
content: "";
|
2013-11-16 20:48:31 -05:00
|
|
|
border-top: 0;
|
2014-12-02 17:02:35 -05:00
|
|
|
border-bottom: $caret-width-base solid;
|
2012-02-22 01:01:39 -05:00
|
|
|
}
|
2014-12-19 21:35:10 -05:00
|
|
|
|
2012-02-22 01:01:39 -05:00
|
|
|
// Different positioning for bottom up menu
|
|
|
|
.dropdown-menu {
|
|
|
|
top: auto;
|
|
|
|
bottom: 100%;
|
2014-11-29 21:31:09 -05:00
|
|
|
margin-bottom: 2px;
|
2012-02-22 01:01:39 -05:00
|
|
|
}
|
|
|
|
}
|