@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,645 @@
1
+ $modal-backdrop-bg: var(--modal-backdrop-bg, $gray-800) !default;
2
+ $modal-backdrop-opacity: var(--modal-backdrop-opacity, 0.8) !default;
3
+
4
+ $modal-backdrop: () !default;
5
+ $modal-backdrop: map-deep-merge(
6
+ (
7
+ background-color: $modal-backdrop-bg,
8
+ height: 100vh,
9
+ left: 0rem,
10
+ position: fixed,
11
+ top: 0rem,
12
+ width: 100vw,
13
+ z-index: $zindex-modal-backdrop,
14
+
15
+ '&.fade': (
16
+ opacity: 0,
17
+ ),
18
+
19
+ '&.show': (
20
+ opacity: $modal-backdrop-opacity,
21
+ ),
22
+ ),
23
+ $modal-backdrop
24
+ );
25
+
26
+ // Modal Dialog
27
+
28
+ $modal-dialog-margin: 0.5rem !default;
29
+ $modal-dialog-margin-y-sm-up: 1.75rem !default;
30
+
31
+ $modal-fade-transform: translate(0, -50px) !default;
32
+ $modal-scale-transform: scale(1.02) !default;
33
+ $modal-show-transform: none !default;
34
+ $modal-transition: transform 0.3s ease-out !default;
35
+
36
+ // Modal Content
37
+
38
+ $modal-content-bg: var(--modal-content-bg, $white) !default;
39
+ $modal-content-color: var(--modal-content-color, inherit) !default;
40
+ $modal-content-border-color: var(
41
+ --modal-content-border-color,
42
+ transparent
43
+ ) !default;
44
+ $modal-content-border-radius: var(
45
+ --modal-content-border-radius,
46
+ $border-radius-lg
47
+ ) !default;
48
+ $modal-content-border-width: var(
49
+ --modal-content-border-width,
50
+ $border-width
51
+ ) !default;
52
+
53
+ $modal-content-inner-border-radius: calc(
54
+ #{$modal-content-border-radius} - #{$modal-content-border-width}
55
+ ) !default;
56
+
57
+ $modal-content-box-shadow-xs: 0 0 3px 1px rgba(0, 0, 0, 0.2) !default;
58
+
59
+ $modal-content-box-shadow-sm-up: var(
60
+ --modal-content-box-shadow-sm-up,
61
+ 0 8px 16px unquote('hsl(from #{$black} h s l / 0.5)')
62
+ ) !default;
63
+
64
+ $modal-content: () !default;
65
+ $modal-content: map-deep-merge(
66
+ (
67
+ background-clip: padding-box,
68
+ background-color: $modal-content-bg,
69
+ border-radius: clay-enable-rounded($modal-content-border-radius),
70
+ border: $modal-content-border-width solid $modal-content-border-color,
71
+ box-shadow: clay-enable-shadows($modal-content-box-shadow-xs),
72
+ color: $modal-content-color,
73
+ display: flex,
74
+ flex-direction: column,
75
+ max-height: calc(100vh - #{$modal-dialog-margin} * 2),
76
+ outline: 0,
77
+ overflow: hidden,
78
+ pointer-events: auto,
79
+ position: relative,
80
+ width: 100%,
81
+ ),
82
+ $modal-content
83
+ );
84
+
85
+ // Modal Header
86
+
87
+ $modal-header-bg: var(--modal-header-bg, transparent) !default;
88
+ $modal-header-border-color: var(
89
+ --modal-header-border-color,
90
+ $gray-300
91
+ ) !default;
92
+ $modal-header-border-width: var(
93
+ --modal-header-border-width,
94
+ $modal-content-border-width
95
+ ) !default;
96
+ $modal-header-color: var(--modal-header-color, inherit) !default;
97
+ $modal-header-height: var(--modal-header-height, 64px) !default;
98
+ $modal-header-padding-x: var(--modal-header-padding-x, 24px) !default;
99
+ $modal-header-padding-y: var(--modal-header-padding-y, 24px) !default;
100
+
101
+ $modal-header-padding: var(--modal-header-padding, 24px) !default;
102
+
103
+ $modal-header-height-mobile: null !default;
104
+
105
+ $modal-header: () !default;
106
+ $modal-header: map-deep-merge(
107
+ (
108
+ breakpoint-down: sm,
109
+
110
+ align-items: center,
111
+ background-color: $modal-header-bg,
112
+ border-color: $modal-header-border-color,
113
+ border-style: solid,
114
+ border-top-radius:
115
+ clay-enable-rounded($modal-content-inner-border-radius),
116
+ border-width: 0px 0px $modal-header-border-width 0px,
117
+ color: $modal-header-color,
118
+ display: flex,
119
+ flex-shrink: 0,
120
+ height: $modal-header-height,
121
+ justify-content: space-between,
122
+ padding: $modal-header-padding,
123
+ padding-bottom: 0rem,
124
+ padding-top: 0rem,
125
+ z-index: 1,
126
+
127
+ '.modal-title': (
128
+ margin-bottom: 0rem,
129
+ margin-top: 0rem,
130
+ ),
131
+
132
+ mobile: (
133
+ height: $modal-header-height-mobile,
134
+ ),
135
+ ),
136
+ $modal-header
137
+ );
138
+
139
+ // Modal Body
140
+
141
+ $modal-inner-padding: var(--modal-inner-padding, 24px) !default;
142
+
143
+ $modal-body-bg: var(--modal-body-bg, transparent) !default;
144
+ $modal-body-color: var(--modal-body-color, inherit) !default;
145
+
146
+ $modal-body: () !default;
147
+ $modal-body: map-deep-merge(
148
+ (
149
+ background-color: $modal-body-bg,
150
+ border-top:
151
+ var(
152
+ --modal-body-border-top,
153
+ $modal-content-border-width solid $border-color
154
+ ),
155
+ color: $modal-body-color,
156
+ flex-grow: 1,
157
+ flex-shrink: 1,
158
+ margin-top:
159
+ var(
160
+ --modal-body-margin-top,
161
+ calc(#{$modal-content-border-width} * -1)
162
+ ),
163
+ overflow: auto,
164
+ overflow-wrap: break-word,
165
+ padding: $modal-inner-padding,
166
+ position: relative,
167
+
168
+ '.aspect-ratio': (
169
+ margin-left: calc(#{$modal-inner-padding} * -1),
170
+ margin-right: calc(#{$modal-inner-padding} * -1),
171
+ top: calc(#{$modal-inner-padding} * -1),
172
+ ),
173
+
174
+ '&.inline-scroller': (
175
+ max-height: none,
176
+ -webkit-overflow-scrolling: touch,
177
+ overflow: auto,
178
+ padding: $modal-inner-padding,
179
+ ),
180
+
181
+ '.modal-banner-img': (
182
+ margin-left: calc(#{$modal-inner-padding} * -1),
183
+ margin-right: calc(#{$modal-inner-padding} * -1),
184
+ top: calc(#{$modal-inner-padding} * -1),
185
+ ),
186
+
187
+ '> .close': (
188
+ position: absolute,
189
+ right: 1rem,
190
+ top: 1rem,
191
+ z-index: 1,
192
+ ),
193
+ ),
194
+ $modal-body
195
+ );
196
+
197
+ // Modal Footer
198
+
199
+ $modal-footer-margin-between: var(
200
+ --modal-footer-margin-between,
201
+ 0.5rem
202
+ ) !default;
203
+
204
+ $modal-footer-bg: var(--modal-footer-bg, transparent) !default;
205
+ $modal-footer-border-color: var(
206
+ --modal-footer-border-color,
207
+ $modal-header-border-color
208
+ ) !default;
209
+ $modal-footer-border-width: var(
210
+ --modal-footer-border-width,
211
+ $modal-header-border-width
212
+ ) !default;
213
+ $modal-footer-box-shadow: var(--modal-footer-box-shadow, none) !default;
214
+ $modal-footer-color: var(--modal-footer-color, inherit) !default;
215
+ $modal-footer-height: var(--modal-footer-height, auto) !default;
216
+ $modal-footer-padding-x: var(--modal-footer-padding-x, 1.5rem) !default;
217
+ $modal-footer-padding-y: var(--modal-footer-padding-y, 1rem) !default;
218
+
219
+ $modal-footer-height-mobile: null !default;
220
+
221
+ $modal-item-padding-x: var(--modal-item-padding-x, 0rem) !default;
222
+ $modal-item-padding-y: var(--modal-item-padding-y, 0rem) !default;
223
+
224
+ $modal-item-group: () !default;
225
+ $modal-item-group: map-deep-merge(
226
+ (
227
+ align-items: center,
228
+ display: flex,
229
+ flex-wrap: wrap,
230
+ min-width: 3rem,
231
+ padding-left: 0.5rem,
232
+ padding-right: 0.5rem,
233
+ width: 100%,
234
+ ),
235
+ $modal-item-group
236
+ );
237
+
238
+ $modal-item-group-first-child: () !default;
239
+ $modal-item-group-first-child: map-deep-merge(
240
+ (
241
+ padding-left: 0rem,
242
+ ),
243
+ $modal-item-group-first-child
244
+ );
245
+
246
+ $modal-item-group-last-child: () !default;
247
+ $modal-item-group-last-child: map-deep-merge(
248
+ (
249
+ padding-right: 0rem,
250
+ ),
251
+ $modal-item-group-last-child
252
+ );
253
+
254
+ $modal-item-group-only-child: () !default;
255
+ $modal-item-group-only-child: map-deep-merge(
256
+ (
257
+ padding-left: 0rem,
258
+ padding-right: 0rem,
259
+ ),
260
+ $modal-item-group-only-child
261
+ );
262
+
263
+ $modal-item: () !default;
264
+ $modal-item: map-deep-merge(
265
+ (
266
+ display: flex,
267
+ flex-direction: column,
268
+ flex-grow: 1,
269
+ flex-shrink: 1,
270
+ max-width: 100%,
271
+ min-height: 0rem,
272
+ min-width: 3.125rem,
273
+ padding: 0rem,
274
+ position: relative,
275
+ word-wrap: break-word,
276
+ ),
277
+ $modal-item
278
+ );
279
+
280
+ $modal-item-shrink: () !default;
281
+ $modal-item-shrink: map-deep-merge(
282
+ (
283
+ flex-grow: 0,
284
+ ),
285
+ $modal-item-shrink
286
+ );
287
+
288
+ // Modal Title
289
+
290
+ $modal-title-font-size: var(--modal-title-font-size, 20px) !default;
291
+ $modal-title-font-weight: var(
292
+ --modal-title-font-weight,
293
+ $font-weight-bold
294
+ ) !default;
295
+ $modal-title-line-height: var(
296
+ --modal-title-line-height,
297
+ $headings-line-height
298
+ ) !default;
299
+ $modal-title-text-align: var(--modal-title-text-align, left) !default;
300
+
301
+ $modal-title-font-size-mobile: null !default;
302
+
303
+ $modal-title-indicator-font-size: var(
304
+ --modal-title-indicator-font-size,
305
+ 14px
306
+ ) !default;
307
+ $modal-title-indicator-spacer-x: var(
308
+ --modal-title-indicator-spacer-x,
309
+ 8px
310
+ ) !default;
311
+
312
+ // Modal Subtitle
313
+
314
+ $modal-subtitle: () !default;
315
+ $modal-subtitle: map-deep-merge(
316
+ (
317
+ display: inline-block,
318
+ ),
319
+ $modal-subtitle
320
+ );
321
+
322
+ $modal-subtitle-divider: () !default;
323
+ $modal-subtitle-divider: map-deep-merge(
324
+ (
325
+ display: inline-block,
326
+ margin-left: 0.25rem,
327
+ margin-right: 0.25rem,
328
+ ),
329
+ $modal-subtitle-divider
330
+ );
331
+
332
+ $modal-subtitle-strong: () !default;
333
+
334
+ // Modal Close
335
+
336
+ $modal-close-spacer-x: 0.3125rem !default;
337
+
338
+ // Modal Full Screen
339
+
340
+ $modal-full-screen-spacer-x: 45px !default;
341
+ $modal-full-screen-spacer-y: $modal-full-screen-spacer-x !default;
342
+
343
+ // Modal Width
344
+
345
+ $modal-sm: var(--modal-sm, 320px) !default;
346
+
347
+ $modal-md: var(--modal-md, 600px) !default;
348
+
349
+ $modal-lg: var(--modal-lg, 896px) !default;
350
+
351
+ $modal-xl: var(--modal-xl, 1140px) !default;
352
+
353
+ // Modal Height
354
+
355
+ $modal-height-sm: var(--modal-height-sm, 250px) !default;
356
+
357
+ $modal-height-md: var(--modal-height-md, 450px) !default;
358
+
359
+ $modal-height-lg: var(--modal-height-lg, 650px) !default;
360
+
361
+ $modal-height-xl: var(--modal-height-xl, 800px) !default;
362
+
363
+ $modal-height-full-modal-content: () !default;
364
+ $modal-height-full-modal-content: map-merge(
365
+ (
366
+ bottom: $modal-dialog-margin-y-sm-up,
367
+ left: auto,
368
+ position: absolute,
369
+ right: auto,
370
+ top: $modal-dialog-margin-y-sm-up,
371
+ ),
372
+ $modal-height-full-modal-content
373
+ );
374
+
375
+ $modal-height-full-modal-content-sm-up: () !default;
376
+ $modal-height-full-modal-content-sm-up: map-merge(
377
+ (
378
+ bottom: $modal-dialog-margin-y-sm-up,
379
+ left: auto,
380
+ right: auto,
381
+ top: $modal-dialog-margin-y-sm-up,
382
+ ),
383
+ $modal-height-full-modal-content-sm-up
384
+ );
385
+
386
+ // Modal
387
+
388
+ $modal: () !default;
389
+ $modal: map-deep-merge(
390
+ (
391
+ display: none,
392
+ height: 100%,
393
+ left: 0rem,
394
+ outline: 0,
395
+ overflow: hidden,
396
+ position: fixed,
397
+ top: 0rem,
398
+ width: 100%,
399
+ z-index: $zindex-modal,
400
+
401
+ close: (
402
+ '&:first-child': (
403
+ margin-left: calc(#{$modal-close-spacer-x} * -1),
404
+ ),
405
+
406
+ '&:last-child': (
407
+ margin-right: calc(#{$modal-close-spacer-x} * -1),
408
+ ),
409
+ ),
410
+
411
+ modal-header: $modal-header,
412
+
413
+ modal-body: $modal-body,
414
+
415
+ modal-footer: (
416
+ align-items: center,
417
+ background-color: $modal-footer-bg,
418
+ border-bottom-left-radius:
419
+ clay-enable-rounded($modal-content-inner-border-radius),
420
+ border-bottom-right-radius:
421
+ clay-enable-rounded($modal-content-inner-border-radius),
422
+ border-top: $modal-footer-border-width solid
423
+ $modal-footer-border-color,
424
+ box-shadow: clay-enable-shadows($modal-footer-box-shadow),
425
+ color: $modal-footer-color,
426
+ display: flex,
427
+ flex-shrink: 0,
428
+ flex-wrap: wrap,
429
+ height: $modal-footer-height,
430
+ justify-content: flex-start,
431
+ padding-bottom: $modal-footer-padding-y,
432
+ padding-left: $modal-footer-padding-x,
433
+ padding-right: $modal-footer-padding-x,
434
+ padding-top: $modal-footer-padding-y,
435
+
436
+ '> *': (
437
+ margin: 0rem calc(#{$modal-footer-margin-between} * 0.5),
438
+ ),
439
+ ),
440
+
441
+ modal-title: (
442
+ flex-grow: 1,
443
+ font-family: var(--modal-title-font-family, inherit),
444
+ font-size: $modal-title-font-size,
445
+ font-weight: $modal-title-font-weight,
446
+ line-height: $modal-title-line-height,
447
+ margin: var(--modal-title-margin, 16px 0 24px 0),
448
+ overflow: hidden,
449
+ text-align: $modal-title-text-align,
450
+ text-overflow: ellipsis,
451
+ white-space: nowrap,
452
+
453
+ '[tabindex="-1"]': (
454
+ outline: 0,
455
+ ),
456
+ ),
457
+
458
+ modal-title-indicator: (
459
+ display: inline-block,
460
+ font-size: $modal-title-indicator-font-size,
461
+ margin-right: $modal-title-indicator-spacer-x,
462
+ margin-top: -0.2em,
463
+ vertical-align: middle,
464
+ ),
465
+
466
+ media-breakpoint-down: (
467
+ sm: (
468
+ close: (
469
+ margin-right: -0.5rem,
470
+ ),
471
+
472
+ modal-header: (
473
+ height: 3rem,
474
+ padding: 0.5rem 1rem,
475
+ ),
476
+
477
+ modal-title: (
478
+ font-size: 1.125rem,
479
+ ),
480
+
481
+ modal-body: (
482
+ padding: 0.5rem 1rem,
483
+ ),
484
+
485
+ modal-body-iframe: (
486
+ padding: 0rem,
487
+ ),
488
+
489
+ modal-footer: (
490
+ padding: 0.5rem,
491
+ ),
492
+ ),
493
+ ),
494
+ ),
495
+ $modal
496
+ );
497
+
498
+ // Modal Success
499
+
500
+ $modal-success: () !default;
501
+ $modal-success: map-deep-merge(
502
+ (
503
+ modal-header: (
504
+ background-color:
505
+ var(--modal-success-modal-header-background-color, $success-l2),
506
+ border-color:
507
+ var(--modal-success-modal-header-border-color, $success-l1),
508
+ color: var(--modal-success-modal-header-color, $success),
509
+ close: (
510
+ color: var(--modal-success-modal-header-close-color, $success),
511
+ hover: (
512
+ color:
513
+ var(
514
+ --modal-success-modal-header-close-hover-color,
515
+ inherit
516
+ ),
517
+ ),
518
+
519
+ disabled: (
520
+ color:
521
+ var(
522
+ --modal-success-modal-header-close-disabled-color,
523
+ inherit
524
+ ),
525
+ ),
526
+ ),
527
+ ),
528
+ ),
529
+ $modal-success
530
+ );
531
+
532
+ // Modal Info
533
+
534
+ $modal-info: () !default;
535
+ $modal-info: map-deep-merge(
536
+ (
537
+ modal-header: (
538
+ background-color:
539
+ var(--modal-info-modal-header-background-color, $info-l2),
540
+ border-color: var(--modal-info-modal-header-border-color, $info-l1),
541
+ color: var(--modal-info-modal-header-color, $info),
542
+ close: (
543
+ color: var(--modal-info-modal-header-close-color, $info),
544
+ hover: (
545
+ color:
546
+ var(
547
+ --modal-info-modal-header-close-hover-color,
548
+ inherit
549
+ ),
550
+ ),
551
+
552
+ disabled: (
553
+ color:
554
+ var(
555
+ --modal-info-modal-header-close-disabled-color,
556
+ inherit
557
+ ),
558
+ ),
559
+ ),
560
+ ),
561
+ ),
562
+ $modal-info
563
+ );
564
+
565
+ // Modal Warning
566
+
567
+ $modal-warning: () !default;
568
+ $modal-warning: map-deep-merge(
569
+ (
570
+ modal-header: (
571
+ background-color:
572
+ var(--modal-warning-modal-header-background-color, $warning-l2),
573
+ border-color:
574
+ var(--modal-warning-modal-header-border-color, $warning-l1),
575
+ color: var(--modal-warning-modal-header-color, $warning),
576
+ close: (
577
+ color: var(--modal-warning-modal-header-close-color, $warning),
578
+ hover: (
579
+ color:
580
+ var(
581
+ --modal-warning-modal-header-close-hover-color,
582
+ inherit
583
+ ),
584
+ ),
585
+
586
+ disabled: (
587
+ color:
588
+ var(
589
+ --modal-warning-modal-header-close-disabled-color,
590
+ inherit
591
+ ),
592
+ ),
593
+ ),
594
+ ),
595
+ ),
596
+ $modal-warning
597
+ );
598
+
599
+ // Modal Danger
600
+
601
+ $modal-danger: () !default;
602
+ $modal-danger: map-deep-merge(
603
+ (
604
+ modal-header: (
605
+ background-color:
606
+ var(--modal-danger-modal-header-background-color, $danger-l2),
607
+ border-color:
608
+ var(--modal-danger-modal-header-border-color, $danger-l1),
609
+ color: var(--modal-danger-modal-header-color, $danger),
610
+ close: (
611
+ color: var(--modal-danger-modal-header-close-color, $danger),
612
+ hover: (
613
+ color:
614
+ var(
615
+ --modal-danger-modal-header-close-hover-color,
616
+ inherit
617
+ ),
618
+ ),
619
+
620
+ disabled: (
621
+ color:
622
+ var(
623
+ --modal-danger-modal-header-close-disabled-color,
624
+ inherit
625
+ ),
626
+ ),
627
+ ),
628
+ ),
629
+ ),
630
+ $modal-danger
631
+ );
632
+
633
+ $modal-palette: () !default;
634
+ $modal-palette: map-deep-merge(
635
+ (
636
+ success: $modal-success,
637
+
638
+ info: $modal-info,
639
+
640
+ warning: $modal-warning,
641
+
642
+ danger: $modal-danger,
643
+ ),
644
+ $modal-palette
645
+ );