1 |
efrain |
1 |
// The dropdown wrapper (`<div>`)
|
|
|
2 |
.dropup,
|
1441 |
ariadna |
3 |
.dropend,
|
1 |
efrain |
4 |
.dropdown,
|
1441 |
ariadna |
5 |
.dropstart,
|
|
|
6 |
.dropup-center,
|
|
|
7 |
.dropdown-center {
|
1 |
efrain |
8 |
position: relative;
|
|
|
9 |
}
|
|
|
10 |
|
|
|
11 |
.dropdown-toggle {
|
|
|
12 |
white-space: nowrap;
|
|
|
13 |
|
|
|
14 |
// Generate the caret automatically
|
|
|
15 |
@include caret();
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
// The dropdown menu
|
|
|
19 |
.dropdown-menu {
|
1441 |
ariadna |
20 |
// scss-docs-start dropdown-css-vars
|
|
|
21 |
--#{$prefix}dropdown-zindex: #{$zindex-dropdown};
|
|
|
22 |
--#{$prefix}dropdown-min-width: #{$dropdown-min-width};
|
|
|
23 |
--#{$prefix}dropdown-padding-x: #{$dropdown-padding-x};
|
|
|
24 |
--#{$prefix}dropdown-padding-y: #{$dropdown-padding-y};
|
|
|
25 |
--#{$prefix}dropdown-spacer: #{$dropdown-spacer};
|
|
|
26 |
@include rfs($dropdown-font-size, --#{$prefix}dropdown-font-size);
|
|
|
27 |
--#{$prefix}dropdown-color: #{$dropdown-color};
|
|
|
28 |
--#{$prefix}dropdown-bg: #{$dropdown-bg};
|
|
|
29 |
--#{$prefix}dropdown-border-color: #{$dropdown-border-color};
|
|
|
30 |
--#{$prefix}dropdown-border-radius: #{$dropdown-border-radius};
|
|
|
31 |
--#{$prefix}dropdown-border-width: #{$dropdown-border-width};
|
|
|
32 |
--#{$prefix}dropdown-inner-border-radius: #{$dropdown-inner-border-radius};
|
|
|
33 |
--#{$prefix}dropdown-divider-bg: #{$dropdown-divider-bg};
|
|
|
34 |
--#{$prefix}dropdown-divider-margin-y: #{$dropdown-divider-margin-y};
|
|
|
35 |
--#{$prefix}dropdown-box-shadow: #{$dropdown-box-shadow};
|
|
|
36 |
--#{$prefix}dropdown-link-color: #{$dropdown-link-color};
|
|
|
37 |
--#{$prefix}dropdown-link-hover-color: #{$dropdown-link-hover-color};
|
|
|
38 |
--#{$prefix}dropdown-link-hover-bg: #{$dropdown-link-hover-bg};
|
|
|
39 |
--#{$prefix}dropdown-link-active-color: #{$dropdown-link-active-color};
|
|
|
40 |
--#{$prefix}dropdown-link-active-bg: #{$dropdown-link-active-bg};
|
|
|
41 |
--#{$prefix}dropdown-link-disabled-color: #{$dropdown-link-disabled-color};
|
|
|
42 |
--#{$prefix}dropdown-item-padding-x: #{$dropdown-item-padding-x};
|
|
|
43 |
--#{$prefix}dropdown-item-padding-y: #{$dropdown-item-padding-y};
|
|
|
44 |
--#{$prefix}dropdown-header-color: #{$dropdown-header-color};
|
|
|
45 |
--#{$prefix}dropdown-header-padding-x: #{$dropdown-header-padding-x};
|
|
|
46 |
--#{$prefix}dropdown-header-padding-y: #{$dropdown-header-padding-y};
|
|
|
47 |
// scss-docs-end dropdown-css-vars
|
|
|
48 |
|
1 |
efrain |
49 |
position: absolute;
|
1441 |
ariadna |
50 |
z-index: var(--#{$prefix}dropdown-zindex);
|
1 |
efrain |
51 |
display: none; // none by default, but block on "open" of the menu
|
1441 |
ariadna |
52 |
min-width: var(--#{$prefix}dropdown-min-width);
|
|
|
53 |
padding: var(--#{$prefix}dropdown-padding-y) var(--#{$prefix}dropdown-padding-x);
|
|
|
54 |
margin: 0; // Override default margin of ul
|
|
|
55 |
@include font-size(var(--#{$prefix}dropdown-font-size));
|
|
|
56 |
color: var(--#{$prefix}dropdown-color);
|
1 |
efrain |
57 |
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
|
|
58 |
list-style: none;
|
1441 |
ariadna |
59 |
background-color: var(--#{$prefix}dropdown-bg);
|
1 |
efrain |
60 |
background-clip: padding-box;
|
1441 |
ariadna |
61 |
border: var(--#{$prefix}dropdown-border-width) solid var(--#{$prefix}dropdown-border-color);
|
|
|
62 |
@include border-radius(var(--#{$prefix}dropdown-border-radius));
|
|
|
63 |
@include box-shadow(var(--#{$prefix}dropdown-box-shadow));
|
|
|
64 |
|
|
|
65 |
&[data-bs-popper] {
|
|
|
66 |
top: 100%;
|
|
|
67 |
left: 0;
|
|
|
68 |
margin-top: var(--#{$prefix}dropdown-spacer);
|
|
|
69 |
}
|
|
|
70 |
|
|
|
71 |
@if $dropdown-padding-y == 0 {
|
|
|
72 |
> .dropdown-item:first-child,
|
|
|
73 |
> li:first-child .dropdown-item {
|
|
|
74 |
@include border-top-radius(var(--#{$prefix}dropdown-inner-border-radius));
|
|
|
75 |
}
|
|
|
76 |
> .dropdown-item:last-child,
|
|
|
77 |
> li:last-child .dropdown-item {
|
|
|
78 |
@include border-bottom-radius(var(--#{$prefix}dropdown-inner-border-radius));
|
|
|
79 |
}
|
|
|
80 |
|
|
|
81 |
}
|
1 |
efrain |
82 |
}
|
|
|
83 |
|
1441 |
ariadna |
84 |
// scss-docs-start responsive-breakpoints
|
|
|
85 |
// We deliberately hardcode the `bs-` prefix because we check
|
|
|
86 |
// this custom property in JS to determine Popper's positioning
|
|
|
87 |
|
1 |
efrain |
88 |
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
89 |
@include media-breakpoint-up($breakpoint) {
|
|
|
90 |
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
91 |
|
1441 |
ariadna |
92 |
.dropdown-menu#{$infix}-start {
|
|
|
93 |
--bs-position: start;
|
|
|
94 |
|
|
|
95 |
&[data-bs-popper] {
|
|
|
96 |
right: auto;
|
|
|
97 |
left: 0;
|
|
|
98 |
}
|
1 |
efrain |
99 |
}
|
|
|
100 |
|
1441 |
ariadna |
101 |
.dropdown-menu#{$infix}-end {
|
|
|
102 |
--bs-position: end;
|
|
|
103 |
|
|
|
104 |
&[data-bs-popper] {
|
|
|
105 |
right: 0;
|
|
|
106 |
left: auto;
|
|
|
107 |
}
|
1 |
efrain |
108 |
}
|
|
|
109 |
}
|
|
|
110 |
}
|
1441 |
ariadna |
111 |
// scss-docs-end responsive-breakpoints
|
1 |
efrain |
112 |
|
|
|
113 |
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
|
|
114 |
// Just add .dropup after the standard .dropdown class and you're set.
|
|
|
115 |
.dropup {
|
1441 |
ariadna |
116 |
.dropdown-menu[data-bs-popper] {
|
1 |
efrain |
117 |
top: auto;
|
|
|
118 |
bottom: 100%;
|
|
|
119 |
margin-top: 0;
|
1441 |
ariadna |
120 |
margin-bottom: var(--#{$prefix}dropdown-spacer);
|
1 |
efrain |
121 |
}
|
|
|
122 |
|
|
|
123 |
.dropdown-toggle {
|
|
|
124 |
@include caret(up);
|
|
|
125 |
}
|
|
|
126 |
}
|
|
|
127 |
|
1441 |
ariadna |
128 |
.dropend {
|
|
|
129 |
.dropdown-menu[data-bs-popper] {
|
1 |
efrain |
130 |
top: 0;
|
|
|
131 |
right: auto;
|
|
|
132 |
left: 100%;
|
|
|
133 |
margin-top: 0;
|
1441 |
ariadna |
134 |
margin-left: var(--#{$prefix}dropdown-spacer);
|
1 |
efrain |
135 |
}
|
|
|
136 |
|
|
|
137 |
.dropdown-toggle {
|
1441 |
ariadna |
138 |
@include caret(end);
|
1 |
efrain |
139 |
&::after {
|
|
|
140 |
vertical-align: 0;
|
|
|
141 |
}
|
|
|
142 |
}
|
|
|
143 |
}
|
|
|
144 |
|
1441 |
ariadna |
145 |
.dropstart {
|
|
|
146 |
.dropdown-menu[data-bs-popper] {
|
1 |
efrain |
147 |
top: 0;
|
|
|
148 |
right: 100%;
|
|
|
149 |
left: auto;
|
|
|
150 |
margin-top: 0;
|
1441 |
ariadna |
151 |
margin-right: var(--#{$prefix}dropdown-spacer);
|
1 |
efrain |
152 |
}
|
|
|
153 |
|
|
|
154 |
.dropdown-toggle {
|
1441 |
ariadna |
155 |
@include caret(start);
|
1 |
efrain |
156 |
&::before {
|
|
|
157 |
vertical-align: 0;
|
|
|
158 |
}
|
|
|
159 |
}
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
|
|
|
163 |
// Dividers (basically an `<hr>`) within the dropdown
|
|
|
164 |
.dropdown-divider {
|
1441 |
ariadna |
165 |
height: 0;
|
|
|
166 |
margin: var(--#{$prefix}dropdown-divider-margin-y) 0;
|
|
|
167 |
overflow: hidden;
|
|
|
168 |
border-top: 1px solid var(--#{$prefix}dropdown-divider-bg);
|
|
|
169 |
opacity: 1; // Revisit in v6 to de-dupe styles that conflict with <hr> element
|
1 |
efrain |
170 |
}
|
|
|
171 |
|
|
|
172 |
// Links, buttons, and more within the dropdown menu
|
|
|
173 |
//
|
|
|
174 |
// `<button>`-specific styles are denoted with `// For <button>s`
|
|
|
175 |
.dropdown-item {
|
|
|
176 |
display: block;
|
|
|
177 |
width: 100%; // For `<button>`s
|
1441 |
ariadna |
178 |
padding: var(--#{$prefix}dropdown-item-padding-y) var(--#{$prefix}dropdown-item-padding-x);
|
1 |
efrain |
179 |
clear: both;
|
|
|
180 |
font-weight: $font-weight-normal;
|
1441 |
ariadna |
181 |
color: var(--#{$prefix}dropdown-link-color);
|
1 |
efrain |
182 |
text-align: inherit; // For `<button>`s
|
|
|
183 |
text-decoration: if($link-decoration == none, null, none);
|
|
|
184 |
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
|
|
185 |
background-color: transparent; // For `<button>`s
|
|
|
186 |
border: 0; // For `<button>`s
|
1441 |
ariadna |
187 |
@include border-radius(var(--#{$prefix}dropdown-item-border-radius, 0));
|
1 |
efrain |
188 |
|
1441 |
ariadna |
189 |
&:hover,
|
|
|
190 |
&:focus {
|
|
|
191 |
color: var(--#{$prefix}dropdown-link-hover-color);
|
|
|
192 |
text-decoration: if($link-hover-decoration == underline, none, null);
|
|
|
193 |
@include gradient-bg(var(--#{$prefix}dropdown-link-hover-bg));
|
1 |
efrain |
194 |
}
|
|
|
195 |
|
|
|
196 |
&.active,
|
|
|
197 |
&:active {
|
1441 |
ariadna |
198 |
color: var(--#{$prefix}dropdown-link-active-color);
|
1 |
efrain |
199 |
text-decoration: none;
|
1441 |
ariadna |
200 |
@include gradient-bg(var(--#{$prefix}dropdown-link-active-bg));
|
1 |
efrain |
201 |
}
|
|
|
202 |
|
|
|
203 |
&.disabled,
|
|
|
204 |
&:disabled {
|
1441 |
ariadna |
205 |
color: var(--#{$prefix}dropdown-link-disabled-color);
|
1 |
efrain |
206 |
pointer-events: none;
|
|
|
207 |
background-color: transparent;
|
|
|
208 |
// Remove CSS gradients if they're enabled
|
1441 |
ariadna |
209 |
background-image: if($enable-gradients, none, null);
|
1 |
efrain |
210 |
}
|
|
|
211 |
}
|
|
|
212 |
|
|
|
213 |
.dropdown-menu.show {
|
|
|
214 |
display: block;
|
|
|
215 |
}
|
|
|
216 |
|
|
|
217 |
// Dropdown section headers
|
|
|
218 |
.dropdown-header {
|
|
|
219 |
display: block;
|
1441 |
ariadna |
220 |
padding: var(--#{$prefix}dropdown-header-padding-y) var(--#{$prefix}dropdown-header-padding-x);
|
1 |
efrain |
221 |
margin-bottom: 0; // for use with heading elements
|
|
|
222 |
@include font-size($font-size-sm);
|
1441 |
ariadna |
223 |
color: var(--#{$prefix}dropdown-header-color);
|
1 |
efrain |
224 |
white-space: nowrap; // as with > li > a
|
|
|
225 |
}
|
|
|
226 |
|
|
|
227 |
// Dropdown text
|
|
|
228 |
.dropdown-item-text {
|
|
|
229 |
display: block;
|
1441 |
ariadna |
230 |
padding: var(--#{$prefix}dropdown-item-padding-y) var(--#{$prefix}dropdown-item-padding-x);
|
|
|
231 |
color: var(--#{$prefix}dropdown-link-color);
|
1 |
efrain |
232 |
}
|
1441 |
ariadna |
233 |
|
|
|
234 |
// Dark dropdowns
|
|
|
235 |
.dropdown-menu-dark {
|
|
|
236 |
// scss-docs-start dropdown-dark-css-vars
|
|
|
237 |
--#{$prefix}dropdown-color: #{$dropdown-dark-color};
|
|
|
238 |
--#{$prefix}dropdown-bg: #{$dropdown-dark-bg};
|
|
|
239 |
--#{$prefix}dropdown-border-color: #{$dropdown-dark-border-color};
|
|
|
240 |
--#{$prefix}dropdown-box-shadow: #{$dropdown-dark-box-shadow};
|
|
|
241 |
--#{$prefix}dropdown-link-color: #{$dropdown-dark-link-color};
|
|
|
242 |
--#{$prefix}dropdown-link-hover-color: #{$dropdown-dark-link-hover-color};
|
|
|
243 |
--#{$prefix}dropdown-divider-bg: #{$dropdown-dark-divider-bg};
|
|
|
244 |
--#{$prefix}dropdown-link-hover-bg: #{$dropdown-dark-link-hover-bg};
|
|
|
245 |
--#{$prefix}dropdown-link-active-color: #{$dropdown-dark-link-active-color};
|
|
|
246 |
--#{$prefix}dropdown-link-active-bg: #{$dropdown-dark-link-active-bg};
|
|
|
247 |
--#{$prefix}dropdown-link-disabled-color: #{$dropdown-dark-link-disabled-color};
|
|
|
248 |
--#{$prefix}dropdown-header-color: #{$dropdown-dark-header-color};
|
|
|
249 |
// scss-docs-end dropdown-dark-css-vars
|
|
|
250 |
}
|