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