@clayui/css 3.160.0 → 3.162.0

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 (99) hide show
  1. package/lib/css/atlas.css +1716 -1586
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +1416 -1287
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +79 -12
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/arrow-key-down.svg +9 -0
  8. package/lib/images/icons/arrow-key-left.svg +9 -0
  9. package/lib/images/icons/arrow-key-right.svg +9 -0
  10. package/lib/images/icons/arrow-key-up.svg +9 -0
  11. package/lib/images/icons/books-brush.svg +9 -0
  12. package/lib/images/icons/icons.svg +1 -1
  13. package/package.json +1 -1
  14. package/src/images/icons/arrow-key-down.svg +9 -0
  15. package/src/images/icons/arrow-key-left.svg +9 -0
  16. package/src/images/icons/arrow-key-right.svg +9 -0
  17. package/src/images/icons/arrow-key-up.svg +9 -0
  18. package/src/images/icons/books-brush.svg +9 -0
  19. package/src/images/icons/icons.svg +1 -1
  20. package/src/scss/_components.scss +2 -0
  21. package/src/scss/_license-text.scss +1 -1
  22. package/src/scss/atlas/_variables.scss +6 -4
  23. package/src/scss/atlas/variables/_forms.scss +3 -1
  24. package/src/scss/atlas/variables/_globals.scss +10 -10
  25. package/src/scss/atlas/variables/_reorder.scss +1 -1
  26. package/src/scss/atlas-custom-properties/_variables.scss +66 -0
  27. package/src/scss/atlas-custom-properties/variables/_alerts.scss +1205 -0
  28. package/src/scss/atlas-custom-properties/variables/_application-bar.scss +60 -0
  29. package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +26 -0
  30. package/src/scss/atlas-custom-properties/variables/_badges.scss +341 -0
  31. package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +193 -0
  32. package/src/scss/atlas-custom-properties/variables/_buttons.scss +1442 -0
  33. package/src/scss/atlas-custom-properties/variables/_c-root.scss +343 -0
  34. package/src/scss/atlas-custom-properties/variables/_cards.scss +1212 -0
  35. package/src/scss/atlas-custom-properties/variables/_clay-color.scss +617 -0
  36. package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1096 -0
  37. package/src/scss/atlas-custom-properties/variables/_date-picker.scss +619 -0
  38. package/src/scss/atlas-custom-properties/variables/_drilldown.scss +244 -0
  39. package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1229 -0
  40. package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +72 -0
  41. package/src/scss/atlas-custom-properties/variables/_empty-state.scss +102 -0
  42. package/src/scss/atlas-custom-properties/variables/_forms.scss +2305 -0
  43. package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +48 -0
  44. package/src/scss/atlas-custom-properties/variables/_globals.scss +844 -0
  45. package/src/scss/atlas-custom-properties/variables/_icons.scss +71 -0
  46. package/src/scss/atlas-custom-properties/variables/_images.scss +9 -0
  47. package/src/scss/atlas-custom-properties/variables/_labels.scss +1374 -0
  48. package/src/scss/atlas-custom-properties/variables/_links.scss +466 -0
  49. package/src/scss/atlas-custom-properties/variables/_list-group.scss +488 -0
  50. package/src/scss/atlas-custom-properties/variables/_loaders.scss +226 -0
  51. package/src/scss/atlas-custom-properties/variables/_management-bar.scss +151 -0
  52. package/src/scss/atlas-custom-properties/variables/_menubar.scss +778 -0
  53. package/src/scss/atlas-custom-properties/variables/_modals.scss +645 -0
  54. package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +354 -0
  55. package/src/scss/atlas-custom-properties/variables/_navbar.scss +198 -0
  56. package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +449 -0
  57. package/src/scss/atlas-custom-properties/variables/_navs.scss +553 -0
  58. package/src/scss/atlas-custom-properties/variables/_pagination.scss +1064 -0
  59. package/src/scss/atlas-custom-properties/variables/_panels.scss +554 -0
  60. package/src/scss/atlas-custom-properties/variables/_popovers.scss +533 -0
  61. package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +149 -0
  62. package/src/scss/atlas-custom-properties/variables/_quick-action.scss +28 -0
  63. package/src/scss/atlas-custom-properties/variables/_range.scss +262 -0
  64. package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
  65. package/src/scss/atlas-custom-properties/variables/_resizer.scss +37 -0
  66. package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
  67. package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +2 -0
  68. package/src/scss/atlas-custom-properties/variables/_sidebar.scss +547 -0
  69. package/src/scss/atlas-custom-properties/variables/_slideout.scss +369 -0
  70. package/src/scss/atlas-custom-properties/variables/_stickers.scss +576 -0
  71. package/src/scss/atlas-custom-properties/variables/_tables.scss +1292 -0
  72. package/src/scss/atlas-custom-properties/variables/_tbar.scss +570 -0
  73. package/src/scss/atlas-custom-properties/variables/_time.scss +133 -0
  74. package/src/scss/atlas-custom-properties/variables/_timelines.scss +50 -0
  75. package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +702 -0
  76. package/src/scss/atlas-custom-properties/variables/_tooltip.scss +321 -0
  77. package/src/scss/atlas-custom-properties/variables/_treeview.scss +367 -0
  78. package/src/scss/atlas-custom-properties/variables/_type.scss +195 -0
  79. package/src/scss/atlas-custom-properties/variables/_utilities.scss +933 -0
  80. package/src/scss/cadmin/components/_focus-ring.scss +74 -0
  81. package/src/scss/cadmin/components/_forms.scss +2 -0
  82. package/src/scss/cadmin/components/_menubar.scss +8 -0
  83. package/src/scss/cadmin/components/_resizer.scss +19 -4
  84. package/src/scss/cadmin/variables/_breadcrumbs.scss +3 -1
  85. package/src/scss/cadmin/variables/_forms.scss +3 -1
  86. package/src/scss/cadmin/variables/_reorder.scss +1 -0
  87. package/src/scss/cadmin/variables/_resizer.scss +16 -3
  88. package/src/scss/cadmin.scss +1 -0
  89. package/src/scss/components/_focus-ring.scss +64 -0
  90. package/src/scss/components/_forms.scss +2 -0
  91. package/src/scss/components/_keyboard-arrows-indicator.scss +82 -0
  92. package/src/scss/components/_menubar.scss +8 -0
  93. package/src/scss/components/_resizer.scss +15 -4
  94. package/src/scss/functions/_global-functions.scss +6 -4
  95. package/src/scss/functions/_lx-icons-generated.scss +10 -0
  96. package/src/scss/variables/_breadcrumbs.scss +4 -2
  97. package/src/scss/variables/_forms.scss +2 -0
  98. package/src/scss/variables/_globals.scss +8 -8
  99. package/src/scss/variables/_resizer.scss +16 -3
@@ -0,0 +1,844 @@
1
+ // Global Variables
2
+
3
+ $clay-unset: clay-unset !default;
4
+
5
+ // An alias for `$clay-unset`
6
+
7
+ $c-unset: $clay-unset !default;
8
+
9
+ $clay-unset-placeholder: clay-unset-placeholder !default;
10
+
11
+ $enable-bs4-deprecated: false !default;
12
+ $enable-c-inner: true !default;
13
+ $enable-focus-visible: true !default;
14
+
15
+ $focus-visible-selector: if(
16
+ $enable-focus-visible,
17
+ '&:focus-visible',
18
+ '&:focus'
19
+ ) !default;
20
+
21
+ $c-prefers-focus-selector: if(
22
+ $enable-focus-visible,
23
+ '.c-prefers-focus &:focus',
24
+ null
25
+ ) !default;
26
+
27
+ $enable-lexicon-flat-colors: true !default;
28
+ $enable-scaling-components: true !default;
29
+
30
+ $scaling-breakpoint-down: sm !default;
31
+
32
+ $enable-clay-color-functions-process-fallback: false !default;
33
+
34
+ $enable-caret: false !default;
35
+ $enable-deprecation-messages: true !default;
36
+ $enable-gradients: false !default;
37
+ $enable-grid-classes: true !default;
38
+ $enable-pagination-sizes: false !default;
39
+ $enable-pointer-cursor-for-buttons: true !default;
40
+ $enable-prefers-reduced-motion-media-query: true !default;
41
+ $enable-print-styles: true !default;
42
+ $enable-responsive-font-sizes: false !default;
43
+ $enable-rounded: true !default;
44
+ $enable-shadows: true !default;
45
+ $enable-transitions: true !default;
46
+ $enable-validation-icons: true !default;
47
+
48
+ // Deprecated, no longer affects any compiled CSS
49
+
50
+ $enable-hover-media-query: false !default;
51
+
52
+ // Theme Base Colors
53
+
54
+ $black: var(--black) !default;
55
+ $white: var(--white) !default;
56
+
57
+ $gray-100: var(--gray-100) !default;
58
+ $gray-200: var(--gray-200) !default;
59
+ $gray-300: var(--gray-300) !default;
60
+ $gray-400: var(--gray-400) !default;
61
+ $gray-500: var(--gray-500) !default;
62
+ $gray-600: var(--gray-600) !default;
63
+ $gray-700: var(--gray-700) !default;
64
+ $gray-800: var(--gray-800) !default;
65
+ $gray-900: var(--gray-900) !default;
66
+
67
+ $blue: var(--blue) !default;
68
+
69
+ $blue-d1: var(--blue-d1) !default;
70
+ $blue-d2: var(--blue-d2) !default;
71
+ $blue-d3: var(--blue-d3) !default;
72
+ $blue-d4: var(--blue-d4) !default;
73
+ $blue-l1: var(--blue-l1) !default;
74
+ $blue-l2: var(--blue-l2) !default;
75
+ $blue-l3: var(--blue-l3) !default;
76
+ $blue-l4: var(--blue-l4) !default;
77
+ $blue-l5: var(--blue-l5) !default;
78
+
79
+ $indigo: var(--indigo) !default;
80
+
81
+ $indigo-d1: var(--indigo-d1) !default;
82
+ $indigo-d2: var(--indigo-d2) !default;
83
+ $indigo-d3: var(--indigo-d3) !default;
84
+ $indigo-d4: var(--indigo-d4) !default;
85
+ $indigo-l1: var(--indigo-l1) !default;
86
+ $indigo-l2: var(--indigo-l2) !default;
87
+ $indigo-l3: var(--indigo-l3) !default;
88
+ $indigo-l4: var(--indigo-l4) !default;
89
+ $indigo-l5: var(--indigo-l5) !default;
90
+
91
+ $purple: var(--purple) !default;
92
+
93
+ $purple-d1: var(--purple-d1) !default;
94
+ $purple-d2: var(--purple-d2) !default;
95
+ $purple-d3: var(--purple-d3) !default;
96
+ $purple-d4: var(--purple-d4) !default;
97
+ $purple-l1: var(--purple-l1) !default;
98
+ $purple-l2: var(--purple-l2) !default;
99
+ $purple-l3: var(--purple-l3) !default;
100
+ $purple-l4: var(--purple-l4) !default;
101
+ $purple-l5: var(--purple-l5) !default;
102
+
103
+ $pink: var(--pink) !default;
104
+
105
+ $pink-d1: var(--pink-d1) !default;
106
+ $pink-d2: var(--pink-d2) !default;
107
+ $pink-d3: var(--pink-d3) !default;
108
+ $pink-d4: var(--pink-d4) !default;
109
+ $pink-l1: var(--pink-l1) !default;
110
+ $pink-l2: var(--pink-l2) !default;
111
+ $pink-l3: var(--pink-l3) !default;
112
+ $pink-l4: var(--pink-l4) !default;
113
+ $pink-l5: var(--pink-l5) !default;
114
+
115
+ $red: var(--red) !default;
116
+
117
+ $red-d1: var(--red-d1) !default;
118
+ $red-d2: var(--red-d2) !default;
119
+ $red-d3: var(--red-d3) !default;
120
+ $red-d4: var(--red-d4) !default;
121
+ $red-l1: var(--red-l1) !default;
122
+ $red-l2: var(--red-l2) !default;
123
+ $red-l3: var(--red-l3) !default;
124
+ $red-l4: var(--red-l4) !default;
125
+ $red-l5: var(--red-l5) !default;
126
+
127
+ $orange: var(--orange) !default;
128
+
129
+ $orange-d1: var(--orange-d1) !default;
130
+ $orange-d2: var(--orange-d2) !default;
131
+ $orange-d3: var(--orange-d3) !default;
132
+ $orange-d4: var(--orange-d4) !default;
133
+ $orange-l1: var(--orange-l1) !default;
134
+ $orange-l2: var(--orange-l2) !default;
135
+ $orange-l3: var(--orange-l3) !default;
136
+ $orange-l4: var(--orange-l4) !default;
137
+ $orange-l5: var(--orange-l5) !default;
138
+
139
+ $yellow: var(--yellow) !default;
140
+
141
+ $yellow-d1: var(--yellow-d1) !default;
142
+ $yellow-d2: var(--yellow-d2) !default;
143
+ $yellow-d3: var(--yellow-d3) !default;
144
+ $yellow-d4: var(--yellow-d4) !default;
145
+ $yellow-l1: var(--yellow-l1) !default;
146
+ $yellow-l2: var(--yellow-l2) !default;
147
+ $yellow-l3: var(--yellow-l3) !default;
148
+ $yellow-l4: var(--yellow-l4) !default;
149
+ $yellow-l5: var(--yellow-l5) !default;
150
+
151
+ $green: var(--green) !default;
152
+
153
+ $green-d1: var(--green-d1) !default;
154
+ $green-d2: var(--green-d2) !default;
155
+ $green-d3: var(--green-d3) !default;
156
+ $green-d4: var(--green-d4) !default;
157
+ $green-l1: var(--green-l1) !default;
158
+ $green-l2: var(--green-l2) !default;
159
+ $green-l3: var(--green-l3) !default;
160
+ $green-l4: var(--green-l4) !default;
161
+ $green-l5: var(--green-l5) !default;
162
+
163
+ $teal: var(--teal) !default;
164
+
165
+ $teal-d1: var(--teal-d1) !default;
166
+ $teal-d2: var(--teal-d2) !default;
167
+ $teal-d3: var(--teal-d3) !default;
168
+ $teal-d4: var(--teal-d4) !default;
169
+ $teal-l1: var(--teal-l1) !default;
170
+ $teal-l2: var(--teal-l2) !default;
171
+ $teal-l3: var(--teal-l3) !default;
172
+ $teal-l4: var(--teal-l4) !default;
173
+ $teal-l5: var(--teal-l5) !default;
174
+
175
+ $cyan: var(--cyan) !default;
176
+
177
+ $cyan-d1: var(--cyan-d1) !default;
178
+ $cyan-d2: var(--cyan-d2) !default;
179
+ $cyan-d3: var(--cyan-d3) !default;
180
+ $cyan-d4: var(--cyan-d4) !default;
181
+ $cyan-l1: var(--cyan-l1) !default;
182
+ $cyan-l2: var(--cyan-l2) !default;
183
+ $cyan-l3: var(--cyan-l3) !default;
184
+ $cyan-l4: var(--cyan-l4) !default;
185
+ $cyan-l5: var(--cyan-l5) !default;
186
+
187
+ $primary: var(--primary) !default;
188
+
189
+ $primary-d1: var(--primary-d1) !default;
190
+ $primary-d2: var(--primary-d2) !default;
191
+ $primary-l0: var(--primary-l0) !default;
192
+ $primary-l1: var(--primary-l1) !default;
193
+ $primary-l2: var(--primary-l2) !default;
194
+ $primary-l3: var(--primary-l3) !default;
195
+
196
+ $secondary: var(--secondary) !default;
197
+
198
+ $secondary-d1: var(--secondary-d1) !default;
199
+ $secondary-d2: var(--secondary-d2) !default;
200
+ $secondary-l0: var(--secondary-l0) !default;
201
+ $secondary-l1: var(--secondary-l1) !default;
202
+ $secondary-l2: var(--secondary-l2) !default;
203
+ $secondary-l3: var(--secondary-l3) !default;
204
+
205
+ $info: var(--info) !default;
206
+
207
+ $info-d1: var(--info-d1) !default;
208
+ $info-d2: var(--info-d2) !default;
209
+ $info-l1: var(--info-l1) !default;
210
+ $info-l2: var(--info-l2) !default;
211
+
212
+ $success: var(--success) !default;
213
+
214
+ $success-d1: var(--success-d1) !default;
215
+ $success-d2: var(--success-d2) !default;
216
+ $success-l1: var(--success-l1) !default;
217
+ $success-l2: var(--success-l2) !default;
218
+
219
+ $warning: var(--warning) !default;
220
+
221
+ $warning-d1: var(--warning-d1) !default;
222
+ $warning-d2: var(--warning-d2) !default;
223
+ $warning-l1: var(--warning-l1) !default;
224
+ $warning-l2: var(--warning-l2) !default;
225
+
226
+ $danger: var(--danger) !default;
227
+
228
+ $danger-d1: var(--danger-d1) !default;
229
+ $danger-d2: var(--danger-d2) !default;
230
+ $danger-l1: var(--danger-l1) !default;
231
+ $danger-l2: var(--danger-l2) !default;
232
+
233
+ $light: var(--light) !default;
234
+
235
+ $light-d1: var(--light-d1) !default;
236
+ $light-d2: var(--light-d2) !default;
237
+ $light-l1: var(--light-l1) !default;
238
+ $light-l2: var(--light-l2) !default;
239
+
240
+ $dark: var(--dark) !default;
241
+
242
+ $dark-d1: var(--dark-d1) !default;
243
+ $dark-d2: var(--dark-d2) !default;
244
+ $dark-l1: var(--dark-l1) !default;
245
+ $dark-l2: var(--dark-l2) !default;
246
+
247
+ $theme-colors: () !default;
248
+ $theme-colors: map-merge(
249
+ (
250
+ 'danger': $danger,
251
+ 'dark': $dark,
252
+ 'info': $info,
253
+ 'light': $light,
254
+ 'primary': $primary,
255
+ 'secondary': $secondary,
256
+ 'success': $success,
257
+ 'warning': $warning,
258
+ ),
259
+ $theme-colors
260
+ );
261
+
262
+ // Set a specific jump point for requesting color jumps
263
+
264
+ $theme-color-interval: 8% !default;
265
+
266
+ // The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.
267
+
268
+ $yiq-contrasted-threshold: 150 !default;
269
+
270
+ $yiq-text-dark: $gray-900 !default;
271
+ $yiq-text-light: $white !default;
272
+
273
+ // Spacing
274
+
275
+ $spacer: var(--spacer) !default;
276
+ $spacers: () !default;
277
+ $spacers: map-deep-merge(
278
+ (
279
+ 0: 0,
280
+ 1: calc(#{$spacer} * 0.25),
281
+ 2: calc(#{$spacer} * 0.5),
282
+ 3: calc(#{$spacer} * 1),
283
+ 4: calc(#{$spacer} * 1.5),
284
+ 5: calc(#{$spacer} * 3),
285
+ 6: calc(#{$spacer} * 4.5),
286
+ 7: calc(#{$spacer} * 6),
287
+ 8: calc(#{$spacer} * 7.5),
288
+ 9: calc(#{$spacer} * 9),
289
+ 10: calc(#{$spacer} * 10),
290
+ ),
291
+ $spacers
292
+ );
293
+
294
+ // This variable affects the `.h-*` and `.w-*` classes.
295
+
296
+ $sizes: () !default;
297
+ $sizes: map-merge(
298
+ (
299
+ 100: 100%,
300
+ 25: 25%,
301
+ 50: 50%,
302
+ 75: 75%,
303
+ auto: auto,
304
+ ),
305
+ $sizes
306
+ );
307
+
308
+ // Reusable Values
309
+
310
+ $line-height-lg: var(--line-height-lg) !default;
311
+ $line-height-sm: var(--line-height-sm) !default;
312
+
313
+ $line-height-base: var(--line-height-base) !default;
314
+
315
+ $border-color: var(--border-color) !default;
316
+ $border-width: var(--border-width) !default;
317
+
318
+ $border-radius: var(--border-radius) !default;
319
+
320
+ $border-radius-lg: var(--border-radius-lg) !default;
321
+ $border-radius-sm: var(--border-radius-sm) !default;
322
+
323
+ $rounded-0-border-radius: var(--rounded-0-border-radius) !default;
324
+ $rounded-border-radius: var(--rounded-border-radius) !default;
325
+ $rounded-circle-border-radius: var(--rounded-circle-border-radius) !default;
326
+ $rounded-pill: var(--rounded-pill) !default;
327
+
328
+ $box-shadow: var(--box-shadow) !default;
329
+
330
+ $box-shadow-lg: var(--box-shadow-lg) !default;
331
+ $box-shadow-sm: var(--box-shadow-sm) !default;
332
+
333
+ $transition-base: var(--transition-base) !default;
334
+ $transition-collapse: var(--transition-collapse) !default;
335
+ $transition-fade: var(--transition-fade) !default;
336
+
337
+ $embed-responsive-aspect-ratios: () !default;
338
+ $embed-responsive-aspect-ratios: join(
339
+ ((21 9), (16 9), (4 3), (1 1)),
340
+ $embed-responsive-aspect-ratios
341
+ );
342
+
343
+ $component-transition: var(--component-transition) !default;
344
+
345
+ $component-active-bg: var(--component-active-background-color) !default;
346
+ $component-active-color: var(--component-active-color, $white) !default;
347
+
348
+ $component-focus-box-shadow: var(--component-focus-box-shadow) !default;
349
+ $component-focus-inset-box-shadow: var(
350
+ --component-focus-inset-box-shadow
351
+ ) !default;
352
+
353
+ $component-disabled-opacity: var(--component-disabled-opacity) !default;
354
+
355
+ // Grid
356
+
357
+ $grid-breakpoints: (
358
+ xs: 0,
359
+ sm: 576px,
360
+ md: 768px,
361
+ lg: 992px,
362
+ xl: 1280px,
363
+ ) !default;
364
+
365
+ // Grid columns
366
+
367
+ $grid-columns: 12 !default;
368
+ $grid-gutter-width: 24px !default;
369
+ $grid-row-columns: 6 !default;
370
+
371
+ $clay-container: () !default;
372
+ $clay-container: map-merge(
373
+ (
374
+ margin-left: auto,
375
+ margin-right: auto,
376
+ padding-left: calc(#{$grid-gutter-width} * 0.5),
377
+ padding-right: calc(#{$grid-gutter-width} * 0.5),
378
+ width: 100%,
379
+ ),
380
+ $clay-container
381
+ );
382
+
383
+ $clay-container-fluid: () !default;
384
+ $clay-container-fluid: map-merge(
385
+ (
386
+ margin-left: auto,
387
+ margin-right: auto,
388
+ padding-left: calc(#{$grid-gutter-width} * 0.5),
389
+ padding-right: calc(#{$grid-gutter-width} * 0.5),
390
+ width: 100%,
391
+ ),
392
+ $clay-container-fluid
393
+ );
394
+
395
+ $container-max-widths: (
396
+ sm: 540px,
397
+
398
+ md: 720px,
399
+
400
+ lg: 960px,
401
+
402
+ xl: 1140px,
403
+
404
+ xxl: 1392px,
405
+
406
+ xxxl: 1872px,
407
+ ) !default;
408
+
409
+ @include _assert-ascending($container-max-widths, '$container-max-widths');
410
+
411
+ $container-form-lg: () !default;
412
+ $container-form-lg: map-deep-merge(
413
+ (
414
+ breakpoint-up: lg,
415
+ padding-bottom-mobile: 1rem,
416
+ padding-bottom: 3rem,
417
+ padding-top-mobile: 1rem,
418
+ padding-top: 3rem,
419
+ ),
420
+ $container-form-lg
421
+ );
422
+
423
+ $container-view: () !default;
424
+ $container-view: map-deep-merge(
425
+ (
426
+ padding-bottom: 1.5rem,
427
+ padding-top: 1.5rem,
428
+ ),
429
+ $container-view
430
+ );
431
+
432
+ $moz-osx-font-smoothing: grayscale !default;
433
+ $webkit-font-smoothing: antialiased !default;
434
+
435
+ $font-import-url: null !default;
436
+
437
+ $font-family-monospace: var(--font-family-monospace) !default;
438
+ $font-family-sans-serif: var(--font-family-sans-serif) !default;
439
+ $font-family-serif: var(--font-family-serif) !default;
440
+
441
+ $font-family-base: var(--font-family-base) !default;
442
+
443
+ $font-size-base: var(--font-size-base) !default;
444
+
445
+ $font-size-lg: var(--font-size-lg) !default;
446
+ $font-size-sm: var(--font-size-sm) !default;
447
+
448
+ $font-size-base-mobile: $font-size-base !default;
449
+ $font-size-lg-mobile: $font-size-lg !default;
450
+
451
+ $font-weight-bold: var(--font-weight-bold) !default;
452
+ $font-weight-bolder: var(--font-weight-bolder) !default;
453
+ $font-weight-light: var(--font-weight-light) !default;
454
+ $font-weight-lighter: var(--font-weight-lighter) !default;
455
+ $font-weight-normal: var(--font-weight-normal) !default;
456
+ $font-weight-semi-bold: var(--font-weight-semi-bold) !default;
457
+
458
+ $font-weight-base: $font-weight-normal !default;
459
+
460
+ $h1-font-size: var(--h1-font-size) !default;
461
+
462
+ $h1-font-size-mobile: null !default;
463
+
464
+ $h1: () !default;
465
+ $h1: map-deep-merge(
466
+ (
467
+ font-size: $h1-font-size,
468
+
469
+ media-breakpoint-down: (
470
+ sm: (
471
+ font-size: $h1-font-size-mobile,
472
+ ),
473
+ ),
474
+ ),
475
+ $h1
476
+ );
477
+
478
+ $h2-font-size: var(--h2-font-size) !default;
479
+
480
+ $h2-font-size-mobile: null !default;
481
+
482
+ $h2: () !default;
483
+ $h2: map-deep-merge(
484
+ (
485
+ font-size: $h2-font-size,
486
+
487
+ media-breakpoint-down: (
488
+ sm: (
489
+ font-size: $h2-font-size-mobile,
490
+ ),
491
+ ),
492
+ ),
493
+ $h2
494
+ );
495
+
496
+ $h3-font-size: var(--h3-font-size) !default;
497
+
498
+ $h3-font-size-mobile: null !default;
499
+
500
+ $h3: () !default;
501
+ $h3: map-deep-merge(
502
+ (
503
+ font-size: $h3-font-size,
504
+
505
+ media-breakpoint-down: (
506
+ sm: (
507
+ font-size: $h3-font-size-mobile,
508
+ ),
509
+ ),
510
+ ),
511
+ $h3
512
+ );
513
+
514
+ $h4-font-size: var(--h4-font-size) !default;
515
+
516
+ $h4-font-size-mobile: null !default;
517
+
518
+ $h4: () !default;
519
+ $h4: map-deep-merge(
520
+ (
521
+ font-size: $h4-font-size,
522
+
523
+ media-breakpoint-down: (
524
+ sm: (
525
+ font-size: $h4-font-size-mobile,
526
+ ),
527
+ ),
528
+ ),
529
+ $h4
530
+ );
531
+
532
+ $h5-font-size: var(--h5-font-size) !default;
533
+
534
+ $h5-font-size-mobile: null !default;
535
+
536
+ $h5: () !default;
537
+ $h5: map-deep-merge(
538
+ (
539
+ font-size: $h5-font-size,
540
+
541
+ media-breakpoint-down: (
542
+ sm: (
543
+ font-size: $h5-font-size-mobile,
544
+ ),
545
+ ),
546
+ ),
547
+ $h5
548
+ );
549
+
550
+ $h6-font-size: var(--h6-font-size) !default;
551
+
552
+ $h6-font-size-mobile: null !default;
553
+
554
+ $h6: () !default;
555
+ $h6: map-deep-merge(
556
+ (
557
+ font-size: $h6-font-size,
558
+
559
+ media-breakpoint-down: (
560
+ sm: (
561
+ font-size: $h6-font-size-mobile,
562
+ ),
563
+ ),
564
+ ),
565
+ $h6
566
+ );
567
+
568
+ $headings-color: var(--headings-color) !default;
569
+ $headings-font-family: var(--headings-font-family) !default;
570
+ $headings-font-weight: var(--headings-font-weight) !default;
571
+ $headings-line-height: var(--headings-line-height) !default;
572
+ $headings-margin-bottom: var(--headings-margin-bottom) !default;
573
+
574
+ $headings: () !default;
575
+ $headings: map-deep-merge(
576
+ (
577
+ color: $headings-color,
578
+ font-family: $headings-font-family,
579
+ font-weight: $headings-font-weight,
580
+ line-height: $headings-line-height,
581
+ margin-bottom: $headings-margin-bottom,
582
+ ),
583
+ $headings
584
+ );
585
+
586
+ // Body
587
+
588
+ $body-bg: var(--body-background-color) !default;
589
+ $body-color: var(--body-color) !default;
590
+ $body-moz-osx-font-smoothing: $moz-osx-font-smoothing !default;
591
+ $body-text-align: inherit !default;
592
+ $body-webkit-font-smoothing: $webkit-font-smoothing !default;
593
+
594
+ $c-body: () !default;
595
+ $c-body: map-merge(
596
+ (
597
+ -moz-osx-font-smoothing: $body-moz-osx-font-smoothing,
598
+ -ms-overflow-style: scrollbar,
599
+ -webkit-font-smoothing: $body-webkit-font-smoothing,
600
+ background-color: $body-bg,
601
+ color: $body-color,
602
+ font-family: var(--body-font-family),
603
+ font-size: var(--body-font-size),
604
+ font-weight: var(--body-font-weight),
605
+ line-height: var(--body-line-height),
606
+ margin: var(--body-margin),
607
+ text-align: $body-text-align
608
+ ),
609
+ $c-body
610
+ );
611
+
612
+ // Link
613
+
614
+ $link-color: var(--link-color) !default;
615
+ $link-decoration: var(--link-decoration) !default;
616
+ $link-hover-color: var(--link-hover-color) !default;
617
+ $link-hover-decoration: var(--link-hover-decoration) !default;
618
+
619
+ $link: () !default;
620
+ $link: map-deep-merge(
621
+ (
622
+ border-radius: 1px,
623
+ color: $link-color,
624
+ text-decoration: $link-decoration,
625
+ text-underline-offset: 0.23em,
626
+ transition: clay-enable-transitions($component-transition),
627
+ hover: (
628
+ color: $link-hover-color,
629
+ text-decoration: $link-hover-decoration,
630
+ ),
631
+
632
+ focus: (
633
+ box-shadow: $component-focus-box-shadow,
634
+ outline: 0,
635
+ ),
636
+ ),
637
+ $link
638
+ );
639
+
640
+ // Cursors
641
+
642
+ $disabled-cursor: not-allowed !default;
643
+ $link-cursor: pointer !default;
644
+
645
+ // Darken percentage for links with `.text-*` class (e.g. `.text-success`)
646
+
647
+ $emphasized-link-hover-darken-percentage: 15% !default;
648
+
649
+ // Paragraph
650
+
651
+ $paragraph-margin-bottom: var(--paragraph-margin-bottom) !default;
652
+
653
+ $display-line-height: $headings-line-height !default;
654
+
655
+ $display1-size: 6rem !default;
656
+ $display1-weight: 300 !default;
657
+
658
+ $display-1: () !default;
659
+ $display-1: map-deep-merge(
660
+ (
661
+ font-size: var(--display-1-font-size, $display1-size),
662
+ font-weight: var(--display-1-font-weight, $display1-weight),
663
+ line-height: var(--display-1-line-height, $display-line-height),
664
+ ),
665
+ $display-1
666
+ );
667
+
668
+ $display2-size: 5.5rem !default;
669
+ $display2-weight: 300 !default;
670
+
671
+ $display-2: () !default;
672
+ $display-2: map-deep-merge(
673
+ (
674
+ font-size: var(--display-2-font-size, $display2-size),
675
+ font-weight: var(--display-2-font-weight, $display2-weight),
676
+ line-height: $display-line-height,
677
+ ),
678
+ $display-2
679
+ );
680
+
681
+ $display3-size: 4.5rem !default;
682
+ $display3-weight: 300 !default;
683
+
684
+ $display-3: () !default;
685
+ $display-3: map-deep-merge(
686
+ (
687
+ font-size: var(--display-3-font-size, $display3-size),
688
+ font-weight: var(--display-3-font-weight, $display3-weight),
689
+ line-height: var(--display-3-line-height, $display-line-height),
690
+ ),
691
+ $display-3
692
+ );
693
+
694
+ $display4-size: 3.5rem !default;
695
+ $display4-weight: 300 !default;
696
+
697
+ $display-4: () !default;
698
+ $display-4: map-deep-merge(
699
+ (
700
+ font-size: var(--display-4-font-size, $display4-size),
701
+ font-weight: var(--display-4-font-weight, $display4-weight),
702
+ line-height: var(--display-4-line-height, $display-line-height),
703
+ ),
704
+ $display-4
705
+ );
706
+
707
+ $lead-font-size: var(--lead-font-size) !default;
708
+ $lead-font-weight: var(--lead-font-weight) !default;
709
+
710
+ $small-font-size: 0.875rem !default;
711
+
712
+ $text-muted: var(--text-muted) !default;
713
+
714
+ $blockquote-font-size: var(--blockquote-font-size) !default;
715
+
716
+ $blockquote-small-color: var(--blockquote-small-color) !default;
717
+ $blockquote-small-font-size: var(--blockquote-small-font-size) !default;
718
+
719
+ $hr-border-color: var(--hr-border-color) !default;
720
+ $hr-border-width: var(--hr-border-width) !default;
721
+ $hr-margin-y: var(--hr-margin-y) !default;
722
+
723
+ $mark-bg: #fcf8e3 !default;
724
+ $mark-color: null !default;
725
+ $mark-padding: 0.2em !default;
726
+
727
+ $mark: () !default;
728
+ $mark: map-deep-merge(
729
+ (
730
+ background-color: $mark-bg,
731
+ color: $mark-color,
732
+ display: inline,
733
+ line-height: normal,
734
+ padding: $mark-padding,
735
+ position: relative,
736
+ white-space: pre-wrap,
737
+ ),
738
+ $mark
739
+ );
740
+
741
+ $clay-dark-mark: () !default;
742
+ $clay-dark-mark: map-deep-merge(
743
+ (
744
+ background-color: $dark-l2,
745
+ color: $white,
746
+ ),
747
+ $clay-dark-mark
748
+ );
749
+
750
+ $dt-font-weight: $font-weight-bold !default;
751
+
752
+ $code-color: var(--code-color) !default;
753
+ $code-font-size: var(--code-font-size) !default;
754
+
755
+ $kbd-bg: $gray-900 !default;
756
+ $kbd-box-shadow: inset 0 -0.1rem 0 unquote('rgb(from #{$black} r g b / 0.25)') !default;
757
+ $kbd-color: $white !default;
758
+ $kbd-font-size: $code-font-size !default;
759
+ $kbd-padding-x: 0.4rem !default;
760
+ $kbd-padding-y: 0.2rem !default;
761
+
762
+ $nested-kbd-font-weight: $font-weight-bold !default;
763
+
764
+ $pre-color: $gray-900 !default;
765
+ $pre-scrollable-max-height: 340px !default;
766
+
767
+ $list-inline-padding: 0.5rem !default;
768
+
769
+ $mark-bg: #fcf8e3 !default;
770
+
771
+ $fieldset: () !default;
772
+ $fieldset: map-merge(
773
+ (
774
+ border: 0rem,
775
+ margin: 0rem,
776
+ min-width: 0rem,
777
+ padding: 0rem,
778
+ ),
779
+ $fieldset
780
+ );
781
+
782
+ $legend: () !default;
783
+ $legend: map-merge(
784
+ (
785
+ color: inherit,
786
+ display: block,
787
+ font-size: 1.5rem,
788
+ line-height: inherit,
789
+ margin-bottom: 0.5rem,
790
+ max-width: 100%,
791
+ padding: 0rem,
792
+ white-space: normal,
793
+ width: 100%,
794
+ ),
795
+ $legend
796
+ );
797
+
798
+ // Button
799
+
800
+ $c-button-base: () !default;
801
+ $c-button-base: map-merge(
802
+ (-webkit-appearance: button, cursor: $link-cursor),
803
+ $c-button-base
804
+ );
805
+
806
+ // Buttons + Forms
807
+
808
+ $label-margin-bottom: 0.5rem !default;
809
+
810
+ $input-btn-font-family: null !default;
811
+ $input-btn-font-size: $font-size-base !default;
812
+ $input-btn-line-height: $line-height-base !default;
813
+ $input-btn-padding-x: 0.75rem !default;
814
+ $input-btn-padding-y: 0.375rem !default;
815
+
816
+ $input-btn-focus-width: 0.2rem !default;
817
+
818
+ $input-btn-focus-color: unquote(
819
+ 'rgb(from #{$component-active-bg} r g b / 0.25)'
820
+ ) !default;
821
+
822
+ $input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
823
+
824
+ $input-btn-font-size-sm: $font-size-sm !default;
825
+ $input-btn-line-height-sm: $line-height-sm !default;
826
+ $input-btn-padding-x-sm: 0.5rem !default;
827
+ $input-btn-padding-y-sm: 0.25rem !default;
828
+
829
+ $input-btn-font-size-lg: $font-size-lg !default;
830
+ $input-btn-line-height-lg: $line-height-lg !default;
831
+ $input-btn-padding-x-lg: 1rem !default;
832
+ $input-btn-padding-y-lg: 0.5rem !default;
833
+
834
+ $input-btn-border-width: $border-width !default;
835
+
836
+ // Print
837
+
838
+ $print-body-min-width: map-get($grid-breakpoints, 'lg') !default;
839
+ $print-page-size: a3 !default;
840
+
841
+ $focus-ring-animation-from-box-shadow: var(
842
+ --focus-ring-animation-from-box-shadow
843
+ );
844
+ $focus-ring-animation-to-box-shadow: var(--focus-ring-animation-to-box-shadow);