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