@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,778 @@
1
+ $menubar-primary: () !default;
2
+ $menubar-primary: map-deep-merge(
3
+ (
4
+ nav-item: (
5
+ position: relative,
6
+ ),
7
+
8
+ nav-link: (
9
+ border-radius: var(--menubar-primary-nav-link-border-radius, 0),
10
+ color: var(--menubar-primary-nav-link-color, $gray-900),
11
+ line-height: var(--menubar-primary-nav-link-line-height, 24px),
12
+ overflow: var(--menubar-primary-nav-link-overflow, visible),
13
+ padding: var(--menubar-primary-nav-link-padding, 10px 16px),
14
+ transition:
15
+ var(
16
+ --menubar-primary-nav-link-transition,
17
+ #{color 0.15s ease-in-out,
18
+ background-color 0.15s ease-in-out,
19
+ border-color 0.15s ease-in-out,
20
+ box-shadow 0.15s ease-in-out}
21
+ ),
22
+ before: (
23
+ bottom: var(--menubar-primary-nav-link-highlight-bottom, 0),
24
+ content: var(--menubar-primary-nav-link-highlight-content, ''),
25
+ display:
26
+ var(--menubar-primary-nav-link-highlight-display, block),
27
+ left: var(--menubar-primary-nav-link-highlight-left, 0),
28
+ position:
29
+ var(--menubar-primary-nav-link-highlight-position, absolute),
30
+ right: var(--menubar-primary-nav-link-highlight-right, auto),
31
+ top: var(--menubar-primary-nav-link-highlight-top, 0),
32
+ transition:
33
+ var(
34
+ --menubar-primary-nav-link-highlight-transition,
35
+ $transition-base
36
+ ),
37
+ ),
38
+
39
+ hover: (
40
+ background-color:
41
+ var(
42
+ --menubar-primary-nav-link-hover-background-color,
43
+ $primary-l3
44
+ ),
45
+ color: var(--menubar-primary-nav-link-hover-color, $gray-900),
46
+ letter-spacing:
47
+ var(--menubar-primary-nav-link-hover-letter-spacing, 0),
48
+ before: (
49
+ background-color:
50
+ var(
51
+ --menubar-primary-nav-link-hover-highlight-background-color,
52
+ $secondary-l0
53
+ ),
54
+ height:
55
+ var(
56
+ --menubar-primary-nav-link-hover-highlight-height,
57
+ auto
58
+ ),
59
+ width:
60
+ var(
61
+ --menubar-primary-nav-link-hover-highlight-width,
62
+ 0.125rem
63
+ ),
64
+ ),
65
+ ),
66
+
67
+ focus: (
68
+ background-color:
69
+ var(
70
+ --menubar-primary-nav-link-focus-background-color,
71
+ transparent
72
+ ),
73
+ box-shadow: none,
74
+ color: var(--menubar-primary-nav-link-focus-color, $gray-900),
75
+ outline: 0,
76
+
77
+ after: (
78
+ bottom: 0,
79
+ box-shadow:
80
+ var(
81
+ --menubar-primary-nav-link-focus-box-shadow,
82
+ $component-focus-inset-box-shadow
83
+ ),
84
+ content: '',
85
+ display: block,
86
+ left: 0,
87
+ pointer-events: none,
88
+ position: absolute,
89
+ right: 0,
90
+ top: 0,
91
+ ),
92
+ ),
93
+
94
+ active-class: (
95
+ background-color:
96
+ var(
97
+ --menubar-primary-nav-link-active-class-background-color,
98
+ $primary-l3
99
+ ),
100
+ color:
101
+ var(
102
+ --menubar-primary-nav-link-active-class-color,
103
+ $gray-900
104
+ ),
105
+ font-weight:
106
+ var(
107
+ --menubar-primary-nav-link-active-class-font-weight,
108
+ $font-weight-semi-bold
109
+ ),
110
+ before: (
111
+ background-color:
112
+ var(
113
+ --menubar-primary-nav-link-active-class-highlight-background-color,
114
+ $primary
115
+ ),
116
+ height:
117
+ var(
118
+ --menubar-primary-nav-link-active-class-highlight-height,
119
+ auto
120
+ ),
121
+ width:
122
+ var(
123
+ --menubar-primary-nav-link-active-class-highlight-width,
124
+ 0.375rem
125
+ ),
126
+ ),
127
+
128
+ focus: (
129
+ before: (
130
+ display: none,
131
+ ),
132
+ ),
133
+ ),
134
+
135
+ disabled: (
136
+ background-color:
137
+ var(
138
+ --menubar-primary-nav-link-disabled-background-color,
139
+ transparent
140
+ ),
141
+ box-shadow:
142
+ var(--menubar-primary-nav-link-disabled-box-shadow, none),
143
+ font-weight:
144
+ var(
145
+ --menubar-primary-nav-link-disabled-font-weight,
146
+ $font-weight-normal
147
+ ),
148
+ before: (
149
+ content: none,
150
+ ),
151
+
152
+ after: (
153
+ content: none,
154
+ ),
155
+ ),
156
+
157
+ show: (
158
+ background-color: c-unset,
159
+ box-shadow: c-unset,
160
+ color: $gray-900,
161
+
162
+ before: (
163
+ background-color: transparent,
164
+ width: 0,
165
+ ),
166
+
167
+ hover: (
168
+ before: (
169
+ background-color: $secondary-l0,
170
+ width: 0.125rem,
171
+ ),
172
+ ),
173
+ ),
174
+
175
+ autofit-row: (
176
+ align-items: center,
177
+ margin-left:
178
+ var(--menubar-primary-autofit-row-margin-left, -0.25rem),
179
+ margin-right:
180
+ var(--menubar-primary-autofit-row-margin-right, -0.25rem),
181
+ autofit-col: (
182
+ padding-left:
183
+ var(--menubar-primary-autofit-col-padding-left, 0.25rem),
184
+ padding-right:
185
+ var(
186
+ --menubar-primary-autofit-col-padding-right,
187
+ 0.25rem
188
+ ),
189
+ ),
190
+ ),
191
+
192
+ collapse-icon: (
193
+ font-size:
194
+ var(--menubar-primary-collapse-icon-font-size, 0.75rem),
195
+ font-weight:
196
+ var(
197
+ --menubar-primary-collapse-icon-font-weight,
198
+ $font-weight-semi-bold
199
+ ),
200
+ text-transform:
201
+ var(
202
+ --menubar-primary-collapse-icon-text-transform,
203
+ uppercase
204
+ ),
205
+ collapse-icon-closed: (
206
+ bottom:
207
+ var(--menubar-primary-collapse-icon-close-bottom, auto),
208
+ font-size:
209
+ var(
210
+ --menubar-primary-collapse-icon-close-font-size,
211
+ 0.875rem
212
+ ),
213
+ left: var(--menubar-primary-collapse-icon-close-left, auto),
214
+ right:
215
+ var(--menubar-primary-collapse-icon-close-right, 15px),
216
+ top:
217
+ var(
218
+ --menubar-primary-collapse-icon-close-top,
219
+ calc(22px - (1em / 2))
220
+ ),
221
+ ),
222
+
223
+ collapse-icon-open: (
224
+ bottom:
225
+ var(--menubar-primary-collapse-icon-open-bottom, auto),
226
+ font-size:
227
+ var(
228
+ --menubar-primary-collapse-icon-open-font-size,
229
+ 0.875rem
230
+ ),
231
+ left: var(--menubar-primary-collapse-icon-open-left, auto),
232
+ right: var(--menubar-primary-collapse-icon-open-right, 15px),
233
+ top:
234
+ var(
235
+ --menubar-primary-collapse-icon-open-top,
236
+ calc(22px - (1em / 2))
237
+ ),
238
+ ),
239
+ ),
240
+ ),
241
+
242
+ menubar-actions-1: (
243
+ padding-right: var(--menubar-primary-menubar-actions-1, 4rem),
244
+ ),
245
+
246
+ menubar-action: (
247
+ position: absolute,
248
+ top: var(--menubar-primary-menubar-action-top, 0.625rem),
249
+ right: var(--menubar-primary-menubar-action-right, 2rem),
250
+ ),
251
+ ),
252
+ $menubar-primary
253
+ );
254
+
255
+ // Menubar Vertical MD
256
+
257
+ $menubar-vertical-expand-md: () !default;
258
+ $menubar-vertical-expand-md: map-deep-merge(
259
+ (
260
+ max-width: 15.625rem,
261
+
262
+ menubar-collapse: (
263
+ display: block,
264
+ ),
265
+
266
+ media-breakpoint-down: (
267
+ sm: (
268
+ margin-bottom: 1rem,
269
+ max-width: none,
270
+
271
+ menubar-collapse: (
272
+ border-color: transparent,
273
+ border-style: solid,
274
+ border-width: 0.0625rem,
275
+ display: none,
276
+ position: relative,
277
+ top: 100%,
278
+ z-index: $zindex-menubar-vertical-expand-md-collapse-mobile,
279
+ ),
280
+
281
+ nav-nested: (
282
+ margin-bottom: 0.5rem,
283
+ margin-top: 0.5rem,
284
+ ),
285
+
286
+ nav-nested-margins: (
287
+ margin-bottom: 0.5rem,
288
+ margin-top: 0.5rem,
289
+ ),
290
+
291
+ nav-nested-margins-item: (
292
+ margin-left: 0rem,
293
+ ),
294
+
295
+ menubar-toggler: (
296
+ align-items: center,
297
+ border-color: transparent,
298
+ border-style: solid,
299
+ border-width: 0.0625rem,
300
+ display: inline-flex,
301
+ height: 2rem,
302
+ padding-left: 0.5rem,
303
+ padding-right: 0.5rem,
304
+
305
+ c-inner: (
306
+ margin-left: -0.5rem,
307
+ margin-right: -0.5rem,
308
+ max-width: none,
309
+ ),
310
+
311
+ lexicon-icon: (
312
+ margin-top: 0rem,
313
+ ),
314
+ ),
315
+ ),
316
+ ),
317
+ ),
318
+ $menubar-vertical-expand-md
319
+ );
320
+
321
+ $menubar-vertical-transparent-md: () !default;
322
+ $menubar-vertical-transparent-md: map-deep-merge(
323
+ (
324
+ nav-link: (
325
+ border-radius: $border-radius,
326
+ letter-spacing: 0.02rem,
327
+ line-height: 1.25rem,
328
+ margin-bottom: 0.25rem,
329
+ transition: #{color 0.15s ease-in-out,
330
+ background-color 0.15s ease-in-out,
331
+ border-color 0.15s ease-in-out,
332
+ box-shadow 0.15s ease-in-out},
333
+
334
+ before: (
335
+ border-radius: $border-radius 0 0 $border-radius,
336
+ bottom: 0,
337
+ content: '',
338
+ display: block,
339
+ left: 0,
340
+ position: absolute,
341
+ top: 0,
342
+ ),
343
+
344
+ hover: (
345
+ background-color: unquote('hsl(from #{$gray-900} h s l / 0.04)'),
346
+ color: $gray-900,
347
+ font-weight: $font-weight-semi-bold,
348
+ letter-spacing: 0,
349
+
350
+ before: (
351
+ background: $secondary-l0,
352
+ width: 0.1875rem,
353
+ ),
354
+ ),
355
+
356
+ focus: (
357
+ background-color: c-unset,
358
+ color: $gray-900,
359
+ outline: 0,
360
+
361
+ after: (
362
+ border-radius: $border-radius,
363
+ bottom: 0,
364
+ box-shadow: $component-focus-box-shadow,
365
+ content: '',
366
+ display: block,
367
+ left: 0,
368
+ pointer-events: none,
369
+ position: absolute,
370
+ right: 0,
371
+ top: 0,
372
+ ),
373
+ ),
374
+
375
+ active-class: (
376
+ background-color: unquote('hsl(from #{$primary} h s l / 0.06)'),
377
+ color: $gray-900,
378
+ font-weight: $font-weight-semi-bold,
379
+ letter-spacing: 0,
380
+
381
+ before: (
382
+ background-color: $primary-l0,
383
+ width: 0.25rem,
384
+ ),
385
+ ),
386
+
387
+ disabled: (
388
+ background-color: transparent,
389
+ box-shadow: none,
390
+ font-weight: $font-weight-normal,
391
+ letter-spacing: 0.02rem,
392
+
393
+ before: (
394
+ content: none,
395
+ ),
396
+
397
+ after: (
398
+ content: none,
399
+ ),
400
+ ),
401
+
402
+ show: (
403
+ background-color: c-unset,
404
+ box-shadow: c-unset,
405
+ color: $gray-900,
406
+ font-weight: $font-weight-semi-bold,
407
+
408
+ before: (
409
+ background-color: transparent,
410
+ ),
411
+
412
+ hover: (
413
+ before: (
414
+ background-color: $secondary-l0,
415
+ width: 0.1875rem,
416
+ ),
417
+ ),
418
+ ),
419
+ ),
420
+
421
+ media-breakpoint-down: (
422
+ sm: (
423
+ background-color: $white,
424
+
425
+ nav-link: (
426
+ margin-bottom: 0,
427
+
428
+ before: (
429
+ content: none,
430
+ ),
431
+
432
+ hover: (
433
+ background-color:
434
+ unquote('hsl(from #{$gray-900} h s l / 0.04)'),
435
+ box-shadow: none,
436
+ ),
437
+
438
+ focus: (
439
+ background-color: transparent,
440
+
441
+ after: (
442
+ box-shadow: $component-focus-inset-box-shadow,
443
+ ),
444
+ ),
445
+
446
+ active: (
447
+ background-color: c-unset,
448
+ color: c-unset,
449
+ ),
450
+
451
+ active-class: (
452
+ background-color:
453
+ unquote('hsl(from #{$primary} h s l / 0.06)'),
454
+ box-shadow: none,
455
+ color: c-unset,
456
+ ),
457
+ ),
458
+
459
+ menubar-toggler: (
460
+ color: $gray-600,
461
+ font-size: 0.875rem,
462
+ font-weight: $font-weight-semi-bold,
463
+ transition: box-shadow 0.15s ease-in-out,
464
+
465
+ focus: (
466
+ box-shadow: $component-focus-box-shadow,
467
+ outline: 0,
468
+ ),
469
+
470
+ disabled: (
471
+ box-shadow: clay-enable-shadows(none),
472
+ ),
473
+ ),
474
+ ),
475
+ ),
476
+ ),
477
+ $menubar-vertical-transparent-md
478
+ );
479
+
480
+ $menubar-vertical-decorated-md-nav: () !default;
481
+ $menubar-vertical-decorated-md-nav: map-deep-merge(
482
+ (
483
+ border-left-color: $gray-300,
484
+ border-left-style: solid,
485
+ border-left-width: 0.125rem,
486
+ display: block,
487
+ padding-left: 0.5rem,
488
+ ),
489
+ $menubar-vertical-decorated-md-nav
490
+ );
491
+
492
+ $menubar-vertical-decorated-md-nav-item-nav: () !default;
493
+ $menubar-vertical-decorated-md-nav-item-nav: map-deep-merge(
494
+ (
495
+ margin-bottom: 0.25rem,
496
+ margin-left: 1rem,
497
+ margin-top: 0.25rem,
498
+ ),
499
+ $menubar-vertical-decorated-md-nav-item-nav
500
+ );
501
+
502
+ $menubar-vertical-decorated-md-nav-link: () !default;
503
+ $menubar-vertical-decorated-md-nav-link: map-deep-merge(
504
+ (
505
+ padding-left: 1rem !important,
506
+ ),
507
+ $menubar-vertical-decorated-md-nav-link
508
+ );
509
+
510
+ $menubar-vertical-decorated-md-nav-link-after-active: () !default;
511
+ $menubar-vertical-decorated-md-nav-link-after-active: map-deep-merge(
512
+ (
513
+ background-color: $primary-l2,
514
+ bottom: 0rem,
515
+ content: '',
516
+ display: block,
517
+ left:
518
+ calc(
519
+ #{map-get($menubar-vertical-decorated-md-nav, padding-left)} * -1 -
520
+ #{map-get(
521
+ $menubar-vertical-decorated-md-nav,
522
+ border-left-width
523
+ )}
524
+ ),
525
+ position: absolute,
526
+ top: 0rem,
527
+ width: map-get($menubar-vertical-decorated-md-nav, border-left-width),
528
+ ),
529
+ $menubar-vertical-decorated-md-nav-link-after-active
530
+ );
531
+
532
+ // Menubar Vertical LG
533
+
534
+ $menubar-vertical-expand-lg: () !default;
535
+ $menubar-vertical-expand-lg: map-deep-merge(
536
+ (
537
+ max-width: 15.625rem,
538
+
539
+ menubar-collapse: (
540
+ display: block,
541
+ ),
542
+
543
+ media-breakpoint-down: (
544
+ md: (
545
+ margin-bottom: 1rem,
546
+ max-width: none,
547
+
548
+ menubar-collapse: (
549
+ border-color: transparent,
550
+ border-style: solid,
551
+ border-width: 0.0625rem,
552
+ display: none,
553
+ position: relative,
554
+ top: 100%,
555
+ z-index: $zindex-menubar-vertical-expand-md-collapse-mobile,
556
+ ),
557
+
558
+ nav-nested: (
559
+ margin-bottom: 0.5rem,
560
+ margin-top: 0.5rem,
561
+ ),
562
+
563
+ nav-nested-margins: (
564
+ margin-bottom: 0.5rem,
565
+ margin-top: 0.5rem,
566
+ ),
567
+
568
+ nav-nested-margins-item: (
569
+ margin-left: 0rem,
570
+ ),
571
+
572
+ menubar-toggler: (
573
+ align-items: center,
574
+ border-color: transparent,
575
+ border-style: solid,
576
+ border-width: 0.0625rem,
577
+ display: inline-flex,
578
+ height: 2rem,
579
+ padding-left: 0.5rem,
580
+ padding-right: 0.5rem,
581
+
582
+ c-inner: (
583
+ margin-left: -0.5rem,
584
+ margin-right: -0.5rem,
585
+ max-width: none,
586
+ ),
587
+
588
+ lexicon-icon: (
589
+ margin-top: 0rem,
590
+ ),
591
+ ),
592
+ ),
593
+ ),
594
+ ),
595
+ $menubar-vertical-expand-lg
596
+ );
597
+
598
+ $menubar-vertical-transparent-lg: () !default;
599
+ $menubar-vertical-transparent-lg: map-deep-merge(
600
+ (
601
+ nav-link: (
602
+ border-radius: $border-radius,
603
+ letter-spacing: 0.02rem,
604
+ margin-bottom: 0.25rem,
605
+ transition: #{color 0.15s ease-in-out,
606
+ background-color 0.15s ease-in-out,
607
+ border-color 0.15s ease-in-out,
608
+ box-shadow 0.15s ease-in-out},
609
+
610
+ before: (
611
+ border-radius: $border-radius 0 0 $border-radius,
612
+ bottom: 0,
613
+ content: '',
614
+ display: block,
615
+ left: 0,
616
+ position: absolute,
617
+ top: 0,
618
+ ),
619
+
620
+ hover: (
621
+ background-color: unquote('hsl(from #{$gray-900} h s l / 0.04)'),
622
+ color: $gray-900,
623
+ font-weight: $font-weight-semi-bold,
624
+ letter-spacing: 0,
625
+
626
+ before: (
627
+ background: $secondary-l0,
628
+ width: 0.1875rem,
629
+ ),
630
+ ),
631
+
632
+ focus: (
633
+ background-color: c-unset,
634
+ color: $gray-900,
635
+ outline: 0,
636
+
637
+ after: (
638
+ border-radius: $border-radius,
639
+ bottom: 0,
640
+ box-shadow: $component-focus-box-shadow,
641
+ content: '',
642
+ display: block,
643
+ left: 0,
644
+ position: absolute,
645
+ right: 0,
646
+ top: 0,
647
+ ),
648
+ ),
649
+
650
+ active-class: (
651
+ background-color: unquote('hsl(from #{$primary} h s l / 0.06)'),
652
+ color: $gray-900,
653
+ font-weight: $font-weight-semi-bold,
654
+ letter-spacing: 0,
655
+
656
+ before: (
657
+ background-color: $primary-l0,
658
+ width: 0.25rem,
659
+ ),
660
+ ),
661
+
662
+ disabled: (
663
+ background-color: transparent,
664
+ box-shadow: none,
665
+ font-weight: $font-weight-normal,
666
+ letter-spacing: 0.02rem,
667
+
668
+ before: (
669
+ content: none,
670
+ ),
671
+
672
+ after: (
673
+ content: none,
674
+ ),
675
+ ),
676
+
677
+ show: (
678
+ background-color: c-unset,
679
+ box-shadow: c-unset,
680
+ color: $gray-900,
681
+ font-weight: $font-weight-semi-bold,
682
+
683
+ before: (
684
+ background-color: transparent,
685
+ ),
686
+
687
+ hover: (
688
+ before: (
689
+ background-color: $secondary-l0,
690
+ width: 0.1875rem,
691
+ ),
692
+ ),
693
+ ),
694
+ ),
695
+
696
+ media-breakpoint-down: (
697
+ md: (
698
+ background-color: $white,
699
+
700
+ nav-link: (
701
+ margin-bottom: 0,
702
+
703
+ before: (
704
+ content: none,
705
+ ),
706
+
707
+ hover: (
708
+ background-color:
709
+ unquote('hsl(from #{$gray-900} h s l / 0.04)'),
710
+ box-shadow: none,
711
+ ),
712
+
713
+ focus: (
714
+ background-color: transparent,
715
+
716
+ after: (
717
+ box-shadow: $component-focus-inset-box-shadow,
718
+ ),
719
+ ),
720
+
721
+ active: (
722
+ background-color: c-unset,
723
+ color: c-unset,
724
+ ),
725
+
726
+ active-class: (
727
+ background-color:
728
+ unquote('hsl(from #{$primary} h s l / 0.06)'),
729
+ box-shadow: none,
730
+ color: $gray-900,
731
+ ),
732
+ ),
733
+
734
+ menubar-toggler: (
735
+ color: $gray-600,
736
+ font-size: 0.875rem,
737
+ font-weight: $font-weight-semi-bold,
738
+ transition: box-shadow 0.15s ease-in-out,
739
+
740
+ focus: (
741
+ box-shadow:
742
+ clay-enable-shadows($component-focus-box-shadow),
743
+ outline: 0,
744
+ ),
745
+
746
+ disabled: (
747
+ box-shadow: clay-enable-shadows(none),
748
+ ),
749
+ ),
750
+ ),
751
+ ),
752
+ ),
753
+ $menubar-vertical-transparent-lg
754
+ );
755
+
756
+ $menubar-vertical-decorated-lg-nav: () !default;
757
+ $menubar-vertical-decorated-lg-nav: map-deep-merge(
758
+ $menubar-vertical-decorated-md-nav,
759
+ $menubar-vertical-decorated-lg-nav
760
+ );
761
+
762
+ $menubar-vertical-decorated-lg-nav-item-nav: () !default;
763
+ $menubar-vertical-decorated-lg-nav-item-nav: map-deep-merge(
764
+ $menubar-vertical-decorated-md-nav-item-nav,
765
+ $menubar-vertical-decorated-lg-nav-item-nav
766
+ );
767
+
768
+ $menubar-vertical-decorated-lg-nav-link: () !default;
769
+ $menubar-vertical-decorated-lg-nav-link: map-deep-merge(
770
+ $menubar-vertical-decorated-md-nav-link,
771
+ $menubar-vertical-decorated-lg-nav-link
772
+ );
773
+
774
+ $menubar-vertical-decorated-lg-nav-link-after-active: () !default;
775
+ $menubar-vertical-decorated-lg-nav-link-after-active: map-deep-merge(
776
+ $menubar-vertical-decorated-md-nav-link-after-active,
777
+ $menubar-vertical-decorated-lg-nav-link-after-active
778
+ );