jobdone-shared-files 1.1.19 → 1.1.20-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1745 @@
1
+ // Variables
2
+ //
3
+ // Variables should follow the `$component-state-property-size` formula for
4
+ // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
5
+
6
+ @use "sass:color";
7
+
8
+ // Color system
9
+
10
+ // scss-docs-start gray-color-variables
11
+ $white: #fff !default;
12
+ $gray-100: #f9f9fd !default;
13
+ $gray-200: #e8edf4 !default;
14
+ $gray-300: #DBE2E7 !default;
15
+ $gray-400: #CED7E0 !default;
16
+ $gray-500: #A9B3BD !default;
17
+ $gray-600: #677889 !default;
18
+ $gray-700: #495562 !default;
19
+ $gray-800: #2D4155 !default;
20
+ $gray-900: #1A2632 !default;
21
+ $black: #000 !default;
22
+ // scss-docs-end gray-color-variables
23
+
24
+ // fusv-disable
25
+ // scss-docs-start gray-colors-map
26
+ $grays: (
27
+ "100": $gray-100,
28
+ "200": $gray-200,
29
+ "300": $gray-300,
30
+ "400": $gray-400,
31
+ "500": $gray-500,
32
+ "600": $gray-600,
33
+ "700": $gray-700,
34
+ "800": $gray-800,
35
+ "900": $gray-900
36
+ ) !default;
37
+ // scss-docs-end gray-colors-map
38
+ // fusv-enable
39
+
40
+ // scss-docs-start color-variables
41
+ $blue: #4F94FF !default;
42
+ $indigo: #1A62E3 !default;
43
+ $purple: #647AF1 !default;
44
+ $pink: #ED7AAD !default;
45
+ $red: #DC3D4E !default;
46
+ $orange: #FCA053 !default;
47
+ $yellow: #F8C945 !default;
48
+ $green: #47B684 !default;
49
+ $teal: #01B9B9 !default;
50
+ $cyan: #24BCE7 !default;
51
+ // scss-docs-end color-variables
52
+
53
+ // scss-docs-start colors-map
54
+ $colors: (
55
+ "blue": $blue,
56
+ "indigo": $indigo,
57
+ "purple": $purple,
58
+ "pink": $pink,
59
+ "red": $red,
60
+ "orange": $orange,
61
+ "yellow": $yellow,
62
+ "green": $green,
63
+ "teal": $teal,
64
+ "cyan": $cyan,
65
+ "black": $black,
66
+ "white": $white,
67
+ "gray": $gray-600,
68
+ "gray-dark": $gray-800
69
+ ) !default;
70
+ // scss-docs-end colors-map
71
+
72
+ // The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
73
+ // See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
74
+ $min-contrast-ratio: 2 !default;
75
+
76
+ // Customize the light and dark text colors for use in our color contrast function.
77
+ $color-contrast-dark: $gray-800 !default;
78
+ $color-contrast-light: $white !default;
79
+
80
+ // fusv-disable
81
+ $blue-100: tint-color($blue, 91%) !default;
82
+ $blue-200: tint-color($blue, 60%) !default;
83
+ $blue-300: tint-color($blue, 40%) !default;
84
+ $blue-400: tint-color($blue, 20%) !default;
85
+ $blue-500: $blue !default;
86
+ $blue-600: shade-color($blue, 20%) !default;
87
+ $blue-700: shade-color($blue, 40%) !default;
88
+ $blue-800: shade-color($blue, 60%) !default;
89
+ $blue-900: shade-color($blue, 80%) !default;
90
+
91
+ $indigo-100: tint-color($indigo, 80%) !default;
92
+ $indigo-200: tint-color($indigo, 60%) !default;
93
+ $indigo-300: tint-color($indigo, 40%) !default;
94
+ $indigo-400: tint-color($indigo, 20%) !default;
95
+ $indigo-500: $indigo !default;
96
+ $indigo-600: shade-color($indigo, 20%) !default;
97
+ $indigo-700: shade-color($indigo, 40%) !default;
98
+ $indigo-800: shade-color($indigo, 60%) !default;
99
+ $indigo-900: shade-color($indigo, 80%) !default;
100
+
101
+ $purple-100: tint-color($purple, 90%) !default;
102
+ $purple-200: tint-color($purple, 60%) !default;
103
+ $purple-300: tint-color($purple, 40%) !default;
104
+ $purple-400: tint-color($purple, 20%) !default;
105
+ $purple-500: $purple !default;
106
+ $purple-600: shade-color($purple, 20%) !default;
107
+ $purple-700: shade-color($purple, 40%) !default;
108
+ $purple-800: shade-color($purple, 60%) !default;
109
+ $purple-900: shade-color($purple, 80%) !default;
110
+
111
+ $pink-100: tint-color($pink, 80%) !default;
112
+ $pink-200: tint-color($pink, 60%) !default;
113
+ $pink-300: tint-color($pink, 40%) !default;
114
+ $pink-400: tint-color($pink, 20%) !default;
115
+ $pink-500: $pink !default;
116
+ $pink-600: shade-color($pink, 20%) !default;
117
+ $pink-700: shade-color($pink, 40%) !default;
118
+ $pink-800: shade-color($pink, 60%) !default;
119
+ $pink-900: shade-color($pink, 80%) !default;
120
+
121
+ $red-100: tint-color($red, 80%) !default;
122
+ $red-200: tint-color($red, 60%) !default;
123
+ $red-300: tint-color($red, 40%) !default;
124
+ $red-400: tint-color($red, 20%) !default;
125
+ $red-500: $red !default;
126
+ $red-600: shade-color($red, 20%) !default;
127
+ $red-700: shade-color($red, 40%) !default;
128
+ $red-800: shade-color($red, 60%) !default;
129
+ $red-900: shade-color($red, 80%) !default;
130
+
131
+ $orange-100: tint-color($orange, 80%) !default;
132
+ $orange-200: tint-color($orange, 60%) !default;
133
+ $orange-300: tint-color($orange, 40%) !default;
134
+ $orange-400: tint-color($orange, 20%) !default;
135
+ $orange-500: $orange !default;
136
+ $orange-600: shade-color($orange, 20%) !default;
137
+ $orange-700: shade-color($orange, 40%) !default;
138
+ $orange-800: shade-color($orange, 60%) !default;
139
+ $orange-900: shade-color($orange, 80%) !default;
140
+
141
+ $yellow-100: tint-color($yellow, 80%) !default;
142
+ $yellow-200: tint-color($yellow, 60%) !default;
143
+ $yellow-300: tint-color($yellow, 40%) !default;
144
+ $yellow-400: tint-color($yellow, 20%) !default;
145
+ $yellow-500: $yellow !default;
146
+ $yellow-600: shade-color($yellow, 20%) !default;
147
+ $yellow-700: shade-color($yellow, 40%) !default;
148
+ $yellow-800: shade-color($yellow, 60%) !default;
149
+ $yellow-900: shade-color($yellow, 80%) !default;
150
+
151
+ $green-100: tint-color($green, 80%) !default;
152
+ $green-200: tint-color($green, 60%) !default;
153
+ $green-300: tint-color($green, 40%) !default;
154
+ $green-400: tint-color($green, 20%) !default;
155
+ $green-500: $green !default;
156
+ $green-600: shade-color($green, 20%) !default;
157
+ $green-700: shade-color($green, 40%) !default;
158
+ $green-800: shade-color($green, 60%) !default;
159
+ $green-900: shade-color($green, 80%) !default;
160
+
161
+ $teal-100: tint-color($teal, 80%) !default;
162
+ $teal-200: tint-color($teal, 60%) !default;
163
+ $teal-300: tint-color($teal, 40%) !default;
164
+ $teal-400: tint-color($teal, 20%) !default;
165
+ $teal-500: $teal !default;
166
+ $teal-600: shade-color($teal, 20%) !default;
167
+ $teal-700: shade-color($teal, 40%) !default;
168
+ $teal-800: shade-color($teal, 60%) !default;
169
+ $teal-900: shade-color($teal, 80%) !default;
170
+
171
+ $cyan-100: tint-color($cyan, 80%) !default;
172
+ $cyan-200: tint-color($cyan, 60%) !default;
173
+ $cyan-300: tint-color($cyan, 40%) !default;
174
+ $cyan-400: tint-color($cyan, 20%) !default;
175
+ $cyan-500: $cyan !default;
176
+ $cyan-600: shade-color($cyan, 20%) !default;
177
+ $cyan-700: shade-color($cyan, 40%) !default;
178
+ $cyan-800: shade-color($cyan, 60%) !default;
179
+ $cyan-900: shade-color($cyan, 80%) !default;
180
+
181
+ $blues: (
182
+ "blue-100": $blue-100,
183
+ "blue-200": $blue-200,
184
+ "blue-300": $blue-300,
185
+ "blue-400": $blue-400,
186
+ "blue-500": $blue-500,
187
+ "blue-600": $blue-600,
188
+ "blue-700": $blue-700,
189
+ "blue-800": $blue-800,
190
+ "blue-900": $blue-900
191
+ ) !default;
192
+
193
+ $indigos: (
194
+ "indigo-100": $indigo-100,
195
+ "indigo-200": $indigo-200,
196
+ "indigo-300": $indigo-300,
197
+ "indigo-400": $indigo-400,
198
+ "indigo-500": $indigo-500,
199
+ "indigo-600": $indigo-600,
200
+ "indigo-700": $indigo-700,
201
+ "indigo-800": $indigo-800,
202
+ "indigo-900": $indigo-900
203
+ ) !default;
204
+
205
+ $purples: (
206
+ "purple-100": $purple-100,
207
+ "purple-200": $purple-200,
208
+ "purple-300": $purple-300,
209
+ "purple-400": $purple-400,
210
+ "purple-500": $purple-500,
211
+ "purple-600": $purple-600,
212
+ "purple-700": $purple-700,
213
+ "purple-800": $purple-800,
214
+ "purple-900": $purple-900
215
+ ) !default;
216
+
217
+ $pinks: (
218
+ "pink-100": $pink-100,
219
+ "pink-200": $pink-200,
220
+ "pink-300": $pink-300,
221
+ "pink-400": $pink-400,
222
+ "pink-500": $pink-500,
223
+ "pink-600": $pink-600,
224
+ "pink-700": $pink-700,
225
+ "pink-800": $pink-800,
226
+ "pink-900": $pink-900
227
+ ) !default;
228
+
229
+ $reds: (
230
+ "red-100": $red-100,
231
+ "red-200": $red-200,
232
+ "red-300": $red-300,
233
+ "red-400": $red-400,
234
+ "red-500": $red-500,
235
+ "red-600": $red-600,
236
+ "red-700": $red-700,
237
+ "red-800": $red-800,
238
+ "red-900": $red-900
239
+ ) !default;
240
+
241
+ $oranges: (
242
+ "orange-100": $orange-100,
243
+ "orange-200": $orange-200,
244
+ "orange-300": $orange-300,
245
+ "orange-400": $orange-400,
246
+ "orange-500": $orange-500,
247
+ "orange-600": $orange-600,
248
+ "orange-700": $orange-700,
249
+ "orange-800": $orange-800,
250
+ "orange-900": $orange-900
251
+ ) !default;
252
+
253
+ $yellows: (
254
+ "yellow-100": $yellow-100,
255
+ "yellow-200": $yellow-200,
256
+ "yellow-300": $yellow-300,
257
+ "yellow-400": $yellow-400,
258
+ "yellow-500": $yellow-500,
259
+ "yellow-600": $yellow-600,
260
+ "yellow-700": $yellow-700,
261
+ "yellow-800": $yellow-800,
262
+ "yellow-900": $yellow-900
263
+ ) !default;
264
+
265
+ $greens: (
266
+ "green-100": $green-100,
267
+ "green-200": $green-200,
268
+ "green-300": $green-300,
269
+ "green-400": $green-400,
270
+ "green-500": $green-500,
271
+ "green-600": $green-600,
272
+ "green-700": $green-700,
273
+ "green-800": $green-800,
274
+ "green-900": $green-900
275
+ ) !default;
276
+
277
+ $teals: (
278
+ "teal-100": $teal-100,
279
+ "teal-200": $teal-200,
280
+ "teal-300": $teal-300,
281
+ "teal-400": $teal-400,
282
+ "teal-500": $teal-500,
283
+ "teal-600": $teal-600,
284
+ "teal-700": $teal-700,
285
+ "teal-800": $teal-800,
286
+ "teal-900": $teal-900
287
+ ) !default;
288
+
289
+ $cyans: (
290
+ "cyan-100": $cyan-100,
291
+ "cyan-200": $cyan-200,
292
+ "cyan-300": $cyan-300,
293
+ "cyan-400": $cyan-400,
294
+ "cyan-500": $cyan-500,
295
+ "cyan-600": $cyan-600,
296
+ "cyan-700": $cyan-700,
297
+ "cyan-800": $cyan-800,
298
+ "cyan-900": $cyan-900
299
+ ) !default;
300
+ // fusv-enable
301
+
302
+ // scss-docs-start theme-color-variables
303
+ $primary: $purple !default;
304
+ $secondary: $gray-600 !default;
305
+ $success: $green !default;
306
+ $info: $cyan !default;
307
+ $warning: $yellow !default;
308
+ $danger: $red !default;
309
+ $light: $gray-100 !default;
310
+ $dark: $gray-900 !default;
311
+ // scss-docs-end theme-color-variables
312
+
313
+ // scss-docs-start theme-colors-map
314
+ $theme-colors: (
315
+ "primary": $primary,
316
+ "secondary": $secondary,
317
+ "success": $success,
318
+ "info": $info,
319
+ "warning": $warning,
320
+ "danger": $danger,
321
+ "light": $light,
322
+ "dark": $dark
323
+ ) !default;
324
+ // scss-docs-end theme-colors-map
325
+
326
+ // scss-docs-start theme-text-variables
327
+ $primary-text-emphasis: shade-color($primary, 60%) !default;
328
+ $secondary-text-emphasis: shade-color($secondary, 60%) !default;
329
+ $success-text-emphasis: shade-color($success, 60%) !default;
330
+ $info-text-emphasis: shade-color($info, 60%) !default;
331
+ $warning-text-emphasis: shade-color($warning, 60%) !default;
332
+ $danger-text-emphasis: shade-color($danger, 60%) !default;
333
+ $light-text-emphasis: $gray-700 !default;
334
+ $dark-text-emphasis: $gray-700 !default;
335
+ // scss-docs-end theme-text-variables
336
+
337
+ // scss-docs-start theme-bg-subtle-variables
338
+ $primary-bg-subtle: tint-color($primary, 80%) !default;
339
+ $secondary-bg-subtle: tint-color($secondary, 80%) !default;
340
+ $success-bg-subtle: tint-color($success, 80%) !default;
341
+ $info-bg-subtle: tint-color($info, 80%) !default;
342
+ $warning-bg-subtle: tint-color($warning, 80%) !default;
343
+ $danger-bg-subtle: tint-color($danger, 80%) !default;
344
+ $light-bg-subtle: color.mix($gray-100, $white) !default;
345
+ $dark-bg-subtle: $gray-400 !default;
346
+ // scss-docs-end theme-bg-subtle-variables
347
+
348
+ // scss-docs-start theme-border-subtle-variables
349
+ $primary-border-subtle: tint-color($primary, 60%) !default;
350
+ $secondary-border-subtle: tint-color($secondary, 60%) !default;
351
+ $success-border-subtle: tint-color($success, 60%) !default;
352
+ $info-border-subtle: tint-color($info, 60%) !default;
353
+ $warning-border-subtle: tint-color($warning, 60%) !default;
354
+ $danger-border-subtle: tint-color($danger, 60%) !default;
355
+ $light-border-subtle: $gray-200 !default;
356
+ $dark-border-subtle: $gray-500 !default;
357
+ // scss-docs-end theme-border-subtle-variables
358
+
359
+ // Characters which are escaped by the escape-svg function
360
+ $escaped-characters: (
361
+ ("<", "%3c"),
362
+ (">", "%3e"),
363
+ ("#", "%23"),
364
+ ("(", "%28"),
365
+ (")", "%29"),
366
+ ) !default;
367
+
368
+ // Options
369
+ //
370
+ // Quickly modify global styling by enabling or disabling optional features.
371
+
372
+ $enable-caret: true !default;
373
+ $enable-rounded: true !default;
374
+ $enable-shadows: false !default;
375
+ $enable-gradients: false !default;
376
+ $enable-transitions: true !default;
377
+ $enable-reduced-motion: true !default;
378
+ $enable-smooth-scroll: true !default;
379
+ $enable-grid-classes: true !default;
380
+ $enable-container-classes: true !default;
381
+ $enable-cssgrid: false !default;
382
+ $enable-button-pointers: true !default;
383
+ $enable-rfs: true !default;
384
+ $enable-validation-icons: true !default;
385
+ $enable-negative-margins: false !default;
386
+ $enable-deprecation-messages: true !default;
387
+ $enable-important-utilities: true !default;
388
+
389
+ $enable-dark-mode: true !default;
390
+ $color-mode-type: data !default; // `data` or `media-query`
391
+
392
+ // Prefix for :root CSS variables
393
+
394
+ $variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`
395
+ $prefix: $variable-prefix !default;
396
+
397
+ // Gradient
398
+ //
399
+ // The gradient which is added to components if `$enable-gradients` is `true`
400
+ // This gradient is also added to elements with `.bg-gradient`
401
+ // scss-docs-start variable-gradient
402
+ $gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;
403
+ // scss-docs-end variable-gradient
404
+
405
+ // Spacing
406
+ //
407
+ // Control the default styling of most Bootstrap elements by modifying these
408
+ // variables. Mostly focused on spacing.
409
+ // You can add more entries to the $spacers map, should you need more variation.
410
+
411
+ // scss-docs-start spacer-variables-maps
412
+ $spacer: 1rem !default;
413
+ $spacers: (
414
+ 0: 0,
415
+ 1: $spacer * .25,
416
+ 2: $spacer * .5,
417
+ 3: $spacer,
418
+ 4: $spacer * 1.5,
419
+ 5: $spacer * 3,
420
+ ) !default;
421
+ // scss-docs-end spacer-variables-maps
422
+
423
+ // Position
424
+ //
425
+ // Define the edge positioning anchors of the position utilities.
426
+
427
+ // scss-docs-start position-map
428
+ $position-values: (
429
+ 0: 0,
430
+ 50: 50%,
431
+ 100: 100%
432
+ ) !default;
433
+ // scss-docs-end position-map
434
+
435
+ // Body
436
+ //
437
+ // Settings for the `<body>` element.
438
+
439
+ $body-text-align: null !default;
440
+ $body-color: $gray-600 !default;
441
+ $body-bg: $white !default;
442
+
443
+ $body-secondary-color: rgba($body-color, .5) !default;
444
+ $body-secondary-bg: $gray-200 !default;
445
+
446
+ $body-tertiary-color: rgba($body-color, .5) !default;
447
+ $body-tertiary-bg: $gray-100 !default;
448
+
449
+ $body-emphasis-color: $gray-800 !default;
450
+
451
+ // Links
452
+ //
453
+ // Style anchor elements.
454
+
455
+ $link-color: $primary !default;
456
+ $link-decoration: underline !default;
457
+ $link-shade-percentage: 20% !default;
458
+ $link-hover-color: shift-color($link-color, $link-shade-percentage) !default;
459
+ $link-hover-decoration: null !default;
460
+
461
+ $stretched-link-pseudo-element: after !default;
462
+ $stretched-link-z-index: 1 !default;
463
+
464
+ // Icon links
465
+ // scss-docs-start icon-link-variables
466
+ $icon-link-gap: .375rem !default;
467
+ $icon-link-underline-offset: .25em !default;
468
+ $icon-link-icon-size: 1em !default;
469
+ $icon-link-icon-transition: .2s ease-in-out transform !default;
470
+ $icon-link-icon-transform: translate3d(.25em, 0, 0) !default;
471
+ // scss-docs-end icon-link-variables
472
+
473
+ // Paragraphs
474
+ //
475
+ // Style p element.
476
+
477
+ $paragraph-margin-bottom: 1rem !default;
478
+
479
+
480
+ // Grid breakpoints
481
+ //
482
+ // Define the minimum dimensions at which your layout will change,
483
+ // adapting to different screen sizes, for use in media queries.
484
+
485
+ // scss-docs-start grid-breakpoints
486
+ $grid-breakpoints: (
487
+ xs: 0,
488
+ sm: 576px,
489
+ md: 768px,
490
+ lg: 992px,
491
+ xl: 1200px,
492
+ xxl: 1400px
493
+ ) !default;
494
+ // scss-docs-end grid-breakpoints
495
+
496
+ @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
497
+ @include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
498
+
499
+
500
+ // Grid containers
501
+ //
502
+ // Define the maximum width of `.container` for different screen sizes.
503
+
504
+ // scss-docs-start container-max-widths
505
+ $container-max-widths: (
506
+ sm: 540px,
507
+ md: 720px,
508
+ lg: 960px,
509
+ xl: 1140px,
510
+ xxl: 1320px
511
+ ) !default;
512
+ // scss-docs-end container-max-widths
513
+
514
+ @include _assert-ascending($container-max-widths, "$container-max-widths");
515
+
516
+
517
+ // Grid columns
518
+ //
519
+ // Set the number of columns and specify the width of the gutters.
520
+
521
+ $grid-columns: 12 !default;
522
+ $grid-gutter-width: 1.5rem !default;
523
+ $grid-row-columns: 6 !default;
524
+
525
+ // Container padding
526
+
527
+ $container-padding-x: $grid-gutter-width !default;
528
+
529
+
530
+ // Components
531
+ //
532
+ // Define common padding and border radius sizes and more.
533
+
534
+ // scss-docs-start border-variables
535
+ $border-width: 1px !default;
536
+ $border-widths: (
537
+ 1: 1px,
538
+ 2: 2px,
539
+ 3: 3px,
540
+ 4: 4px,
541
+ 5: 5px
542
+ ) !default;
543
+ $border-style: solid !default;
544
+ $border-color: $gray-300 !default;
545
+ $border-color-translucent: rgba($gray-300, .5) !default;
546
+ // scss-docs-end border-variables
547
+
548
+ // scss-docs-start border-radius-variables
549
+ $border-radius: .375rem !default;
550
+ $border-radius-sm: .25rem !default;
551
+ $border-radius-lg: .5rem !default;
552
+ $border-radius-xl: 1rem !default;
553
+ $border-radius-xxl: 2rem !default;
554
+ $border-radius-pill: 50rem !default;
555
+ // scss-docs-end border-radius-variables
556
+ // fusv-disable
557
+ $border-radius-2xl: $border-radius-xxl !default; // Deprecated in v5.3.0
558
+ // fusv-enable
559
+
560
+ // scss-docs-start box-shadow-variables
561
+ $box-shadow: 0 .5rem 1rem rgba($gray-700, .15) !default;
562
+ $box-shadow-sm: 0 .125rem .25rem rgba($gray-700, .075) !default;
563
+ $box-shadow-lg: 0 1rem 3rem rgba($gray-700, .175) !default;
564
+ $box-shadow-inset: inset 0 1px 2px rgba($gray-700, .075) !default;
565
+ // scss-docs-end box-shadow-variables
566
+
567
+ $component-active-color: $white !default;
568
+ $component-active-bg: $primary !default;
569
+
570
+ // scss-docs-start focus-ring-variables
571
+ $focus-ring-width: .25rem !default;
572
+ $focus-ring-opacity: .25 !default;
573
+ $focus-ring-color: rgba($primary, $focus-ring-opacity) !default;
574
+ $focus-ring-blur: 0 !default;
575
+ $focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;
576
+ // scss-docs-end focus-ring-variables
577
+
578
+ // scss-docs-start caret-variables
579
+ $caret-width: .3em !default;
580
+ $caret-vertical-align: $caret-width * .85 !default;
581
+ $caret-spacing: $caret-width * .85 !default;
582
+ // scss-docs-end caret-variables
583
+
584
+ $transition-base: all .2s ease-in-out !default;
585
+ $transition-fade: opacity .15s linear !default;
586
+ // scss-docs-start collapse-transition
587
+ $transition-collapse: height .35s ease !default;
588
+ $transition-collapse-width: width .35s ease !default;
589
+ // scss-docs-end collapse-transition
590
+
591
+ // stylelint-disable function-disallowed-list
592
+ // scss-docs-start aspect-ratios
593
+ $aspect-ratios: (
594
+ "1x1": 100%,
595
+ "4x3": calc(3 / 4 * 100%),
596
+ "16x9": calc(9 / 16 * 100%),
597
+ "21x9": calc(9 / 21 * 100%)
598
+ ) !default;
599
+ // scss-docs-end aspect-ratios
600
+ // stylelint-enable function-disallowed-list
601
+
602
+ // Typography
603
+ //
604
+ // Font, line-height, and color for body text, headings, and more.
605
+
606
+ // scss-docs-start font-variables
607
+ // stylelint-disable value-keyword-case
608
+ $font-family-sans-serif: "Lato", "Noto Sans TC", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
609
+ $font-family-monospace: "Roboto Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
610
+ // stylelint-enable value-keyword-case
611
+ $font-family-base: var(--#{$prefix}font-sans-serif) !default;
612
+ $font-family-code: var(--#{$prefix}font-monospace) !default;
613
+
614
+ // $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
615
+ // $font-size-base affects the font size of the body text
616
+ $font-size-root: null !default;
617
+ $font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
618
+ $font-size-sm: $font-size-base * .875 !default;
619
+ $font-size-lg: $font-size-base * 1.25 !default;
620
+
621
+ $font-weight-lighter: lighter !default;
622
+ $font-weight-light: 300 !default;
623
+ $font-weight-normal: 400 !default;
624
+ $font-weight-medium: 500 !default;
625
+ $font-weight-semibold: 600 !default;
626
+ $font-weight-bold: 700 !default;
627
+ $font-weight-bolder: bolder !default;
628
+
629
+ $font-weight-base: $font-weight-normal !default;
630
+
631
+ $line-height-base: 1.5 !default;
632
+ $line-height-sm: 1.25 !default;
633
+ $line-height-lg: 2 !default;
634
+
635
+ $h1-font-size: $font-size-base * 2.5 !default;
636
+ $h2-font-size: $font-size-base * 2 !default;
637
+ $h3-font-size: $font-size-base * 1.75 !default;
638
+ $h4-font-size: $font-size-base * 1.5 !default;
639
+ $h5-font-size: $font-size-base * 1.25 !default;
640
+ $h6-font-size: $font-size-base !default;
641
+ // scss-docs-end font-variables
642
+
643
+ // scss-docs-start font-sizes
644
+ $font-sizes: (
645
+ 1: $h1-font-size,
646
+ 2: $h2-font-size,
647
+ 3: $h3-font-size,
648
+ 4: $h4-font-size,
649
+ 5: $h5-font-size,
650
+ 6: $h6-font-size
651
+ ) !default;
652
+ // scss-docs-end font-sizes
653
+
654
+ // scss-docs-start headings-variables
655
+ $headings-margin-bottom: $spacer * .5 !default;
656
+ $headings-font-family: null !default;
657
+ $headings-font-style: null !default;
658
+ $headings-font-weight: 500 !default;
659
+ $headings-line-height: 1.2 !default;
660
+ $headings-color: inherit !default;
661
+ // scss-docs-end headings-variables
662
+
663
+ // scss-docs-start display-headings
664
+ $display-font-sizes: (
665
+ 1: 5rem,
666
+ 2: 4.5rem,
667
+ 3: 4rem,
668
+ 4: 3.5rem,
669
+ 5: 3rem,
670
+ 6: 2.5rem
671
+ ) !default;
672
+
673
+ $display-font-family: null !default;
674
+ $display-font-style: null !default;
675
+ $display-font-weight: 300 !default;
676
+ $display-line-height: $headings-line-height !default;
677
+ // scss-docs-end display-headings
678
+
679
+ // scss-docs-start type-variables
680
+ $lead-font-size: $font-size-base * 1.25 !default;
681
+ $lead-font-weight: 300 !default;
682
+
683
+ $small-font-size: .875em !default;
684
+
685
+ $sub-sup-font-size: .75em !default;
686
+
687
+ // fusv-disable
688
+ $text-muted: var(--#{$prefix}secondary-color) !default; // Deprecated in 5.3.0
689
+ // fusv-enable
690
+
691
+ $initialism-font-size: $small-font-size !default;
692
+
693
+ $blockquote-margin-y: $spacer !default;
694
+ $blockquote-font-size: $font-size-base * 1.25 !default;
695
+ $blockquote-footer-color: $gray-600 !default;
696
+ $blockquote-footer-font-size: $small-font-size !default;
697
+
698
+ $hr-margin-y: $spacer !default;
699
+ $hr-color: inherit !default;
700
+
701
+ // fusv-disable
702
+ $hr-bg-color: null !default; // Deprecated in v5.2.0
703
+ $hr-height: null !default; // Deprecated in v5.2.0
704
+ // fusv-enable
705
+
706
+ $hr-border-color: null !default; // Allows for inherited colors
707
+ $hr-border-width: var(--#{$prefix}border-width) !default;
708
+ $hr-opacity: .25 !default;
709
+
710
+ $legend-margin-bottom: .5rem !default;
711
+ $legend-font-size: 1.5rem !default;
712
+ $legend-font-weight: null !default;
713
+
714
+ $dt-font-weight: $font-weight-bold !default;
715
+
716
+ $list-inline-padding: .5rem !default;
717
+
718
+ $mark-padding: .1875em !default;
719
+ $mark-bg: $yellow-100 !default;
720
+ // scss-docs-end type-variables
721
+
722
+
723
+ // Tables
724
+ //
725
+ // Customizes the `.table` component with basic values, each used across all table variations.
726
+
727
+ // scss-docs-start table-variables
728
+ $table-cell-padding-y: .5rem !default;
729
+ $table-cell-padding-x: .5rem !default;
730
+ $table-cell-padding-y-sm: .25rem !default;
731
+ $table-cell-padding-x-sm: .25rem !default;
732
+
733
+ $table-cell-vertical-align: top !default;
734
+
735
+ $table-color: var(--#{$prefix}body-color) !default;
736
+ $table-bg: var(--#{$prefix}body-bg) !default;
737
+ $table-accent-bg: transparent !default;
738
+
739
+ $table-th-font-weight: null !default;
740
+
741
+ $table-striped-color: $table-color !default;
742
+ $table-striped-bg-factor: .03 !default;
743
+ $table-striped-bg: var(--gray-100) !default;
744
+
745
+ $table-active-color: $primary !default;
746
+ $table-active-bg-factor: .075 !default;
747
+ $table-active-bg: rgba($primary, $table-active-bg-factor) !default;
748
+
749
+ $table-hover-color: $primary !default;
750
+ $table-hover-bg-factor: .075 !default;
751
+ $table-hover-bg: rgba($blue, $table-hover-bg-factor) !default;
752
+
753
+ $table-border-factor: .1 !default;
754
+ $table-border-width: var(--#{$prefix}border-width) !default;
755
+ $table-border-color: var(--#{$prefix}border-color) !default;
756
+
757
+ $table-striped-order: odd !default;
758
+ $table-striped-columns-order: even !default;
759
+
760
+ $table-group-separator-color: currentcolor !default;
761
+
762
+ $table-caption-color: var(--#{$prefix}secondary-color) !default;
763
+
764
+ $table-bg-scale: -80% !default;
765
+ // scss-docs-end table-variables
766
+
767
+ // scss-docs-start table-loop
768
+ $table-variants: (
769
+ "primary": shift-color($primary, $table-bg-scale),
770
+ "secondary": shift-color($secondary, $table-bg-scale),
771
+ "success": shift-color($success, $table-bg-scale),
772
+ "info": shift-color($info, $table-bg-scale),
773
+ "warning": shift-color($warning, $table-bg-scale),
774
+ "danger": shift-color($danger, $table-bg-scale),
775
+ "light": $light,
776
+ "dark": $dark,
777
+ ) !default;
778
+ // scss-docs-end table-loop
779
+
780
+
781
+ // Buttons + Forms
782
+ //
783
+ // Shared variables that are reassigned to `$input-` and `$btn-` specific variables.
784
+
785
+ // scss-docs-start input-btn-variables
786
+ $input-btn-padding-y: .375rem !default;
787
+ $input-btn-padding-x: .75rem !default;
788
+ $input-btn-font-family: null !default;
789
+ $input-btn-font-size: $font-size-base !default;
790
+ $input-btn-line-height: $line-height-base !default;
791
+
792
+ $input-btn-focus-width: $focus-ring-width !default;
793
+ $input-btn-focus-color-opacity: $focus-ring-opacity !default;
794
+ $input-btn-focus-color: $focus-ring-color !default;
795
+ $input-btn-focus-blur: $focus-ring-blur !default;
796
+ $input-btn-focus-box-shadow: $focus-ring-box-shadow !default;
797
+
798
+ $input-btn-padding-y-sm: .25rem !default;
799
+ $input-btn-padding-x-sm: .5rem !default;
800
+ $input-btn-font-size-sm: $font-size-sm !default;
801
+
802
+ $input-btn-padding-y-lg: .5rem !default;
803
+ $input-btn-padding-x-lg: 1rem !default;
804
+ $input-btn-font-size-lg: $font-size-lg !default;
805
+
806
+ $input-btn-border-width: var(--#{$prefix}border-width) !default;
807
+ // scss-docs-end input-btn-variables
808
+
809
+
810
+ // Buttons
811
+ //
812
+ // For each of Bootstrap's buttons, define text, background, and border color.
813
+
814
+ // scss-docs-start btn-variables
815
+ $btn-color: var(--#{$prefix}body-color) !default;
816
+ $btn-padding-y: $input-btn-padding-y !default;
817
+ $btn-padding-x: $input-btn-padding-x !default;
818
+ $btn-font-family: $input-btn-font-family !default;
819
+ $btn-font-size: $input-btn-font-size !default;
820
+ $btn-line-height: $input-btn-line-height !default;
821
+ $btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping
822
+
823
+ $btn-padding-y-sm: $input-btn-padding-y-sm !default;
824
+ $btn-padding-x-sm: $input-btn-padding-x-sm !default;
825
+ $btn-font-size-sm: $input-btn-font-size-sm !default;
826
+
827
+ $btn-padding-y-lg: $input-btn-padding-y-lg !default;
828
+ $btn-padding-x-lg: $input-btn-padding-x-lg !default;
829
+ $btn-font-size-lg: $input-btn-font-size-lg !default;
830
+
831
+ $btn-border-width: $input-btn-border-width !default;
832
+
833
+ $btn-font-weight: $font-weight-normal !default;
834
+ $btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($gray-700, .075) !default;
835
+ $btn-focus-width: $input-btn-focus-width !default;
836
+ $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
837
+ $btn-disabled-opacity: .4 !default;
838
+ $btn-active-box-shadow: inset 0 3px 5px rgba($gray-700, .125) !default;
839
+
840
+ $btn-link-color: var(--#{$prefix}link-color) !default;
841
+ $btn-link-hover-color: var(--#{$prefix}link-hover-color) !default;
842
+ $btn-link-disabled-color: $gray-600 !default;
843
+
844
+ // Allows for customizing button radius independently from global border radius
845
+ $btn-border-radius: var(--#{$prefix}border-radius) !default;
846
+ $btn-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
847
+ $btn-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;
848
+
849
+ $btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
850
+
851
+ $btn-hover-bg-shade-amount: 15% !default;
852
+ $btn-hover-bg-tint-amount: 15% !default;
853
+ $btn-hover-border-shade-amount: 20% !default;
854
+ $btn-hover-border-tint-amount: 10% !default;
855
+ $btn-active-bg-shade-amount: 20% !default;
856
+ $btn-active-bg-tint-amount: 20% !default;
857
+ $btn-active-border-shade-amount: 25% !default;
858
+ $btn-active-border-tint-amount: 10% !default;
859
+ // scss-docs-end btn-variables
860
+
861
+
862
+ // Forms
863
+
864
+ // scss-docs-start form-text-variables
865
+ $form-text-margin-top: .25rem !default;
866
+ $form-text-font-size: $small-font-size !default;
867
+ $form-text-font-style: null !default;
868
+ $form-text-font-weight: null !default;
869
+ $form-text-color: var(--#{$prefix}secondary-color) !default;
870
+ // scss-docs-end form-text-variables
871
+
872
+ // scss-docs-start form-label-variables
873
+ $form-label-margin-bottom: .5rem !default;
874
+ $form-label-font-size: null !default;
875
+ $form-label-font-style: null !default;
876
+ $form-label-font-weight: null !default;
877
+ $form-label-color: null !default;
878
+ // scss-docs-end form-label-variables
879
+
880
+ // scss-docs-start form-input-variables
881
+ $input-padding-y: $input-btn-padding-y !default;
882
+ $input-padding-x: $input-btn-padding-x !default;
883
+ $input-font-family: $input-btn-font-family !default;
884
+ $input-font-size: $input-btn-font-size !default;
885
+ $input-font-weight: $font-weight-base !default;
886
+ $input-line-height: $input-btn-line-height !default;
887
+
888
+ $input-padding-y-sm: $input-btn-padding-y-sm !default;
889
+ $input-padding-x-sm: $input-btn-padding-x-sm !default;
890
+ $input-font-size-sm: $input-btn-font-size-sm !default;
891
+
892
+ $input-padding-y-lg: $input-btn-padding-y-lg !default;
893
+ $input-padding-x-lg: $input-btn-padding-x-lg !default;
894
+ $input-font-size-lg: $input-btn-font-size-lg !default;
895
+
896
+ $input-bg: var(--#{$prefix}body-bg) !default;
897
+ $input-disabled-color: null !default;
898
+ $input-disabled-bg: var(--#{$prefix}secondary-bg) !default;
899
+ $input-disabled-border-color: null !default;
900
+
901
+ $input-color: var(--#{$prefix}body-color) !default;
902
+ $input-border-color: var(--#{$prefix}border-color) !default;
903
+ $input-border-width: $input-btn-border-width !default;
904
+ $input-box-shadow: $box-shadow-inset !default;
905
+
906
+ $input-border-radius: var(--#{$prefix}border-radius) !default;
907
+ $input-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
908
+ $input-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;
909
+
910
+ $input-focus-bg: $input-bg !default;
911
+ $input-focus-border-color: tint-color($component-active-bg, 50%) !default;
912
+ $input-focus-color: $input-color !default;
913
+ $input-focus-width: $input-btn-focus-width !default;
914
+ $input-focus-box-shadow: $input-btn-focus-box-shadow !default;
915
+
916
+ $input-placeholder-color: var(--#{$prefix}secondary-color) !default;
917
+ $input-plaintext-color: var(--#{$prefix}body-color) !default;
918
+
919
+ $input-height-border: calc(#{$input-border-width} * 2) !default; // stylelint-disable-line function-disallowed-list
920
+
921
+ $input-height-inner: add($input-line-height * 1em, $input-padding-y * 2) !default;
922
+ $input-height-inner-half: add($input-line-height * .5em, $input-padding-y) !default;
923
+ $input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y * .5) !default;
924
+
925
+ $input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;
926
+ $input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
927
+ $input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
928
+
929
+ $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
930
+
931
+ $form-color-width: 3rem !default;
932
+ // scss-docs-end form-input-variables
933
+
934
+ // scss-docs-start form-check-variables
935
+ $form-check-input-width: 1em !default;
936
+ $form-check-min-height: $font-size-base * $line-height-base !default;
937
+ $form-check-padding-start: $form-check-input-width + .5em !default;
938
+ $form-check-margin-bottom: .125rem !default;
939
+ $form-check-label-color: null !default;
940
+ $form-check-label-cursor: null !default;
941
+ $form-check-transition: null !default;
942
+
943
+ $form-check-input-active-filter: brightness(90%) !default;
944
+
945
+ $form-check-input-bg: $input-bg !default;
946
+ $form-check-input-border: var(--#{$prefix}border-width) solid var(--#{$prefix}border-color) !default;
947
+ $form-check-input-border-radius: .25em !default;
948
+ $form-check-radio-border-radius: 50% !default;
949
+ $form-check-input-focus-border: $input-focus-border-color !default;
950
+ $form-check-input-focus-box-shadow: $focus-ring-box-shadow !default;
951
+
952
+ $form-check-input-checked-color: $component-active-color !default;
953
+ $form-check-input-checked-bg-color: $component-active-bg !default;
954
+ $form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;
955
+ $form-check-input-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$form-check-input-checked-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>") !default;
956
+ $form-check-radio-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='2' fill='#{$form-check-input-checked-color}'/></svg>") !default;
957
+
958
+ $form-check-input-indeterminate-color: $component-active-color !default;
959
+ $form-check-input-indeterminate-bg-color: $component-active-bg !default;
960
+ $form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;
961
+ $form-check-input-indeterminate-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#{$form-check-input-indeterminate-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>") !default;
962
+
963
+ $form-check-input-disabled-opacity: .5 !default;
964
+ $form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;
965
+ $form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;
966
+
967
+ $form-check-inline-margin-end: 1rem !default;
968
+ // scss-docs-end form-check-variables
969
+
970
+ // scss-docs-start form-switch-variables
971
+ $form-switch-color: rgba($black, .25) !default;
972
+ $form-switch-width: 2em !default;
973
+ $form-switch-padding-start: $form-switch-width + .5em !default;
974
+ $form-switch-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-color}'/></svg>") !default;
975
+ $form-switch-border-radius: $form-switch-width !default;
976
+ $form-switch-transition: background-position .15s ease-in-out !default;
977
+
978
+ $form-switch-focus-color: $input-focus-border-color !default;
979
+ $form-switch-focus-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-focus-color}'/></svg>") !default;
980
+
981
+ $form-switch-checked-color: $component-active-color !default;
982
+ $form-switch-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='#{$form-switch-checked-color}'/></svg>") !default;
983
+ $form-switch-checked-bg-position: right center !default;
984
+ // scss-docs-end form-switch-variables
985
+
986
+ // scss-docs-start input-group-variables
987
+ $input-group-addon-padding-y: $input-padding-y !default;
988
+ $input-group-addon-padding-x: $input-padding-x !default;
989
+ $input-group-addon-font-weight: $input-font-weight !default;
990
+ $input-group-addon-color: $input-color !default;
991
+ $input-group-addon-bg: var(--#{$prefix}tertiary-bg) !default;
992
+ $input-group-addon-border-color: $input-border-color !default;
993
+ // scss-docs-end input-group-variables
994
+
995
+ // scss-docs-start form-select-variables
996
+ $form-select-padding-y: $input-padding-y !default;
997
+ $form-select-padding-x: $input-padding-x !default;
998
+ $form-select-font-family: $input-font-family !default;
999
+ $form-select-font-size: $input-font-size !default;
1000
+ $form-select-indicator-padding: $form-select-padding-x * 3 !default; // Extra padding for background-image
1001
+ $form-select-font-weight: $input-font-weight !default;
1002
+ $form-select-line-height: $input-line-height !default;
1003
+ $form-select-color: $input-color !default;
1004
+ $form-select-bg: $input-bg !default;
1005
+ $form-select-disabled-color: null !default;
1006
+ $form-select-disabled-bg: $input-disabled-bg !default;
1007
+ $form-select-disabled-border-color: $input-disabled-border-color !default;
1008
+ $form-select-bg-position: right $form-select-padding-x center !default;
1009
+ $form-select-bg-size: 16px 12px !default; // In pixels because image dimensions
1010
+ $form-select-indicator-color: $gray-800 !default;
1011
+ $form-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$form-select-indicator-color}' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !default;
1012
+
1013
+ $form-select-feedback-icon-padding-end: $form-select-padding-x * 2.5 + $form-select-indicator-padding !default;
1014
+ $form-select-feedback-icon-position: center right $form-select-indicator-padding !default;
1015
+ $form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;
1016
+
1017
+ $form-select-border-width: $input-border-width !default;
1018
+ $form-select-border-color: $input-border-color !default;
1019
+ $form-select-border-radius: $input-border-radius !default;
1020
+ $form-select-box-shadow: $box-shadow-inset !default;
1021
+
1022
+ $form-select-focus-border-color: $input-focus-border-color !default;
1023
+ $form-select-focus-width: $input-focus-width !default;
1024
+ $form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;
1025
+
1026
+ $form-select-padding-y-sm: $input-padding-y-sm !default;
1027
+ $form-select-padding-x-sm: $input-padding-x-sm !default;
1028
+ $form-select-font-size-sm: $input-font-size-sm !default;
1029
+ $form-select-border-radius-sm: $input-border-radius-sm !default;
1030
+
1031
+ $form-select-padding-y-lg: $input-padding-y-lg !default;
1032
+ $form-select-padding-x-lg: $input-padding-x-lg !default;
1033
+ $form-select-font-size-lg: $input-font-size-lg !default;
1034
+ $form-select-border-radius-lg: $input-border-radius-lg !default;
1035
+
1036
+ $form-select-transition: $input-transition !default;
1037
+ // scss-docs-end form-select-variables
1038
+
1039
+ // scss-docs-start form-range-variables
1040
+ $form-range-track-width: 100% !default;
1041
+ $form-range-track-height: .5rem !default;
1042
+ $form-range-track-cursor: pointer !default;
1043
+ $form-range-track-bg: var(--#{$prefix}tertiary-bg) !default;
1044
+ $form-range-track-border-radius: 1rem !default;
1045
+ $form-range-track-box-shadow: $box-shadow-inset !default;
1046
+
1047
+ $form-range-thumb-width: 1rem !default;
1048
+ $form-range-thumb-height: $form-range-thumb-width !default;
1049
+ $form-range-thumb-bg: $component-active-bg !default;
1050
+ $form-range-thumb-border: 0 !default;
1051
+ $form-range-thumb-border-radius: 1rem !default;
1052
+ $form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
1053
+ $form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;
1054
+ $form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge
1055
+ $form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;
1056
+ $form-range-thumb-disabled-bg: var(--#{$prefix}secondary-color) !default;
1057
+ $form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
1058
+ // scss-docs-end form-range-variables
1059
+
1060
+ // scss-docs-start form-file-variables
1061
+ $form-file-button-color: $input-color !default;
1062
+ $form-file-button-bg: var(--#{$prefix}tertiary-bg) !default;
1063
+ $form-file-button-hover-bg: var(--#{$prefix}secondary-bg) !default;
1064
+ // scss-docs-end form-file-variables
1065
+
1066
+ // scss-docs-start form-floating-variables
1067
+ $form-floating-height: add(3.5rem, $input-height-border) !default;
1068
+ $form-floating-line-height: 1.25 !default;
1069
+ $form-floating-padding-x: $input-padding-x !default;
1070
+ $form-floating-padding-y: 1rem !default;
1071
+ $form-floating-input-padding-t: 1.625rem !default;
1072
+ $form-floating-input-padding-b: .625rem !default;
1073
+ $form-floating-label-height: 1.5em !default;
1074
+ $form-floating-label-opacity: .65 !default;
1075
+ $form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;
1076
+ $form-floating-label-disabled-color: $gray-600 !default;
1077
+ $form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;
1078
+ // scss-docs-end form-floating-variables
1079
+
1080
+ // Form validation
1081
+
1082
+ // scss-docs-start form-feedback-variables
1083
+ $form-feedback-margin-top: $form-text-margin-top !default;
1084
+ $form-feedback-font-size: $form-text-font-size !default;
1085
+ $form-feedback-font-style: $form-text-font-style !default;
1086
+ $form-feedback-valid-color: $success !default;
1087
+ $form-feedback-invalid-color: $danger !default;
1088
+
1089
+ $form-feedback-icon-valid-color: $form-feedback-valid-color !default;
1090
+ $form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/></svg>") !default;
1091
+ $form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
1092
+ $form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}'><circle cx='6' cy='6' r='4.5'/><path stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/><circle cx='6' cy='8.2' r='.6' fill='#{$form-feedback-icon-invalid-color}' stroke='none'/></svg>") !default;
1093
+ // scss-docs-end form-feedback-variables
1094
+
1095
+ // scss-docs-start form-validation-colors
1096
+ $form-valid-color: $form-feedback-valid-color !default;
1097
+ $form-valid-border-color: $form-feedback-valid-color !default;
1098
+ $form-invalid-color: $form-feedback-invalid-color !default;
1099
+ $form-invalid-border-color: $form-feedback-invalid-color !default;
1100
+ // scss-docs-end form-validation-colors
1101
+
1102
+ // scss-docs-start form-validation-states
1103
+ $form-validation-states: (
1104
+ "valid": (
1105
+ "color": var(--#{$prefix}form-valid-color),
1106
+ "icon": $form-feedback-icon-valid,
1107
+ "tooltip-color": #fff,
1108
+ "tooltip-bg-color": var(--#{$prefix}success),
1109
+ "focus-box-shadow": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}success-rgb), $input-btn-focus-color-opacity),
1110
+ "border-color": var(--#{$prefix}form-valid-border-color),
1111
+ ),
1112
+ "invalid": (
1113
+ "color": var(--#{$prefix}form-invalid-color),
1114
+ "icon": $form-feedback-icon-invalid,
1115
+ "tooltip-color": #fff,
1116
+ "tooltip-bg-color": var(--#{$prefix}danger),
1117
+ "focus-box-shadow": 0 0 $input-btn-focus-blur $input-focus-width rgba(var(--#{$prefix}danger-rgb), $input-btn-focus-color-opacity),
1118
+ "border-color": var(--#{$prefix}form-invalid-border-color),
1119
+ )
1120
+ ) !default;
1121
+ // scss-docs-end form-validation-states
1122
+
1123
+ // Z-index master list
1124
+ //
1125
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
1126
+ // of components dependent on the z-axis and are designed to all work together.
1127
+
1128
+ // scss-docs-start zindex-stack
1129
+ $zindex-dropdown: 1000 !default;
1130
+ $zindex-sticky: 1020 !default;
1131
+ $zindex-fixed: 1030 !default;
1132
+ $zindex-offcanvas-backdrop: 1040 !default;
1133
+ $zindex-offcanvas: 1045 !default;
1134
+ $zindex-modal-backdrop: 1050 !default;
1135
+ $zindex-modal: 1055 !default;
1136
+ $zindex-popover: 1070 !default;
1137
+ $zindex-tooltip: 1080 !default;
1138
+ $zindex-toast: 1090 !default;
1139
+ // scss-docs-end zindex-stack
1140
+
1141
+ // scss-docs-start zindex-levels-map
1142
+ $zindex-levels: (
1143
+ n1: -1,
1144
+ 0: 0,
1145
+ 1: 1,
1146
+ 2: 2,
1147
+ 3: 3
1148
+ ) !default;
1149
+ // scss-docs-end zindex-levels-map
1150
+
1151
+
1152
+ // Navs
1153
+
1154
+ // scss-docs-start nav-variables
1155
+ $nav-link-padding-y: .5rem !default;
1156
+ $nav-link-padding-x: 1rem !default;
1157
+ $nav-link-font-size: null !default;
1158
+ $nav-link-font-weight: null !default;
1159
+ $nav-link-color: var(--#{$prefix}link-color) !default;
1160
+ $nav-link-hover-color: var(--#{$prefix}link-hover-color) !default;
1161
+ $nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;
1162
+ $nav-link-disabled-color: var(--#{$prefix}secondary-color) !default;
1163
+ $nav-link-focus-box-shadow: $focus-ring-box-shadow !default;
1164
+
1165
+ $nav-tabs-border-color: var(--#{$prefix}border-color) !default;
1166
+ $nav-tabs-border-width: var(--#{$prefix}border-width) !default;
1167
+ $nav-tabs-border-radius: var(--#{$prefix}border-radius) !default;
1168
+ $nav-tabs-link-hover-border-color: var(--#{$prefix}secondary-bg) var(--#{$prefix}secondary-bg) $nav-tabs-border-color !default;
1169
+ $nav-tabs-link-active-color: var(--#{$prefix}emphasis-color) !default;
1170
+ $nav-tabs-link-active-bg: var(--#{$prefix}body-bg) !default;
1171
+ $nav-tabs-link-active-border-color: var(--#{$prefix}border-color) var(--#{$prefix}border-color) $nav-tabs-link-active-bg !default;
1172
+
1173
+ $nav-pills-border-radius: var(--#{$prefix}border-radius) !default;
1174
+ $nav-pills-link-active-color: $component-active-color !default;
1175
+ $nav-pills-link-active-bg: $component-active-bg !default;
1176
+
1177
+ $nav-underline-gap: 1rem !default;
1178
+ $nav-underline-border-width: .125rem !default;
1179
+ $nav-underline-link-active-color: var(--#{$prefix}emphasis-color) !default;
1180
+ // scss-docs-end nav-variables
1181
+
1182
+
1183
+ // Navbar
1184
+
1185
+ // scss-docs-start navbar-variables
1186
+ $navbar-padding-y: $spacer * .5 !default;
1187
+ $navbar-padding-x: null !default;
1188
+
1189
+ $navbar-nav-link-padding-x: .5rem !default;
1190
+
1191
+ $navbar-brand-font-size: $font-size-lg !default;
1192
+ // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link
1193
+ $nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
1194
+ $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
1195
+ $navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) * .5 !default;
1196
+ $navbar-brand-margin-end: 1rem !default;
1197
+
1198
+ $navbar-toggler-padding-y: .25rem !default;
1199
+ $navbar-toggler-padding-x: .75rem !default;
1200
+ $navbar-toggler-font-size: $font-size-lg !default;
1201
+ $navbar-toggler-border-radius: $btn-border-radius !default;
1202
+ $navbar-toggler-focus-width: $btn-focus-width !default;
1203
+ $navbar-toggler-transition: box-shadow .15s ease-in-out !default;
1204
+
1205
+ $navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .55) !default;
1206
+ $navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .7) !default;
1207
+ $navbar-light-active-color: var(--bs-link-color) !default;
1208
+ $navbar-light-disabled-color: var(--bs-btn-disabled-color) !default;
1209
+ $navbar-light-icon-color: rgba($body-color, .75) !default;
1210
+ $navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-light-icon-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
1211
+ $navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default;
1212
+ $navbar-light-brand-color: $navbar-light-active-color !default;
1213
+ $navbar-light-brand-hover-color: $navbar-light-active-color !default;
1214
+ // scss-docs-end navbar-variables
1215
+
1216
+ // scss-docs-start navbar-dark-variables
1217
+ $navbar-dark-color: rgba($white, .4) !default;
1218
+ $navbar-dark-hover-color: rgba($white, .75) !default;
1219
+ $navbar-dark-active-color: var(--bs-link-color) !default;
1220
+ $navbar-dark-disabled-color: var(--bs-btn-disabled-color) !default;
1221
+ $navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-dark-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
1222
+ $navbar-dark-toggler-border-color: rgba($white, .1) !default;
1223
+ $navbar-dark-brand-color: $navbar-dark-active-color !default;
1224
+ $navbar-dark-brand-hover-color: $navbar-dark-active-color !default;
1225
+ // scss-docs-end navbar-dark-variables
1226
+
1227
+
1228
+ // Dropdowns
1229
+ //
1230
+ // Dropdown menu container and contents.
1231
+
1232
+ // scss-docs-start dropdown-variables
1233
+ $dropdown-min-width: 10rem !default;
1234
+ $dropdown-padding-x: 0 !default;
1235
+ $dropdown-padding-y: .5rem !default;
1236
+ $dropdown-spacer: .125rem !default;
1237
+ $dropdown-font-size: $font-size-base !default;
1238
+ $dropdown-color: var(--#{$prefix}body-color) !default;
1239
+ $dropdown-bg: var(--#{$prefix}body-bg) !default;
1240
+ $dropdown-border-color: var(--#{$prefix}border-color-translucent) !default;
1241
+ $dropdown-border-radius: var(--#{$prefix}border-radius) !default;
1242
+ $dropdown-border-width: var(--#{$prefix}border-width) !default;
1243
+ $dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; // stylelint-disable-line function-disallowed-list
1244
+ $dropdown-divider-bg: $dropdown-border-color !default;
1245
+ $dropdown-divider-margin-y: $spacer * .5 !default;
1246
+ $dropdown-box-shadow: $box-shadow !default;
1247
+
1248
+ $dropdown-link-color: var(--#{$prefix}body-color) !default;
1249
+ $dropdown-link-hover-color: var(--gray-000) !default;
1250
+ $dropdown-link-hover-bg: var(--#{$prefix}primary) !default;
1251
+
1252
+ $dropdown-link-active-color: $component-active-color !default;
1253
+ $dropdown-link-active-bg: $component-active-bg !default;
1254
+
1255
+ $dropdown-link-disabled-color: $gray-500 !default;
1256
+
1257
+ $dropdown-item-padding-y: $spacer * .25 !default;
1258
+ $dropdown-item-padding-x: $spacer !default;
1259
+
1260
+ $dropdown-header-color: $gray-600 !default;
1261
+ $dropdown-header-padding-x: $dropdown-item-padding-x !default;
1262
+ $dropdown-header-padding-y: $dropdown-padding-y !default;
1263
+ // fusv-disable
1264
+ $dropdown-header-padding: $dropdown-header-padding-y $dropdown-header-padding-x !default; // Deprecated in v5.2.0
1265
+ // fusv-enable
1266
+ // scss-docs-end dropdown-variables
1267
+
1268
+ // scss-docs-start dropdown-dark-variables
1269
+ $dropdown-dark-color: $gray-300 !default;
1270
+ $dropdown-dark-bg: $gray-800 !default;
1271
+ $dropdown-dark-border-color: $dropdown-border-color !default;
1272
+ $dropdown-dark-divider-bg: $dropdown-divider-bg !default;
1273
+ $dropdown-dark-box-shadow: null !default;
1274
+ $dropdown-dark-link-color: $dropdown-dark-color !default;
1275
+ $dropdown-dark-link-hover-color: $white !default;
1276
+ $dropdown-dark-link-hover-bg: rgba($white, .15) !default;
1277
+ $dropdown-dark-link-active-color: $dropdown-link-active-color !default;
1278
+ $dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;
1279
+ $dropdown-dark-link-disabled-color: $gray-500 !default;
1280
+ $dropdown-dark-header-color: $gray-500 !default;
1281
+ // scss-docs-end dropdown-dark-variables
1282
+
1283
+
1284
+ // Pagination
1285
+
1286
+ // scss-docs-start pagination-variables
1287
+ $pagination-padding-y: .375rem !default;
1288
+ $pagination-padding-x: .75rem !default;
1289
+ $pagination-padding-y-sm: .25rem !default;
1290
+ $pagination-padding-x-sm: .5rem !default;
1291
+ $pagination-padding-y-lg: .75rem !default;
1292
+ $pagination-padding-x-lg: 1.5rem !default;
1293
+
1294
+ $pagination-font-size: $font-size-base !default;
1295
+
1296
+ $pagination-color: var(--#{$prefix}link-color) !default;
1297
+ $pagination-bg: var(--#{$prefix}body-bg) !default;
1298
+ $pagination-border-radius: var(--#{$prefix}border-radius) !default;
1299
+ $pagination-border-width: var(--#{$prefix}border-width) !default;
1300
+ $pagination-margin-start: calc(#{$pagination-border-width} * -1) !default; // stylelint-disable-line function-disallowed-list
1301
+ $pagination-border-color: var(--#{$prefix}border-color) !default;
1302
+
1303
+ $pagination-focus-color: var(--#{$prefix}link-hover-color) !default;
1304
+ $pagination-focus-bg: var(--#{$prefix}secondary-bg) !default;
1305
+ $pagination-focus-box-shadow: $focus-ring-box-shadow !default;
1306
+ $pagination-focus-outline: 0 !default;
1307
+
1308
+ $pagination-hover-color: var(--#{$prefix}link-hover-color) !default;
1309
+ $pagination-hover-bg: var(--#{$prefix}tertiary-bg) !default;
1310
+ $pagination-hover-border-color: var(--#{$prefix}border-color) !default; // Todo in v6: remove this?
1311
+
1312
+ $pagination-active-color: $component-active-color !default;
1313
+ $pagination-active-bg: $component-active-bg !default;
1314
+ $pagination-active-border-color: $component-active-bg !default;
1315
+
1316
+ $pagination-disabled-color: var(--#{$prefix}secondary-color) !default;
1317
+ $pagination-disabled-bg: var(--#{$prefix}secondary-bg) !default;
1318
+ $pagination-disabled-border-color: var(--#{$prefix}border-color) !default;
1319
+
1320
+ $pagination-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
1321
+
1322
+ $pagination-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
1323
+ $pagination-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;
1324
+ // scss-docs-end pagination-variables
1325
+
1326
+
1327
+ // Placeholders
1328
+
1329
+ // scss-docs-start placeholders
1330
+ $placeholder-opacity-max: .5 !default;
1331
+ $placeholder-opacity-min: .2 !default;
1332
+ // scss-docs-end placeholders
1333
+
1334
+ // Cards
1335
+
1336
+ // scss-docs-start card-variables
1337
+ $card-spacer-y: $spacer !default;
1338
+ $card-spacer-x: $spacer !default;
1339
+ $card-title-spacer-y: $spacer * .5 !default;
1340
+ $card-title-color: null !default;
1341
+ $card-subtitle-color: null !default;
1342
+ $card-border-width: var(--#{$prefix}border-width) !default;
1343
+ $card-border-color: var(--#{$prefix}border-color-translucent) !default;
1344
+ $card-border-radius: var(--#{$prefix}border-radius) !default;
1345
+ $card-box-shadow: null !default;
1346
+ $card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;
1347
+ $card-cap-padding-y: $card-spacer-y * .5 !default;
1348
+ $card-cap-padding-x: $card-spacer-x !default;
1349
+ $card-cap-bg: rgba(var(--#{$prefix}body-color-rgb), .03) !default;
1350
+ $card-cap-color: null !default;
1351
+ $card-height: null !default;
1352
+ $card-color: null !default;
1353
+ $card-bg: var(--#{$prefix}body-bg) !default;
1354
+ $card-img-overlay-padding: $spacer !default;
1355
+ $card-group-margin: $grid-gutter-width * .5 !default;
1356
+ // scss-docs-end card-variables
1357
+
1358
+ // Accordion
1359
+
1360
+ // scss-docs-start accordion-variables
1361
+ $accordion-padding-y: 1rem !default;
1362
+ $accordion-padding-x: 1.25rem !default;
1363
+ $accordion-color: var(--#{$prefix}body-color) !default;
1364
+ $accordion-bg: var(--#{$prefix}body-bg) !default;
1365
+ $accordion-border-width: var(--#{$prefix}border-width) !default;
1366
+ $accordion-border-color: var(--#{$prefix}border-color) !default;
1367
+ $accordion-border-radius: var(--#{$prefix}border-radius) !default;
1368
+ $accordion-inner-border-radius: subtract($accordion-border-radius, $accordion-border-width) !default;
1369
+
1370
+ $accordion-body-padding-y: $accordion-padding-y !default;
1371
+ $accordion-body-padding-x: $accordion-padding-x !default;
1372
+
1373
+ $accordion-button-padding-y: $accordion-padding-y !default;
1374
+ $accordion-button-padding-x: $accordion-padding-x !default;
1375
+ $accordion-button-color: var(--#{$prefix}body-color) !default;
1376
+ $accordion-button-bg: var(--#{$prefix}accordion-bg) !default;
1377
+ $accordion-transition: $btn-transition, border-radius .15s ease !default;
1378
+ $accordion-button-active-bg: var(--#{$prefix}primary-bg-subtle) !default;
1379
+ $accordion-button-active-color: var(--#{$prefix}primary-text-emphasis) !default;
1380
+
1381
+ $accordion-button-focus-border-color: $input-focus-border-color !default;
1382
+ $accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;
1383
+
1384
+ $accordion-icon-width: 1.25rem !default;
1385
+ $accordion-icon-color: $body-color !default;
1386
+ $accordion-icon-active-color: $primary-text-emphasis !default;
1387
+ $accordion-icon-transition: transform .2s ease-in-out !default;
1388
+ $accordion-icon-transform: rotate(-180deg) !default;
1389
+
1390
+ $accordion-button-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-color}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
1391
+ $accordion-button-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$accordion-icon-active-color}'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !default;
1392
+ // scss-docs-end accordion-variables
1393
+
1394
+ // Tooltips
1395
+
1396
+ // scss-docs-start tooltip-variables
1397
+ $tooltip-font-size: $font-size-sm !default;
1398
+ $tooltip-max-width: 200px !default;
1399
+ $tooltip-color: var(--#{$prefix}body-bg) !default;
1400
+ $tooltip-bg: var(--#{$prefix}emphasis-color) !default;
1401
+ $tooltip-border-radius: var(--#{$prefix}border-radius) !default;
1402
+ $tooltip-opacity: .9 !default;
1403
+ $tooltip-padding-y: $spacer * .25 !default;
1404
+ $tooltip-padding-x: $spacer * .5 !default;
1405
+ $tooltip-margin: null !default; // TODO: remove this in v6
1406
+
1407
+ $tooltip-arrow-width: .8rem !default;
1408
+ $tooltip-arrow-height: .4rem !default;
1409
+ // fusv-disable
1410
+ $tooltip-arrow-color: null !default; // Deprecated in Bootstrap 5.2.0 for CSS variables
1411
+ // fusv-enable
1412
+ // scss-docs-end tooltip-variables
1413
+
1414
+ // Form tooltips must come after regular tooltips
1415
+ // scss-docs-start tooltip-feedback-variables
1416
+ $form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
1417
+ $form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
1418
+ $form-feedback-tooltip-font-size: $tooltip-font-size !default;
1419
+ $form-feedback-tooltip-line-height: null !default;
1420
+ $form-feedback-tooltip-opacity: $tooltip-opacity !default;
1421
+ $form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
1422
+ // scss-docs-end tooltip-feedback-variables
1423
+
1424
+
1425
+ // Popovers
1426
+
1427
+ // scss-docs-start popover-variables
1428
+ $popover-font-size: $font-size-sm !default;
1429
+ $popover-bg: var(--#{$prefix}body-bg) !default;
1430
+ $popover-max-width: 276px !default;
1431
+ $popover-border-width: var(--#{$prefix}border-width) !default;
1432
+ $popover-border-color: var(--#{$prefix}border-color-translucent) !default;
1433
+ $popover-border-radius: var(--#{$prefix}border-radius-lg) !default;
1434
+ $popover-inner-border-radius: calc(#{$popover-border-radius} - #{$popover-border-width}) !default; // stylelint-disable-line function-disallowed-list
1435
+ $popover-box-shadow: $box-shadow !default;
1436
+
1437
+ $popover-header-font-size: $font-size-base !default;
1438
+ $popover-header-bg: var(--#{$prefix}secondary-bg) !default;
1439
+ $popover-header-color: $headings-color !default;
1440
+ $popover-header-padding-y: .5rem !default;
1441
+ $popover-header-padding-x: $spacer !default;
1442
+
1443
+ $popover-body-color: var(--#{$prefix}body-color) !default;
1444
+ $popover-body-padding-y: $spacer !default;
1445
+ $popover-body-padding-x: $spacer !default;
1446
+
1447
+ $popover-arrow-width: 1rem !default;
1448
+ $popover-arrow-height: .5rem !default;
1449
+ // scss-docs-end popover-variables
1450
+
1451
+ // fusv-disable
1452
+ // Deprecated in Bootstrap 5.2.0 for CSS variables
1453
+ $popover-arrow-color: $popover-bg !default;
1454
+ $popover-arrow-outer-color: var(--#{$prefix}border-color-translucent) !default;
1455
+ // fusv-enable
1456
+
1457
+
1458
+ // Toasts
1459
+
1460
+ // scss-docs-start toast-variables
1461
+ $toast-max-width: 350px !default;
1462
+ $toast-padding-x: .75rem !default;
1463
+ $toast-padding-y: .5rem !default;
1464
+ $toast-font-size: .875rem !default;
1465
+ $toast-color: null !default;
1466
+ $toast-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;
1467
+ $toast-border-width: var(--#{$prefix}border-width) !default;
1468
+ $toast-border-color: var(--#{$prefix}border-color-translucent) !default;
1469
+ $toast-border-radius: var(--#{$prefix}border-radius) !default;
1470
+ $toast-box-shadow: var(--#{$prefix}box-shadow) !default;
1471
+ $toast-spacing: $container-padding-x !default;
1472
+
1473
+ $toast-header-color: var(--#{$prefix}secondary-color) !default;
1474
+ $toast-header-background-color: rgba(var(--#{$prefix}body-bg-rgb), .85) !default;
1475
+ $toast-header-border-color: $toast-border-color !default;
1476
+ // scss-docs-end toast-variables
1477
+
1478
+
1479
+ // Badges
1480
+
1481
+ // scss-docs-start badge-variables
1482
+ $badge-font-size: .75em !default;
1483
+ $badge-font-weight: $font-weight-bold !default;
1484
+ $badge-color: $white !default;
1485
+ $badge-padding-y: .35em !default;
1486
+ $badge-padding-x: .65em !default;
1487
+ $badge-border-radius: var(--#{$prefix}border-radius) !default;
1488
+ // scss-docs-end badge-variables
1489
+
1490
+
1491
+ // Modals
1492
+
1493
+ // scss-docs-start modal-variables
1494
+ $modal-inner-padding: $spacer !default;
1495
+
1496
+ $modal-footer-margin-between: .5rem !default;
1497
+
1498
+ $modal-dialog-margin: .5rem !default;
1499
+ $modal-dialog-margin-y-sm-up: 1.75rem !default;
1500
+
1501
+ $modal-title-line-height: $line-height-base !default;
1502
+
1503
+ $modal-content-color: null !default;
1504
+ $modal-content-bg: var(--#{$prefix}body-bg) !default;
1505
+ $modal-content-border-color: var(--#{$prefix}border-color-translucent) !default;
1506
+ $modal-content-border-width: var(--#{$prefix}border-width) !default;
1507
+ $modal-content-border-radius: var(--#{$prefix}border-radius-lg) !default;
1508
+ $modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
1509
+ $modal-content-box-shadow-xs: $box-shadow-sm !default;
1510
+ $modal-content-box-shadow-sm-up: $box-shadow !default;
1511
+
1512
+ $modal-backdrop-bg: $black !default;
1513
+ $modal-backdrop-opacity: .5 !default;
1514
+
1515
+ $modal-header-border-color: var(--#{$prefix}border-color) !default;
1516
+ $modal-header-border-width: $modal-content-border-width !default;
1517
+ $modal-header-padding-y: $modal-inner-padding !default;
1518
+ $modal-header-padding-x: $modal-inner-padding !default;
1519
+ $modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
1520
+
1521
+ $modal-footer-bg: null !default;
1522
+ $modal-footer-border-color: $modal-header-border-color !default;
1523
+ $modal-footer-border-width: $modal-header-border-width !default;
1524
+
1525
+ $modal-sm: 300px !default;
1526
+ $modal-md: 500px !default;
1527
+ $modal-lg: 800px !default;
1528
+ $modal-xl: 1140px !default;
1529
+
1530
+ $modal-fade-transform: translate(0, -50px) !default;
1531
+ $modal-show-transform: none !default;
1532
+ $modal-transition: transform .3s ease-out !default;
1533
+ $modal-scale-transform: scale(1.02) !default;
1534
+ // scss-docs-end modal-variables
1535
+
1536
+
1537
+ // Alerts
1538
+ //
1539
+ // Define alert colors, border radius, and padding.
1540
+
1541
+ // scss-docs-start alert-variables
1542
+ $alert-padding-y: $spacer !default;
1543
+ $alert-padding-x: $spacer !default;
1544
+ $alert-margin-bottom: 1rem !default;
1545
+ $alert-border-radius: var(--#{$prefix}border-radius) !default;
1546
+ $alert-link-font-weight: $font-weight-bold !default;
1547
+ $alert-border-width: var(--#{$prefix}border-width) !default;
1548
+ $alert-bg-scale: -80% !default;
1549
+ $alert-border-scale: -70% !default;
1550
+ $alert-color-scale: 40% !default;
1551
+ $alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side
1552
+ // scss-docs-end alert-variables
1553
+
1554
+ // fusv-disable
1555
+ $alert-bg-scale: -80% !default; // Deprecated in v5.2.0, to be removed in v6
1556
+ $alert-border-scale: -70% !default; // Deprecated in v5.2.0, to be removed in v6
1557
+ $alert-color-scale: 40% !default; // Deprecated in v5.2.0, to be removed in v6
1558
+ // fusv-enable
1559
+
1560
+ // Progress bars
1561
+
1562
+ // scss-docs-start progress-variables
1563
+ $progress-height: 1rem !default;
1564
+ $progress-font-size: $font-size-base * .75 !default;
1565
+ $progress-bg: var(--#{$prefix}secondary-bg) !default;
1566
+ $progress-border-radius: var(--#{$prefix}border-radius) !default;
1567
+ $progress-box-shadow: var(--#{$prefix}box-shadow-inset) !default;
1568
+ $progress-bar-color: $white !default;
1569
+ $progress-bar-bg: $primary !default;
1570
+ $progress-bar-animation-timing: 1s linear infinite !default;
1571
+ $progress-bar-transition: width .6s ease !default;
1572
+ // scss-docs-end progress-variables
1573
+
1574
+
1575
+ // List group
1576
+
1577
+ // scss-docs-start list-group-variables
1578
+ $list-group-color: var(--#{$prefix}body-color) !default;
1579
+ $list-group-bg: var(--#{$prefix}body-bg) !default;
1580
+ $list-group-border-color: var(--#{$prefix}border-color) !default;
1581
+ $list-group-border-width: var(--#{$prefix}border-width) !default;
1582
+ $list-group-border-radius: var(--#{$prefix}border-radius) !default;
1583
+
1584
+ $list-group-item-padding-y: $spacer * .5 !default;
1585
+ $list-group-item-padding-x: $spacer !default;
1586
+ // fusv-disable
1587
+ $list-group-item-bg-scale: -80% !default; // Deprecated in v5.3.0
1588
+ $list-group-item-color-scale: 40% !default; // Deprecated in v5.3.0
1589
+ // fusv-enable
1590
+
1591
+ $list-group-hover-bg: var(--#{$prefix}tertiary-bg) !default;
1592
+ $list-group-active-color: $component-active-color !default;
1593
+ $list-group-active-bg: $component-active-bg !default;
1594
+ $list-group-active-border-color: $list-group-active-bg !default;
1595
+
1596
+ $list-group-disabled-color: var(--#{$prefix}secondary-color) !default;
1597
+ $list-group-disabled-bg: $list-group-bg !default;
1598
+
1599
+ $list-group-action-color: var(--#{$prefix}secondary-color) !default;
1600
+ $list-group-action-hover-color: inherit !default;
1601
+
1602
+ $list-group-action-active-color: inherit !default;
1603
+ $list-group-action-active-bg: transparent !default;
1604
+ // scss-docs-end list-group-variables
1605
+
1606
+
1607
+ // Image thumbnails
1608
+
1609
+ // scss-docs-start thumbnail-variables
1610
+ $thumbnail-padding: .25rem !default;
1611
+ $thumbnail-bg: var(--#{$prefix}body-bg) !default;
1612
+ $thumbnail-border-width: var(--#{$prefix}border-width) !default;
1613
+ $thumbnail-border-color: var(--#{$prefix}border-color) !default;
1614
+ $thumbnail-border-radius: var(--#{$prefix}border-radius) !default;
1615
+ $thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default;
1616
+ // scss-docs-end thumbnail-variables
1617
+
1618
+
1619
+ // Figures
1620
+
1621
+ // scss-docs-start figure-variables
1622
+ $figure-caption-font-size: $small-font-size !default;
1623
+ $figure-caption-color: var(--#{$prefix}secondary-color) !default;
1624
+ // scss-docs-end figure-variables
1625
+
1626
+
1627
+ // Breadcrumbs
1628
+
1629
+ // scss-docs-start breadcrumb-variables
1630
+ $breadcrumb-font-size: null !default;
1631
+ $breadcrumb-padding-y: 0 !default;
1632
+ $breadcrumb-padding-x: 0 !default;
1633
+ $breadcrumb-item-padding-x: .5rem !default;
1634
+ $breadcrumb-margin-bottom: 1rem !default;
1635
+ $breadcrumb-bg: null !default;
1636
+ $breadcrumb-divider-color: var(--#{$prefix}secondary-color) !default;
1637
+ $breadcrumb-active-color: var(--#{$prefix}secondary-color) !default;
1638
+ $breadcrumb-divider: quote("/") !default;
1639
+ $breadcrumb-divider-flipped: $breadcrumb-divider !default;
1640
+ $breadcrumb-border-radius: null !default;
1641
+ // scss-docs-end breadcrumb-variables
1642
+
1643
+ // Carousel
1644
+
1645
+ // scss-docs-start carousel-variables
1646
+ $carousel-control-color: $white !default;
1647
+ $carousel-control-width: 15% !default;
1648
+ $carousel-control-opacity: .5 !default;
1649
+ $carousel-control-hover-opacity: .9 !default;
1650
+ $carousel-control-transition: opacity .15s ease !default;
1651
+
1652
+ $carousel-indicator-width: 30px !default;
1653
+ $carousel-indicator-height: 3px !default;
1654
+ $carousel-indicator-hit-area-height: 10px !default;
1655
+ $carousel-indicator-spacer: 3px !default;
1656
+ $carousel-indicator-opacity: .5 !default;
1657
+ $carousel-indicator-active-bg: $white !default;
1658
+ $carousel-indicator-active-opacity: 1 !default;
1659
+ $carousel-indicator-transition: opacity .6s ease !default;
1660
+
1661
+ $carousel-caption-width: 70% !default;
1662
+ $carousel-caption-color: $white !default;
1663
+ $carousel-caption-padding-y: 1.25rem !default;
1664
+ $carousel-caption-spacer: 1.25rem !default;
1665
+
1666
+ $carousel-control-icon-width: 2rem !default;
1667
+
1668
+ $carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>") !default;
1669
+ $carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>") !default;
1670
+
1671
+ $carousel-transition-duration: .6s !default;
1672
+ $carousel-transition: transform $carousel-transition-duration ease-in-out !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)
1673
+ // scss-docs-end carousel-variables
1674
+
1675
+ // scss-docs-start carousel-dark-variables
1676
+ $carousel-dark-indicator-active-bg: $black !default;
1677
+ $carousel-dark-caption-color: $black !default;
1678
+ $carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;
1679
+ // scss-docs-end carousel-dark-variables
1680
+
1681
+
1682
+ // Spinners
1683
+
1684
+ // scss-docs-start spinner-variables
1685
+ $spinner-width: 2rem !default;
1686
+ $spinner-height: $spinner-width !default;
1687
+ $spinner-vertical-align: -.125em !default;
1688
+ $spinner-border-width: .25em !default;
1689
+ $spinner-animation-speed: .75s !default;
1690
+
1691
+ $spinner-width-sm: 1rem !default;
1692
+ $spinner-height-sm: $spinner-width-sm !default;
1693
+ $spinner-border-width-sm: .2em !default;
1694
+ // scss-docs-end spinner-variables
1695
+
1696
+
1697
+ // Close
1698
+
1699
+ // scss-docs-start close-variables
1700
+ $btn-close-width: 1em !default;
1701
+ $btn-close-height: $btn-close-width !default;
1702
+ $btn-close-padding-x: .25em !default;
1703
+ $btn-close-padding-y: $btn-close-padding-x !default;
1704
+ $btn-close-color: $black !default;
1705
+ $btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$btn-close-color}'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>") !default;
1706
+ $btn-close-focus-shadow: $focus-ring-box-shadow !default;
1707
+ $btn-close-opacity: .5 !default;
1708
+ $btn-close-hover-opacity: .75 !default;
1709
+ $btn-close-focus-opacity: 1 !default;
1710
+ $btn-close-disabled-opacity: .25 !default;
1711
+ $btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;
1712
+ // scss-docs-end close-variables
1713
+
1714
+
1715
+ // Offcanvas
1716
+
1717
+ // scss-docs-start offcanvas-variables
1718
+ $offcanvas-padding-y: $modal-inner-padding !default;
1719
+ $offcanvas-padding-x: $modal-inner-padding !default;
1720
+ $offcanvas-horizontal-width: 400px !default;
1721
+ $offcanvas-vertical-height: 30vh !default;
1722
+ $offcanvas-transition-duration: .3s !default;
1723
+ $offcanvas-border-color: $modal-content-border-color !default;
1724
+ $offcanvas-border-width: $modal-content-border-width !default;
1725
+ $offcanvas-title-line-height: $modal-title-line-height !default;
1726
+ $offcanvas-bg-color: var(--#{$prefix}body-bg) !default;
1727
+ $offcanvas-color: var(--#{$prefix}body-color) !default;
1728
+ $offcanvas-box-shadow: $modal-content-box-shadow-xs !default;
1729
+ $offcanvas-backdrop-bg: $modal-backdrop-bg !default;
1730
+ $offcanvas-backdrop-opacity: $modal-backdrop-opacity !default;
1731
+ // scss-docs-end offcanvas-variables
1732
+
1733
+ // Code
1734
+
1735
+ $code-font-size: $small-font-size !default;
1736
+ $code-color: $pink !default;
1737
+
1738
+ $kbd-padding-y: .1875rem !default;
1739
+ $kbd-padding-x: .375rem !default;
1740
+ $kbd-font-size: $code-font-size !default;
1741
+ $kbd-color: var(--#{$prefix}body-bg) !default;
1742
+ $kbd-bg: var(--#{$prefix}body-color) !default;
1743
+ $nested-kbd-font-weight: null !default; // Deprecated in v5.2.0, removing in v6
1744
+
1745
+ $pre-color: null !default;