@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,933 @@
1
+ $bg-checkered-fg: var(--bg-checkered-foreground-color, $gray-300) !default;
2
+
3
+ $c-focus-trap: () !default;
4
+ $c-focus-trap: map-merge(
5
+ (
6
+ background: inherit,
7
+ color: inherit,
8
+ display: contents,
9
+ font: inherit,
10
+ ),
11
+ $c-focus-trap
12
+ );
13
+
14
+ // .inline-scroller
15
+
16
+ $inline-scroller-max-height: var(--inline-scroller-max-height, 125px) !default;
17
+
18
+ $inline-scroller: () !default;
19
+ $inline-scroller: map-deep-merge(
20
+ (
21
+ list-style: none,
22
+ margin: 0,
23
+ max-height: $inline-scroller-max-height,
24
+ overflow: auto,
25
+
26
+ -webkit-overflow-scrolling: touch,
27
+
28
+ padding: 0,
29
+
30
+ focus: (
31
+ outline: 0,
32
+ ),
33
+
34
+ focus-visible: (
35
+ box-shadow: $component-focus-box-shadow,
36
+ ),
37
+ ),
38
+ $inline-scroller
39
+ );
40
+
41
+ // Autofit Row
42
+
43
+ $autofit-col-expand-min-width: 50px !default;
44
+
45
+ $autofit-padded-col-padding-x: 8px !default;
46
+ $autofit-padded-col-padding-y: 4px !default;
47
+
48
+ $autofit-padded-no-gutters-sm: () !default;
49
+ $autofit-padded-no-gutters-sm: map-merge(
50
+ (
51
+ margin: -4px,
52
+ width: auto,
53
+
54
+ autofit-col: (
55
+ padding: 4px,
56
+ ),
57
+ ),
58
+ $autofit-padded-no-gutters-sm
59
+ );
60
+
61
+ // Close
62
+
63
+ $close-color: var(--close-color, $gray-900) !default;
64
+ $close-font-size: var(
65
+ --close-font-size,
66
+ calc(#{$font-size-base} * 1.5)
67
+ ) !default;
68
+ $close-font-weight: var(--close-font-weight, $font-weight-bold) !default;
69
+ $close-text-shadow: var(--close-text-shadow, none) !default;
70
+
71
+ $close: () !default;
72
+ $close: map-deep-merge(
73
+ (
74
+ align-items: center,
75
+ appearance: none,
76
+ background-color: var(--close-background-color, transparent),
77
+ border-radius: var(--close-border-radius, $btn-border-radius-sm),
78
+ border-width: var(--close-border-width, 0),
79
+ color: $close-color,
80
+ cursor: $link-cursor,
81
+ display: inline-flex,
82
+ font-size: var(--close-font-size, 16px),
83
+ font-weight: $close-font-weight,
84
+ height: var(--close-height, 32px),
85
+ justify-content: center,
86
+ line-height: 1,
87
+ padding: var(--close-padding, 0),
88
+ text-align: center,
89
+ text-shadow: $close-text-shadow,
90
+ transition: $component-transition,
91
+ width: var(--close-width, 32px),
92
+ hover: (
93
+ color: var(--close-hover-color, $close-color),
94
+ text-decoration: none,
95
+ ),
96
+
97
+ focus: (
98
+ box-shadow: $component-focus-box-shadow,
99
+ outline: 0,
100
+ ),
101
+
102
+ disabled: (
103
+ box-shadow: var(--close-disabled-box-shadow, none),
104
+ color: var(--close-disabled-color, $gray-600),
105
+ cursor: $disabled-cursor,
106
+ opacity: var(--close-disabled-opacity, $component-disabled-opacity),
107
+ outline: 0,
108
+
109
+ active: (
110
+ pointer-events: none,
111
+ ),
112
+ ),
113
+
114
+ lexicon-icon: (
115
+ margin-top: 0,
116
+ ),
117
+ ),
118
+ $close
119
+ );
120
+
121
+ // C Focus Inset
122
+
123
+ $c-focus-inset-focus: () !default;
124
+ $c-focus-inset-focus: map-deep-merge(
125
+ (
126
+ box-shadow: $component-focus-inset-box-shadow,
127
+ border-color: $primary-l0,
128
+ outline: 0,
129
+ ),
130
+ $c-focus-inset-focus
131
+ );
132
+
133
+ // C Inner
134
+
135
+ $c-inner: () !default;
136
+ $c-inner: map-deep-merge(
137
+ (
138
+ align-items: inherit,
139
+ display: inherit,
140
+ flex-direction: inherit,
141
+ height: inherit,
142
+ justify-content: inherit,
143
+ line-height: inherit,
144
+ max-width: inherit,
145
+ min-width: inherit,
146
+ outline: 0,
147
+ overflow: inherit,
148
+ padding-bottom: inherit,
149
+ padding-left: inherit,
150
+ padding-right: inherit,
151
+ padding-top: inherit,
152
+ text-overflow: inherit,
153
+ width: inherit,
154
+ ),
155
+ $c-inner
156
+ );
157
+
158
+ // Heading
159
+
160
+ $heading-spacer-x: var(--heading-spacer-x, 16px) !default;
161
+
162
+ $heading-text-margin-bottom: var(--heading-text-margin-bottom, auto) !default;
163
+ $heading-text-margin-top: var(--heading-text-margin-top, auto) !default;
164
+
165
+ // Inline Item
166
+
167
+ $inline-item-lexicon-icon-margin-top: -0.1em !default;
168
+ $inline-item-spacer-x: 8px !default;
169
+
170
+ $inline-item-loading-animation-font-size: null !default;
171
+
172
+ $inline-item: () !default;
173
+ $inline-item: map-deep-merge(
174
+ (
175
+ align-items: center,
176
+ display: inline-flex,
177
+ vertical-align: middle,
178
+
179
+ inline-item: (
180
+ display: inline,
181
+ ),
182
+
183
+ lexicon-icon: (
184
+ margin-top: $inline-item-lexicon-icon-margin-top,
185
+ ),
186
+
187
+ loading-animation: (
188
+ font-size: $inline-item-loading-animation-font-size,
189
+ ),
190
+ ),
191
+ $inline-item
192
+ );
193
+
194
+ // Page Header
195
+
196
+ $page-header-bg: var(--page-header-background-color, $white) !default;
197
+
198
+ // Clay Gap
199
+
200
+ $c-gap: () !default;
201
+ $c-gap: map-merge(
202
+ (
203
+ 0: map-get($spacers, 0),
204
+ 1: map-get($spacers, 1),
205
+ 2: map-get($spacers, 2),
206
+ 3: map-get($spacers, 3),
207
+ 4: map-get($spacers, 4),
208
+ 5: map-get($spacers, 5),
209
+ ),
210
+ $c-gap
211
+ );
212
+
213
+ // Background
214
+
215
+ $bg-theme-colors: () !default;
216
+ $bg-theme-colors: map-deep-merge(
217
+ (
218
+ 'blue': (
219
+ background-color: $blue !important,
220
+
221
+ hover: (
222
+ background-color: unquote('hsl(from #{$blue} h s calc(l - 10))')
223
+ !important,
224
+ ),
225
+ ),
226
+
227
+ 'indigo': (
228
+ background-color: $indigo !important,
229
+
230
+ hover: (
231
+ background-color:
232
+ unquote('hsl(from #{$indigo} h s calc(l - 10))') !important,
233
+ ),
234
+ ),
235
+
236
+ 'purple': (
237
+ background-color: $purple !important,
238
+
239
+ hover: (
240
+ background-color:
241
+ unquote('hsl(from #{$purple} h s calc(l - 10))') !important,
242
+ ),
243
+ ),
244
+
245
+ 'pink': (
246
+ background-color: $pink !important,
247
+
248
+ hover: (
249
+ background-color: unquote('hsl(from #{$pink} h s calc(l - 10))')
250
+ !important,
251
+ ),
252
+ ),
253
+
254
+ 'red': (
255
+ background-color: $red !important,
256
+
257
+ hover: (
258
+ background-color: unquote('hsl(from #{$red} h s calc(l - 10))')
259
+ !important,
260
+ ),
261
+ ),
262
+
263
+ 'orange': (
264
+ background-color: $orange !important,
265
+
266
+ hover: (
267
+ background-color:
268
+ unquote('hsl(from #{$orange} h s calc(l - 10))') !important,
269
+ ),
270
+ ),
271
+
272
+ 'yellow': (
273
+ background-color: $yellow !important,
274
+
275
+ hover: (
276
+ background-color:
277
+ unquote('hsl(from #{$yellow} h s calc(l - 10))') !important,
278
+ ),
279
+ ),
280
+
281
+ 'green': (
282
+ background-color: $green !important,
283
+
284
+ hover: (
285
+ background-color:
286
+ unquote('hsl(from #{$green} h s calc(l - 10))') !important,
287
+ ),
288
+ ),
289
+
290
+ 'teal': (
291
+ background-color: $teal !important,
292
+
293
+ hover: (
294
+ background-color: unquote('hsl(from #{$teal} h s calc(l - 10))')
295
+ !important,
296
+ ),
297
+ ),
298
+
299
+ 'cyan': (
300
+ background-color: $cyan !important,
301
+
302
+ hover: (
303
+ background-color: unquote('hsl(from #{$cyan} h s calc(l - 10))')
304
+ !important,
305
+ ),
306
+ ),
307
+
308
+ 'primary': (
309
+ background-color: $primary !important,
310
+
311
+ hover: (
312
+ background-color:
313
+ unquote('hsl(from #{$primary} h s calc(l - 10))') !important,
314
+ ),
315
+ ),
316
+
317
+ 'primary-l3': (
318
+ background-color: $primary-l3 !important,
319
+
320
+ hover: (
321
+ background-color:
322
+ unquote('hsl(from #{$primary-l3} h s calc(l - 10))')
323
+ !important,
324
+ ),
325
+ ),
326
+
327
+ 'secondary': (
328
+ background-color: $secondary !important,
329
+
330
+ hover: (
331
+ background-color:
332
+ unquote('hsl(from #{$secondary} h s calc(l - 10))')
333
+ !important,
334
+ ),
335
+ ),
336
+
337
+ 'success': (
338
+ background-color: $success !important,
339
+
340
+ hover: (
341
+ background-color:
342
+ unquote('hsl(from #{$success} h s calc(l - 10))') !important,
343
+ ),
344
+ ),
345
+
346
+ 'info': (
347
+ background-color: $info !important,
348
+
349
+ hover: (
350
+ background-color: unquote('hsl(from #{$info} h s calc(l - 10))')
351
+ !important,
352
+ ),
353
+ ),
354
+
355
+ 'warning': (
356
+ background-color: $warning !important,
357
+
358
+ hover: (
359
+ background-color:
360
+ unquote('hsl(from #{$warning} h s calc(l - 10))') !important,
361
+ ),
362
+ ),
363
+
364
+ 'danger': (
365
+ background-color: $danger !important,
366
+
367
+ hover: (
368
+ background-color:
369
+ unquote('hsl(from #{$danger} h s calc(l - 10))') !important,
370
+ ),
371
+ ),
372
+
373
+ 'light': (
374
+ background-color: $light !important,
375
+
376
+ hover: (
377
+ background-color:
378
+ unquote('hsl(from #{$light} h s calc(l - 10))') !important,
379
+ ),
380
+ ),
381
+
382
+ 'lighter': (
383
+ background-color: $gray-100 !important,
384
+
385
+ hover: (
386
+ background-color:
387
+ unquote('hsl(from #{$gray-100} h s calc(l - 10))')
388
+ !important,
389
+ ),
390
+ ),
391
+
392
+ 'dark': (
393
+ background-color: $dark !important,
394
+
395
+ hover: (
396
+ background-color: unquote('hsl(from #{$dark} h s calc(l - 10))')
397
+ !important,
398
+ ),
399
+ ),
400
+
401
+ 'gray-dark': (
402
+ background-color: $gray-800 !important,
403
+
404
+ hover: (
405
+ background-color:
406
+ unquote('hsl(from #{$gray-800} h s calc(l - 10))')
407
+ !important,
408
+ ),
409
+ ),
410
+
411
+ 'white': (
412
+ background-color: $white !important,
413
+ ),
414
+
415
+ 'transparent': (
416
+ background-color: transparent !important,
417
+ ),
418
+ ),
419
+ $bg-theme-colors
420
+ );
421
+
422
+ $bg-gradient-theme-colors: () !default;
423
+ $bg-gradient-theme-colors: map-deep-merge(
424
+ (
425
+ 'primary': (
426
+ background: $primary
427
+ linear-gradient(
428
+ 180deg,
429
+ clay-mix($body-bg, $primary, 15%),
430
+ $primary
431
+ )
432
+ repeat-x !important,
433
+ ),
434
+
435
+ 'secondary': (
436
+ background: $secondary
437
+ linear-gradient(
438
+ 180deg,
439
+ clay-mix($body-bg, $secondary, 15%),
440
+ $secondary
441
+ )
442
+ repeat-x !important,
443
+ ),
444
+
445
+ 'success': (
446
+ background: $success
447
+ linear-gradient(
448
+ 180deg,
449
+ clay-clay-mix($body-bg, $success, 15%),
450
+ $success
451
+ )
452
+ repeat-x !important,
453
+ ),
454
+
455
+ 'info': (
456
+ background: $info
457
+ linear-gradient(180deg, clay-mix($body-bg, $info, 15%), $info)
458
+ repeat-x !important,
459
+ ),
460
+
461
+ 'warning': (
462
+ background: $warning
463
+ linear-gradient(
464
+ 180deg,
465
+ clay-mix($body-bg, $warning, 15%),
466
+ $warning
467
+ )
468
+ repeat-x !important,
469
+ ),
470
+
471
+ 'danger': (
472
+ background: $danger
473
+ linear-gradient(
474
+ 180deg,
475
+ clay-mix($body-bg, $danger, 15%),
476
+ $danger
477
+ )
478
+ repeat-x !important,
479
+ ),
480
+
481
+ 'light': (
482
+ background: $light
483
+ linear-gradient(180deg, clay-mix($body-bg, $light, 15%), $light)
484
+ repeat-x !important,
485
+ ),
486
+
487
+ 'dark': (
488
+ background: $dark
489
+ linear-gradient(180deg, clay-mix($body-bg, $dark, 15%), $dark)
490
+ repeat-x !important,
491
+ ),
492
+ ),
493
+ $bg-gradient-theme-colors
494
+ );
495
+
496
+ // Border
497
+
498
+ $border-theme-colors: () !default;
499
+ $border-theme-colors: map-deep-merge(
500
+ (
501
+ 'primary': (
502
+ border-color: $primary !important,
503
+ ),
504
+
505
+ 'secondary': (
506
+ border-color: $secondary !important,
507
+ ),
508
+
509
+ 'success': (
510
+ border-color: $success !important,
511
+ ),
512
+
513
+ 'info': (
514
+ border-color: $info !important,
515
+ ),
516
+
517
+ 'warning': (
518
+ border-color: $warning !important,
519
+ ),
520
+
521
+ 'danger': (
522
+ border-color: $danger !important,
523
+ ),
524
+
525
+ 'light': (
526
+ border-color: $light !important,
527
+ ),
528
+
529
+ 'lighter': (
530
+ border-color: $gray-100 !important,
531
+ ),
532
+
533
+ 'dark': (
534
+ border-color: $dark !important,
535
+ ),
536
+
537
+ 'gray-dark': (
538
+ border-color: $gray-800 !important,
539
+ ),
540
+
541
+ 'white': (
542
+ border-color: $white !important,
543
+ ),
544
+ ),
545
+ $border-theme-colors
546
+ );
547
+
548
+ // Display
549
+
550
+ $displays: none, inline, inline-block, grid, block, contents, table, table-row,
551
+ table-cell, flex, inline-flex !default;
552
+
553
+ // Overflow
554
+
555
+ $overflows: auto, hidden !default;
556
+
557
+ // Position
558
+
559
+ $positions: static, relative, absolute, fixed, sticky !default;
560
+
561
+ // Font Sizes
562
+
563
+ $font-sizes: () !default;
564
+ $font-sizes: map-deep-merge(
565
+ (
566
+ text-1: (
567
+ font-size: var(--text-1-font-size, 10px),
568
+ ),
569
+ text-2: (
570
+ font-size: var(--text-2-font-size, 12px),
571
+ ),
572
+ text-3: (
573
+ font-size: var(--text-3-font-size, 14px),
574
+ ),
575
+ text-4: (
576
+ font-size: var(--text-4-font-size, 16px),
577
+ ),
578
+ text-5: (
579
+ font-size: var(--text-5-font-size, 18px),
580
+ ),
581
+ text-6: (
582
+ font-size: var(--text-6-font-size, 20px),
583
+ ),
584
+ text-7: (
585
+ font-size: var(--text-7-font-size, 24px),
586
+ ),
587
+ text-8: (
588
+ font-size: var(--text-8-font-size, 28px),
589
+ ),
590
+ text-9: (
591
+ font-size: var(--text-9-font-size, 32px),
592
+ ),
593
+ text-10: (
594
+ font-size: var(--text-10-font-size, 36px),
595
+ ),
596
+ text-11: (
597
+ font-size: var(--text-11-font-size, 40px),
598
+ ),
599
+ ),
600
+ $font-sizes
601
+ );
602
+
603
+ // Text
604
+
605
+ $text-theme-colors: () !default;
606
+ $text-theme-colors: map-deep-merge(
607
+ (
608
+ 'blue': (
609
+ color: $blue !important,
610
+
611
+ hover: (
612
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
613
+ ),
614
+ ),
615
+
616
+ 'indigo': (
617
+ color: $indigo !important,
618
+
619
+ hover: (
620
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
621
+ ),
622
+ ),
623
+
624
+ 'purple': (
625
+ color: $purple !important,
626
+
627
+ hover: (
628
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
629
+ ),
630
+ ),
631
+
632
+ 'pink': (
633
+ color: $pink !important,
634
+
635
+ hover: (
636
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
637
+ ),
638
+ ),
639
+
640
+ 'red': (
641
+ color: $red !important,
642
+
643
+ hover: (
644
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
645
+ ),
646
+ ),
647
+
648
+ 'orange': (
649
+ color: $orange !important,
650
+
651
+ hover: (
652
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
653
+ ),
654
+ ),
655
+
656
+ 'yellow': (
657
+ color: $yellow !important,
658
+
659
+ hover: (
660
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
661
+ ),
662
+ ),
663
+
664
+ 'green': (
665
+ color: $green !important,
666
+
667
+ hover: (
668
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
669
+ ),
670
+ ),
671
+
672
+ 'teal': (
673
+ color: $teal !important,
674
+
675
+ hover: (
676
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
677
+ ),
678
+ ),
679
+
680
+ 'cyan': (
681
+ color: $cyan !important,
682
+
683
+ hover: (
684
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
685
+ ),
686
+ ),
687
+
688
+ 'primary': (
689
+ color: $primary !important,
690
+
691
+ hover: (
692
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
693
+ ),
694
+ ),
695
+
696
+ 'secondary': (
697
+ color: $secondary !important,
698
+
699
+ hover: (
700
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
701
+ ),
702
+ ),
703
+
704
+ 'success': (
705
+ color: $success !important,
706
+
707
+ hover: (
708
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
709
+ ),
710
+ ),
711
+
712
+ 'info': (
713
+ color: $info !important,
714
+
715
+ hover: (
716
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
717
+ ),
718
+ ),
719
+
720
+ 'warning': (
721
+ color: $warning !important,
722
+
723
+ hover: (
724
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
725
+ ),
726
+ ),
727
+
728
+ 'danger': (
729
+ color: $danger !important,
730
+
731
+ hover: (
732
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
733
+ ),
734
+ ),
735
+
736
+ 'light': (
737
+ color: $light !important,
738
+
739
+ hover: (
740
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
741
+ ),
742
+ ),
743
+
744
+ 'lighter': (
745
+ color: $gray-100 !important,
746
+
747
+ hover: (
748
+ color: unquote('hsl(from #{$gray-100} h s calc(l - 15))')
749
+ !important,
750
+ ),
751
+ ),
752
+
753
+ 'dark': (
754
+ color: $dark !important,
755
+
756
+ hover: (
757
+ color: unquote('hsl(from #{$blue} h s calc(l - 15))') !important,
758
+ ),
759
+ ),
760
+
761
+ 'gray-dark': (
762
+ color: $gray-800 !important,
763
+
764
+ hover: (
765
+ color: unquote('hsl(from #{$gray-800} h s calc(l - 15))')
766
+ !important,
767
+ ),
768
+ ),
769
+
770
+ 'body': (
771
+ color: $body-color !important,
772
+ ),
773
+
774
+ 'muted': (
775
+ color: $text-muted !important,
776
+ ),
777
+
778
+ 'black-50': (
779
+ color: unquote('hsl(from #{$black} h s l / 0.5)') !important,
780
+ ),
781
+
782
+ 'white-50': (
783
+ color: unquote('hsl(from #{$white} h s l / 0.5)') !important,
784
+ ),
785
+ ),
786
+ $text-theme-colors
787
+ );
788
+
789
+ $text-decorations: () !default;
790
+ $text-decorations: map-deep-merge(
791
+ (
792
+ '.text-none, .text-decoration-none': (
793
+ text-decoration: none !important,
794
+ ),
795
+
796
+ '.text-underline, .text-decoration-underline': (
797
+ text-decoration: underline !important,
798
+ ),
799
+ ),
800
+ $text-decorations
801
+ );
802
+
803
+ // Text Truncate
804
+
805
+ $text-truncate: () !default;
806
+ $text-truncate: map-merge(
807
+ (
808
+ display: block,
809
+ overflow: hidden,
810
+ text-overflow: ellipsis,
811
+ white-space: nowrap,
812
+ ),
813
+ $text-truncate
814
+ );
815
+
816
+ // Text Truncate Inline
817
+
818
+ $text-truncate-inline: () !default;
819
+ $text-truncate-inline: map-deep-merge(
820
+ (
821
+ display: inline-flex,
822
+ max-width: 100%,
823
+
824
+ text-truncate: (
825
+ display: inline-block,
826
+ max-width: 100%,
827
+ overflow: hidden,
828
+ text-overflow: ellipsis,
829
+ vertical-align: bottom,
830
+ white-space: nowrap,
831
+ word-wrap: normal,
832
+ ),
833
+ ),
834
+ $text-truncate-inline
835
+ );
836
+
837
+ // C Prefers
838
+
839
+ $c-prefers-link-underline: () !default;
840
+ $c-prefers-link-underline: map-deep-merge(
841
+ (
842
+ '.c-prefers-link-underline .cadmin': (
843
+ '[href]:not(.disabled):not([role="button"])': (
844
+ text-decoration: underline !important,
845
+ ),
846
+
847
+ '.btn-monospaced, .nav-btn-monospaced, .nav-link-monospaced': (
848
+ '&[href]:not(.disabled):not([role="button"]):not([role="tab"])::after':
849
+ (
850
+ content: '\00a0\00a0\00a0',
851
+ position: absolute,
852
+ text-decoration: underline !important,
853
+ ),
854
+ ),
855
+
856
+ '.multi-step-item.active, .multi-step-item.complete, .multi-step-item.error, .dropdown':
857
+ (
858
+ '.multi-step-icon[href]:not([role="button"])::after': (
859
+ content: '\00a0\00a0\00a0',
860
+ position: absolute,
861
+ text-decoration: underline !important,
862
+ ),
863
+ ),
864
+
865
+ '.multi-step-item.disabled .multi-step-icon[href]:not([role="button"])::after':
866
+ (
867
+ text-decoration: none !important,
868
+ ),
869
+ ),
870
+ ),
871
+ $c-prefers-link-underline
872
+ );
873
+
874
+ $c-prefers-letter-spacing: () !default;
875
+ $c-prefers-letter-spacing: map-deep-merge(
876
+ (
877
+ '.c-prefers-letter-spacing-1 .cadmin, .c-prefers-letter-spacing-1 .cadmin *':
878
+ (
879
+ letter-spacing: 1px !important,
880
+ ),
881
+ ),
882
+ $c-prefers-letter-spacing
883
+ );
884
+
885
+ $displays-c-prefers-reduced-motion: () !default;
886
+ $displays-c-prefers-reduced-motion: map-deep-merge(
887
+ (
888
+ '.cadmin .d-block-c-prefers-reduced-motion': (
889
+ display: none !important,
890
+ ),
891
+ '.cadmin .d-inline-block-c-prefers-reduced-motion': (
892
+ display: none !important,
893
+ ),
894
+
895
+ '@media (prefers-reduced-motion: reduce)': (
896
+ '.cadmin .d-none-c-prefers-reduced-motion': (
897
+ display: none !important,
898
+ ),
899
+
900
+ '.cadmin .d-block-c-prefers-reduced-motion': (
901
+ display: block !important,
902
+ ),
903
+
904
+ '.cadmin .d-inline-block-c-prefers-reduced-motion': (
905
+ display: inline-block !important,
906
+ ),
907
+ ),
908
+
909
+ '.c-prefers-reduced-motion .cadmin': (
910
+ '.d-none-c-prefers-reduced-motion': (
911
+ display: none !important,
912
+ ),
913
+
914
+ '.d-block-c-prefers-reduced-motion': (
915
+ display: block !important,
916
+ ),
917
+
918
+ '.d-inline-block-c-prefers-reduced-motion': (
919
+ display: inline-block !important,
920
+ ),
921
+ ),
922
+ ),
923
+ $displays-c-prefers-reduced-motion
924
+ );
925
+
926
+ $c-prefers-reduced-motion: () !default;
927
+ $c-prefers-reduced-motion: map-merge(
928
+ (
929
+ scroll-behavior: auto,
930
+ transition: clay-enable-transitions(none),
931
+ ),
932
+ $c-prefers-reduced-motion
933
+ );