@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,466 @@
1
+ $c-link: () !default;
2
+ $c-link: map-deep-merge(
3
+ (
4
+ text-decoration: none,
5
+ transition: clay-enable-transitions(box-shadow 0.15s ease-in-out),
6
+ hover: (
7
+ text-decoration: none,
8
+ ),
9
+
10
+ focus: (
11
+ border-radius: 1px,
12
+ box-shadow: $component-focus-box-shadow,
13
+ outline: 0,
14
+ ),
15
+
16
+ c-link-variants: (
17
+ text-secondary: (
18
+ color: $gray-900 !important,
19
+
20
+ hover: (
21
+ color: $black !important,
22
+ ),
23
+
24
+ focus: (
25
+ color: $black !important,
26
+ ),
27
+ ),
28
+
29
+ text-tertiary: (
30
+ color: $gray-900 !important,
31
+
32
+ hover: (
33
+ color: $black !important,
34
+ ),
35
+ ),
36
+ ),
37
+ ),
38
+ $c-link
39
+ );
40
+
41
+ $component-link: () !default;
42
+ $component-link: map-deep-merge(
43
+ (
44
+ border-radius: 1px,
45
+ color: var(--component-link-color, $gray-600),
46
+ transition:
47
+ var(--component-link-transition, box-shadow 0.15s ease-in-out),
48
+ hover: (
49
+ color: var(--component-link-hover-color, $gray-900),
50
+ ),
51
+
52
+ focus: (
53
+ color: var(--component-link-focus-color, $gray-900),
54
+ box-shadow:
55
+ var(
56
+ --component-link-focus-box-shadow,
57
+ $component-focus-box-shadow
58
+ ),
59
+ outline: 0,
60
+ ),
61
+ ),
62
+ $component-link
63
+ );
64
+
65
+ $link-primary: () !default;
66
+ $link-primary: map-deep-merge(
67
+ (
68
+ border-radius: 1px,
69
+ color: var(--link-primary-color, $primary),
70
+ transition: var(--link-primary-transition, box-shadow 0.15s ease-in-out),
71
+ hover: (
72
+ color: var(--link-primary-hover-color, $primary-d1),
73
+ ),
74
+
75
+ focus: (
76
+ color: var(--link-primary-focus-color, $primary-d1),
77
+ box-shadow:
78
+ var(
79
+ --link-primary-focus-box-shadow,
80
+ $component-focus-box-shadow
81
+ ),
82
+ outline: 0,
83
+ ),
84
+ ),
85
+ $link-primary
86
+ );
87
+
88
+ $link-secondary: () !default;
89
+ $link-secondary: map-deep-merge(
90
+ (
91
+ border-radius: 1px,
92
+ color: var(--link-secondary-color, $secondary),
93
+ transition: box-shadow 0.15s ease-in-out,
94
+
95
+ hover: (
96
+ color: var(--link-secondary-hover-color, $gray-900),
97
+ ),
98
+
99
+ focus: (
100
+ color: var(--link-secondary-focus-color, $gray-900),
101
+ box-shadow: $component-focus-box-shadow,
102
+ outline: 0,
103
+ ),
104
+ ),
105
+ $link-secondary
106
+ );
107
+
108
+ $single-link-font-weight: $font-weight-semi-bold !default;
109
+
110
+ // Link Outline
111
+
112
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
113
+
114
+ $link-outline-border-radius: $btn-border-radius !default;
115
+
116
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
117
+
118
+ $link-outline-border-width: $btn-border-width !default;
119
+
120
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
121
+
122
+ $link-outline-font-size: $btn-font-size-sm !default;
123
+
124
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
125
+
126
+ $link-outline-font-weight: $font-weight-semi-bold !default;
127
+
128
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
129
+
130
+ $link-outline-line-height: $btn-line-height-sm !default;
131
+
132
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
133
+
134
+ $link-outline-padding-x: $btn-padding-x-sm !default;
135
+
136
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
137
+
138
+ $link-outline-padding-y: $btn-padding-y-sm !default;
139
+
140
+ // @deprecated as of v3.4.0 use the Sass map `$link-outline` instead
141
+
142
+ $link-outline-transition: $component-transition !default;
143
+
144
+ $link-outline: () !default;
145
+ $link-outline: map-deep-merge(
146
+ (
147
+ align-items: center,
148
+ background-color: transparent,
149
+ border-color: transparent,
150
+ border-radius: $link-outline-border-radius,
151
+ border-style: solid,
152
+ border-width: $link-outline-border-width,
153
+ display: inline-flex,
154
+ font-size: $link-outline-font-size,
155
+ font-weight: $link-outline-font-weight,
156
+ justify-content: center,
157
+ line-height: $link-outline-line-height,
158
+ padding-bottom: $link-outline-padding-y,
159
+ padding-left: $link-outline-padding-x,
160
+ padding-right: $link-outline-padding-x,
161
+ padding-top: $link-outline-padding-y,
162
+ transition: $link-outline-transition,
163
+ vertical-align: middle,
164
+
165
+ hover: (
166
+ text-decoration: none,
167
+ ),
168
+
169
+ focus: (
170
+ box-shadow: $component-focus-box-shadow,
171
+ outline: 0,
172
+ ),
173
+
174
+ disabled: (
175
+ box-shadow: none,
176
+
177
+ active: (
178
+ pointer-events: none,
179
+ ),
180
+ ),
181
+
182
+ lexicon-icon: (
183
+ margin-top: 0,
184
+ ),
185
+ ),
186
+ $link-outline
187
+ );
188
+
189
+ $link-outline-primary: () !default;
190
+ $link-outline-primary: map-deep-merge(
191
+ (
192
+ border-color: $primary,
193
+ color: $primary,
194
+
195
+ hover: (
196
+ background-color: $primary-l3,
197
+ color: $primary,
198
+ ),
199
+
200
+ focus: (
201
+ background-color: $primary-l3,
202
+ color: $primary,
203
+ ),
204
+
205
+ active: (
206
+ background-color: unquote('hsl(from #{$primary} h s l / 0.12)'),
207
+ color: $primary,
208
+ ),
209
+
210
+ disabled: (
211
+ background-color: transparent,
212
+ color: $primary,
213
+ cursor: $disabled-cursor,
214
+ opacity: $component-disabled-opacity,
215
+ ),
216
+ ),
217
+ $link-outline-primary
218
+ );
219
+
220
+ $link-outline-secondary: () !default;
221
+ $link-outline-secondary: map-deep-merge(
222
+ (
223
+ border-color: $secondary-l2,
224
+ color: $secondary,
225
+
226
+ hover: (
227
+ background-color: unquote('hsl(from #{$gray-900} h s l / 0.03)'),
228
+ color: $gray-900,
229
+ ),
230
+
231
+ focus: (
232
+ background-color: unquote('hsl(from #{$gray-900} h s l / 0.03)'),
233
+ color: $gray-900,
234
+ ),
235
+
236
+ active: (
237
+ background-color: unquote('hsl(from #{$gray-900} h s l / 0.06)'),
238
+ color: $gray-900,
239
+ ),
240
+
241
+ disabled: (
242
+ background-color: transparent,
243
+ color: $secondary,
244
+ cursor: $disabled-cursor,
245
+ opacity: $component-disabled-opacity,
246
+ ),
247
+ ),
248
+ $link-outline-secondary
249
+ );
250
+
251
+ // Link Monospaced
252
+
253
+ // @deprecated as of v3.4.0 use the Sass map `$link-monospaced` instead
254
+
255
+ $link-monospaced-size: $btn-monospaced-size-sm !default;
256
+
257
+ $link-monospaced: () !default;
258
+ $link-monospaced: map-deep-merge(
259
+ (
260
+ align-items: center,
261
+ display: inline-flex,
262
+ height: $link-monospaced-size,
263
+ justify-content: center,
264
+ overflow: hidden,
265
+ padding-bottom: 0,
266
+ padding-left: 0,
267
+ padding-right: 0,
268
+ padding-top: 0,
269
+ vertical-align: middle,
270
+ width: $link-monospaced-size,
271
+
272
+ lexicon-icon: (
273
+ margin-top: 0,
274
+ ),
275
+ ),
276
+ $link-monospaced
277
+ );
278
+
279
+ // Component Title
280
+
281
+ $component-title: () !default;
282
+ $component-title: map-deep-merge(
283
+ (
284
+ color: var(--component-title-color, $gray-900),
285
+ font-size: var(--component-title-font-size, 16px),
286
+ font-weight: var(--component-title-font-weight, $headings-font-weight),
287
+ line-height: var(--component-title-line-height, 1.25),
288
+ margin-bottom:
289
+ var(
290
+ --component-title-margin-bottom,
291
+ calc((#{$dropdown-action-toggle-size} - (1em * 1.25)) / 2)
292
+ ),
293
+ margin-top:
294
+ var(
295
+ --component-title-margin-top,
296
+ calc((#{$dropdown-action-toggle-size} - (1em * 1.25)) / 2)
297
+ ),
298
+ ),
299
+ $component-title
300
+ );
301
+
302
+ $component-title-link: () !default;
303
+ $component-title-link: map-deep-merge(
304
+ (
305
+ border-radius: 1px,
306
+ color: var(--component-title-link-color, $gray-900),
307
+ transition: box-shadow 0.15s ease-in-out,
308
+
309
+ hover: (
310
+ color:
311
+ var(
312
+ --component-title-link-hover-color,
313
+ unquote('hsl(from #{$gray-900} h s calc(l - 15))')
314
+ ),
315
+ ),
316
+
317
+ focus: (
318
+ color:
319
+ var(
320
+ --component-title-link-focus-color,
321
+ unquote('hsl(from #{$gray-900} h s calc(l - 15))')
322
+ ),
323
+ box-shadow: $component-focus-box-shadow,
324
+ outline: 0,
325
+ ),
326
+ ),
327
+ $component-title-link
328
+ );
329
+
330
+ $component-title: map-deep-merge(
331
+ $component-title,
332
+ (
333
+ href: $component-title-link,
334
+ )
335
+ );
336
+
337
+ // Component Subtitle
338
+
339
+ $component-subtitle: () !default;
340
+ $component-subtitle: map-deep-merge(
341
+ (
342
+ color: var(--component-subtitle-color, $gray-600),
343
+ font-weight:
344
+ var(--component-subtitle-font-weight, $font-weight-semi-bold),
345
+ line-height: var(--component-subtitle-line-height, 1.45),
346
+ margin-bottom: var(--component-subtitle-margin-bottom, 0),
347
+ ),
348
+ $component-subtitle
349
+ );
350
+
351
+ $component-subtitle-link: () !default;
352
+ $component-subtitle-link: map-deep-merge(
353
+ (
354
+ border-radius: 1px,
355
+ color: var(--component-subtitle-link-color, $gray-600),
356
+ transition: box-shadow 0.15s ease-in-out,
357
+
358
+ hover: (
359
+ color: var(--component-subtitle-link-hover-color, $gray-900),
360
+ ),
361
+
362
+ focus: (
363
+ color: var(--component-subtitle-link-focus-color, $gray-900),
364
+ box-shadow: $component-focus-box-shadow,
365
+ outline: 0,
366
+ ),
367
+ ),
368
+ $component-subtitle-link
369
+ );
370
+
371
+ $component-subtitle: map-deep-merge(
372
+ $component-subtitle,
373
+ (
374
+ href: $component-subtitle-link,
375
+ )
376
+ );
377
+
378
+ // Component Action
379
+
380
+ $component-action: () !default;
381
+ $component-action: map-deep-merge(
382
+ (
383
+ align-items: center,
384
+ background-color: var(--component-action-background-color, transparent),
385
+ border-color: var(--component-action-border-color, transparent),
386
+ border-radius: var(--component-action-border-radius, $border-radius),
387
+ border-width: var(--component-action-border-width, 0),
388
+ color: var(--component-action-color, $secondary),
389
+ display: inline-flex,
390
+ font-size: var(--component-action-font-size, 16px),
391
+ height:
392
+ var(--component-action-height, map-get($link-monospaced, height)),
393
+ justify-content: center,
394
+ overflow: hidden,
395
+ padding: var(--component-action-padding, 0),
396
+ transition: $component-transition,
397
+ vertical-align: middle,
398
+ width: var(--component-action-width, map-get($link-monospaced, width)),
399
+ hover: (
400
+ background-color:
401
+ var(
402
+ --component-action-hover-background-color,
403
+ unquote('hsl(from #{$gray-900} h s l / 0.03)')
404
+ ),
405
+ color: var(--component-action-hover-color, $gray-900),
406
+ ),
407
+
408
+ focus: (
409
+ background-color:
410
+ var(
411
+ --component-action-focus-background-color,
412
+ unquote('hsl(from #{$gray-900} h s l / 0.03)')
413
+ ),
414
+ box-shadow: $component-focus-box-shadow,
415
+ color: var(--component-action-focus-color, $gray-900),
416
+ outline: 0,
417
+ ),
418
+
419
+ active: (
420
+ background-color:
421
+ var(
422
+ --component-action-active-background-color,
423
+ unquote('hsl(from #{$gray-900} h s l / 0.06)')
424
+ ),
425
+ color: var(--component-action-active-color, $gray-900),
426
+ ),
427
+
428
+ disabled: (
429
+ background-color:
430
+ var(--component-action-disabled-background-color, transparent),
431
+ box-shadow: none,
432
+ color: var(--component-action-disabled-color, $secondary),
433
+ cursor: $disabled-cursor,
434
+ opacity:
435
+ var(
436
+ --component-action-disabled-opacity,
437
+ $component-disabled-opacity
438
+ ),
439
+ active: (
440
+ pointer-events: none,
441
+ ),
442
+ ),
443
+
444
+ lexicon-icon: (
445
+ margin-top: 0,
446
+ ),
447
+ ),
448
+ $component-action
449
+ );
450
+
451
+ $component-text: () !default;
452
+
453
+ $component-icon: () !default;
454
+ $component-icon: map-deep-merge(
455
+ (
456
+ align-items: center,
457
+ display: inline-flex,
458
+ height: var(--component-icon-height, 32px),
459
+ justify-content: center,
460
+ width: var(--component-icon-width, 32px),
461
+ lexicon-icon: (
462
+ margin-top: 0,
463
+ ),
464
+ ),
465
+ $component-icon
466
+ );