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