bootstrap 4.5.0 → 5.0.0.alpha3

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.
Files changed (135) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/README.md +5 -2
  4. data/assets/javascripts/bootstrap-sprockets.js +12 -9
  5. data/assets/javascripts/bootstrap.js +1852 -1266
  6. data/assets/javascripts/bootstrap.min.js +3 -3
  7. data/assets/javascripts/bootstrap/alert.js +149 -69
  8. data/assets/javascripts/bootstrap/button.js +71 -141
  9. data/assets/javascripts/bootstrap/carousel.js +291 -192
  10. data/assets/javascripts/bootstrap/collapse.js +285 -161
  11. data/assets/javascripts/bootstrap/dom/data.js +81 -0
  12. data/assets/javascripts/bootstrap/dom/event-handler.js +307 -0
  13. data/assets/javascripts/bootstrap/dom/manipulator.js +85 -0
  14. data/assets/javascripts/bootstrap/dom/selector-engine.js +98 -0
  15. data/assets/javascripts/bootstrap/dropdown.js +240 -218
  16. data/assets/javascripts/bootstrap/modal.js +342 -234
  17. data/assets/javascripts/bootstrap/popover.js +82 -106
  18. data/assets/javascripts/bootstrap/scrollspy.js +154 -114
  19. data/assets/javascripts/bootstrap/tab.js +166 -80
  20. data/assets/javascripts/bootstrap/toast.js +171 -113
  21. data/assets/javascripts/bootstrap/tooltip.js +351 -219
  22. data/assets/stylesheets/_bootstrap-grid.scss +52 -16
  23. data/assets/stylesheets/_bootstrap-reboot.scss +5 -2
  24. data/assets/stylesheets/_bootstrap.scss +16 -9
  25. data/assets/stylesheets/bootstrap/_accordion.scss +125 -0
  26. data/assets/stylesheets/bootstrap/_alert.scss +15 -9
  27. data/assets/stylesheets/bootstrap/_badge.scss +2 -27
  28. data/assets/stylesheets/bootstrap/_breadcrumb.scss +3 -19
  29. data/assets/stylesheets/bootstrap/_button-group.scss +16 -40
  30. data/assets/stylesheets/bootstrap/_buttons.scss +27 -60
  31. data/assets/stylesheets/bootstrap/_card.scss +30 -97
  32. data/assets/stylesheets/bootstrap/_carousel.scss +30 -15
  33. data/assets/stylesheets/bootstrap/_close.scss +30 -30
  34. data/assets/stylesheets/bootstrap/_containers.scss +41 -0
  35. data/assets/stylesheets/bootstrap/_dropdown.scss +52 -8
  36. data/assets/stylesheets/bootstrap/_forms.scss +9 -347
  37. data/assets/stylesheets/bootstrap/_functions.scss +88 -23
  38. data/assets/stylesheets/bootstrap/_grid.scss +3 -58
  39. data/assets/stylesheets/bootstrap/_helpers.scss +7 -0
  40. data/assets/stylesheets/bootstrap/_list-group.scss +14 -5
  41. data/assets/stylesheets/bootstrap/_mixins.scss +7 -13
  42. data/assets/stylesheets/bootstrap/_modal.scss +41 -47
  43. data/assets/stylesheets/bootstrap/_nav.scss +14 -8
  44. data/assets/stylesheets/bootstrap/_navbar.scss +43 -74
  45. data/assets/stylesheets/bootstrap/_pagination.scss +10 -20
  46. data/assets/stylesheets/bootstrap/_popover.scss +6 -6
  47. data/assets/stylesheets/bootstrap/_progress.scss +3 -5
  48. data/assets/stylesheets/bootstrap/_reboot.scss +310 -171
  49. data/assets/stylesheets/bootstrap/_root.scss +5 -9
  50. data/assets/stylesheets/bootstrap/_spinners.scss +13 -4
  51. data/assets/stylesheets/bootstrap/_tables.scss +80 -114
  52. data/assets/stylesheets/bootstrap/_toasts.scss +6 -2
  53. data/assets/stylesheets/bootstrap/_tooltip.scss +5 -5
  54. data/assets/stylesheets/bootstrap/_transitions.scss +0 -1
  55. data/assets/stylesheets/bootstrap/_type.scss +38 -59
  56. data/assets/stylesheets/bootstrap/_utilities.scss +545 -18
  57. data/assets/stylesheets/bootstrap/_variables.scss +653 -469
  58. data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +18 -0
  59. data/assets/stylesheets/bootstrap/forms/_floating-labels.scss +61 -0
  60. data/assets/stylesheets/bootstrap/forms/_form-check.scss +151 -0
  61. data/assets/stylesheets/bootstrap/forms/_form-control.scss +223 -0
  62. data/assets/stylesheets/bootstrap/forms/_form-range.scss +91 -0
  63. data/assets/stylesheets/bootstrap/forms/_form-select.scss +68 -0
  64. data/assets/stylesheets/bootstrap/forms/_form-text.scss +11 -0
  65. data/assets/stylesheets/bootstrap/forms/_input-group.scss +121 -0
  66. data/assets/stylesheets/bootstrap/forms/_labels.scss +36 -0
  67. data/assets/stylesheets/bootstrap/forms/_validation.scss +12 -0
  68. data/assets/stylesheets/bootstrap/{utilities → helpers}/_clearfix.scss +0 -0
  69. data/assets/stylesheets/bootstrap/helpers/_colored-links.scss +12 -0
  70. data/assets/stylesheets/bootstrap/helpers/_position.scss +30 -0
  71. data/assets/stylesheets/bootstrap/helpers/_ratio.scss +26 -0
  72. data/assets/stylesheets/bootstrap/helpers/_stretched-link.scss +15 -0
  73. data/assets/stylesheets/bootstrap/helpers/_text-truncation.scss +7 -0
  74. data/assets/stylesheets/bootstrap/helpers/_visually-hidden.scss +8 -0
  75. data/assets/stylesheets/bootstrap/mixins/_alert.scss +1 -5
  76. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +9 -9
  77. data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +7 -9
  78. data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +14 -10
  79. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +65 -47
  80. data/assets/stylesheets/bootstrap/mixins/_caret.scss +4 -4
  81. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +2 -0
  82. data/assets/stylesheets/bootstrap/mixins/_container.scss +11 -0
  83. data/assets/stylesheets/bootstrap/mixins/_forms.scss +17 -77
  84. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +9 -11
  85. data/assets/stylesheets/bootstrap/mixins/_grid.scss +84 -33
  86. data/assets/stylesheets/bootstrap/mixins/_image.scss +1 -21
  87. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +3 -2
  88. data/assets/stylesheets/bootstrap/mixins/_lists.scss +1 -1
  89. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +15 -8
  90. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +2 -2
  91. data/assets/stylesheets/bootstrap/mixins/_table-variants.scss +21 -0
  92. data/assets/stylesheets/bootstrap/mixins/_transition.scss +2 -2
  93. data/assets/stylesheets/bootstrap/mixins/_utilities.scss +49 -0
  94. data/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss +28 -0
  95. data/assets/stylesheets/bootstrap/utilities/_api.scss +47 -0
  96. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +234 -126
  97. data/lib/bootstrap/version.rb +2 -2
  98. data/tasks/updater/js.rb +3 -3
  99. metadata +33 -41
  100. data/assets/javascripts/bootstrap/util.js +0 -192
  101. data/assets/stylesheets/bootstrap/_code.scss +0 -48
  102. data/assets/stylesheets/bootstrap/_custom-forms.scss +0 -522
  103. data/assets/stylesheets/bootstrap/_input-group.scss +0 -192
  104. data/assets/stylesheets/bootstrap/_jumbotron.scss +0 -17
  105. data/assets/stylesheets/bootstrap/_media.scss +0 -8
  106. data/assets/stylesheets/bootstrap/_print.scss +0 -141
  107. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +0 -23
  108. data/assets/stylesheets/bootstrap/mixins/_badge.scss +0 -17
  109. data/assets/stylesheets/bootstrap/mixins/_float.scss +0 -14
  110. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -81
  111. data/assets/stylesheets/bootstrap/mixins/_hover.scss +0 -37
  112. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -11
  113. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +0 -34
  114. data/assets/stylesheets/bootstrap/mixins/_size.scss +0 -7
  115. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +0 -39
  116. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -17
  117. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +0 -11
  118. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +0 -8
  119. data/assets/stylesheets/bootstrap/utilities/_align.scss +0 -8
  120. data/assets/stylesheets/bootstrap/utilities/_background.scss +0 -19
  121. data/assets/stylesheets/bootstrap/utilities/_borders.scss +0 -75
  122. data/assets/stylesheets/bootstrap/utilities/_display.scss +0 -26
  123. data/assets/stylesheets/bootstrap/utilities/_embed.scss +0 -39
  124. data/assets/stylesheets/bootstrap/utilities/_flex.scss +0 -51
  125. data/assets/stylesheets/bootstrap/utilities/_float.scss +0 -11
  126. data/assets/stylesheets/bootstrap/utilities/_interactions.scss +0 -5
  127. data/assets/stylesheets/bootstrap/utilities/_overflow.scss +0 -5
  128. data/assets/stylesheets/bootstrap/utilities/_position.scss +0 -32
  129. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +0 -11
  130. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +0 -6
  131. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +0 -20
  132. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +0 -73
  133. data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +0 -19
  134. data/assets/stylesheets/bootstrap/utilities/_text.scss +0 -71
  135. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +0 -13
@@ -17,54 +17,48 @@ $gray-800: #343a40 !default;
17
17
  $gray-900: #212529 !default;
18
18
  $black: #000 !default;
19
19
 
20
- $grays: () !default;
21
- // stylelint-disable-next-line scss/dollar-variable-default
22
- $grays: map-merge(
23
- (
24
- "100": $gray-100,
25
- "200": $gray-200,
26
- "300": $gray-300,
27
- "400": $gray-400,
28
- "500": $gray-500,
29
- "600": $gray-600,
30
- "700": $gray-700,
31
- "800": $gray-800,
32
- "900": $gray-900
33
- ),
34
- $grays
35
- );
20
+ // fusv-disable
21
+ $grays: (
22
+ "100": $gray-100,
23
+ "200": $gray-200,
24
+ "300": $gray-300,
25
+ "400": $gray-400,
26
+ "500": $gray-500,
27
+ "600": $gray-600,
28
+ "700": $gray-700,
29
+ "800": $gray-800,
30
+ "900": $gray-900
31
+ ) !default;
32
+ // fusv-enable
36
33
 
37
- $blue: #007bff !default;
34
+ $blue: #0d6efd !default;
38
35
  $indigo: #6610f2 !default;
39
36
  $purple: #6f42c1 !default;
40
- $pink: #e83e8c !default;
37
+ $pink: #d63384 !default;
41
38
  $red: #dc3545 !default;
42
39
  $orange: #fd7e14 !default;
43
40
  $yellow: #ffc107 !default;
44
- $green: #28a745 !default;
41
+ $green: #198754 !default;
45
42
  $teal: #20c997 !default;
46
- $cyan: #17a2b8 !default;
47
-
48
- $colors: () !default;
49
- // stylelint-disable-next-line scss/dollar-variable-default
50
- $colors: map-merge(
51
- (
52
- "blue": $blue,
53
- "indigo": $indigo,
54
- "purple": $purple,
55
- "pink": $pink,
56
- "red": $red,
57
- "orange": $orange,
58
- "yellow": $yellow,
59
- "green": $green,
60
- "teal": $teal,
61
- "cyan": $cyan,
62
- "white": $white,
63
- "gray": $gray-600,
64
- "gray-dark": $gray-800
65
- ),
66
- $colors
67
- );
43
+ $cyan: #0dcaf0 !default;
44
+
45
+ // scss-docs-start colors-map
46
+ $colors: (
47
+ "blue": $blue,
48
+ "indigo": $indigo,
49
+ "purple": $purple,
50
+ "pink": $pink,
51
+ "red": $red,
52
+ "orange": $orange,
53
+ "yellow": $yellow,
54
+ "green": $green,
55
+ "teal": $teal,
56
+ "cyan": $cyan,
57
+ "white": $white,
58
+ "gray": $gray-600,
59
+ "gray-dark": $gray-800
60
+ ) !default;
61
+ // scss-docs-end colors-map
68
62
 
69
63
  $primary: $blue !default;
70
64
  $secondary: $gray-600 !default;
@@ -73,62 +67,168 @@ $info: $cyan !default;
73
67
  $warning: $yellow !default;
74
68
  $danger: $red !default;
75
69
  $light: $gray-100 !default;
76
- $dark: $gray-800 !default;
77
-
78
- $theme-colors: () !default;
79
- // stylelint-disable-next-line scss/dollar-variable-default
80
- $theme-colors: map-merge(
81
- (
82
- "primary": $primary,
83
- "secondary": $secondary,
84
- "success": $success,
85
- "info": $info,
86
- "warning": $warning,
87
- "danger": $danger,
88
- "light": $light,
89
- "dark": $dark
90
- ),
91
- $theme-colors
92
- );
93
-
94
- // Set a specific jump point for requesting color jumps
95
- $theme-color-interval: 8% !default;
96
-
97
- // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
98
- $yiq-contrasted-threshold: 150 !default;
99
-
100
- // Customize the light and dark text colors for use in our YIQ color contrast function.
101
- $yiq-text-dark: $gray-900 !default;
102
- $yiq-text-light: $white !default;
70
+ $dark: $gray-900 !default;
71
+
72
+ // scss-docs-start theme-colors-map
73
+ $theme-colors: (
74
+ "primary": $primary,
75
+ "secondary": $secondary,
76
+ "success": $success,
77
+ "info": $info,
78
+ "warning": $warning,
79
+ "danger": $danger,
80
+ "light": $light,
81
+ "dark": $dark
82
+ ) !default;
83
+ // scss-docs-end theme-colors-map
84
+
85
+ // 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.
86
+ // See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
87
+ $min-contrast-ratio: 4.5 !default;
88
+
89
+ // Customize the light and dark text colors for use in our color contrast function.
90
+ $color-contrast-dark: $black !default;
91
+ $color-contrast-light: $white !default;
92
+
93
+ // fusv-disable
94
+ $blue-100: tint-color($blue, 80%) !default;
95
+ $blue-200: tint-color($blue, 60%) !default;
96
+ $blue-300: tint-color($blue, 40%) !default;
97
+ $blue-400: tint-color($blue, 20%) !default;
98
+ $blue-500: $blue !default;
99
+ $blue-600: shade-color($blue, 20%) !default;
100
+ $blue-700: shade-color($blue, 40%) !default;
101
+ $blue-800: shade-color($blue, 60%) !default;
102
+ $blue-900: shade-color($blue, 80%) !default;
103
+
104
+ $indigo-100: tint-color($indigo, 80%) !default;
105
+ $indigo-200: tint-color($indigo, 60%) !default;
106
+ $indigo-300: tint-color($indigo, 40%) !default;
107
+ $indigo-400: tint-color($indigo, 20%) !default;
108
+ $indigo-500: $indigo !default;
109
+ $indigo-600: shade-color($indigo, 20%) !default;
110
+ $indigo-700: shade-color($indigo, 40%) !default;
111
+ $indigo-800: shade-color($indigo, 60%) !default;
112
+ $indigo-900: shade-color($indigo, 80%) !default;
113
+
114
+ $purple-100: tint-color($purple, 80%) !default;
115
+ $purple-200: tint-color($purple, 60%) !default;
116
+ $purple-300: tint-color($purple, 40%) !default;
117
+ $purple-400: tint-color($purple, 20%) !default;
118
+ $purple-500: $purple !default;
119
+ $purple-600: shade-color($purple, 20%) !default;
120
+ $purple-700: shade-color($purple, 40%) !default;
121
+ $purple-800: shade-color($purple, 60%) !default;
122
+ $purple-900: shade-color($purple, 80%) !default;
123
+
124
+ $pink-100: tint-color($pink, 80%) !default;
125
+ $pink-200: tint-color($pink, 60%) !default;
126
+ $pink-300: tint-color($pink, 40%) !default;
127
+ $pink-400: tint-color($pink, 20%) !default;
128
+ $pink-500: $pink !default;
129
+ $pink-600: shade-color($pink, 20%) !default;
130
+ $pink-700: shade-color($pink, 40%) !default;
131
+ $pink-800: shade-color($pink, 60%) !default;
132
+ $pink-900: shade-color($pink, 80%) !default;
133
+
134
+ $red-100: tint-color($red, 80%) !default;
135
+ $red-200: tint-color($red, 60%) !default;
136
+ $red-300: tint-color($red, 40%) !default;
137
+ $red-400: tint-color($red, 20%) !default;
138
+ $red-500: $red !default;
139
+ $red-600: shade-color($red, 20%) !default;
140
+ $red-700: shade-color($red, 40%) !default;
141
+ $red-800: shade-color($red, 60%) !default;
142
+ $red-900: shade-color($red, 80%) !default;
143
+
144
+ $orange-100: tint-color($orange, 80%) !default;
145
+ $orange-200: tint-color($orange, 60%) !default;
146
+ $orange-300: tint-color($orange, 40%) !default;
147
+ $orange-400: tint-color($orange, 20%) !default;
148
+ $orange-500: $orange !default;
149
+ $orange-600: shade-color($orange, 20%) !default;
150
+ $orange-700: shade-color($orange, 40%) !default;
151
+ $orange-800: shade-color($orange, 60%) !default;
152
+ $orange-900: shade-color($orange, 80%) !default;
153
+
154
+ $yellow-100: tint-color($yellow, 80%) !default;
155
+ $yellow-200: tint-color($yellow, 60%) !default;
156
+ $yellow-300: tint-color($yellow, 40%) !default;
157
+ $yellow-400: tint-color($yellow, 20%) !default;
158
+ $yellow-500: $yellow !default;
159
+ $yellow-600: shade-color($yellow, 20%) !default;
160
+ $yellow-700: shade-color($yellow, 40%) !default;
161
+ $yellow-800: shade-color($yellow, 60%) !default;
162
+ $yellow-900: shade-color($yellow, 80%) !default;
163
+
164
+ $green-100: tint-color($green, 80%) !default;
165
+ $green-200: tint-color($green, 60%) !default;
166
+ $green-300: tint-color($green, 40%) !default;
167
+ $green-400: tint-color($green, 20%) !default;
168
+ $green-500: $green !default;
169
+ $green-600: shade-color($green, 20%) !default;
170
+ $green-700: shade-color($green, 40%) !default;
171
+ $green-800: shade-color($green, 60%) !default;
172
+ $green-900: shade-color($green, 80%) !default;
173
+
174
+ $teal-100: tint-color($teal, 80%) !default;
175
+ $teal-200: tint-color($teal, 60%) !default;
176
+ $teal-300: tint-color($teal, 40%) !default;
177
+ $teal-400: tint-color($teal, 20%) !default;
178
+ $teal-500: $teal !default;
179
+ $teal-600: shade-color($teal, 20%) !default;
180
+ $teal-700: shade-color($teal, 40%) !default;
181
+ $teal-800: shade-color($teal, 60%) !default;
182
+ $teal-900: shade-color($teal, 80%) !default;
183
+
184
+ $cyan-100: tint-color($cyan, 80%) !default;
185
+ $cyan-200: tint-color($cyan, 60%) !default;
186
+ $cyan-300: tint-color($cyan, 40%) !default;
187
+ $cyan-400: tint-color($cyan, 20%) !default;
188
+ $cyan-500: $cyan !default;
189
+ $cyan-600: shade-color($cyan, 20%) !default;
190
+ $cyan-700: shade-color($cyan, 40%) !default;
191
+ $cyan-800: shade-color($cyan, 60%) !default;
192
+ $cyan-900: shade-color($cyan, 80%) !default;
193
+ // fusv-enable
103
194
 
104
195
  // Characters which are escaped by the escape-svg function
105
196
  $escaped-characters: (
106
- ("<","%3c"),
107
- (">","%3e"),
108
- ("#","%23"),
109
- ("(","%28"),
110
- (")","%29"),
197
+ ("<", "%3c"),
198
+ (">", "%3e"),
199
+ ("#", "%23"),
200
+ ("(", "%28"),
201
+ (")", "%29"),
111
202
  ) !default;
112
203
 
113
-
114
204
  // Options
115
205
  //
116
206
  // Quickly modify global styling by enabling or disabling optional features.
117
207
 
118
- $enable-caret: true !default;
119
- $enable-rounded: true !default;
120
- $enable-shadows: false !default;
121
- $enable-gradients: false !default;
122
- $enable-transitions: true !default;
123
- $enable-prefers-reduced-motion-media-query: true !default;
124
- $enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS
125
- $enable-grid-classes: true !default;
126
- $enable-pointer-cursor-for-buttons: true !default;
127
- $enable-print-styles: true !default;
128
- $enable-responsive-font-sizes: false !default;
129
- $enable-validation-icons: true !default;
130
- $enable-deprecation-messages: true !default;
131
-
208
+ $enable-caret: true !default;
209
+ $enable-rounded: true !default;
210
+ $enable-shadows: false !default;
211
+ $enable-gradients: false !default;
212
+ $enable-transitions: true !default;
213
+ $enable-reduced-motion: true !default;
214
+ $enable-smooth-scroll: true !default;
215
+ $enable-grid-classes: true !default;
216
+ $enable-button-pointers: true !default;
217
+ $enable-rfs: true !default;
218
+ $enable-validation-icons: true !default;
219
+ $enable-negative-margins: false !default;
220
+ $enable-deprecation-messages: true !default;
221
+ $enable-important-utilities: true !default;
222
+
223
+ // Prefix for :root CSS variables
224
+
225
+ $variable-prefix: bs- !default;
226
+
227
+ // Gradient
228
+ //
229
+ // The gradient which is added to components if `$enable-gradients` is `true`
230
+ // This gradient is also added to elements with `.bg-gradient`
231
+ $gradient: linear-gradient(180deg, rgba($white, .15), rgba($white, 0)) !default;
132
232
 
133
233
  // Spacing
134
234
  //
@@ -137,33 +237,26 @@ $enable-deprecation-messages: true !default;
137
237
  // You can add more entries to the $spacers map, should you need more variation.
138
238
 
139
239
  $spacer: 1rem !default;
140
- $spacers: () !default;
141
- // stylelint-disable-next-line scss/dollar-variable-default
142
- $spacers: map-merge(
143
- (
144
- 0: 0,
145
- 1: ($spacer * .25),
146
- 2: ($spacer * .5),
147
- 3: $spacer,
148
- 4: ($spacer * 1.5),
149
- 5: ($spacer * 3)
150
- ),
151
- $spacers
152
- );
153
-
154
- // This variable affects the `.h-*` and `.w-*` classes.
155
- $sizes: () !default;
156
- // stylelint-disable-next-line scss/dollar-variable-default
157
- $sizes: map-merge(
158
- (
159
- 25: 25%,
160
- 50: 50%,
161
- 75: 75%,
162
- 100: 100%,
163
- auto: auto
164
- ),
165
- $sizes
166
- );
240
+ $spacers: (
241
+ 0: 0,
242
+ 1: $spacer / 4,
243
+ 2: $spacer / 2,
244
+ 3: $spacer,
245
+ 4: $spacer * 1.5,
246
+ 5: $spacer * 3,
247
+ ) !default;
248
+
249
+ $negative-spacers: if($enable-negative-margins, negativify-map($spacers), null) !default;
250
+
251
+ // Position
252
+ //
253
+ // Define the edge positioning anchors of the position utilities.
254
+
255
+ $position-values: (
256
+ 0: 0,
257
+ 50: 50%,
258
+ 100: 100%
259
+ ) !default;
167
260
 
168
261
 
169
262
  // Body
@@ -172,18 +265,21 @@ $sizes: map-merge(
172
265
 
173
266
  $body-bg: $white !default;
174
267
  $body-color: $gray-900 !default;
268
+ $body-text-align: null !default;
175
269
 
176
270
 
177
271
  // Links
178
272
  //
179
273
  // Style anchor elements.
180
274
 
181
- $link-color: theme-color("primary") !default;
182
- $link-decoration: none !default;
183
- $link-hover-color: darken($link-color, 15%) !default;
184
- $link-hover-decoration: underline !default;
185
- // Darken percentage for links with `.text-*` class (e.g. `.text-success`)
186
- $emphasized-link-hover-darken-percentage: 15% !default;
275
+ $link-color: $primary !default;
276
+ $link-decoration: underline !default;
277
+ $link-shade-percentage: 20% !default;
278
+ $link-hover-color: scale-color($link-color, $link-shade-percentage) !default;
279
+ $link-hover-decoration: null !default;
280
+
281
+ $stretched-link-pseudo-element: after !default;
282
+ $stretched-link-z-index: 1 !default;
187
283
 
188
284
  // Paragraphs
189
285
  //
@@ -197,13 +293,16 @@ $paragraph-margin-bottom: 1rem !default;
197
293
  // Define the minimum dimensions at which your layout will change,
198
294
  // adapting to different screen sizes, for use in media queries.
199
295
 
296
+ // scss-docs-start grid-breakpoints
200
297
  $grid-breakpoints: (
201
298
  xs: 0,
202
299
  sm: 576px,
203
300
  md: 768px,
204
301
  lg: 992px,
205
- xl: 1200px
302
+ xl: 1200px,
303
+ xxl: 1400px
206
304
  ) !default;
305
+ // scss-docs-end grid-breakpoints
207
306
 
208
307
  @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
209
308
  @include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
@@ -213,12 +312,15 @@ $grid-breakpoints: (
213
312
  //
214
313
  // Define the maximum width of `.container` for different screen sizes.
215
314
 
315
+ // scss-docs-start container-max-widths
216
316
  $container-max-widths: (
217
317
  sm: 540px,
218
318
  md: 720px,
219
319
  lg: 960px,
220
- xl: 1140px
320
+ xl: 1140px,
321
+ xxl: 1320px
221
322
  ) !default;
323
+ // scss-docs-end container-max-widths
222
324
 
223
325
  @include _assert-ascending($container-max-widths, "$container-max-widths");
224
326
 
@@ -228,32 +330,44 @@ $container-max-widths: (
228
330
  // Set the number of columns and specify the width of the gutters.
229
331
 
230
332
  $grid-columns: 12 !default;
231
- $grid-gutter-width: 30px !default;
333
+ $grid-gutter-width: 1.5rem !default;
232
334
  $grid-row-columns: 6 !default;
233
335
 
336
+ $gutters: $spacers !default;
337
+
338
+ // Container padding
339
+
340
+ $container-padding-x: $grid-gutter-width !default;
341
+
234
342
 
235
343
  // Components
236
344
  //
237
345
  // Define common padding and border radius sizes and more.
238
346
 
239
- $line-height-lg: 1.5 !default;
240
- $line-height-sm: 1.5 !default;
241
-
242
347
  $border-width: 1px !default;
348
+ $border-widths: (
349
+ 0: 0,
350
+ 1: 1px,
351
+ 2: 2px,
352
+ 3: 3px,
353
+ 4: 4px,
354
+ 5: 5px
355
+ ) !default;
356
+
243
357
  $border-color: $gray-300 !default;
244
358
 
245
359
  $border-radius: .25rem !default;
246
- $border-radius-lg: .3rem !default;
247
360
  $border-radius-sm: .2rem !default;
361
+ $border-radius-lg: .3rem !default;
362
+ $border-radius-pill: 50rem !default;
248
363
 
249
- $rounded-pill: 50rem !default;
250
-
251
- $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
252
364
  $box-shadow: 0 .5rem 1rem rgba($black, .15) !default;
365
+ $box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;
253
366
  $box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;
367
+ $box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default;
254
368
 
255
369
  $component-active-color: $white !default;
256
- $component-active-bg: theme-color("primary") !default;
370
+ $component-active-bg: $primary !default;
257
371
 
258
372
  $caret-width: .3em !default;
259
373
  $caret-vertical-align: $caret-width * .85 !default;
@@ -263,31 +377,34 @@ $transition-base: all .2s ease-in-out !default;
263
377
  $transition-fade: opacity .15s linear !default;
264
378
  $transition-collapse: height .35s ease !default;
265
379
 
266
- $embed-responsive-aspect-ratios: () !default;
267
- // stylelint-disable-next-line scss/dollar-variable-default
268
- $embed-responsive-aspect-ratios: join(
269
- (
270
- (21 9),
271
- (16 9),
272
- (4 3),
273
- (1 1),
274
- ),
275
- $embed-responsive-aspect-ratios
276
- );
380
+ // stylelint-disable function-disallowed-list
381
+ // scss-docs-start aspect-ratios
382
+ $aspect-ratios: (
383
+ "1x1": 100%,
384
+ "4x3": calc(3 / 4 * 100%),
385
+ "16x9": calc(9 / 16 * 100%),
386
+ "21x9": calc(9 / 21 * 100%)
387
+ ) !default;
388
+ // scss-docs-end aspect-ratios
389
+ // stylelint-enable function-disallowed-list
277
390
 
278
391
  // Typography
279
392
  //
280
393
  // Font, line-height, and color for body text, headings, and more.
281
394
 
282
395
  // stylelint-disable value-keyword-case
283
- $font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
396
+ $font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
284
397
  $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
285
- $font-family-base: $font-family-sans-serif !default;
286
398
  // stylelint-enable value-keyword-case
399
+ $font-family-base: var(--#{$variable-prefix}font-sans-serif) !default;
400
+ $font-family-code: var(--#{$variable-prefix}font-monospace) !default;
287
401
 
402
+ // $font-size-root effects the value of `rem`, which is used for as well font sizes, paddings and margins
403
+ // $font-size-base effects the font size of the body text
404
+ $font-size-root: null !default;
288
405
  $font-size-base: 1rem !default; // Assumes the browser default, typically `16px`
289
- $font-size-lg: $font-size-base * 1.25 !default;
290
406
  $font-size-sm: $font-size-base * .875 !default;
407
+ $font-size-lg: $font-size-base * 1.25 !default;
291
408
 
292
409
  $font-weight-lighter: lighter !default;
293
410
  $font-weight-light: 300 !default;
@@ -296,7 +413,10 @@ $font-weight-bold: 700 !default;
296
413
  $font-weight-bolder: bolder !default;
297
414
 
298
415
  $font-weight-base: $font-weight-normal !default;
416
+
299
417
  $line-height-base: 1.5 !default;
418
+ $line-height-sm: 1.25 !default;
419
+ $line-height-lg: 2 !default;
300
420
 
301
421
  $h1-font-size: $font-size-base * 2.5 !default;
302
422
  $h2-font-size: $font-size-base * 2 !default;
@@ -305,84 +425,126 @@ $h4-font-size: $font-size-base * 1.5 !default;
305
425
  $h5-font-size: $font-size-base * 1.25 !default;
306
426
  $h6-font-size: $font-size-base !default;
307
427
 
428
+ // scss-docs-start font-sizes
429
+ $font-sizes: (
430
+ 1: $h1-font-size,
431
+ 2: $h2-font-size,
432
+ 3: $h3-font-size,
433
+ 4: $h4-font-size,
434
+ 5: $h5-font-size,
435
+ 6: $h6-font-size
436
+ ) !default;
437
+ // scss-docs-end font-sizes
438
+
308
439
  $headings-margin-bottom: $spacer / 2 !default;
309
440
  $headings-font-family: null !default;
441
+ $headings-font-style: null !default;
310
442
  $headings-font-weight: 500 !default;
311
443
  $headings-line-height: 1.2 !default;
312
444
  $headings-color: null !default;
313
445
 
314
- $display1-size: 6rem !default;
315
- $display2-size: 5.5rem !default;
316
- $display3-size: 4.5rem !default;
317
- $display4-size: 3.5rem !default;
446
+ // scss-docs-start display-headings
447
+ $display-font-sizes: (
448
+ 1: 5rem,
449
+ 2: 4.5rem,
450
+ 3: 4rem,
451
+ 4: 3.5rem,
452
+ 5: 3rem,
453
+ 6: 2.5rem
454
+ ) !default;
318
455
 
319
- $display1-weight: 300 !default;
320
- $display2-weight: 300 !default;
321
- $display3-weight: 300 !default;
322
- $display4-weight: 300 !default;
323
- $display-line-height: $headings-line-height !default;
456
+ $display-font-weight: 300 !default;
457
+ $display-line-height: $headings-line-height !default;
458
+ // scss-docs-end display-headings
324
459
 
325
460
  $lead-font-size: $font-size-base * 1.25 !default;
326
461
  $lead-font-weight: 300 !default;
327
462
 
328
- $small-font-size: 80% !default;
463
+ $small-font-size: .875em !default;
464
+
465
+ $sub-sup-font-size: .75em !default;
329
466
 
330
467
  $text-muted: $gray-600 !default;
331
468
 
332
- $blockquote-small-color: $gray-600 !default;
333
- $blockquote-small-font-size: $small-font-size !default;
469
+ $initialism-font-size: $small-font-size !default;
470
+
471
+ $blockquote-margin-y: $spacer !default;
334
472
  $blockquote-font-size: $font-size-base * 1.25 !default;
473
+ $blockquote-footer-color: $gray-600 !default;
474
+ $blockquote-footer-font-size: $small-font-size !default;
475
+
476
+ $hr-margin-y: $spacer !default;
477
+ $hr-color: inherit !default;
478
+ $hr-height: $border-width !default;
479
+ $hr-opacity: .25 !default;
335
480
 
336
- $hr-border-color: rgba($black, .1) !default;
337
- $hr-border-width: $border-width !default;
481
+ $legend-margin-bottom: .5rem !default;
482
+ $legend-font-size: 1.5rem !default;
483
+ $legend-font-weight: null !default;
338
484
 
339
485
  $mark-padding: .2em !default;
340
486
 
341
487
  $dt-font-weight: $font-weight-bold !default;
342
488
 
343
- $kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;
344
489
  $nested-kbd-font-weight: $font-weight-bold !default;
345
490
 
346
491
  $list-inline-padding: .5rem !default;
347
492
 
348
493
  $mark-bg: #fcf8e3 !default;
349
494
 
350
- $hr-margin-y: $spacer !default;
351
-
352
495
 
353
496
  // Tables
354
497
  //
355
498
  // Customizes the `.table` component with basic values, each used across all table variations.
356
499
 
357
- $table-cell-padding: .75rem !default;
358
- $table-cell-padding-sm: .3rem !default;
500
+ // scss-docs-start table-variables
501
+ $table-cell-padding-y: .5rem !default;
502
+ $table-cell-padding-x: .5rem !default;
503
+ $table-cell-padding-y-sm: .25rem !default;
504
+ $table-cell-padding-x-sm: .25rem !default;
505
+
506
+ $table-cell-vertical-align: top !default;
359
507
 
360
508
  $table-color: $body-color !default;
361
- $table-bg: null !default;
362
- $table-accent-bg: rgba($black, .05) !default;
509
+ $table-bg: transparent !default;
510
+
511
+ $table-th-font-weight: null !default;
512
+
513
+ $table-striped-color: $table-color !default;
514
+ $table-striped-bg-factor: .05 !default;
515
+ $table-striped-bg: rgba($black, $table-striped-bg-factor) !default;
516
+
517
+ $table-active-color: $table-color !default;
518
+ $table-active-bg-factor: .1 !default;
519
+ $table-active-bg: rgba($black, $table-active-bg-factor) !default;
520
+
363
521
  $table-hover-color: $table-color !default;
364
- $table-hover-bg: rgba($black, .075) !default;
365
- $table-active-bg: $table-hover-bg !default;
522
+ $table-hover-bg-factor: .075 !default;
523
+ $table-hover-bg: rgba($black, $table-hover-bg-factor) !default;
366
524
 
525
+ $table-border-factor: .1 !default;
367
526
  $table-border-width: $border-width !default;
368
527
  $table-border-color: $border-color !default;
369
528
 
370
- $table-head-bg: $gray-200 !default;
371
- $table-head-color: $gray-700 !default;
372
-
373
- $table-dark-color: $white !default;
374
- $table-dark-bg: $gray-800 !default;
375
- $table-dark-accent-bg: rgba($white, .05) !default;
376
- $table-dark-hover-color: $table-dark-color !default;
377
- $table-dark-hover-bg: rgba($white, .075) !default;
378
- $table-dark-border-color: lighten($table-dark-bg, 7.5%) !default;
379
-
380
529
  $table-striped-order: odd !default;
381
530
 
531
+ $table-group-separator-color: currentColor !default;
532
+
382
533
  $table-caption-color: $text-muted !default;
383
534
 
384
- $table-bg-level: -9 !default;
385
- $table-border-level: -6 !default;
535
+ $table-bg-scale: -80% !default;
536
+
537
+ $table-variants: (
538
+ "primary": scale-color($primary, $table-bg-scale),
539
+ "secondary": scale-color($secondary, $table-bg-scale),
540
+ "success": scale-color($success, $table-bg-scale),
541
+ "info": scale-color($info, $table-bg-scale),
542
+ "warning": scale-color($warning, $table-bg-scale),
543
+ "danger": scale-color($danger, $table-bg-scale),
544
+ "light": $light,
545
+ "dark": $dark,
546
+ ) !default;
547
+ // scss-docs-end table-variables
386
548
 
387
549
 
388
550
  // Buttons + Forms
@@ -395,19 +557,18 @@ $input-btn-font-family: null !default;
395
557
  $input-btn-font-size: $font-size-base !default;
396
558
  $input-btn-line-height: $line-height-base !default;
397
559
 
398
- $input-btn-focus-width: .2rem !default;
399
- $input-btn-focus-color: rgba($component-active-bg, .25) !default;
400
- $input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
560
+ $input-btn-focus-width: .25rem !default;
561
+ $input-btn-focus-color-opacity: .25 !default;
562
+ $input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;
563
+ $input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
401
564
 
402
565
  $input-btn-padding-y-sm: .25rem !default;
403
566
  $input-btn-padding-x-sm: .5rem !default;
404
567
  $input-btn-font-size-sm: $font-size-sm !default;
405
- $input-btn-line-height-sm: $line-height-sm !default;
406
568
 
407
569
  $input-btn-padding-y-lg: .5rem !default;
408
570
  $input-btn-padding-x-lg: 1rem !default;
409
571
  $input-btn-font-size-lg: $font-size-lg !default;
410
- $input-btn-line-height-lg: $line-height-lg !default;
411
572
 
412
573
  $input-btn-border-width: $border-width !default;
413
574
 
@@ -426,12 +587,10 @@ $btn-white-space: null !default; // Set to `nowrap` to prevent text
426
587
  $btn-padding-y-sm: $input-btn-padding-y-sm !default;
427
588
  $btn-padding-x-sm: $input-btn-padding-x-sm !default;
428
589
  $btn-font-size-sm: $input-btn-font-size-sm !default;
429
- $btn-line-height-sm: $input-btn-line-height-sm !default;
430
590
 
431
591
  $btn-padding-y-lg: $input-btn-padding-y-lg !default;
432
592
  $btn-padding-x-lg: $input-btn-padding-x-lg !default;
433
593
  $btn-font-size-lg: $input-btn-font-size-lg !default;
434
- $btn-line-height-lg: $input-btn-line-height-lg !default;
435
594
 
436
595
  $btn-border-width: $input-btn-border-width !default;
437
596
 
@@ -442,21 +601,31 @@ $btn-focus-box-shadow: $input-btn-focus-box-shadow !default;
442
601
  $btn-disabled-opacity: .65 !default;
443
602
  $btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;
444
603
 
604
+ $btn-link-color: $link-color !default;
605
+ $btn-link-hover-color: $link-hover-color !default;
445
606
  $btn-link-disabled-color: $gray-600 !default;
446
607
 
447
- $btn-block-spacing-y: .5rem !default;
448
-
449
608
  // Allows for customizing button radius independently from global border radius
450
609
  $btn-border-radius: $border-radius !default;
451
- $btn-border-radius-lg: $border-radius-lg !default;
452
610
  $btn-border-radius-sm: $border-radius-sm !default;
611
+ $btn-border-radius-lg: $border-radius-lg !default;
453
612
 
454
613
  $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;
455
614
 
456
615
 
457
616
  // Forms
458
617
 
459
- $label-margin-bottom: .5rem !default;
618
+ $form-text-margin-top: .25rem !default;
619
+ $form-text-font-size: $small-font-size !default;
620
+ $form-text-font-style: null !default;
621
+ $form-text-font-weight: null !default;
622
+ $form-text-color: $text-muted !default;
623
+
624
+ $form-label-margin-bottom: .5rem !default;
625
+ $form-label-font-size: null !default;
626
+ $form-label-font-style: null !default;
627
+ $form-label-font-weight: null !default;
628
+ $form-label-color: null !default;
460
629
 
461
630
  $input-padding-y: $input-btn-padding-y !default;
462
631
  $input-padding-x: $input-btn-padding-x !default;
@@ -468,27 +637,26 @@ $input-line-height: $input-btn-line-height !default;
468
637
  $input-padding-y-sm: $input-btn-padding-y-sm !default;
469
638
  $input-padding-x-sm: $input-btn-padding-x-sm !default;
470
639
  $input-font-size-sm: $input-btn-font-size-sm !default;
471
- $input-line-height-sm: $input-btn-line-height-sm !default;
472
640
 
473
641
  $input-padding-y-lg: $input-btn-padding-y-lg !default;
474
642
  $input-padding-x-lg: $input-btn-padding-x-lg !default;
475
643
  $input-font-size-lg: $input-btn-font-size-lg !default;
476
- $input-line-height-lg: $input-btn-line-height-lg !default;
477
644
 
478
645
  $input-bg: $white !default;
479
646
  $input-disabled-bg: $gray-200 !default;
647
+ $input-disabled-border-color: null !default;
480
648
 
481
- $input-color: $gray-700 !default;
649
+ $input-color: $body-color !default;
482
650
  $input-border-color: $gray-400 !default;
483
651
  $input-border-width: $input-btn-border-width !default;
484
- $input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;
652
+ $input-box-shadow: $box-shadow-inset !default;
485
653
 
486
654
  $input-border-radius: $border-radius !default;
487
- $input-border-radius-lg: $border-radius-lg !default;
488
655
  $input-border-radius-sm: $border-radius-sm !default;
656
+ $input-border-radius-lg: $border-radius-lg !default;
489
657
 
490
658
  $input-focus-bg: $input-bg !default;
491
- $input-focus-border-color: lighten($component-active-bg, 25%) !default;
659
+ $input-focus-border-color: tint-color($component-active-bg, 50%) !default;
492
660
  $input-focus-color: $input-color !default;
493
661
  $input-focus-width: $input-btn-focus-width !default;
494
662
  $input-focus-box-shadow: $input-btn-focus-box-shadow !default;
@@ -503,191 +671,168 @@ $input-height-inner-half: add($input-line-height * .5em, $input-pa
503
671
  $input-height-inner-quarter: add($input-line-height * .25em, $input-padding-y / 2) !default;
504
672
 
505
673
  $input-height: add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false)) !default;
506
- $input-height-sm: add($input-line-height-sm * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
507
- $input-height-lg: add($input-line-height-lg * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
674
+ $input-height-sm: add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false)) !default;
675
+ $input-height-lg: add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false)) !default;
508
676
 
509
677
  $input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
510
678
 
511
- $form-text-margin-top: .25rem !default;
512
-
513
- $form-check-input-gutter: 1.25rem !default;
514
- $form-check-input-margin-y: .3rem !default;
515
- $form-check-input-margin-x: .25rem !default;
516
-
517
- $form-check-inline-margin-x: .75rem !default;
518
- $form-check-inline-input-margin-x: .3125rem !default;
519
-
520
- $form-grid-gutter-width: 10px !default;
521
- $form-group-margin-bottom: 1rem !default;
522
679
 
680
+ $form-check-input-width: 1em !default;
681
+ $form-check-min-height: $font-size-base * $line-height-base !default;
682
+ $form-check-padding-left: $form-check-input-width + .5em !default;
683
+ $form-check-margin-bottom: .125rem !default;
684
+ $form-check-label-color: null !default;
685
+ $form-check-label-cursor: null !default;
686
+ $form-check-transition: background-color .15s ease-in-out, background-position .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
687
+
688
+ $form-check-input-active-filter: brightness(90%) !default;
689
+
690
+ $form-check-input-bg: $body-bg !default;
691
+ $form-check-input-border: 1px solid rgba(0, 0, 0, .25) !default;
692
+ $form-check-input-border-radius: .25em !default;
693
+ $form-check-radio-border-radius: 50% !default;
694
+ $form-check-input-focus-border: $input-focus-border-color !default;
695
+ $form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;
696
+
697
+ $form-check-input-checked-color: $component-active-color !default;
698
+ $form-check-input-checked-bg-color: $component-active-bg !default;
699
+ $form-check-input-checked-border-color: $form-check-input-checked-bg-color !default;
700
+ $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 10l3 3l6-6'/></svg>") !default;
701
+ $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;
702
+
703
+ $form-check-input-indeterminate-color: $component-active-color !default;
704
+ $form-check-input-indeterminate-bg-color: $component-active-bg !default;
705
+ $form-check-input-indeterminate-border-color: $form-check-input-indeterminate-bg-color !default;
706
+ $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;
707
+
708
+ $form-check-input-disabled-opacity: .5 !default;
709
+ $form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default;
710
+ $form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default;
711
+
712
+ $form-switch-color: rgba(0, 0, 0, .25) !default;
713
+ $form-switch-width: 2em !default;
714
+ $form-switch-padding-left: $form-switch-width + .5em !default;
715
+ $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;
716
+ $form-switch-border-radius: $form-switch-width !default;
717
+
718
+ $form-switch-focus-color: $input-focus-border-color !default;
719
+ $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;
720
+
721
+ $form-switch-checked-color: $component-active-color !default;
722
+ $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;
723
+ $form-switch-checked-bg-position: right center !default;
724
+
725
+ $form-check-inline-margin-right: 1rem !default;
726
+
727
+ $input-group-addon-padding-y: $input-padding-y !default;
728
+ $input-group-addon-padding-x: $input-padding-x !default;
729
+ $input-group-addon-font-weight: $input-font-weight !default;
523
730
  $input-group-addon-color: $input-color !default;
524
731
  $input-group-addon-bg: $gray-200 !default;
525
732
  $input-group-addon-border-color: $input-border-color !default;
526
733
 
527
- $custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
528
-
529
- $custom-control-gutter: .5rem !default;
530
- $custom-control-spacer-x: 1rem !default;
531
- $custom-control-cursor: null !default;
532
-
533
- $custom-control-indicator-size: 1rem !default;
534
- $custom-control-indicator-bg: $input-bg !default;
535
-
536
- $custom-control-indicator-bg-size: 50% 50% !default;
537
- $custom-control-indicator-box-shadow: $input-box-shadow !default;
538
- $custom-control-indicator-border-color: $gray-500 !default;
539
- $custom-control-indicator-border-width: $input-border-width !default;
540
-
541
- $custom-control-label-color: null !default;
542
-
543
- $custom-control-indicator-disabled-bg: $input-disabled-bg !default;
544
- $custom-control-label-disabled-color: $gray-600 !default;
545
-
546
- $custom-control-indicator-checked-color: $component-active-color !default;
547
- $custom-control-indicator-checked-bg: $component-active-bg !default;
548
- $custom-control-indicator-checked-disabled-bg: rgba(theme-color("primary"), .5) !default;
549
- $custom-control-indicator-checked-box-shadow: none !default;
550
- $custom-control-indicator-checked-border-color: $custom-control-indicator-checked-bg !default;
551
-
552
- $custom-control-indicator-focus-box-shadow: $input-focus-box-shadow !default;
553
- $custom-control-indicator-focus-border-color: $input-focus-border-color !default;
554
-
555
- $custom-control-indicator-active-color: $component-active-color !default;
556
- $custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;
557
- $custom-control-indicator-active-box-shadow: none !default;
558
- $custom-control-indicator-active-border-color: $custom-control-indicator-active-bg !default;
559
-
560
- $custom-checkbox-indicator-border-radius: $border-radius !default;
561
- $custom-checkbox-indicator-icon-checked: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/></svg>") !default;
562
-
563
- $custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;
564
- $custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;
565
- $custom-checkbox-indicator-icon-indeterminate: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'><path stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/></svg>") !default;
566
- $custom-checkbox-indicator-indeterminate-box-shadow: none !default;
567
- $custom-checkbox-indicator-indeterminate-border-color: $custom-checkbox-indicator-indeterminate-bg !default;
568
-
569
- $custom-radio-indicator-border-radius: 50% !default;
570
- $custom-radio-indicator-icon-checked: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'><circle r='3' fill='#{$custom-control-indicator-checked-color}'/></svg>") !default;
571
-
572
- $custom-switch-width: $custom-control-indicator-size * 1.75 !default;
573
- $custom-switch-indicator-border-radius: $custom-control-indicator-size / 2 !default;
574
- $custom-switch-indicator-size: subtract($custom-control-indicator-size, $custom-control-indicator-border-width * 4) !default;
575
-
576
- $custom-select-padding-y: $input-padding-y !default;
577
- $custom-select-padding-x: $input-padding-x !default;
578
- $custom-select-font-family: $input-font-family !default;
579
- $custom-select-font-size: $input-font-size !default;
580
- $custom-select-height: $input-height !default;
581
- $custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
582
- $custom-select-font-weight: $input-font-weight !default;
583
- $custom-select-line-height: $input-line-height !default;
584
- $custom-select-color: $input-color !default;
585
- $custom-select-disabled-color: $gray-600 !default;
586
- $custom-select-bg: $input-bg !default;
587
- $custom-select-disabled-bg: $gray-200 !default;
588
- $custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions
589
- $custom-select-indicator-color: $gray-800 !default;
590
- $custom-select-indicator: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'><path fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") !default;
591
- $custom-select-background: escape-svg($custom-select-indicator) no-repeat right $custom-select-padding-x center / $custom-select-bg-size !default; // Used so we can have multiple background elements (e.g., arrow and feedback icon)
592
-
593
- $custom-select-feedback-icon-padding-right: add(1em * .75, (2 * $custom-select-padding-y * .75) + $custom-select-padding-x + $custom-select-indicator-padding) !default;
594
- $custom-select-feedback-icon-position: center right ($custom-select-padding-x + $custom-select-indicator-padding) !default;
595
- $custom-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;
596
-
597
- $custom-select-border-width: $input-border-width !default;
598
- $custom-select-border-color: $input-border-color !default;
599
- $custom-select-border-radius: $border-radius !default;
600
- $custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;
601
-
602
- $custom-select-focus-border-color: $input-focus-border-color !default;
603
- $custom-select-focus-width: $input-focus-width !default;
604
- $custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width $input-btn-focus-color !default;
605
-
606
- $custom-select-padding-y-sm: $input-padding-y-sm !default;
607
- $custom-select-padding-x-sm: $input-padding-x-sm !default;
608
- $custom-select-font-size-sm: $input-font-size-sm !default;
609
- $custom-select-height-sm: $input-height-sm !default;
610
-
611
- $custom-select-padding-y-lg: $input-padding-y-lg !default;
612
- $custom-select-padding-x-lg: $input-padding-x-lg !default;
613
- $custom-select-font-size-lg: $input-font-size-lg !default;
614
- $custom-select-height-lg: $input-height-lg !default;
615
-
616
- $custom-range-track-width: 100% !default;
617
- $custom-range-track-height: .5rem !default;
618
- $custom-range-track-cursor: pointer !default;
619
- $custom-range-track-bg: $gray-300 !default;
620
- $custom-range-track-border-radius: 1rem !default;
621
- $custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;
622
-
623
- $custom-range-thumb-width: 1rem !default;
624
- $custom-range-thumb-height: $custom-range-thumb-width !default;
625
- $custom-range-thumb-bg: $component-active-bg !default;
626
- $custom-range-thumb-border: 0 !default;
627
- $custom-range-thumb-border-radius: 1rem !default;
628
- $custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
629
- $custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;
630
- $custom-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in IE/Edge
631
- $custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;
632
- $custom-range-thumb-disabled-bg: $gray-500 !default;
633
-
634
- $custom-file-height: $input-height !default;
635
- $custom-file-height-inner: $input-height-inner !default;
636
- $custom-file-focus-border-color: $input-focus-border-color !default;
637
- $custom-file-focus-box-shadow: $input-focus-box-shadow !default;
638
- $custom-file-disabled-bg: $input-disabled-bg !default;
639
-
640
- $custom-file-padding-y: $input-padding-y !default;
641
- $custom-file-padding-x: $input-padding-x !default;
642
- $custom-file-line-height: $input-line-height !default;
643
- $custom-file-font-family: $input-font-family !default;
644
- $custom-file-font-weight: $input-font-weight !default;
645
- $custom-file-color: $input-color !default;
646
- $custom-file-bg: $input-bg !default;
647
- $custom-file-border-width: $input-border-width !default;
648
- $custom-file-border-color: $input-border-color !default;
649
- $custom-file-border-radius: $input-border-radius !default;
650
- $custom-file-box-shadow: $input-box-shadow !default;
651
- $custom-file-button-color: $custom-file-color !default;
652
- $custom-file-button-bg: $input-group-addon-bg !default;
653
- $custom-file-text: (
654
- en: "Browse"
655
- ) !default;
656
-
734
+ $form-select-padding-y: $input-padding-y !default;
735
+ $form-select-padding-x: $input-padding-x !default;
736
+ $form-select-font-family: $input-font-family !default;
737
+ $form-select-font-size: $input-font-size !default;
738
+ $form-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator
739
+ $form-select-font-weight: $input-font-weight !default;
740
+ $form-select-line-height: $input-line-height !default;
741
+ $form-select-color: $input-color !default;
742
+ $form-select-disabled-color: $gray-600 !default;
743
+ $form-select-bg: $input-bg !default;
744
+ $form-select-disabled-bg: $gray-200 !default;
745
+ $form-select-disabled-border-color: $input-disabled-border-color !default;
746
+ $form-select-bg-position: right $form-select-padding-x center !default;
747
+ $form-select-bg-size: 16px 12px !default; // In pixels because image dimensions
748
+ $form-select-indicator-color: $gray-800 !default;
749
+ $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 5l6 6 6-6'/></svg>") !default;
750
+
751
+ $form-select-feedback-icon-padding-right: add(1em * .75, (2 * $form-select-padding-y * .75) + $form-select-padding-x + $form-select-indicator-padding) !default;
752
+ $form-select-feedback-icon-position: center right ($form-select-padding-x + $form-select-indicator-padding) !default;
753
+ $form-select-feedback-icon-size: $input-height-inner-half $input-height-inner-half !default;
754
+
755
+ $form-select-border-width: $input-border-width !default;
756
+ $form-select-border-color: $input-border-color !default;
757
+ $form-select-border-radius: $border-radius !default;
758
+ $form-select-box-shadow: $box-shadow-inset !default;
759
+
760
+ $form-select-focus-border-color: $input-focus-border-color !default;
761
+ $form-select-focus-width: $input-focus-width !default;
762
+ $form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default;
763
+
764
+ $form-select-padding-y-sm: $input-padding-y-sm !default;
765
+ $form-select-padding-x-sm: $input-padding-x-sm !default;
766
+ $form-select-font-size-sm: $input-font-size-sm !default;
767
+
768
+ $form-select-padding-y-lg: $input-padding-y-lg !default;
769
+ $form-select-padding-x-lg: $input-padding-x-lg !default;
770
+ $form-select-font-size-lg: $input-font-size-lg !default;
771
+
772
+ $form-range-track-width: 100% !default;
773
+ $form-range-track-height: .5rem !default;
774
+ $form-range-track-cursor: pointer !default;
775
+ $form-range-track-bg: $gray-300 !default;
776
+ $form-range-track-border-radius: 1rem !default;
777
+ $form-range-track-box-shadow: $box-shadow-inset !default;
778
+
779
+ $form-range-thumb-width: 1rem !default;
780
+ $form-range-thumb-height: $form-range-thumb-width !default;
781
+ $form-range-thumb-bg: $component-active-bg !default;
782
+ $form-range-thumb-border: 0 !default;
783
+ $form-range-thumb-border-radius: 1rem !default;
784
+ $form-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;
785
+ $form-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-focus-box-shadow !default;
786
+ $form-range-thumb-focus-box-shadow-width: $input-focus-width !default; // For focus box shadow issue in Edge
787
+ $form-range-thumb-active-bg: tint-color($component-active-bg, 70%) !default;
788
+ $form-range-thumb-disabled-bg: $gray-500 !default;
789
+ $form-range-thumb-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;
790
+
791
+ $form-file-button-color: $input-color !default;
792
+ $form-file-button-bg: $input-group-addon-bg !default;
793
+ $form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default;
794
+
795
+ $form-floating-height: add(3.5rem, $input-height-border) !default;
796
+ $form-floating-padding-x: $input-padding-x !default;
797
+ $form-floating-padding-y: 1rem !default;
798
+ $form-floating-input-padding-t: 1.625rem !default;
799
+ $form-floating-input-padding-b: .625rem !default;
800
+ $form-floating-label-opacity: .65 !default;
801
+ $form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem) !default;
802
+ $form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out !default;
657
803
 
658
804
  // Form validation
659
805
 
660
806
  $form-feedback-margin-top: $form-text-margin-top !default;
661
- $form-feedback-font-size: $small-font-size !default;
662
- $form-feedback-valid-color: theme-color("success") !default;
663
- $form-feedback-invalid-color: theme-color("danger") !default;
807
+ $form-feedback-font-size: $form-text-font-size !default;
808
+ $form-feedback-font-style: $form-text-font-style !default;
809
+ $form-feedback-valid-color: $success !default;
810
+ $form-feedback-invalid-color: $danger !default;
664
811
 
665
812
  $form-feedback-icon-valid-color: $form-feedback-valid-color !default;
666
- $form-feedback-icon-valid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#{$form-feedback-icon-valid-color}' d='M2.3 6.73L.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;
813
+ $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.73L.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;
667
814
  $form-feedback-icon-invalid-color: $form-feedback-invalid-color !default;
668
- $form-feedback-icon-invalid: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='#{$form-feedback-icon-invalid-color}' viewBox='0 0 12 12'><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;
669
-
670
- $form-validation-states: () !default;
671
- // stylelint-disable-next-line scss/dollar-variable-default
672
- $form-validation-states: map-merge(
673
- (
674
- "valid": (
675
- "color": $form-feedback-valid-color,
676
- "icon": $form-feedback-icon-valid
677
- ),
678
- "invalid": (
679
- "color": $form-feedback-invalid-color,
680
- "icon": $form-feedback-icon-invalid
681
- ),
815
+ $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;
816
+
817
+ // scss-docs-start form-validation-states
818
+ $form-validation-states: (
819
+ "valid": (
820
+ "color": $form-feedback-valid-color,
821
+ "icon": $form-feedback-icon-valid
682
822
  ),
683
- $form-validation-states
684
- );
823
+ "invalid": (
824
+ "color": $form-feedback-invalid-color,
825
+ "icon": $form-feedback-icon-invalid
826
+ )
827
+ ) !default;
828
+ // scss-docs-end form-validation-states
685
829
 
686
830
  // Z-index master list
687
831
  //
688
832
  // Warning: Avoid customizing these values. They're used for a bird's eye view
689
833
  // of components dependent on the z-axis and are designed to all work together.
690
834
 
835
+ // scss-docs-start zindex-stack
691
836
  $zindex-dropdown: 1000 !default;
692
837
  $zindex-sticky: 1020 !default;
693
838
  $zindex-fixed: 1030 !default;
@@ -695,12 +840,18 @@ $zindex-modal-backdrop: 1040 !default;
695
840
  $zindex-modal: 1050 !default;
696
841
  $zindex-popover: 1060 !default;
697
842
  $zindex-tooltip: 1070 !default;
843
+ // scss-docs-end zindex-stack
698
844
 
699
845
 
700
846
  // Navs
701
847
 
702
848
  $nav-link-padding-y: .5rem !default;
703
849
  $nav-link-padding-x: 1rem !default;
850
+ $nav-link-font-size: null !default;
851
+ $nav-link-font-weight: null !default;
852
+ $nav-link-color: null !default;
853
+ $nav-link-hover-color: null !default;
854
+ $nav-link-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out !default;
704
855
  $nav-link-disabled-color: $gray-600 !default;
705
856
 
706
857
  $nav-tabs-border-color: $gray-300 !default;
@@ -715,14 +866,11 @@ $nav-pills-border-radius: $border-radius !default;
715
866
  $nav-pills-link-active-color: $component-active-color !default;
716
867
  $nav-pills-link-active-bg: $component-active-bg !default;
717
868
 
718
- $nav-divider-color: $gray-200 !default;
719
- $nav-divider-margin-y: $spacer / 2 !default;
720
-
721
869
 
722
870
  // Navbar
723
871
 
724
872
  $navbar-padding-y: $spacer / 2 !default;
725
- $navbar-padding-x: $spacer !default;
873
+ $navbar-padding-x: null !default;
726
874
 
727
875
  $navbar-nav-link-padding-x: .5rem !default;
728
876
 
@@ -731,24 +879,27 @@ $navbar-brand-font-size: $font-size-lg !default;
731
879
  $nav-link-height: $font-size-base * $line-height-base + $nav-link-padding-y * 2 !default;
732
880
  $navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;
733
881
  $navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;
882
+ $navbar-brand-margin-right: 1rem !default;
734
883
 
735
884
  $navbar-toggler-padding-y: .25rem !default;
736
885
  $navbar-toggler-padding-x: .75rem !default;
737
886
  $navbar-toggler-font-size: $font-size-lg !default;
738
887
  $navbar-toggler-border-radius: $btn-border-radius !default;
888
+ $navbar-toggler-focus-width: $btn-focus-width !default;
889
+ $navbar-toggler-transition: box-shadow .15s ease-in-out !default;
739
890
 
740
- $navbar-dark-color: rgba($white, .5) !default;
891
+ $navbar-dark-color: rgba($white, .55) !default;
741
892
  $navbar-dark-hover-color: rgba($white, .75) !default;
742
893
  $navbar-dark-active-color: $white !default;
743
894
  $navbar-dark-disabled-color: rgba($white, .25) !default;
744
- $navbar-dark-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' 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;
895
+ $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;
745
896
  $navbar-dark-toggler-border-color: rgba($white, .1) !default;
746
897
 
747
- $navbar-light-color: rgba($black, .5) !default;
898
+ $navbar-light-color: rgba($black, .55) !default;
748
899
  $navbar-light-hover-color: rgba($black, .7) !default;
749
900
  $navbar-light-active-color: rgba($black, .9) !default;
750
901
  $navbar-light-disabled-color: rgba($black, .3) !default;
751
- $navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
902
+ $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-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>") !default;
752
903
  $navbar-light-toggler-border-color: rgba($black, .1) !default;
753
904
 
754
905
  $navbar-light-brand-color: $navbar-light-active-color !default;
@@ -762,6 +913,7 @@ $navbar-dark-brand-hover-color: $navbar-dark-active-color !default;
762
913
  // Dropdown menu container and contents.
763
914
 
764
915
  $dropdown-min-width: 10rem !default;
916
+ $dropdown-padding-x: 0 !default;
765
917
  $dropdown-padding-y: .5rem !default;
766
918
  $dropdown-spacer: .125rem !default;
767
919
  $dropdown-font-size: $font-size-base !default;
@@ -771,12 +923,12 @@ $dropdown-border-color: rgba($black, .15) !default;
771
923
  $dropdown-border-radius: $border-radius !default;
772
924
  $dropdown-border-width: $border-width !default;
773
925
  $dropdown-inner-border-radius: subtract($dropdown-border-radius, $dropdown-border-width) !default;
774
- $dropdown-divider-bg: $gray-200 !default;
775
- $dropdown-divider-margin-y: $nav-divider-margin-y !default;
776
- $dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;
926
+ $dropdown-divider-bg: $dropdown-border-color !default;
927
+ $dropdown-divider-margin-y: $spacer / 2 !default;
928
+ $dropdown-box-shadow: $box-shadow !default;
777
929
 
778
930
  $dropdown-link-color: $gray-900 !default;
779
- $dropdown-link-hover-color: darken($gray-900, 5%) !default;
931
+ $dropdown-link-hover-color: shade-color($gray-900, 10%) !default;
780
932
  $dropdown-link-hover-bg: $gray-100 !default;
781
933
 
782
934
  $dropdown-link-active-color: $component-active-color !default;
@@ -784,28 +936,44 @@ $dropdown-link-active-bg: $component-active-bg !default;
784
936
 
785
937
  $dropdown-link-disabled-color: $gray-600 !default;
786
938
 
787
- $dropdown-item-padding-y: .25rem !default;
788
- $dropdown-item-padding-x: 1.5rem !default;
939
+ $dropdown-item-padding-y: $spacer / 4 !default;
940
+ $dropdown-item-padding-x: $spacer !default;
789
941
 
790
942
  $dropdown-header-color: $gray-600 !default;
791
943
  $dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default;
792
944
 
945
+ $dropdown-dark-color: $gray-300 !default;
946
+ $dropdown-dark-bg: $gray-800 !default;
947
+ $dropdown-dark-border-color: $dropdown-border-color !default;
948
+ $dropdown-dark-divider-bg: $dropdown-divider-bg !default;
949
+ $dropdown-dark-box-shadow: null !default;
950
+ $dropdown-dark-link-color: $dropdown-dark-color !default;
951
+ $dropdown-dark-link-hover-color: $white !default;
952
+ $dropdown-dark-link-hover-bg: rgba($white, .15) !default;
953
+ $dropdown-dark-link-active-color: $dropdown-link-active-color !default;
954
+ $dropdown-dark-link-active-bg: $dropdown-link-active-bg !default;
955
+ $dropdown-dark-link-disabled-color: $gray-500 !default;
956
+ $dropdown-dark-header-color: $gray-500 !default;
957
+
793
958
 
794
959
  // Pagination
795
960
 
796
- $pagination-padding-y: .5rem !default;
961
+ $pagination-padding-y: .375rem !default;
797
962
  $pagination-padding-x: .75rem !default;
798
963
  $pagination-padding-y-sm: .25rem !default;
799
964
  $pagination-padding-x-sm: .5rem !default;
800
965
  $pagination-padding-y-lg: .75rem !default;
801
966
  $pagination-padding-x-lg: 1.5rem !default;
802
- $pagination-line-height: 1.25 !default;
803
967
 
804
968
  $pagination-color: $link-color !default;
805
969
  $pagination-bg: $white !default;
806
970
  $pagination-border-width: $border-width !default;
971
+ $pagination-border-radius: $border-radius !default;
972
+ $pagination-margin-left: -$pagination-border-width !default;
807
973
  $pagination-border-color: $gray-300 !default;
808
974
 
975
+ $pagination-focus-color: $link-hover-color !default;
976
+ $pagination-focus-bg: $gray-200 !default;
809
977
  $pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;
810
978
  $pagination-focus-outline: 0 !default;
811
979
 
@@ -821,37 +989,60 @@ $pagination-disabled-color: $gray-600 !default;
821
989
  $pagination-disabled-bg: $white !default;
822
990
  $pagination-disabled-border-color: $gray-300 !default;
823
991
 
824
-
825
- // Jumbotron
826
-
827
- $jumbotron-padding: 2rem !default;
828
- $jumbotron-color: null !default;
829
- $jumbotron-bg: $gray-200 !default;
830
-
992
+ $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;
831
993
 
832
994
  // Cards
833
995
 
834
- $card-spacer-y: .75rem !default;
835
- $card-spacer-x: 1.25rem !default;
996
+ $card-spacer-y: $spacer !default;
997
+ $card-spacer-x: $spacer !default;
998
+ $card-title-spacer-y: $spacer / 2 !default;
836
999
  $card-border-width: $border-width !default;
837
1000
  $card-border-radius: $border-radius !default;
838
1001
  $card-border-color: rgba($black, .125) !default;
839
1002
  $card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default;
1003
+ $card-cap-padding-y: $card-spacer-y / 2 !default;
1004
+ $card-cap-padding-x: $card-spacer-x !default;
840
1005
  $card-cap-bg: rgba($black, .03) !default;
841
1006
  $card-cap-color: null !default;
842
1007
  $card-height: null !default;
843
1008
  $card-color: null !default;
844
1009
  $card-bg: $white !default;
845
1010
 
846
- $card-img-overlay-padding: 1.25rem !default;
1011
+ $card-img-overlay-padding: $spacer !default;
847
1012
 
848
1013
  $card-group-margin: $grid-gutter-width / 2 !default;
849
- $card-deck-margin: $card-group-margin !default;
850
-
851
- $card-columns-count: 3 !default;
852
- $card-columns-gap: 1.25rem !default;
853
- $card-columns-margin: $card-spacer-y !default;
854
1014
 
1015
+ // Accordion
1016
+ $accordion-padding-y: 1rem !default;
1017
+ $accordion-padding-x: 1.25rem !default;
1018
+ $accordion-color: $body-color !default;
1019
+ $accordion-bg: transparent !default;
1020
+ $accordion-border-width: $border-width !default;
1021
+ $accordion-border-color: rgba($black, .125) !default;
1022
+ $accordion-border-radius: $border-radius !default;
1023
+
1024
+ $accordion-body-padding-y: $accordion-padding-y !default;
1025
+ $accordion-body-padding-x: $accordion-padding-x !default;
1026
+
1027
+ $accordion-button-padding-y: $accordion-padding-y !default;
1028
+ $accordion-button-padding-x: $accordion-padding-x !default;
1029
+ $accordion-button-color: $accordion-color !default;
1030
+ $accordion-button-bg: $accordion-bg !default;
1031
+ $accordion-transition: $btn-transition, border-radius .15s ease !default;
1032
+ $accordion-button-active-bg: tint-color($component-active-bg, 90%) !default;
1033
+ $accordion-button-active-color: shade-color($primary, 10%) !default;
1034
+
1035
+ $accordion-button-focus-border-color: $input-focus-border-color !default;
1036
+ $accordion-button-focus-box-shadow: $btn-focus-box-shadow !default;
1037
+
1038
+ $accordion-icon-width: 1.25rem !default;
1039
+ $accordion-icon-color: $accordion-color !default;
1040
+ $accordion-icon-active-color: $accordion-button-active-color !default;
1041
+ $accordion-icon-transition: transform .2s ease-in-out !default;
1042
+ $accordion-icon-transform: rotate(180deg) !default;
1043
+
1044
+ $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;
1045
+ $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;
855
1046
 
856
1047
  // Tooltips
857
1048
 
@@ -861,8 +1052,8 @@ $tooltip-color: $white !default;
861
1052
  $tooltip-bg: $black !default;
862
1053
  $tooltip-border-radius: $border-radius !default;
863
1054
  $tooltip-opacity: .9 !default;
864
- $tooltip-padding-y: .25rem !default;
865
- $tooltip-padding-x: .5rem !default;
1055
+ $tooltip-padding-y: $spacer / 4 !default;
1056
+ $tooltip-padding-x: $spacer / 2 !default;
866
1057
  $tooltip-margin: 0 !default;
867
1058
 
868
1059
  $tooltip-arrow-width: .8rem !default;
@@ -873,7 +1064,7 @@ $tooltip-arrow-color: $tooltip-bg !default;
873
1064
  $form-feedback-tooltip-padding-y: $tooltip-padding-y !default;
874
1065
  $form-feedback-tooltip-padding-x: $tooltip-padding-x !default;
875
1066
  $form-feedback-tooltip-font-size: $tooltip-font-size !default;
876
- $form-feedback-tooltip-line-height: $line-height-base !default;
1067
+ $form-feedback-tooltip-line-height: null !default;
877
1068
  $form-feedback-tooltip-opacity: $tooltip-opacity !default;
878
1069
  $form-feedback-tooltip-border-radius: $tooltip-border-radius !default;
879
1070
 
@@ -887,16 +1078,16 @@ $popover-border-width: $border-width !default;
887
1078
  $popover-border-color: rgba($black, .2) !default;
888
1079
  $popover-border-radius: $border-radius-lg !default;
889
1080
  $popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width) !default;
890
- $popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;
1081
+ $popover-box-shadow: $box-shadow !default;
891
1082
 
892
- $popover-header-bg: darken($popover-bg, 3%) !default;
1083
+ $popover-header-bg: shade-color($popover-bg, 6%) !default;
893
1084
  $popover-header-color: $headings-color !default;
894
1085
  $popover-header-padding-y: .5rem !default;
895
- $popover-header-padding-x: .75rem !default;
1086
+ $popover-header-padding-x: $spacer !default;
896
1087
 
897
1088
  $popover-body-color: $body-color !default;
898
- $popover-body-padding-y: $popover-header-padding-y !default;
899
- $popover-body-padding-x: $popover-header-padding-x !default;
1089
+ $popover-body-padding-y: $spacer !default;
1090
+ $popover-body-padding-x: $spacer !default;
900
1091
 
901
1092
  $popover-arrow-width: 1rem !default;
902
1093
  $popover-arrow-height: .5rem !default;
@@ -909,14 +1100,14 @@ $popover-arrow-outer-color: fade-in($popover-border-color, .05) !default
909
1100
 
910
1101
  $toast-max-width: 350px !default;
911
1102
  $toast-padding-x: .75rem !default;
912
- $toast-padding-y: .25rem !default;
1103
+ $toast-padding-y: .5rem !default;
913
1104
  $toast-font-size: .875rem !default;
914
1105
  $toast-color: null !default;
915
1106
  $toast-background-color: rgba($white, .85) !default;
916
1107
  $toast-border-width: 1px !default;
917
1108
  $toast-border-color: rgba(0, 0, 0, .1) !default;
918
- $toast-border-radius: .25rem !default;
919
- $toast-box-shadow: 0 .25rem .75rem rgba($black, .1) !default;
1109
+ $toast-border-radius: $border-radius !default;
1110
+ $toast-box-shadow: $box-shadow !default;
920
1111
 
921
1112
  $toast-header-color: $gray-600 !default;
922
1113
  $toast-header-background-color: rgba($white, .85) !default;
@@ -925,25 +1116,18 @@ $toast-header-border-color: rgba(0, 0, 0, .05) !default;
925
1116
 
926
1117
  // Badges
927
1118
 
928
- $badge-font-size: 75% !default;
1119
+ $badge-font-size: .75em !default;
929
1120
  $badge-font-weight: $font-weight-bold !default;
930
- $badge-padding-y: .25em !default;
931
- $badge-padding-x: .4em !default;
1121
+ $badge-color: $white !default;
1122
+ $badge-padding-y: .35em !default;
1123
+ $badge-padding-x: .65em !default;
932
1124
  $badge-border-radius: $border-radius !default;
933
1125
 
934
- $badge-transition: $btn-transition !default;
935
- $badge-focus-width: $input-btn-focus-width !default;
936
-
937
- $badge-pill-padding-x: .6em !default;
938
- // Use a higher than normal value to ensure completely rounded edges when
939
- // customizing padding or font-size on labels.
940
- $badge-pill-border-radius: 10rem !default;
941
-
942
1126
 
943
1127
  // Modals
944
1128
 
945
1129
  // Padding applied to the modal body
946
- $modal-inner-padding: 1rem !default;
1130
+ $modal-inner-padding: $spacer !default;
947
1131
 
948
1132
  // Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding
949
1133
  $modal-footer-margin-between: .5rem !default;
@@ -959,8 +1143,8 @@ $modal-content-border-color: rgba($black, .2) !default;
959
1143
  $modal-content-border-width: $border-width !default;
960
1144
  $modal-content-border-radius: $border-radius-lg !default;
961
1145
  $modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default;
962
- $modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;
963
- $modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;
1146
+ $modal-content-box-shadow-xs: $box-shadow-sm !default;
1147
+ $modal-content-box-shadow-sm-up: $box-shadow !default;
964
1148
 
965
1149
  $modal-backdrop-bg: $black !default;
966
1150
  $modal-backdrop-opacity: .5 !default;
@@ -968,14 +1152,14 @@ $modal-header-border-color: $border-color !default;
968
1152
  $modal-footer-border-color: $modal-header-border-color !default;
969
1153
  $modal-header-border-width: $modal-content-border-width !default;
970
1154
  $modal-footer-border-width: $modal-header-border-width !default;
971
- $modal-header-padding-y: 1rem !default;
972
- $modal-header-padding-x: 1rem !default;
1155
+ $modal-header-padding-y: $modal-inner-padding !default;
1156
+ $modal-header-padding-x: $modal-inner-padding !default;
973
1157
  $modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; // Keep this for backwards compatibility
974
1158
 
975
- $modal-xl: 1140px !default;
976
- $modal-lg: 800px !default;
977
- $modal-md: 500px !default;
978
1159
  $modal-sm: 300px !default;
1160
+ $modal-md: 500px !default;
1161
+ $modal-lg: 800px !default;
1162
+ $modal-xl: 1140px !default;
979
1163
 
980
1164
  $modal-fade-transform: translate(0, -50px) !default;
981
1165
  $modal-show-transform: none !default;
@@ -987,16 +1171,18 @@ $modal-scale-transform: scale(1.02) !default;
987
1171
  //
988
1172
  // Define alert colors, border radius, and padding.
989
1173
 
990
- $alert-padding-y: .75rem !default;
991
- $alert-padding-x: 1.25rem !default;
1174
+ $alert-padding-y: $spacer !default;
1175
+ $alert-padding-x: $spacer !default;
992
1176
  $alert-margin-bottom: 1rem !default;
993
1177
  $alert-border-radius: $border-radius !default;
994
1178
  $alert-link-font-weight: $font-weight-bold !default;
995
1179
  $alert-border-width: $border-width !default;
996
1180
 
997
- $alert-bg-level: -10 !default;
998
- $alert-border-level: -9 !default;
999
- $alert-color-level: 6 !default;
1181
+ $alert-bg-scale: -80% !default;
1182
+ $alert-border-scale: -70% !default;
1183
+ $alert-color-scale: 40% !default;
1184
+
1185
+ $alert-dismissible-padding-r: $alert-padding-x * 3 !default; // 3x covers width of x plus default padding on either side
1000
1186
 
1001
1187
 
1002
1188
  // Progress bars
@@ -1005,9 +1191,9 @@ $progress-height: 1rem !default;
1005
1191
  $progress-font-size: $font-size-base * .75 !default;
1006
1192
  $progress-bg: $gray-200 !default;
1007
1193
  $progress-border-radius: $border-radius !default;
1008
- $progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;
1194
+ $progress-box-shadow: $box-shadow-inset !default;
1009
1195
  $progress-bar-color: $white !default;
1010
- $progress-bar-bg: theme-color("primary") !default;
1196
+ $progress-bar-bg: $primary !default;
1011
1197
  $progress-bar-animation-timing: 1s linear infinite !default;
1012
1198
  $progress-bar-transition: width .6s ease !default;
1013
1199
 
@@ -1020,8 +1206,10 @@ $list-group-border-color: rgba($black, .125) !default;
1020
1206
  $list-group-border-width: $border-width !default;
1021
1207
  $list-group-border-radius: $border-radius !default;
1022
1208
 
1023
- $list-group-item-padding-y: .75rem !default;
1024
- $list-group-item-padding-x: 1.25rem !default;
1209
+ $list-group-item-padding-y: $spacer / 2 !default;
1210
+ $list-group-item-padding-x: $spacer !default;
1211
+ $list-group-item-bg-scale: -80% !default;
1212
+ $list-group-item-color-scale: 40% !default;
1025
1213
 
1026
1214
  $list-group-hover-bg: $gray-100 !default;
1027
1215
  $list-group-active-color: $component-active-color !default;
@@ -1045,33 +1233,28 @@ $thumbnail-bg: $body-bg !default;
1045
1233
  $thumbnail-border-width: $border-width !default;
1046
1234
  $thumbnail-border-color: $gray-300 !default;
1047
1235
  $thumbnail-border-radius: $border-radius !default;
1048
- $thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;
1236
+ $thumbnail-box-shadow: $box-shadow-sm !default;
1049
1237
 
1050
1238
 
1051
1239
  // Figures
1052
1240
 
1053
- $figure-caption-font-size: 90% !default;
1241
+ $figure-caption-font-size: $small-font-size !default;
1054
1242
  $figure-caption-color: $gray-600 !default;
1055
1243
 
1056
1244
 
1057
1245
  // Breadcrumbs
1058
1246
 
1059
1247
  $breadcrumb-font-size: null !default;
1060
-
1061
- $breadcrumb-padding-y: .75rem !default;
1062
- $breadcrumb-padding-x: 1rem !default;
1063
- $breadcrumb-item-padding: .5rem !default;
1064
-
1248
+ $breadcrumb-padding-y: $spacer / 2 !default;
1249
+ $breadcrumb-padding-x: $spacer !default;
1250
+ $breadcrumb-item-padding-x: .5rem !default;
1065
1251
  $breadcrumb-margin-bottom: 1rem !default;
1066
-
1067
1252
  $breadcrumb-bg: $gray-200 !default;
1068
1253
  $breadcrumb-divider-color: $gray-600 !default;
1069
1254
  $breadcrumb-active-color: $gray-600 !default;
1070
1255
  $breadcrumb-divider: quote("/") !default;
1071
-
1072
1256
  $breadcrumb-border-radius: $border-radius !default;
1073
1257
 
1074
-
1075
1258
  // Carousel
1076
1259
 
1077
1260
  $carousel-control-color: $white !default;
@@ -1084,26 +1267,35 @@ $carousel-indicator-width: 30px !default;
1084
1267
  $carousel-indicator-height: 3px !default;
1085
1268
  $carousel-indicator-hit-area-height: 10px !default;
1086
1269
  $carousel-indicator-spacer: 3px !default;
1270
+ $carousel-indicator-opacity: .5 !default;
1087
1271
  $carousel-indicator-active-bg: $white !default;
1272
+ $carousel-indicator-active-opacity: 1 !default;
1088
1273
  $carousel-indicator-transition: opacity .6s ease !default;
1089
1274
 
1090
1275
  $carousel-caption-width: 70% !default;
1091
1276
  $carousel-caption-color: $white !default;
1277
+ $carousel-caption-padding-y: 1.25rem !default;
1278
+ $carousel-caption-spacer: 1.25rem !default;
1092
1279
 
1093
- $carousel-control-icon-width: 20px !default;
1280
+ $carousel-control-icon-width: 2rem !default;
1094
1281
 
1095
- $carousel-control-prev-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' width='8' height='8' viewBox='0 0 8 8'><path d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/></svg>") !default;
1096
- $carousel-control-next-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' width='8' height='8' viewBox='0 0 8 8'><path d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/></svg>") !default;
1282
+ $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;
1283
+ $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;
1097
1284
 
1098
1285
  $carousel-transition-duration: .6s !default;
1099
1286
  $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`)
1100
1287
 
1288
+ $carousel-dark-indicator-active-bg: $black !default;
1289
+ $carousel-dark-caption-color: $black !default;
1290
+ $carousel-dark-control-icon-filter: invert(1) grayscale(100) !default;
1291
+
1101
1292
 
1102
1293
  // Spinners
1103
1294
 
1104
- $spinner-width: 2rem !default;
1105
- $spinner-height: $spinner-width !default;
1106
- $spinner-border-width: .25em !default;
1295
+ $spinner-width: 2rem !default;
1296
+ $spinner-height: $spinner-width !default;
1297
+ $spinner-border-width: .25em !default;
1298
+ $spinner-animation-speed: .75s !default;
1107
1299
 
1108
1300
  $spinner-width-sm: 1rem !default;
1109
1301
  $spinner-height-sm: $spinner-width-sm !default;
@@ -1112,15 +1304,22 @@ $spinner-border-width-sm: .2em !default;
1112
1304
 
1113
1305
  // Close
1114
1306
 
1115
- $close-font-size: $font-size-base * 1.5 !default;
1116
- $close-font-weight: $font-weight-bold !default;
1117
- $close-color: $black !default;
1118
- $close-text-shadow: 0 1px 0 $white !default;
1119
-
1307
+ $btn-close-width: 1em !default;
1308
+ $btn-close-height: $btn-close-width !default;
1309
+ $btn-close-padding-x: .25em !default;
1310
+ $btn-close-padding-y: $btn-close-padding-x !default;
1311
+ $btn-close-color: $black !default;
1312
+ $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 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") !default;
1313
+ $btn-close-focus-shadow: $input-btn-focus-box-shadow !default;
1314
+ $btn-close-opacity: .5 !default;
1315
+ $btn-close-hover-opacity: .75 !default;
1316
+ $btn-close-focus-opacity: 1 !default;
1317
+ $btn-close-disabled-opacity: .25 !default;
1318
+ $btn-close-white-filter: invert(1) grayscale(100%) brightness(200%) !default;
1120
1319
 
1121
1320
  // Code
1122
1321
 
1123
- $code-font-size: 87.5% !default;
1322
+ $code-font-size: $small-font-size !default;
1124
1323
  $code-color: $pink !default;
1125
1324
 
1126
1325
  $kbd-padding-y: .2rem !default;
@@ -1129,19 +1328,4 @@ $kbd-font-size: $code-font-size !default;
1129
1328
  $kbd-color: $white !default;
1130
1329
  $kbd-bg: $gray-900 !default;
1131
1330
 
1132
- $pre-color: $gray-900 !default;
1133
- $pre-scrollable-max-height: 340px !default;
1134
-
1135
-
1136
- // Utilities
1137
-
1138
- $displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;
1139
- $overflows: auto, hidden !default;
1140
- $positions: static, relative, absolute, fixed, sticky !default;
1141
- $user-selects: all, auto, none !default;
1142
-
1143
-
1144
- // Printing
1145
-
1146
- $print-page-size: a3 !default;
1147
- $print-body-min-width: map-get($grid-breakpoints, "lg") !default;
1331
+ $pre-color: null !default;