@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,565 @@
1
+ @if ($enable-atlas-custom-properties) {
2
+ $popover-bg: var(--popover-background-color, $white);
3
+ $popover-border-color: var(--popover-border-color, transparent);
4
+ $popover-border-width: var(--popover-border-width, $border-width);
5
+
6
+ $popover-border-radius: var(--popover-border-radius, $border-radius);
7
+ $popover-inner-border-radius: var(
8
+ --popover-inner-border-radius,
9
+ calc(#{$popover-border-radius} - #{$popover-border-width})
10
+ );
11
+
12
+ $popover-box-shadow: var(
13
+ --popover-box-shadow,
14
+ 0 1px 15px -2px rgba(0, 0, 0, 0.2)
15
+ );
16
+ $popover-font-size: var(--popover-font-size, $font-size-sm);
17
+ $popover-max-width: var(--popover-max-width, 232px);
18
+
19
+ $popover-inline-scroller-max-height: var(
20
+ --popover-inline-scroller-max-height,
21
+ 238px
22
+ );
23
+
24
+ $popover-header-bg: var(--popover-header-background-color, $white);
25
+ $popover-header-border-color: var(--popover-header-border-color, $gray-300);
26
+ $popover-header-color: var(--popover-header-color, $gray-900);
27
+ $popover-header-font-size: var(--popover-header-font-size, 14px);
28
+ $popover-header-font-weight: var(
29
+ --popover-header-font-weight,
30
+ $font-weight-semi-bold
31
+ );
32
+ $popover-header-margin-x: var(--popover-header-margin-x, 16px);
33
+ $popover-header-margin-y: var(--popover-header-margin-y, 0);
34
+ $popover-header-padding-x: var(--popover-header-padding-x, 0);
35
+ $popover-header-padding-y: var(--popover-header-padding-y, 12px);
36
+
37
+ $popover-body-color: var(--popover-body-color, $gray-600);
38
+ $popover-body-padding-x: var(--popover-body-padding-x, 16px);
39
+ $popover-body-padding-y: var(--popover-body-padding-y, 12px);
40
+
41
+ $popover-offset-border-width: var(
42
+ --popover-offset-border-width,
43
+ $popover-inner-border-radius
44
+ );
45
+
46
+ $popover-arrow-color: var(--popover-arrow-color, $popover-bg);
47
+ $popover-arrow-height: var(--popover-arrow-height, 4.8px);
48
+ $popover-arrow-offset: var(--popover-arrow-offset, 10px);
49
+ $popover-arrow-width: var(
50
+ --popover-arrow-width,
51
+ calc(#{$popover-arrow-height} * 2)
52
+ );
53
+
54
+ $popover-arrow-outer-color: var(--popover-arrow-outer-color, transparent);
55
+
56
+ $popover-bottom-arrow-color: var(
57
+ --popover-bottom-arrow-color,
58
+ $popover-header-bg
59
+ );
60
+ $popover-bottom-left-arrow-color: var(
61
+ --popover-bottom-left-arrow-color,
62
+ $popover-header-bg
63
+ );
64
+ $popover-bottom-right-arrow-color: var(
65
+ --popover-bottom-right-arrow-color,
66
+ $popover-header-bg
67
+ );
68
+ $popover-left-arrow-color: var(
69
+ --popover-left-arrow-color,
70
+ $popover-arrow-color
71
+ );
72
+ $popover-left-bottom-arrow-color: var(
73
+ --popover-left-bottom-arrow-color,
74
+ $popover-arrow-color
75
+ );
76
+ $popover-left-top-arrow-color: var(
77
+ --popover-left-top-arrow-color,
78
+ $popover-header-bg
79
+ );
80
+ $popover-right-arrow-color: var(
81
+ --popover-right-arrow-color,
82
+ $popover-arrow-color
83
+ );
84
+ $popover-right-bottom-arrow-color: var(
85
+ --popover-right-bottom-arrow-color,
86
+ $popover-arrow-color
87
+ );
88
+ $popover-right-top-arrow-color: var(
89
+ --popover-right-top-arrow-color,
90
+ $popover-header-bg
91
+ );
92
+ $popover-top-arrow-color: var(
93
+ --popover-top-arrow-color,
94
+ $popover-arrow-color
95
+ );
96
+ $popover-top-left-arrow-color: var(
97
+ --popover-top-left-arrow-color,
98
+ $popover-arrow-color
99
+ );
100
+ $popover-top-right-arrow-color: var(
101
+ --popover-top-right-arrow-color,
102
+ $popover-arrow-color
103
+ );
104
+
105
+ // .popover
106
+
107
+ $popover: ();
108
+ $popover: map-deep-merge(
109
+ (
110
+ background-clip: padding-box,
111
+ background-color: $popover-bg,
112
+ border:
113
+ var(
114
+ --popover-border,
115
+ $popover-border-width solid $popover-border-color
116
+ ),
117
+ border-radius: clay-enable-rounded($popover-border-radius),
118
+ box-shadow: clay-enable-shadows($popover-box-shadow),
119
+ display: block,
120
+ font-family: var(--popover-font-family, $font-family-base),
121
+ font-size: $popover-font-size,
122
+ font-style: normal,
123
+ font-weight: var(--popover-font-weight, $font-weight-normal),
124
+ left: var(--left, 0),
125
+ letter-spacing: var(--popover-letter-spacing, normal),
126
+ line-break: auto,
127
+ line-height: var(--popover-line-height, $line-height-base),
128
+ max-width: $popover-max-width,
129
+ position: absolute,
130
+ text-align: left,
131
+ text-decoration: none,
132
+ text-shadow: none,
133
+ text-transform: none,
134
+ top: 0,
135
+ white-space: normal,
136
+ word-break: normal,
137
+ word-spacing: normal,
138
+ word-wrap: break-word,
139
+
140
+ focus: (
141
+ box-shadow: $component-focus-box-shadow,
142
+ outline: 0,
143
+ ),
144
+
145
+ arrow: (
146
+ display: block,
147
+ height: $popover-arrow-height,
148
+ margin: 0 $popover-border-radius,
149
+ position: absolute,
150
+ width: $popover-arrow-width,
151
+
152
+ before: (
153
+ border-color: transparent,
154
+ border-style: solid,
155
+ content: '',
156
+ display: block,
157
+ position: absolute,
158
+ ),
159
+
160
+ after: (
161
+ border-color: transparent,
162
+ border-style: solid,
163
+ content: '',
164
+ display: block,
165
+ position: absolute,
166
+ ),
167
+ ),
168
+
169
+ inline-scroller: (
170
+ max-height: $popover-inline-scroller-max-height,
171
+ ),
172
+ ),
173
+ $popover
174
+ );
175
+
176
+ // Popovers
177
+
178
+ $popovers: ();
179
+ $popovers: map-deep-merge(
180
+ (
181
+ popover: $popover,
182
+ ),
183
+ $popovers
184
+ );
185
+
186
+ // .popover-header
187
+
188
+ $popover-header: ();
189
+ $popover-header: map-deep-merge(
190
+ (
191
+ color: $popover-header-color,
192
+ background-color: $popover-header-bg,
193
+ border-bottom:
194
+ $popover-border-width
195
+ solid
196
+ unquote('hsl(from #{$popover-header-bg} h s calc(l - 5))'),
197
+ border-color: $popover-header-border-color,
198
+ border-top-left-radius:
199
+ clay-enable-rounded($popover-offset-border-width),
200
+ border-top-right-radius:
201
+ clay-enable-rounded($popover-offset-border-width),
202
+ font-size: $popover-header-font-size,
203
+ font-weight: $popover-header-font-weight,
204
+ margin-bottom: $popover-header-margin-y,
205
+ margin-left: $popover-header-margin-x,
206
+ margin-right: $popover-header-margin-x,
207
+ margin-top: $popover-header-margin-y,
208
+ padding: $popover-header-padding-y $popover-header-padding-x,
209
+
210
+ empty: (
211
+ display: none,
212
+ ),
213
+ ),
214
+ $popover-header
215
+ );
216
+
217
+ // Popover Headers
218
+
219
+ $popover-headers: ();
220
+ $popover-headers: map-deep-merge(
221
+ (
222
+ popover-header: $popover-header,
223
+ ),
224
+ $popover-headers
225
+ );
226
+
227
+ // .popover-body
228
+
229
+ $popover-body: ();
230
+ $popover-body: map-merge(
231
+ (
232
+ border-bottom-left-radius:
233
+ clay-enable-rounded($popover-offset-border-width),
234
+ border-bottom-right-radius:
235
+ clay-enable-rounded($popover-offset-border-width),
236
+ color: $popover-body-color,
237
+ padding: $popover-body-padding-y $popover-body-padding-x,
238
+ ),
239
+ $popover-body
240
+ );
241
+
242
+ // Popover Bodies
243
+
244
+ $popover-bodies: ();
245
+ $popover-bodies: map-deep-merge(
246
+ (
247
+ popover-body: $popover-body,
248
+ ),
249
+ $popover-bodies
250
+ );
251
+
252
+ // Popover Widths
253
+
254
+ $popover-widths: ();
255
+ $popover-widths: map-deep-merge(
256
+ (
257
+ popover-width-lg: (
258
+ max-width: var(--popover-width-lg-max-width, 421px),
259
+ ),
260
+ ),
261
+ $popover-widths
262
+ );
263
+
264
+ // .clay-popover-top, .clay-popover-top-left, .clay-popover-top-right
265
+
266
+ $clay-popover-top: ();
267
+ $clay-popover-top: map-deep-merge(
268
+ (
269
+ margin-bottom: $popover-arrow-height,
270
+
271
+ arrow: (
272
+ left: 50%,
273
+ margin-left: calc(#{$popover-arrow-width} * -0.5),
274
+ bottom:
275
+ calc(
276
+ (#{$popover-arrow-height} + #{$popover-border-width}) *
277
+ -1
278
+ ),
279
+ margin: 0,
280
+
281
+ before: (
282
+ border-top-color: $popover-arrow-outer-color,
283
+ border-width:
284
+ $popover-arrow-height
285
+ calc(#{$popover-arrow-width} * 0.5)
286
+ 0,
287
+ bottom: 0,
288
+ ),
289
+
290
+ after: (
291
+ border-top-color: $popover-top-arrow-color,
292
+ border-width:
293
+ $popover-arrow-height
294
+ calc(#{$popover-arrow-width} * 0.5)
295
+ 0,
296
+ bottom: $popover-border-width,
297
+ ),
298
+ ),
299
+ ),
300
+ $clay-popover-top
301
+ );
302
+
303
+ // .clay-popover-top-left
304
+
305
+ $clay-popover-top-left: ();
306
+ $clay-popover-top-left: map-deep-merge(
307
+ (
308
+ arrow: (
309
+ left: $popover-arrow-offset,
310
+ margin: 0,
311
+
312
+ after: (
313
+ border-top-color: $popover-top-left-arrow-color,
314
+ ),
315
+ ),
316
+ ),
317
+ $clay-popover-top-left
318
+ );
319
+
320
+ // .clay-popover-top-right
321
+
322
+ $clay-popover-top-right: ();
323
+ $clay-popover-top-right: map-deep-merge(
324
+ (
325
+ arrow: (
326
+ left: auto,
327
+ margin: 0,
328
+ right: $popover-arrow-offset,
329
+
330
+ after: (
331
+ border-top-color: $popover-top-right-arrow-color,
332
+ ),
333
+ ),
334
+ ),
335
+ $clay-popover-top-right
336
+ );
337
+
338
+ // .clay-popover-right, .clay-popover-right-bottom, .clay-popover-right-top
339
+
340
+ $clay-popover-right: ();
341
+ $clay-popover-right: map-deep-merge(
342
+ (
343
+ margin-left: $popover-arrow-height,
344
+
345
+ arrow: (
346
+ height: $popover-arrow-width,
347
+ left:
348
+ calc(
349
+ (#{$popover-arrow-height} + #{$popover-border-width}) *
350
+ -1
351
+ ),
352
+ margin: calc(#{$popover-arrow-height} * -0.5) 0 0,
353
+ top: 50%,
354
+ width: $popover-arrow-height,
355
+
356
+ before: (
357
+ border-right-color: $popover-arrow-outer-color,
358
+ border-width:
359
+ calc(#{$popover-arrow-width} * 0.5)
360
+ $popover-arrow-height
361
+ calc(#{$popover-arrow-width} * 0.5)
362
+ 0,
363
+ left: 0,
364
+ ),
365
+
366
+ after: (
367
+ border-right-color: $popover-right-arrow-color,
368
+ border-width:
369
+ calc(#{$popover-arrow-width} * 0.5)
370
+ $popover-arrow-height
371
+ calc(#{$popover-arrow-width} * 0.5)
372
+ 0,
373
+ left: $popover-border-width,
374
+ ),
375
+ ),
376
+ ),
377
+ $clay-popover-right
378
+ );
379
+
380
+ // .clay-popover-right-bottom
381
+
382
+ $clay-popover-right-bottom: ();
383
+ $clay-popover-right-bottom: map-deep-merge(
384
+ (
385
+ arrow: (
386
+ bottom: $popover-arrow-offset,
387
+ margin: 0,
388
+ top: auto,
389
+
390
+ after: (
391
+ border-right-color: $popover-right-bottom-arrow-color,
392
+ ),
393
+ ),
394
+ ),
395
+ $clay-popover-right-bottom
396
+ );
397
+
398
+ // .clay-popover-right-top
399
+
400
+ $clay-popover-right-top: ();
401
+ $clay-popover-right-top: map-deep-merge(
402
+ (
403
+ arrow: (
404
+ margin: 0,
405
+ top: $popover-arrow-offset,
406
+
407
+ after: (
408
+ border-right-color: $popover-right-top-arrow-color,
409
+ ),
410
+ ),
411
+ ),
412
+ $clay-popover-right-top
413
+ );
414
+
415
+ // .clay-popover-bottom, .clay-popover-bottom-left, .clay-popover-bottom-right
416
+
417
+ $clay-popover-bottom: ();
418
+ $clay-popover-bottom: map-deep-merge(
419
+ (
420
+ margin-top: $popover-arrow-height,
421
+
422
+ arrow: (
423
+ left: 50%,
424
+ margin: 0 0 0 calc(#{$popover-arrow-width} * -0.5),
425
+ top:
426
+ calc(
427
+ (#{$popover-arrow-height} + #{$popover-border-width}) *
428
+ -1
429
+ ),
430
+ before: (
431
+ border-bottom-color: $popover-arrow-outer-color,
432
+ border-width:
433
+ 0
434
+ calc(#{$popover-arrow-width} * 0.5)
435
+ $popover-arrow-height
436
+ calc(#{$popover-arrow-width} * 0.5),
437
+ top: 0,
438
+ ),
439
+
440
+ after: (
441
+ border-bottom-color: $popover-bottom-arrow-color,
442
+ border-width:
443
+ 0
444
+ calc(#{$popover-arrow-width} * 0.5)
445
+ $popover-arrow-height
446
+ calc(#{$popover-arrow-width} * 0.5),
447
+ top: $popover-border-width,
448
+ ),
449
+ ),
450
+ ),
451
+ $clay-popover-bottom
452
+ );
453
+
454
+ // .clay-popover-bottom-left
455
+
456
+ $clay-popover-bottom-left: ();
457
+ $clay-popover-bottom-left: map-deep-merge(
458
+ (
459
+ arrow: (
460
+ left: $popover-arrow-offset,
461
+ margin: 0,
462
+
463
+ after: (
464
+ border-bottom-color: $popover-bottom-left-arrow-color,
465
+ ),
466
+ ),
467
+ ),
468
+ $clay-popover-bottom-left
469
+ );
470
+
471
+ // .clay-popover-bottom-right
472
+
473
+ $clay-popover-bottom-right: ();
474
+ $clay-popover-bottom-right: map-deep-merge(
475
+ (
476
+ arrow: (
477
+ left: auto,
478
+ margin: 0,
479
+ right: $popover-arrow-offset,
480
+
481
+ after: (
482
+ border-bottom-color: $popover-bottom-right-arrow-color,
483
+ ),
484
+ ),
485
+ ),
486
+ $clay-popover-bottom-right
487
+ );
488
+
489
+ // .clay-popover-left, .clay-popover-left-bottom, .clay-popover-left-top
490
+
491
+ $clay-popover-left: ();
492
+ $clay-popover-left: map-deep-merge(
493
+ (
494
+ margin-right: $popover-arrow-height,
495
+
496
+ arrow: (
497
+ height: $popover-arrow-width,
498
+ margin: calc(#{$popover-arrow-height} * -0.5) 0 0,
499
+ right:
500
+ calc(
501
+ (#{$popover-arrow-height} + #{$popover-border-width}) *
502
+ -1
503
+ ),
504
+ top: 50%,
505
+ width: $popover-arrow-height,
506
+
507
+ before: (
508
+ border-left-color: $popover-arrow-outer-color,
509
+ border-width:
510
+ calc(#{$popover-arrow-width} * 0.5)
511
+ 0
512
+ calc(#{$popover-arrow-width} * 0.5)
513
+ $popover-arrow-height,
514
+ right: 0,
515
+ ),
516
+
517
+ after: (
518
+ border-left-color: $popover-left-arrow-color,
519
+ border-width:
520
+ calc(#{$popover-arrow-width} * 0.5)
521
+ 0
522
+ calc(#{$popover-arrow-width} * 0.5)
523
+ $popover-arrow-height,
524
+ right: $popover-border-width,
525
+ ),
526
+ ),
527
+ ),
528
+ $clay-popover-left
529
+ );
530
+
531
+ // .clay-popover-left-bottom
532
+
533
+ $clay-popover-left-bottom: ();
534
+ $clay-popover-left-bottom: map-deep-merge(
535
+ (
536
+ arrow: (
537
+ bottom: $popover-arrow-offset,
538
+ margin: 0,
539
+ top: auto,
540
+
541
+ after: (
542
+ border-left-color: $popover-left-bottom-arrow-color,
543
+ ),
544
+ ),
545
+ ),
546
+ $clay-popover-left-bottom
547
+ );
548
+
549
+ // .clay-popover-left-top
550
+
551
+ $clay-popover-left-top: ();
552
+ $clay-popover-left-top: map-deep-merge(
553
+ (
554
+ arrow: (
555
+ margin: 0,
556
+ top: $popover-arrow-offset,
557
+
558
+ after: (
559
+ border-left-color: $popover-left-top-arrow-color,
560
+ ),
561
+ ),
562
+ ),
563
+ $clay-popover-left-top
564
+ );
565
+ }
@@ -0,0 +1,142 @@
1
+ @if ($enable-atlas-custom-properties) {
2
+ $progress-bg: var(--progress-background-color, $gray-200);
3
+ $progress-border-radius: var(--progress-border-radius, 100px);
4
+ $progress-box-shadow: var(--progress-box-shadow, none);
5
+ $progress-font-size: var(--progress-font-size, 9px);
6
+ $progress-height: var(--progress-height, 8px);
7
+ $progress-min-width: var(--progress-min-width, 100px);
8
+
9
+ $progress-bar-animation-timing: var(
10
+ --progress-bar-animation-timing,
11
+ 1s linear infinite
12
+ );
13
+ $progress-bar-bg: var(--progress-bar-background-color, $primary);
14
+ $progress-bar-box-shadow: var(--progress-bar-box-shadow, null);
15
+ $progress-bar-color: var(--progress-bar-color, $white);
16
+ $progress-bar-transition: var(--progress-bar-transition, width 0.6s ease);
17
+
18
+ // Progress Sizes
19
+
20
+ $progress-border-radius-lg: var(--progress-border-radius-lg, 100px);
21
+ $progress-font-size-lg: var(--progress-font-size-lg, $font-size-lg);
22
+ $progress-height-lg: var(
23
+ --progress-height-lg,
24
+ calc(#{$progress-height} * 2)
25
+ );
26
+
27
+ // Progress Group
28
+
29
+ $progress-group-subtitle: ();
30
+ $progress-group-subtitle: map-deep-merge(
31
+ (
32
+ font-size: var(--progress-group-subtitle-font-size, 12px),
33
+ font-weight:
34
+ var(--progress-group-subtitle-font-weight, $font-weight-normal),
35
+ ),
36
+ $progress-group-subtitle
37
+ );
38
+
39
+ $progress-group-addon-font-size: var(
40
+ --progress-group-addon-font-size,
41
+ 14px
42
+ );
43
+ $progress-group-addon-font-weight: var(
44
+ --progress-group-addon-font-weight,
45
+ $font-weight-semi-bold
46
+ );
47
+ $progress-group-addon-spacer-x: var(--progress-group-addon-spacer-x, 16px);
48
+
49
+ $progress-group-addon: ();
50
+ $progress-group-addon: map-deep-merge(
51
+ (
52
+ font-size: $progress-group-addon-font-size,
53
+ font-weight: $progress-group-addon-font-weight,
54
+ margin-right: $progress-group-addon-spacer-x,
55
+ min-width: var(--progress-group-addon-min-width, 32px),
56
+ text-align: var(--progress-group-addon-text-align, center),
57
+ first-child: (
58
+ padding-left: 0,
59
+ ),
60
+
61
+ last-child: (
62
+ padding-right: 0,
63
+ ),
64
+ ),
65
+ $progress-group-addon
66
+ );
67
+
68
+ $progress-group-stacked-progress-margin-bottom: var(
69
+ --progress-group-stacked-progress-margin-bottom,
70
+ 4px
71
+ );
72
+ $progress-group-stacked-progress-margin-top: var(
73
+ --progress-group-stacked-progress-margin-top,
74
+ 4px
75
+ );
76
+
77
+ // Progress Variants
78
+
79
+ $progress-group-feedback-color: var(
80
+ --progress-group-feedback-color,
81
+ $primary
82
+ );
83
+
84
+ $progress-bar-danger-bg: var(
85
+ --progress-bar-danger-background-color,
86
+ $danger
87
+ );
88
+ $progress-group-feedback-danger-color: var(
89
+ --progress-group-feedback-danger-color,
90
+ $progress-bar-danger-bg
91
+ );
92
+
93
+ $progress-bar-info-bg: var(--progress-bar-info-background-color, $info);
94
+ $progress-group-feedback-info-color: var(
95
+ --progress-group-feedback-info-color,
96
+ $progress-bar-info-bg
97
+ );
98
+
99
+ $progress-bar-success-bg: var(
100
+ --progress-bar-success-background-color,
101
+ $success
102
+ );
103
+ $progress-group-feedback-success-color: var(
104
+ --progress-group-feedback-success-color,
105
+ $progress-bar-success-bg
106
+ );
107
+
108
+ $progress-bar-warning-bg: var(
109
+ --progress-bar-warning-background-color,
110
+ $warning
111
+ );
112
+ $progress-group-feedback-warning-color: var(
113
+ --progress-group-feedback-warning-color,
114
+ $progress-bar-warning-bg
115
+ );
116
+
117
+ $progress-palette: ();
118
+ $progress-palette: map-deep-merge(
119
+ (
120
+ success: (
121
+ bar-bg: $progress-bar-success-bg,
122
+ group-feedback-color: $progress-group-feedback-success-color,
123
+ ),
124
+
125
+ info: (
126
+ bar-bg: $progress-bar-info-bg,
127
+ group-feedback-color: $progress-group-feedback-info-color,
128
+ ),
129
+
130
+ warning: (
131
+ bar-bg: $progress-bar-warning-bg,
132
+ group-feedback-color: $progress-group-feedback-warning-color,
133
+ ),
134
+
135
+ danger: (
136
+ bar-bg: $progress-bar-danger-bg,
137
+ group-feedback-color: $progress-group-feedback-danger-color,
138
+ ),
139
+ ),
140
+ $progress-palette
141
+ );
142
+ }
@@ -0,0 +1,27 @@
1
+ @if ($enable-atlas-custom-properties) {
2
+ $quick-action-font-size: var(--quick-action-font-size, 16px);
3
+ $quick-action-padding-x: var(--quick-action-padding-x, 0px);
4
+ $quick-action-padding-y: var(--quick-action-padding-y, 0px);
5
+
6
+ $quick-action-item-margin-x: var(--quick-action-item-margin-x, 8px);
7
+ $quick-action-item-margin-y: var(--quick-action-item-margin-y, 0px);
8
+ $quick-action-item-padding-x: var(--quick-action-item-padding-x, 0px);
9
+ $quick-action-item-padding-y: var(--quick-action-item-padding-y, 0px);
10
+
11
+ $quick-action-item-min-height: var(--quick-action-item-min-height, 32px);
12
+ $quick-action-item-min-width: var(--quick-action-item-min-width, 32px);
13
+
14
+ $quick-action-item-border-radius: var(
15
+ --quick-action-item-border-radius,
16
+ $border-radius
17
+ );
18
+
19
+ $quick-action-item-disabled-cursor: var(
20
+ --quick-action-item-disabled-cursor,
21
+ $disabled-cursor
22
+ );
23
+ $quick-action-item-disabled-opacity: var(
24
+ --quick-action-item-disabled-opacity,
25
+ $component-disabled-opacity
26
+ );
27
+ }