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