@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,1205 @@
1
+ $alert-border-radius: var(--alert-border-radius, $border-radius) !default;
2
+ $alert-border-style: solid !default;
3
+ $alert-border-width: var(--alert-border-width, $border-width) !default;
4
+ $alert-font-size: var(--alert-font-size, 0.875rem) !default;
5
+ $alert-margin-bottom: 1rem !default;
6
+ $alert-padding-x: var(--alert-padding-x, 1rem) !default;
7
+ $alert-padding-y: var(--alert-padding-y, 0.9375rem) !default;
8
+
9
+ $alert-btn: () !default;
10
+ $alert-btn: map-deep-merge(
11
+ (
12
+ border-radius:
13
+ if(
14
+ variable-exists(btn-sm),
15
+ map-get($btn-sm, border-radius),
16
+ $border-radius-sm
17
+ ),
18
+ font-size:
19
+ if(
20
+ variable-exists(btn-sm),
21
+ map-get($btn-sm, font-size),
22
+ $font-size-sm
23
+ ),
24
+ line-height:
25
+ if(
26
+ variable-exists(btn-sm),
27
+ map-get($btn-sm, line-height),
28
+ $line-height-sm
29
+ ),
30
+ padding-bottom:
31
+ if(
32
+ variable-exists(btn-sm),
33
+ map-get($btn-sm, padding-bottom),
34
+ 0.25rem
35
+ ),
36
+ padding-left:
37
+ if(variable-exists(btn-sm), map-get($btn-sm, padding-left), 0.5rem),
38
+ padding-right:
39
+ if(variable-exists(btn-sm), map-get($btn-sm, padding-right), 0.5rem),
40
+ padding-top:
41
+ if(variable-exists(btn-sm), map-get($btn-sm, padding-top), 0.25rem),
42
+ ),
43
+ $alert-btn
44
+ );
45
+
46
+ $alert-btn-group: () !default;
47
+ $alert-btn-group: map-deep-merge(
48
+ (
49
+ margin-bottom: -0.125rem,
50
+ margin-top: -0.125rem,
51
+ ),
52
+ $alert-btn-group
53
+ );
54
+
55
+ $alert-btn-group-item: () !default;
56
+ $alert-btn-group-item: map-deep-merge(
57
+ (
58
+ margin-bottom: 0.125rem,
59
+ margin-top: 0.125rem,
60
+ ),
61
+ $alert-btn-group-item
62
+ );
63
+
64
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
65
+
66
+ $alert-close-font-size: 0.875rem !default;
67
+
68
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
69
+
70
+ $alert-close-height: 2rem !default;
71
+
72
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
73
+
74
+ $alert-close-line-height: null !default;
75
+
76
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
77
+
78
+ $alert-close-opacity: null !default;
79
+
80
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
81
+
82
+ $alert-close-margin-left: null !default;
83
+
84
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
85
+
86
+ $alert-close-padding-bottom: 0rem !default;
87
+
88
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
89
+
90
+ $alert-close-padding-left: 0rem !default;
91
+
92
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
93
+
94
+ $alert-close-padding-right: 0rem !default;
95
+
96
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
97
+
98
+ $alert-close-padding-top: 0rem !default;
99
+
100
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
101
+
102
+ $alert-close-position-right: 0.5rem !default;
103
+
104
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
105
+
106
+ $alert-close-position-top: 0.75rem !default;
107
+
108
+ // @deprecated as of v2.12.0 use the Sass map `$alert-close` instead
109
+
110
+ $alert-close-width: $alert-close-height !default;
111
+
112
+ $alert-close: () !default;
113
+ $alert-close: map-deep-merge(
114
+ (
115
+ color: inherit,
116
+ font-size: $alert-close-font-size,
117
+ height: $alert-close-height,
118
+ line-height: $alert-close-line-height,
119
+ margin-left: $alert-close-margin-left,
120
+ opacity: $alert-close-opacity,
121
+ padding-bottom: $alert-close-padding-bottom,
122
+ padding-left: $alert-close-padding-left,
123
+ padding-right: $alert-close-padding-right,
124
+ padding-top: $alert-close-padding-top,
125
+ position: absolute,
126
+ right: $alert-close-position-right,
127
+ top: $alert-close-position-top,
128
+ width: $alert-close-width,
129
+
130
+ hover: (
131
+ color: inherit,
132
+ ),
133
+ ),
134
+ $alert-close
135
+ );
136
+
137
+ $alert-lead-font-size: var(--alert-lead-font-size, $alert-font-size) !default;
138
+ $alert-lead-font-weight: var(
139
+ --alert-lead-font-weight,
140
+ $font-weight-semi-bold
141
+ ) !default;
142
+ $alert-lead-spacer-x: 0.3125rem !default;
143
+
144
+ $alert-title: () !default;
145
+
146
+ $alert-subtitle: () !default;
147
+
148
+ $alert: () !default;
149
+ $alert: map-deep-merge(
150
+ (
151
+ border-color: transparent,
152
+ border-style: $alert-border-style,
153
+ border-width: $alert-border-width,
154
+ border-radius: clay-enable-rounded($alert-border-radius),
155
+ display: block,
156
+ font-size: $alert-font-size,
157
+ margin-bottom: $alert-margin-bottom,
158
+ padding: $alert-padding-y $alert-padding-x,
159
+ position: relative,
160
+ white-space: normal,
161
+ word-wrap: break-word,
162
+
163
+ alert-btn: $alert-btn,
164
+
165
+ btn-group: $alert-btn-group,
166
+
167
+ btn-group-item: $alert-btn-group-item,
168
+
169
+ close: $alert-close,
170
+
171
+ lead: (
172
+ font-size: $alert-lead-font-size,
173
+ font-weight: $alert-lead-font-weight,
174
+ margin-right: $alert-lead-spacer-x,
175
+ ),
176
+
177
+ component-title: $alert-title,
178
+
179
+ component-subtitle: $alert-subtitle,
180
+ ),
181
+ $alert
182
+ );
183
+
184
+ // .alert-link
185
+
186
+ $alert-link-decoration: null !default;
187
+ $alert-link-font-weight: $font-weight-bold !default;
188
+
189
+ $alert-link-hover-decoration: underline !default;
190
+
191
+ $alert-link: () !default;
192
+ $alert-link: map-deep-merge(
193
+ (
194
+ font-weight: $alert-link-font-weight,
195
+ text-decoration: $alert-link-decoration,
196
+
197
+ hover: (
198
+ text-decoration: $alert-link-hover-decoration,
199
+ ),
200
+
201
+ focus: (
202
+ text-decoration: $alert-link-hover-decoration,
203
+ ),
204
+ ),
205
+ $alert-link
206
+ );
207
+
208
+ // .alert-indicator
209
+
210
+ $alert-indicator-font-size: 1.25rem !default;
211
+
212
+ $alert-indicator: () !default;
213
+ $alert-indicator: map-deep-merge(
214
+ (
215
+ font-size: $alert-indicator-font-size,
216
+ line-height: 1,
217
+ vertical-align: 8%,
218
+
219
+ lead: (
220
+ margin-left: $alert-lead-spacer-x,
221
+ ),
222
+ ),
223
+ $alert-indicator
224
+ );
225
+
226
+ // .alert-footer
227
+
228
+ $alert-footer: () !default;
229
+ $alert-footer: map-merge(
230
+ (
231
+ margin-top: 1.375rem,
232
+ ),
233
+ $alert-footer
234
+ );
235
+
236
+ // Alert Dismissible
237
+
238
+ $alert-dismissible-padding-bottom: null !default;
239
+ $alert-dismissible-padding-left: null !default;
240
+ $alert-dismissible-padding-right: 2.5rem !default;
241
+ $alert-dismissible-padding-top: null !default;
242
+
243
+ $alert-dismissible: () !default;
244
+ $alert-dismissible: map-deep-merge(
245
+ (
246
+ padding-bottom: $alert-dismissible-padding-bottom,
247
+ padding-left: $alert-dismissible-padding-left,
248
+ padding-right: $alert-dismissible-padding-right,
249
+ padding-top: $alert-dismissible-padding-top,
250
+ ),
251
+ $alert-dismissible
252
+ );
253
+
254
+ // Alert Fluid
255
+
256
+ // @deprecated use the Sass map `$alert-fluid` instead
257
+
258
+ $alert-fluid-border-bottom-width: 1px !default;
259
+
260
+ // @deprecated use the Sass map `$alert-fluid` instead
261
+
262
+ $alert-fluid-border-left-width: 0px !default;
263
+
264
+ // @deprecated use the Sass map `$alert-fluid` instead
265
+
266
+ $alert-fluid-border-right-width: 0px !default;
267
+
268
+ // @deprecated use the Sass map `$alert-fluid` instead
269
+
270
+ $alert-fluid-border-top-width: 0px !default;
271
+
272
+ // @deprecated use the Sass map `$alert-fluid` instead
273
+
274
+ $alert-fluid-border-width: $alert-fluid-border-top-width
275
+ $alert-fluid-border-right-width $alert-fluid-border-bottom-width
276
+ $alert-fluid-border-left-width !default;
277
+ $alert-fluid-margin-bottom: 0rem !default;
278
+
279
+ // @deprecated use the Sass map `$alert-fluid` instead
280
+
281
+ $alert-fluid-container: () !default;
282
+ $alert-fluid-container: map-merge(
283
+ (
284
+ padding-bottom: $alert-padding-y,
285
+ padding-left: $alert-padding-x,
286
+ padding-right: $alert-padding-x,
287
+ padding-top: $alert-padding-y,
288
+ ),
289
+ $alert-fluid-container
290
+ );
291
+
292
+ // @deprecated use the Sass map `$alert-fluid` instead
293
+
294
+ $alert-fluid-dismissible-container: () !default;
295
+ $alert-fluid-dismissible-container: map-merge(
296
+ (
297
+ padding-bottom: $alert-dismissible-padding-bottom,
298
+ padding-left: $alert-dismissible-padding-left,
299
+ padding-right:
300
+ calc(
301
+ #{$alert-dismissible-padding-right} + #{$grid-gutter-width * 0.5}
302
+ ),
303
+ padding-top: $alert-dismissible-padding-top,
304
+ position: relative,
305
+ ),
306
+ $alert-fluid-dismissible-container
307
+ );
308
+
309
+ $alert-fluid-close: () !default;
310
+ $alert-fluid-close: map-deep-merge(
311
+ (
312
+ right: calc(#{$grid-gutter-width * 0.5} + 0.25rem),
313
+ ),
314
+ $alert-fluid-close
315
+ );
316
+
317
+ $alert-fluid: () !default;
318
+ $alert-fluid: map-deep-merge(
319
+ (
320
+ border-radius: 0px,
321
+ border-width: $alert-fluid-border-width,
322
+ margin-bottom: $alert-fluid-margin-bottom,
323
+ padding: 0rem,
324
+
325
+ alert-dismissible: (
326
+ container-fluid: $alert-fluid-dismissible-container,
327
+ ),
328
+
329
+ container-fluid: $alert-fluid-container,
330
+
331
+ close: $alert-fluid-close,
332
+ ),
333
+ $alert-fluid
334
+ );
335
+
336
+ // .alert-notifications-absolute
337
+
338
+ $alert-notifications-absolute-bottom: null !default;
339
+ $alert-notifications-absolute-left: null !default;
340
+ $alert-notifications-absolute-right: 0.5rem !default;
341
+ $alert-notifications-absolute-top: 4.75rem !default;
342
+
343
+ $alert-notifications-absolute-bottom-mobile: null !default;
344
+ $alert-notifications-absolute-left-mobile: 0.5rem !default;
345
+ $alert-notifications-absolute-right-mobile: 0.5rem !default;
346
+ $alert-notifications-absolute-top-mobile: 4.25rem !default;
347
+
348
+ $alert-notifications-absolute: () !default;
349
+ $alert-notifications-absolute: map-deep-merge(
350
+ (
351
+ breakpoint-down: sm,
352
+ bottom: $alert-notifications-absolute-bottom,
353
+ height: 0rem,
354
+ left: $alert-notifications-absolute-left,
355
+ position: absolute,
356
+ right: $alert-notifications-absolute-right,
357
+ top: $alert-notifications-absolute-top,
358
+ z-index: $zindex-alert-notifications,
359
+
360
+ mobile: (
361
+ bottom: $alert-notifications-absolute-bottom-mobile,
362
+ left: $alert-notifications-absolute-left-mobile,
363
+ right: $alert-notifications-absolute-right-mobile,
364
+ top: $alert-notifications-absolute-top-mobile,
365
+ ),
366
+ ),
367
+ $alert-notifications-absolute
368
+ );
369
+
370
+ // .alert-notifications-fixed
371
+
372
+ $alert-notifications-fixed-bottom: 1.25rem !default;
373
+ $alert-notifications-fixed-left: 1.25rem !default;
374
+ $alert-notifications-fixed-right: null !default;
375
+ $alert-notifications-fixed-top: null !default;
376
+
377
+ $alert-notifications-fixed-bottom-mobile: 1rem !default;
378
+ $alert-notifications-fixed-left-mobile: calc(
379
+ #{$grid-gutter-width} * 0.5
380
+ ) !default;
381
+ $alert-notifications-fixed-right-mobile: calc(
382
+ #{$grid-gutter-width} * 0.5
383
+ ) !default;
384
+ $alert-notifications-fixed-top-mobile: null !default;
385
+
386
+ $alert-notifications-fixed: () !default;
387
+ $alert-notifications-fixed: map-deep-merge(
388
+ (
389
+ breakpoint-down: sm,
390
+ bottom: $alert-notifications-fixed-bottom,
391
+ left: $alert-notifications-fixed-left,
392
+ position: fixed,
393
+ right: $alert-notifications-fixed-right,
394
+ top: $alert-notifications-fixed-top,
395
+ z-index: $zindex-alert-notifications,
396
+
397
+ mobile: (
398
+ bottom: $alert-notifications-fixed-bottom-mobile,
399
+ left: $alert-notifications-fixed-left-mobile,
400
+ right: $alert-notifications-fixed-right-mobile,
401
+ top: $alert-notifications-fixed-top-mobile,
402
+ ),
403
+ ),
404
+ $alert-notifications-fixed
405
+ );
406
+
407
+ // .alert-notifications
408
+
409
+ $alert-notifications-box-shadow: null !default;
410
+ $alert-notifications-max-width: 22.5rem !default;
411
+
412
+ $alert-notification: () !default;
413
+ $alert-notification: map-merge(
414
+ (
415
+ box-shadow: $alert-notifications-box-shadow,
416
+ clear: both,
417
+ float: left,
418
+ margin-bottom: $alert-margin-bottom,
419
+ max-width: $alert-notifications-max-width,
420
+ ),
421
+ $alert-notification
422
+ );
423
+
424
+ $alert-notification-sm-down: () !default;
425
+ $alert-notification-sm-down: map-merge(
426
+ (
427
+ enabled: $enable-scaling-components,
428
+ max-width: none,
429
+ width: 100%,
430
+ ),
431
+ $alert-notification-sm-down
432
+ );
433
+
434
+ // .autofit-row.alert-autofit-row
435
+
436
+ $alert-autofit-row: () !default;
437
+ $alert-autofit-row: map-deep-merge(
438
+ (
439
+ align-items: baseline,
440
+ margin-left: -0.5rem,
441
+ margin-right: -0.5rem,
442
+ width: auto,
443
+
444
+ autofit-col: (
445
+ padding-left: 0.5rem,
446
+ padding-right: 0.5rem,
447
+ ),
448
+ ),
449
+ $alert-autofit-row
450
+ );
451
+
452
+ // Alert Color Levels
453
+
454
+ // @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors
455
+
456
+ $alert-bg-level: -10 !default;
457
+
458
+ // @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors
459
+
460
+ $alert-border-level: -9 !default;
461
+
462
+ // @deprecated as of v3.x with no replacement, this color modifier is too specific to support a variety of colors
463
+
464
+ $alert-color-level: 6 !default;
465
+
466
+ // Alert Feedback
467
+
468
+ $alert-feedback-close: () !default;
469
+ $alert-feedback-close: map-deep-merge(
470
+ (
471
+ font-size: inherit,
472
+ height: 1rem,
473
+ position: relative,
474
+ right: auto,
475
+ top: 0.125em,
476
+ width: 1rem,
477
+ ),
478
+ $alert-feedback-close
479
+ );
480
+
481
+ $alert-feedback: () !default;
482
+ $alert-feedback: map-deep-merge(
483
+ (
484
+ background-color: transparent,
485
+ border-width: 0rem,
486
+ margin-bottom: 0.25rem,
487
+ padding: 0rem,
488
+
489
+ close: (),
490
+ ),
491
+ $alert-feedback
492
+ );
493
+
494
+ // .alert-inline.alert
495
+
496
+ $alert-inline: () !default;
497
+ $alert-inline: map-deep-merge(
498
+ (
499
+ display: inline-block,
500
+ max-width: 100%,
501
+ width: auto,
502
+
503
+ alert-dismissible: (
504
+ padding-right: 3.5rem,
505
+ ),
506
+
507
+ alert-dismissible-alert-fluid: (
508
+ padding-right: 0rem,
509
+
510
+ container-fluid: (
511
+ padding-right: 3.5rem,
512
+ ),
513
+ ),
514
+
515
+ alert-autofit-row: (
516
+ align-items: center,
517
+ margin-bottom: calc(#{$alert-padding-y} * -1 - 1px),
518
+ margin-top: calc(#{$alert-padding-y} * -1 - 1px),
519
+ padding-bottom: 0.5625rem,
520
+ padding-top: 0.5625rem,
521
+ min-height: 3.5rem,
522
+
523
+ btn-group: (
524
+ margin-right: 2rem,
525
+ ),
526
+ ),
527
+
528
+ close: (
529
+ margin-top: -1rem,
530
+ top: 50%,
531
+ ),
532
+ ),
533
+ $alert-inline
534
+ );
535
+
536
+ // .alert-autofit-stacked.alert
537
+
538
+ $alert-autofit-stacked: () !default;
539
+ $alert-autofit-stacked: map-deep-merge(
540
+ (
541
+ alert-autofit-row: (
542
+ align-items: flex-start,
543
+ flex-direction: column,
544
+ margin-bottom: 0rem,
545
+ margin-top: 0rem,
546
+ min-height: 0rem,
547
+ padding-bottom: 0rem,
548
+ padding-top: 0rem,
549
+
550
+ autofit-col: (
551
+ width: 100%,
552
+ ),
553
+
554
+ btn-group: (
555
+ margin-right: 0rem,
556
+ margin-top: 0.875rem,
557
+ ),
558
+ ),
559
+
560
+ close: (
561
+ margin-top: 0rem,
562
+ top: map-get($alert-close, top),
563
+ ),
564
+ ),
565
+ $alert-autofit-stacked
566
+ );
567
+
568
+ // .alert-autofit-stacked-sm-down.alert
569
+
570
+ $alert-autofit-stacked-sm-down: () !default;
571
+ $alert-autofit-stacked-sm-down: map-deep-merge(
572
+ $alert-autofit-stacked,
573
+ $alert-autofit-stacked-sm-down
574
+ );
575
+
576
+ // .alert-autofit-stacked-xs-down.alert
577
+
578
+ $alert-autofit-stacked-xs-down: () !default;
579
+ $alert-autofit-stacked-xs-down: map-deep-merge(
580
+ $alert-autofit-stacked,
581
+ $alert-autofit-stacked-xs-down
582
+ );
583
+
584
+ // .alert-indicator-start.alert
585
+
586
+ $alert-indicator-start: () !default;
587
+ $alert-indicator-start: map-deep-merge(
588
+ (
589
+ padding-left:
590
+ calc(
591
+ #{$alert-indicator-font-size} + #{$alert-padding-x} + #{map-deep-get(
592
+ $alert-autofit-row,
593
+ autofit-col,
594
+ padding-left
595
+ )}
596
+ ),
597
+ alert-fluid: (
598
+ padding-left: 0rem,
599
+
600
+ container-fluid: (
601
+ padding-left:
602
+ calc(
603
+ #{$alert-indicator-font-size} + #{$alert-padding-x} + #{map-deep-get(
604
+ $alert-autofit-row,
605
+ autofit-col,
606
+ padding-left
607
+ )}
608
+ ),
609
+ ),
610
+ ),
611
+
612
+ alert-feedback: (
613
+ padding-left:
614
+ calc(
615
+ #{$alert-indicator-font-size} + #{map-deep-get(
616
+ $alert-autofit-row,
617
+ autofit-col,
618
+ padding-left
619
+ )}
620
+ ),
621
+ ),
622
+
623
+ alert-indicator: (
624
+ line-height: 1,
625
+ margin-left:
626
+ calc(
627
+ -1em - #{map-deep-get(
628
+ $alert-autofit-row,
629
+ autofit-col,
630
+ padding-left
631
+ )}
632
+ ),
633
+ margin-top: 4px,
634
+ position: absolute,
635
+
636
+ lead: (
637
+ margin-left: 0rem,
638
+ ),
639
+ ),
640
+
641
+ alert-autofit-row: (
642
+ alert-indicator-only-child: (
643
+ margin-right: 0rem,
644
+ ),
645
+ ),
646
+ ),
647
+ $alert-indicator-start
648
+ );
649
+
650
+ // .alert-primary
651
+
652
+ $alert-primary-bg: var(--alert-primary-background-color, $primary-l3) !default;
653
+ $alert-primary-border-color: var(
654
+ --alert-primary-border-color,
655
+ $primary-l1
656
+ ) !default;
657
+ $alert-primary-color: var(--alert-primary-color, $primary) !default;
658
+
659
+ $alert-primary-close-color: null !default;
660
+ $alert-primary-close-hover-color: null !default;
661
+
662
+ $alert-primary-lead-color: null !default;
663
+
664
+ $alert-primary-link-color: null !default;
665
+
666
+ $alert-primary-link-hover-color: null !default;
667
+
668
+ $alert-primary-btn: () !default;
669
+ $alert-primary-btn: map-deep-merge(
670
+ (
671
+ background-color: $white,
672
+ border-color: $primary-l1,
673
+ color: $primary,
674
+
675
+ hover: (
676
+ background-color: $primary,
677
+ border-color: transparent,
678
+ color: $white,
679
+ ),
680
+ ),
681
+ $alert-primary-btn
682
+ );
683
+
684
+ $alert-primary: () !default;
685
+ $alert-primary: map-deep-merge(
686
+ (
687
+ background-color: $alert-primary-bg,
688
+ border-color: $alert-primary-border-color,
689
+ color: $alert-primary-color,
690
+
691
+ hr: (
692
+ border-top-color: $primary,
693
+ ),
694
+
695
+ alert-btn: $alert-primary-btn,
696
+
697
+ close: (
698
+ color: $alert-primary-close-color,
699
+
700
+ hover: (
701
+ color: $alert-primary-close-hover-color,
702
+ ),
703
+ ),
704
+
705
+ lead: (
706
+ color: $alert-primary-lead-color,
707
+ ),
708
+
709
+ alert-link: (
710
+ color: $alert-primary-link-color,
711
+
712
+ hover: (
713
+ color: $alert-primary-link-hover-color,
714
+ ),
715
+ ),
716
+ ),
717
+ $alert-primary
718
+ );
719
+
720
+ // .alert-secondary
721
+
722
+ $alert-secondary-bg: var(
723
+ --alert-secondary-background-color,
724
+ $light-l1
725
+ ) !default;
726
+ $alert-secondary-border-color: var(
727
+ --alert-secondary-border-color,
728
+ $light-d2
729
+ ) !default;
730
+ $alert-secondary-color: var(--alert-secondary-color, $secondary) !default;
731
+
732
+ $alert-secondary-close-color: null !default;
733
+
734
+ $alert-secondary-close-hover-color: null !default;
735
+
736
+ $alert-secondary-lead-color: null !default;
737
+
738
+ $alert-secondary-link-color: null !default;
739
+
740
+ $alert-secondary-link-hover-color: null !default;
741
+
742
+ $alert-secondary-btn: () !default;
743
+ $alert-secondary-btn: map-deep-merge(
744
+ (
745
+ background-color: $white,
746
+ border-color: $secondary-l1,
747
+ color: $secondary,
748
+
749
+ hover: (
750
+ background-color: $secondary,
751
+ border-color: transparent,
752
+ color: $white,
753
+ ),
754
+ ),
755
+ $alert-secondary-btn
756
+ );
757
+
758
+ $alert-secondary: () !default;
759
+ $alert-secondary: map-deep-merge(
760
+ (
761
+ background-color: $alert-secondary-bg,
762
+ border-color: $alert-secondary-border-color,
763
+ color: $alert-secondary-color,
764
+
765
+ close: (
766
+ color: $alert-secondary-close-color,
767
+
768
+ hover: (
769
+ color: $alert-secondary-close-hover-color,
770
+ ),
771
+ ),
772
+
773
+ lead: (
774
+ color: $alert-secondary-lead-color,
775
+ ),
776
+
777
+ alert-link: (
778
+ color: $alert-secondary-link-color,
779
+
780
+ hover: (
781
+ color: $alert-secondary-link-hover-color,
782
+ ),
783
+ ),
784
+
785
+ alert-btn: $alert-secondary-btn,
786
+ ),
787
+ $alert-secondary
788
+ );
789
+
790
+ // .alert-success
791
+
792
+ $alert-success-bg: var(--alert-success-background-color, $success-l2) !default;
793
+ $alert-success-border-color: var(
794
+ --alert-success-border-color,
795
+ $success-l1
796
+ ) !default;
797
+ $alert-success-color: var(--alert-success-color, $success) !default;
798
+
799
+ $alert-success-close-color: null !default;
800
+
801
+ $alert-success-close-hover-color: null !default;
802
+
803
+ $alert-success-lead-color: null !default;
804
+
805
+ $alert-success-link-color: null !default;
806
+
807
+ $alert-success-link-hover-color: null !default;
808
+
809
+ $alert-success-btn: () !default;
810
+ $alert-success-btn: map-deep-merge(
811
+ (
812
+ background-color: $white,
813
+ border-color: $success-l1,
814
+ color: $success,
815
+
816
+ hover: (
817
+ background-color: $success,
818
+ border-color: transparent,
819
+ color: $white,
820
+ ),
821
+ ),
822
+ $alert-success-btn
823
+ );
824
+
825
+ $alert-success: () !default;
826
+ $alert-success: map-deep-merge(
827
+ (
828
+ background-color: $alert-success-bg,
829
+ border-color: $alert-success-border-color,
830
+ color: $alert-success-color,
831
+
832
+ close: (
833
+ color: $alert-success-close-color,
834
+
835
+ hover: (
836
+ color: $alert-success-close-hover-color,
837
+ ),
838
+ ),
839
+
840
+ lead: (
841
+ color: $alert-success-lead-color,
842
+ ),
843
+
844
+ alert-link: (
845
+ color: $alert-success-link-color,
846
+
847
+ hover: (
848
+ color: $alert-success-link-hover-color,
849
+ ),
850
+ ),
851
+
852
+ alert-btn: $alert-success-btn,
853
+ ),
854
+ $alert-success
855
+ );
856
+
857
+ // .alert-info
858
+
859
+ $alert-info-bg: var(--alert-info-background-color, $info-l2) !default;
860
+ $alert-info-border-color: var(--alert-info-border-color, $info-l1) !default;
861
+ $alert-info-color: var(--alert-info-color, $info) !default;
862
+
863
+ $alert-info-close-color: null !default;
864
+
865
+ $alert-info-close-hover-color: null !default;
866
+
867
+ $alert-info-lead-color: null !default;
868
+
869
+ $alert-info-link-color: null !default;
870
+
871
+ $alert-info-link-hover-color: null !default;
872
+
873
+ $alert-info-btn: () !default;
874
+ $alert-info-btn: map-deep-merge(
875
+ (
876
+ background-color: $white,
877
+ border-color: $info-l1,
878
+ color: $info,
879
+
880
+ hover: (
881
+ background-color: $info,
882
+ border-color: transparent,
883
+ color: $white,
884
+ ),
885
+ ),
886
+ $alert-info-btn
887
+ );
888
+
889
+ $alert-info: () !default;
890
+ $alert-info: map-deep-merge(
891
+ (
892
+ background-color: $alert-info-bg,
893
+ border-color: $alert-info-border-color,
894
+ color: $alert-info-color,
895
+
896
+ close: (
897
+ color: $alert-info-close-color,
898
+
899
+ hover: (
900
+ color: $alert-info-close-hover-color,
901
+ ),
902
+ ),
903
+
904
+ lead: (
905
+ color: $alert-info-lead-color,
906
+ ),
907
+
908
+ link: (
909
+ color: $alert-info-link-color,
910
+
911
+ hover: (
912
+ color: $alert-info-link-hover-color,
913
+ ),
914
+ ),
915
+
916
+ alert-btn: $alert-info-btn,
917
+ ),
918
+ $alert-info
919
+ );
920
+
921
+ // .alert-warning
922
+
923
+ $alert-warning-bg: var(--alert-warning-background-color, $warning-l2) !default;
924
+ $alert-warning-border-color: var(
925
+ --alert-warning-border-color,
926
+ $warning-l1
927
+ ) !default;
928
+ $alert-warning-color: var(--alert-warning-color, $warning) !default;
929
+
930
+ $alert-warning-close-color: null !default;
931
+
932
+ $alert-warning-close-hover-color: null !default;
933
+
934
+ $alert-warning-lead-color: null !default;
935
+
936
+ $alert-warning-link-color: null !default;
937
+
938
+ $alert-warning-link-hover-color: null !default;
939
+
940
+ $alert-warning-btn: () !default;
941
+ $alert-warning-btn: map-deep-merge(
942
+ (
943
+ background-color: $white,
944
+ border-color: $warning-l1,
945
+ color: $warning,
946
+
947
+ hover: (
948
+ background-color: $warning,
949
+ border-color: transparent,
950
+ color: $white,
951
+ ),
952
+ ),
953
+ $alert-warning-btn
954
+ );
955
+
956
+ $alert-warning: () !default;
957
+ $alert-warning: map-deep-merge(
958
+ (
959
+ background-color: $alert-warning-bg,
960
+ border-color: $alert-warning-border-color,
961
+ color: $alert-warning-color,
962
+
963
+ close: (
964
+ color: $alert-warning-close-color,
965
+
966
+ hover: (
967
+ color: $alert-warning-close-hover-color,
968
+ ),
969
+ ),
970
+
971
+ lead: (
972
+ color: $alert-warning-lead-color,
973
+ ),
974
+
975
+ link: (
976
+ color: $alert-warning-link-color,
977
+
978
+ hover: (
979
+ color: $alert-warning-link-hover-color,
980
+ ),
981
+ ),
982
+
983
+ alert-btn: $alert-warning-btn,
984
+ ),
985
+ $alert-warning
986
+ );
987
+
988
+ // .alert-danger
989
+
990
+ $alert-danger-bg: var(--alert-danger-background-color, $danger-l2) !default;
991
+ $alert-danger-border-color: var(--alert-danger-border-color, $danger) !default;
992
+ $alert-danger-color: var(--alert-danger-color, $danger) !default;
993
+
994
+ $alert-danger-close-color: null !default;
995
+
996
+ $alert-danger-close-hover-color: null !default;
997
+
998
+ $alert-danger-lead-color: null !default;
999
+
1000
+ $alert-danger-link-color: null !default;
1001
+
1002
+ $alert-danger-link-hover-color: null !default;
1003
+
1004
+ $alert-danger-btn: () !default;
1005
+ $alert-danger-btn: map-deep-merge(
1006
+ (
1007
+ background-color: $white,
1008
+ border-color: $danger-l1,
1009
+ color: $danger,
1010
+
1011
+ hover: (
1012
+ background-color: $danger,
1013
+ border-color: transparent,
1014
+ color: $white,
1015
+ ),
1016
+ ),
1017
+ $alert-danger-btn
1018
+ );
1019
+
1020
+ $alert-danger: () !default;
1021
+ $alert-danger: map-deep-merge(
1022
+ (
1023
+ background-color: $alert-danger-bg,
1024
+ border-color: $alert-danger-border-color,
1025
+ color: $alert-danger-color,
1026
+
1027
+ close: (
1028
+ color: $alert-danger-close-color,
1029
+
1030
+ hover: (
1031
+ color: $alert-danger-close-hover-color,
1032
+ ),
1033
+ ),
1034
+
1035
+ lead: (
1036
+ color: $alert-danger-lead-color,
1037
+ ),
1038
+
1039
+ link: (
1040
+ color: $alert-danger-link-color,
1041
+
1042
+ hover: (
1043
+ color: $alert-danger-link-hover-color,
1044
+ ),
1045
+ ),
1046
+
1047
+ alert-btn: $alert-danger-btn,
1048
+ ),
1049
+ $alert-danger
1050
+ );
1051
+
1052
+ // .alert-light
1053
+
1054
+ $alert-light-bg: var(--alert-light-background-color, $light-l2) !default;
1055
+ $alert-light-border-color: var(--alert-light-border-color, $light-l1) !default;
1056
+ $alert-light-color: var(--alert-light-color, $dark) !default;
1057
+
1058
+ $alert-light-close-color: null !default;
1059
+
1060
+ $alert-light-close-hover-color: null !default;
1061
+
1062
+ $alert-light-lead-color: null !default;
1063
+
1064
+ $alert-light-link-color: null !default;
1065
+
1066
+ $alert-light-link-hover-color: null !default;
1067
+
1068
+ $alert-light-btn: () !default;
1069
+ $alert-light-btn: map-deep-merge(
1070
+ (
1071
+ background-color: $white,
1072
+ border-color: $dark-l1,
1073
+ color: $dark,
1074
+
1075
+ hover: (
1076
+ background-color: $dark,
1077
+ border-color: transparent,
1078
+ color: $white,
1079
+ ),
1080
+ ),
1081
+ $alert-light-btn
1082
+ );
1083
+
1084
+ $alert-light: () !default;
1085
+ $alert-light: map-deep-merge(
1086
+ (
1087
+ background-color: $alert-light-bg,
1088
+ border-color: $alert-light-border-color,
1089
+ color: $alert-light-color,
1090
+
1091
+ close: (
1092
+ color: $alert-light-close-color,
1093
+
1094
+ hover: (
1095
+ color: $alert-light-close-hover-color,
1096
+ ),
1097
+ ),
1098
+
1099
+ lead: (
1100
+ color: $alert-light-lead-color,
1101
+ ),
1102
+
1103
+ link: (
1104
+ color: $alert-light-link-color,
1105
+
1106
+ hover: (
1107
+ color: $alert-light-link-hover-color,
1108
+ ),
1109
+ ),
1110
+
1111
+ alert-btn: $alert-light-btn,
1112
+ ),
1113
+ $alert-light
1114
+ );
1115
+
1116
+ // .alert-dark
1117
+
1118
+ $alert-dark-bg: var(--alert-dark-background-color, $dark-l2) !default;
1119
+ $alert-dark-border-color: var(--alert-dark-border-color, $dark-l1) !default;
1120
+ $alert-dark-color: var(--alert-dark-color, $light) !default;
1121
+
1122
+ $alert-dark-close-color: null !default;
1123
+
1124
+ $alert-dark-close-hover-color: null !default;
1125
+
1126
+ $alert-dark-lead-color: null !default;
1127
+
1128
+ $alert-dark-link-color: null !default;
1129
+
1130
+ $alert-dark-link-hover-color: null !default;
1131
+
1132
+ $alert-dark-btn: () !default;
1133
+ $alert-dark-btn: map-deep-merge(
1134
+ (
1135
+ background-color: $white,
1136
+ border-color: $dark-l1,
1137
+ color: $dark,
1138
+
1139
+ hover: (
1140
+ background-color: $dark,
1141
+ border-color: transparent,
1142
+ color: $white,
1143
+ ),
1144
+
1145
+ active: (
1146
+ background-color: unquote('hsl(from #{$dark} h s calc(l - 5))'),
1147
+ border-color: unquote('hsl(from #{$dark} h s calc(l - 5))'),
1148
+ ),
1149
+ ),
1150
+ $alert-dark-btn
1151
+ );
1152
+
1153
+ $alert-dark: () !default;
1154
+ $alert-dark: map-deep-merge(
1155
+ (
1156
+ background-color: $alert-dark-bg,
1157
+ border-color: $alert-dark-border-color,
1158
+ color: $alert-dark-color,
1159
+
1160
+ close: (
1161
+ color: $alert-dark-close-color,
1162
+
1163
+ hover: (
1164
+ color: $alert-dark-close-hover-color,
1165
+ ),
1166
+ ),
1167
+
1168
+ lead: (
1169
+ color: $alert-dark-lead-color,
1170
+ ),
1171
+
1172
+ link: (
1173
+ color: $alert-dark-link-color,
1174
+
1175
+ hover: (
1176
+ color: $alert-dark-link-hover-color,
1177
+ ),
1178
+ ),
1179
+
1180
+ alert-btn: $alert-dark-btn,
1181
+ ),
1182
+ $alert-dark
1183
+ );
1184
+
1185
+ $alert-palette: () !default;
1186
+ $alert-palette: map-deep-merge(
1187
+ (
1188
+ primary: $alert-primary,
1189
+
1190
+ secondary: $alert-secondary,
1191
+
1192
+ success: $alert-success,
1193
+
1194
+ info: $alert-info,
1195
+
1196
+ warning: $alert-warning,
1197
+
1198
+ danger: $alert-danger,
1199
+
1200
+ light: $alert-light,
1201
+
1202
+ dark: $alert-dark,
1203
+ ),
1204
+ $alert-palette
1205
+ );