2015-11-28 05:12:37 +01:00
|
|
|
// The dropdown wrapper (`<div>`)
|
2015-01-18 22:39:40 +01:00
|
|
|
.dropup,
|
2018-03-12 18:44:05 +01:00
|
|
|
.dropright,
|
|
|
|
.dropdown,
|
|
|
|
.dropleft {
|
2013-08-01 20:07:34 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-07-08 23:23:34 +02:00
|
|
|
.dropdown-toggle {
|
2019-01-13 08:43:52 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
2014-07-08 23:23:34 +02:00
|
|
|
// Generate the caret automatically
|
2019-07-24 08:41:18 +02:00
|
|
|
@include caret();
|
2013-08-13 06:23:28 +02:00
|
|
|
}
|
|
|
|
|
2015-11-28 05:12:37 +01:00
|
|
|
// The dropdown menu
|
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;
|
2014-12-02 23:02:35 +01:00
|
|
|
z-index: $zindex-dropdown;
|
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;
|
2016-02-16 09:42:10 +01:00
|
|
|
min-width: $dropdown-min-width;
|
2016-02-17 06:07:24 +01:00
|
|
|
padding: $dropdown-padding-y 0;
|
2017-07-31 20:45:51 +02:00
|
|
|
margin: $dropdown-spacer 0 0; // override default ul
|
2019-02-07 23:32:05 +01:00
|
|
|
@include font-size($dropdown-font-size);
|
2019-01-20 22:38:29 +01:00
|
|
|
color: $dropdown-color;
|
2014-03-25 04:02:56 +01:00
|
|
|
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
2014-12-11 21:05:29 +01:00
|
|
|
list-style: none;
|
2014-12-02 23:02:35 +01:00
|
|
|
background-color: $dropdown-bg;
|
2014-12-11 21:05:29 +01:00
|
|
|
background-clip: padding-box;
|
2015-11-15 07:30:16 +01:00
|
|
|
border: $dropdown-border-width solid $dropdown-border-color;
|
2017-10-22 22:47:31 +02:00
|
|
|
@include border-radius($dropdown-border-radius);
|
2016-01-10 00:31:29 +01:00
|
|
|
@include box-shadow($dropdown-box-shadow);
|
2015-08-17 20:21:10 +02:00
|
|
|
}
|
2011-12-21 23:22:20 +01:00
|
|
|
|
2018-10-21 10:01:22 +02:00
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
|
|
|
|
|
.dropdown-menu#{$infix}-left {
|
|
|
|
right: auto;
|
|
|
|
left: 0;
|
|
|
|
}
|
2019-01-07 02:12:51 +01:00
|
|
|
|
|
|
|
.dropdown-menu#{$infix}-right {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
}
|
2018-10-21 10:01:22 +02:00
|
|
|
}
|
2018-03-12 18:44:05 +01:00
|
|
|
}
|
|
|
|
|
2017-10-10 15:46:43 +02:00
|
|
|
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
|
|
|
// Just add .dropup after the standard .dropdown class and you're set.
|
|
|
|
.dropup {
|
|
|
|
.dropdown-menu {
|
2018-03-12 18:44:05 +01:00
|
|
|
top: auto;
|
|
|
|
bottom: 100%;
|
2017-10-10 15:46:43 +02:00
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $dropdown-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
@include caret(up);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-29 23:29:13 +01:00
|
|
|
.dropright {
|
|
|
|
.dropdown-menu {
|
2018-03-12 18:44:05 +01:00
|
|
|
top: 0;
|
|
|
|
right: auto;
|
|
|
|
left: 100%;
|
2017-10-29 23:29:13 +01:00
|
|
|
margin-top: 0;
|
|
|
|
margin-left: $dropdown-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
@include caret(right);
|
|
|
|
&::after {
|
|
|
|
vertical-align: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropleft {
|
|
|
|
.dropdown-menu {
|
2018-03-12 18:44:05 +01:00
|
|
|
top: 0;
|
|
|
|
right: 100%;
|
|
|
|
left: auto;
|
2017-10-29 23:29:13 +01:00
|
|
|
margin-top: 0;
|
|
|
|
margin-right: $dropdown-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
@include caret(left);
|
|
|
|
&::before {
|
|
|
|
vertical-align: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-12 18:44:05 +01:00
|
|
|
// When enabled Popper.js, reset basic dropdown position
|
2018-10-22 20:57:09 +02:00
|
|
|
// stylelint-disable-next-line no-duplicate-selectors
|
2018-03-12 18:44:05 +01:00
|
|
|
.dropdown-menu {
|
|
|
|
&[x-placement^="top"],
|
|
|
|
&[x-placement^="right"],
|
|
|
|
&[x-placement^="bottom"],
|
|
|
|
&[x-placement^="left"] {
|
|
|
|
right: auto;
|
|
|
|
bottom: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-28 05:12:37 +01:00
|
|
|
// Dividers (basically an `<hr>`) within the dropdown
|
2015-08-17 20:21:10 +02:00
|
|
|
.dropdown-divider {
|
2019-08-21 10:38:14 +02:00
|
|
|
@include nav-divider($dropdown-divider-bg, $dropdown-divider-margin-y, true);
|
2012-01-08 10:50:12 +01:00
|
|
|
}
|
2012-01-08 09:49:38 +01:00
|
|
|
|
2015-08-17 20:19:14 +02:00
|
|
|
// Links, buttons, and more within the dropdown menu
|
2015-08-23 10:12:00 +02:00
|
|
|
//
|
2015-11-28 05:12:37 +01:00
|
|
|
// `<button>`-specific styles are denoted with `// For <button>s`
|
2015-08-17 20:19:14 +02:00
|
|
|
.dropdown-item {
|
|
|
|
display: block;
|
2015-08-23 10:12:00 +02:00
|
|
|
width: 100%; // For `<button>`s
|
2017-04-08 23:17:06 +02:00
|
|
|
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
|
2015-08-17 20:19:14 +02:00
|
|
|
clear: both;
|
2016-10-19 21:41:27 +02:00
|
|
|
font-weight: $font-weight-normal;
|
2015-08-17 20:19:14 +02:00
|
|
|
color: $dropdown-link-color;
|
2015-08-23 10:12:00 +02:00
|
|
|
text-align: inherit; // For `<button>`s
|
2020-03-05 15:22:52 +01:00
|
|
|
text-decoration: if($link-decoration == none, null, none);
|
2015-08-17 20:19:14 +02:00
|
|
|
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
2017-11-06 01:23:36 +01:00
|
|
|
background-color: transparent; // For `<button>`s
|
2015-08-23 10:12:00 +02:00
|
|
|
border: 0; // For `<button>`s
|
2015-08-18 03:18:37 +02:00
|
|
|
|
2019-02-03 22:07:16 +01:00
|
|
|
// Prevent dropdown overflow if there's no padding
|
|
|
|
// See https://github.com/twbs/bootstrap/pull/27703
|
|
|
|
@if $dropdown-padding-y == 0 {
|
|
|
|
&:first-child {
|
|
|
|
@include border-top-radius($dropdown-inner-border-radius);
|
|
|
|
}
|
2018-11-21 23:24:13 +01:00
|
|
|
|
2019-02-03 22:07:16 +01:00
|
|
|
&:last-child {
|
|
|
|
@include border-bottom-radius($dropdown-inner-border-radius);
|
|
|
|
}
|
2018-11-21 23:24:13 +01:00
|
|
|
}
|
|
|
|
|
2019-07-24 09:53:13 +02:00
|
|
|
@include hover-focus() {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $dropdown-link-hover-color;
|
2014-12-11 21:05:29 +01:00
|
|
|
text-decoration: none;
|
2017-10-19 18:03:33 +02:00
|
|
|
@include gradient-bg($dropdown-link-hover-bg);
|
2013-07-07 07:27:56 +02:00
|
|
|
}
|
2012-06-20 04:17:42 +02:00
|
|
|
|
2016-12-28 09:20:06 +01:00
|
|
|
&.active,
|
|
|
|
&:active {
|
|
|
|
color: $dropdown-link-active-color;
|
|
|
|
text-decoration: none;
|
2017-10-19 18:03:33 +02:00
|
|
|
@include gradient-bg($dropdown-link-active-bg);
|
2013-07-07 07:27:56 +02:00
|
|
|
}
|
2013-08-12 02:47:30 +02:00
|
|
|
|
2016-12-28 09:20:06 +01:00
|
|
|
&.disabled,
|
|
|
|
&:disabled {
|
|
|
|
color: $dropdown-link-disabled-color;
|
2018-06-11 15:52:56 +02:00
|
|
|
pointer-events: none;
|
2016-12-28 09:20:06 +01:00
|
|
|
background-color: transparent;
|
|
|
|
// Remove CSS gradients if they're enabled
|
|
|
|
@if $enable-gradients {
|
|
|
|
background-image: none;
|
2015-08-17 20:19:14 +02:00
|
|
|
}
|
2013-07-07 07:27:56 +02:00
|
|
|
}
|
2012-06-19 22:52:07 +02:00
|
|
|
}
|
|
|
|
|
2017-04-14 11:25:53 +02:00
|
|
|
.dropdown-menu.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-07-18 08:54:09 +02:00
|
|
|
// Dropdown section headers
|
|
|
|
.dropdown-header {
|
|
|
|
display: block;
|
2020-02-15 12:06:02 +01:00
|
|
|
padding: $dropdown-header-padding;
|
2016-10-03 03:25:51 +02:00
|
|
|
margin-bottom: 0; // for use with heading elements
|
2019-02-07 23:32:05 +01:00
|
|
|
@include font-size($font-size-sm);
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $dropdown-header-color;
|
2014-06-18 19:07:55 +02:00
|
|
|
white-space: nowrap; // as with > li > a
|
2013-07-18 08:54:09 +02:00
|
|
|
}
|
2018-01-22 07:40:55 +01:00
|
|
|
|
|
|
|
// Dropdown text
|
|
|
|
.dropdown-item-text {
|
|
|
|
display: block;
|
|
|
|
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
|
|
|
|
color: $dropdown-link-color;
|
|
|
|
}
|