@clayui/css 3.160.0 → 3.161.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 (75) hide show
  1. package/lib/css/atlas.css +1581 -1581
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +1283 -1283
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +7 -7
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/books-brush.svg +9 -0
  8. package/lib/images/icons/icons.svg +1 -1
  9. package/package.json +1 -1
  10. package/src/images/icons/books-brush.svg +9 -0
  11. package/src/images/icons/icons.svg +1 -1
  12. package/src/scss/_license-text.scss +1 -1
  13. package/src/scss/atlas/_variables.scss +6 -4
  14. package/src/scss/atlas/variables/_globals.scss +10 -10
  15. package/src/scss/atlas-custom-properties/_variables.scss +68 -0
  16. package/src/scss/atlas-custom-properties/variables/_alerts.scss +1212 -0
  17. package/src/scss/atlas-custom-properties/variables/_application-bar.scss +62 -0
  18. package/src/scss/atlas-custom-properties/variables/_aspect-ratio.scss +28 -0
  19. package/src/scss/atlas-custom-properties/variables/_badges.scss +352 -0
  20. package/src/scss/atlas-custom-properties/variables/_breadcrumbs.scss +205 -0
  21. package/src/scss/atlas-custom-properties/variables/_buttons.scss +1498 -0
  22. package/src/scss/atlas-custom-properties/variables/_c-root.scss +353 -0
  23. package/src/scss/atlas-custom-properties/variables/_cards.scss +1217 -0
  24. package/src/scss/atlas-custom-properties/variables/_clay-color.scss +647 -0
  25. package/src/scss/atlas-custom-properties/variables/_custom-forms.scss +1127 -0
  26. package/src/scss/atlas-custom-properties/variables/_date-picker.scss +701 -0
  27. package/src/scss/atlas-custom-properties/variables/_drilldown.scss +252 -0
  28. package/src/scss/atlas-custom-properties/variables/_dropdowns.scss +1250 -0
  29. package/src/scss/atlas-custom-properties/variables/_dual-listbox.scss +75 -0
  30. package/src/scss/atlas-custom-properties/variables/_empty-state.scss +104 -0
  31. package/src/scss/atlas-custom-properties/variables/_forms.scss +2342 -0
  32. package/src/scss/atlas-custom-properties/variables/_globals-z-index.scss +50 -0
  33. package/src/scss/atlas-custom-properties/variables/_globals.scss +846 -0
  34. package/src/scss/atlas-custom-properties/variables/_icons.scss +73 -0
  35. package/src/scss/atlas-custom-properties/variables/_images.scss +14 -0
  36. package/src/scss/atlas-custom-properties/variables/_labels.scss +1485 -0
  37. package/src/scss/atlas-custom-properties/variables/_links.scss +482 -0
  38. package/src/scss/atlas-custom-properties/variables/_list-group.scss +493 -0
  39. package/src/scss/atlas-custom-properties/variables/_loaders.scss +243 -0
  40. package/src/scss/atlas-custom-properties/variables/_management-bar.scss +153 -0
  41. package/src/scss/atlas-custom-properties/variables/_menubar.scss +836 -0
  42. package/src/scss/atlas-custom-properties/variables/_modals.scss +650 -0
  43. package/src/scss/atlas-custom-properties/variables/_multi-step-nav.scss +324 -0
  44. package/src/scss/atlas-custom-properties/variables/_navbar.scss +200 -0
  45. package/src/scss/atlas-custom-properties/variables/_navigation-bar.scss +473 -0
  46. package/src/scss/atlas-custom-properties/variables/_navs.scss +547 -0
  47. package/src/scss/atlas-custom-properties/variables/_pagination.scss +1101 -0
  48. package/src/scss/atlas-custom-properties/variables/_panels.scss +567 -0
  49. package/src/scss/atlas-custom-properties/variables/_popovers.scss +565 -0
  50. package/src/scss/atlas-custom-properties/variables/_progress-bars.scss +142 -0
  51. package/src/scss/atlas-custom-properties/variables/_quick-action.scss +27 -0
  52. package/src/scss/atlas-custom-properties/variables/_range.scss +267 -0
  53. package/src/scss/atlas-custom-properties/variables/_reorder.scss +91 -0
  54. package/src/scss/atlas-custom-properties/variables/_resizer.scss +26 -0
  55. package/src/scss/atlas-custom-properties/variables/_sheets.scss +301 -0
  56. package/src/scss/atlas-custom-properties/variables/_side-navigation.scss +4 -0
  57. package/src/scss/atlas-custom-properties/variables/_sidebar.scss +579 -0
  58. package/src/scss/atlas-custom-properties/variables/_slideout.scss +379 -0
  59. package/src/scss/atlas-custom-properties/variables/_stickers.scss +578 -0
  60. package/src/scss/atlas-custom-properties/variables/_tables.scss +1277 -0
  61. package/src/scss/atlas-custom-properties/variables/_tbar.scss +636 -0
  62. package/src/scss/atlas-custom-properties/variables/_time.scss +142 -0
  63. package/src/scss/atlas-custom-properties/variables/_timelines.scss +43 -0
  64. package/src/scss/atlas-custom-properties/variables/_toggle-switch.scss +706 -0
  65. package/src/scss/atlas-custom-properties/variables/_tooltip.scss +332 -0
  66. package/src/scss/atlas-custom-properties/variables/_treeview.scss +369 -0
  67. package/src/scss/atlas-custom-properties/variables/_type.scss +194 -0
  68. package/src/scss/atlas-custom-properties/variables/_utilities.scss +1016 -0
  69. package/src/scss/atlas-variables.scss +2 -0
  70. package/src/scss/atlas.scss +2 -0
  71. package/src/scss/base-variables.scss +2 -0
  72. package/src/scss/base.scss +2 -0
  73. package/src/scss/functions/_global-functions.scss +6 -4
  74. package/src/scss/functions/_lx-icons-generated.scss +2 -0
  75. package/src/scss/variables/_globals.scss +8 -8
@@ -0,0 +1,332 @@
1
+ @if ($enable-atlas-custom-properties) {
2
+ $tooltip-bg: var(--tooltip-background-color, $dark-d2);
3
+ $tooltip-border-radius: var(--tooltip-border-radius, $border-radius);
4
+ $tooltip-box-shadow: var(
5
+ --tooltip-box-shadow,
6
+ 0 1px 4px 0px rgba(0, 0, 0, 0.4)
7
+ );
8
+ $tooltip-color: var(--tooltip-color, $white);
9
+ $tooltip-font-size: var(--tooltip-font-size, 14px);
10
+ $tooltip-margin: var(--tooltip-margin, 0);
11
+ $tooltip-max-width: var(--tooltip-max-width, 230px);
12
+ $tooltip-opacity: var(--tooltip-opacity, 1);
13
+ $tooltip-padding-x: var(--tooltip-padding-x, 12px);
14
+ $tooltip-padding-y: var(--tooltip-padding-y, 12px);
15
+
16
+ $tooltip-arrow-color: var(--tooltip-arrow-color, $tooltip-bg);
17
+ $tooltip-arrow-height: var(--tooltip-arrow-height, 6.4px);
18
+ $tooltip-arrow-offset: var(--tooltip-arrow-offset, 8px);
19
+ $tooltip-arrow-width: var(--tooltip-arrow-width, 12.8px);
20
+
21
+ $form-feedback-tooltip-border-radius: $tooltip-border-radius;
22
+ $form-feedback-tooltip-font-size: $tooltip-font-size;
23
+ $form-feedback-tooltip-line-height: $line-height-base;
24
+ $form-feedback-tooltip-opacity: $tooltip-opacity;
25
+ $form-feedback-tooltip-padding-x: $tooltip-padding-x;
26
+ $form-feedback-tooltip-padding-y: $tooltip-padding-y;
27
+
28
+ // .tooltip
29
+
30
+ $tooltip: ();
31
+ $tooltip: map-deep-merge(
32
+ (
33
+ display: block,
34
+ font-family: $font-family-base,
35
+ font-size: $tooltip-font-size,
36
+ font-style: normal,
37
+ font-weight: var(--tooltip-font-weight, $font-weight-normal),
38
+ letter-spacing: normal,
39
+ line-break: auto,
40
+ line-height: $line-height-base,
41
+ margin: $tooltip-margin,
42
+ opacity: 0,
43
+ position: absolute,
44
+ text-align: left,
45
+ text-decoration: none,
46
+ text-shadow: none,
47
+ text-transform: none,
48
+ white-space: normal,
49
+ word-break: normal,
50
+ word-spacing: normal,
51
+ word-wrap: break-word,
52
+ z-index: $zindex-tooltip,
53
+
54
+ show: (
55
+ opacity: $tooltip-opacity,
56
+ ),
57
+
58
+ arrow: (
59
+ display: block,
60
+ height: $tooltip-arrow-height,
61
+ position: absolute,
62
+ width: $tooltip-arrow-width,
63
+
64
+ before: (
65
+ border-color: transparent,
66
+ border-style: solid,
67
+ content: '',
68
+ position: absolute,
69
+ ),
70
+ ),
71
+ ),
72
+ $tooltip
73
+ );
74
+
75
+ // .tooltip-inner
76
+
77
+ $tooltip-inner: ();
78
+ $tooltip-inner: map-merge(
79
+ (
80
+ background-color: $tooltip-bg,
81
+ border-radius: clay-enable-rounded($tooltip-border-radius),
82
+ box-shadow: clay-enable-shadows($tooltip-box-shadow),
83
+ color: $tooltip-color,
84
+ max-width: $tooltip-max-width,
85
+ padding: $tooltip-padding-y $tooltip-padding-x,
86
+ text-align: center,
87
+ white-space: pre-line,
88
+ ),
89
+ $tooltip-inner
90
+ );
91
+
92
+ // .clay-tooltip-bottom, .clay-tooltip-bottom-left, .clay-tooltip-bottom-right
93
+
94
+ $clay-tooltip-bottom: ();
95
+ $clay-tooltip-bottom: map-deep-merge(
96
+ (
97
+ padding-top: $tooltip-arrow-height,
98
+
99
+ arrow: (
100
+ left: 50%,
101
+ margin-left: calc(#{$tooltip-arrow-width} * -0.5),
102
+ top: 0rem,
103
+
104
+ before: (
105
+ border-bottom-color: $tooltip-arrow-color,
106
+ border-width:
107
+ 0rem
108
+ calc(#{$tooltip-arrow-width} * 0.5)
109
+ $tooltip-arrow-height,
110
+ bottom: 0rem,
111
+ ),
112
+ ),
113
+
114
+ tooltip-arrow: (
115
+ border-bottom-color: transparent,
116
+ border-right-color: transparent,
117
+ left: 50%,
118
+ top: 0rem,
119
+ ),
120
+ ),
121
+ $clay-tooltip-bottom
122
+ );
123
+
124
+ // .clay-tooltip-bottom-left
125
+
126
+ $clay-tooltip-bottom-left: ();
127
+ $clay-tooltip-bottom-left: map-deep-merge(
128
+ (
129
+ arrow: (
130
+ left: $tooltip-arrow-offset,
131
+ margin-left: 0rem,
132
+ ),
133
+ ),
134
+ $clay-tooltip-bottom-left
135
+ );
136
+
137
+ // .clay-tooltip-bottom-right
138
+
139
+ $clay-tooltip-bottom-right: ();
140
+ $clay-tooltip-bottom-right: map-deep-merge(
141
+ (
142
+ arrow: (
143
+ left: auto,
144
+ margin-left: 0rem,
145
+ right: $tooltip-arrow-offset,
146
+ ),
147
+ ),
148
+ $clay-tooltip-bottom-right
149
+ );
150
+
151
+ // .clay-tooltip-left, .clay-tooltip-left-bottom, .clay-tooltip-left-top
152
+
153
+ $clay-tooltip-left: ();
154
+ $clay-tooltip-left: map-deep-merge(
155
+ (
156
+ padding-right: $tooltip-arrow-height,
157
+
158
+ arrow: (
159
+ height: $tooltip-arrow-width,
160
+ margin-top: calc(#{$tooltip-arrow-width} * -0.5),
161
+ right: 0rem,
162
+ top: 50%,
163
+ width: $tooltip-arrow-height,
164
+
165
+ before: (
166
+ border-left-color: $tooltip-arrow-color,
167
+ border-width:
168
+ calc(#{$tooltip-arrow-width} * 0.5)
169
+ 0
170
+ calc(#{$tooltip-arrow-width} * 0.5)
171
+ $tooltip-arrow-height,
172
+ left: 0rem,
173
+ ),
174
+ ),
175
+
176
+ tooltip-arrow: (
177
+ border-bottom-color: transparent,
178
+ border-left-color: transparent,
179
+ right: 0rem,
180
+ top: 50%,
181
+ ),
182
+ ),
183
+ $clay-tooltip-left
184
+ );
185
+
186
+ // .clay-tooltip-left-bottom
187
+
188
+ $clay-tooltip-left-bottom: ();
189
+ $clay-tooltip-left-bottom: map-deep-merge(
190
+ (
191
+ arrow: (
192
+ bottom: $tooltip-arrow-offset,
193
+ margin-top: 0rem,
194
+ top: auto,
195
+ ),
196
+ ),
197
+ $clay-tooltip-left-bottom
198
+ );
199
+
200
+ // .clay-tooltip-left-top
201
+
202
+ $clay-tooltip-left-top: ();
203
+ $clay-tooltip-left-top: map-deep-merge(
204
+ (
205
+ arrow: (
206
+ margin-top: 0rem,
207
+ top: $tooltip-arrow-offset,
208
+ ),
209
+ ),
210
+ $clay-tooltip-left-top
211
+ );
212
+
213
+ // .clay-tooltip-right, .clay-tooltip-right-bottom, .clay-tooltip-right-top
214
+
215
+ $clay-tooltip-right: ();
216
+ $clay-tooltip-right: map-deep-merge(
217
+ (
218
+ padding-left: $tooltip-arrow-height,
219
+
220
+ arrow: (
221
+ height: $tooltip-arrow-width,
222
+ left: 0rem,
223
+ margin-top: calc(#{$tooltip-arrow-width} * -0.5),
224
+ top: 50%,
225
+ width: $tooltip-arrow-height,
226
+
227
+ before: (
228
+ border-right-color: $tooltip-arrow-color,
229
+ border-width:
230
+ calc(#{$tooltip-arrow-width} * 0.5)
231
+ $tooltip-arrow-height
232
+ calc(#{$tooltip-arrow-width} * 0.5)
233
+ 0rem,
234
+ right: 0rem,
235
+ ),
236
+ ),
237
+
238
+ tooltip-arrow: (
239
+ border-right-color: transparent,
240
+ border-top-color: transparent,
241
+ left: 0rem,
242
+ top: 50%,
243
+ ),
244
+ ),
245
+ $clay-tooltip-right
246
+ );
247
+
248
+ // .clay-tooltip-right-bottom
249
+
250
+ $clay-tooltip-right-bottom: ();
251
+ $clay-tooltip-right-bottom: map-deep-merge(
252
+ (
253
+ arrow: (
254
+ bottom: $tooltip-arrow-offset,
255
+ margin-top: 0rem,
256
+ top: auto,
257
+ ),
258
+ ),
259
+ $clay-tooltip-right-bottom
260
+ );
261
+
262
+ // .clay-tooltip-right-top
263
+
264
+ $clay-tooltip-right-top: ();
265
+ $clay-tooltip-right-top: map-deep-merge(
266
+ (
267
+ arrow: (
268
+ margin-top: 0rem,
269
+ top: $tooltip-arrow-offset,
270
+ ),
271
+ ),
272
+ $clay-tooltip-right-top
273
+ );
274
+
275
+ // .clay-tooltip-top, .clay-tooltip-top-left, .clay-tooltip-top-right
276
+
277
+ $clay-tooltip-top: ();
278
+ $clay-tooltip-top: map-deep-merge(
279
+ (
280
+ padding-bottom: $tooltip-arrow-height,
281
+
282
+ arrow: (
283
+ bottom: 0rem,
284
+ left: 50%,
285
+ margin-left: calc(#{$tooltip-arrow-width} * -0.5),
286
+ before: (
287
+ border-top-color: $tooltip-arrow-color,
288
+ border-width:
289
+ $tooltip-arrow-height
290
+ calc(#{$tooltip-arrow-width} * 0.5)
291
+ 0rem,
292
+ top: 0rem,
293
+ ),
294
+ ),
295
+
296
+ tooltip-arrow: (
297
+ border-left-color: transparent,
298
+ border-top-color: transparent,
299
+ bottom: 0rem,
300
+ left: 50%,
301
+ ),
302
+ ),
303
+ $clay-tooltip-top
304
+ );
305
+
306
+ // .clay-tooltip-top-left
307
+
308
+ $clay-tooltip-top-left: ();
309
+ $clay-tooltip-top-left: map-deep-merge(
310
+ (
311
+ arrow: (
312
+ left: $tooltip-arrow-offset,
313
+ margin-left: 0rem,
314
+ ),
315
+ ),
316
+ $clay-tooltip-top-left
317
+ );
318
+
319
+ // .clay-tooltip-top-right
320
+
321
+ $clay-tooltip-top-right: ();
322
+ $clay-tooltip-top-right: map-deep-merge(
323
+ (
324
+ arrow: (
325
+ left: auto,
326
+ margin-left: 0rem,
327
+ right: $tooltip-arrow-offset,
328
+ ),
329
+ ),
330
+ $clay-tooltip-top-right
331
+ );
332
+ }
@@ -0,0 +1,369 @@
1
+ @if ($enable-atlas-custom-properties) {
2
+ $treeview: ();
3
+ $treeview: map-merge(
4
+ (
5
+ display: flex,
6
+ flex-direction: column,
7
+ font-size: 14px,
8
+ list-style: none,
9
+ margin-bottom: 0rem,
10
+ padding: 2px 0rem,
11
+
12
+ btn: (
13
+ color: inherit,
14
+ font-size: 12px,
15
+ line-height: 1,
16
+ padding: 6px 8px,
17
+
18
+ c-inner: (
19
+ margin: -7px -8px,
20
+ ),
21
+ ),
22
+
23
+ btn-monospaced: (
24
+ font-size: inherit,
25
+ height: 24px,
26
+ padding: 0rem,
27
+ width: 24px,
28
+
29
+ focus: (
30
+ box-shadow: $component-focus-inset-box-shadow,
31
+ ),
32
+ ),
33
+
34
+ custom-control: (
35
+ margin-left: 4px,
36
+ margin-right: 4px,
37
+ margin-top: 1.5px,
38
+ ),
39
+
40
+ treeview-dragging: (
41
+ background-color: $white,
42
+ border-color: $primary-l0,
43
+ border-radius: $border-radius-sm,
44
+ border-style: solid,
45
+ border-width: 1px,
46
+ display: inline-block,
47
+ font-size: 10px,
48
+ font-weight: $font-weight-semi-bold,
49
+ padding: 4px 12px,
50
+ text-transform: uppercase,
51
+ ),
52
+
53
+ treeview-group: (
54
+ display: flex,
55
+ flex-direction: column,
56
+ list-style: none,
57
+ margin-bottom: 0rem,
58
+ padding-left: 0rem,
59
+ ),
60
+
61
+ treeview-item: (
62
+ word-wrap: break-word,
63
+ ),
64
+
65
+ treeview-item-dragging: (
66
+ cursor: $disabled-cursor,
67
+ opacity: 0.4,
68
+
69
+ treeview-link: (
70
+ background-color: transparent,
71
+ border-color: transparent,
72
+ box-shadow: none,
73
+ ),
74
+ ),
75
+
76
+ treeview-dropping-indicator-top: (
77
+ background-color: transparent,
78
+ display: block,
79
+ height: 2px,
80
+ margin-top: -2px,
81
+ outline: none,
82
+ width: 100%,
83
+ ),
84
+
85
+ treeview-dropping-indicator-bottom: (
86
+ background-color: transparent,
87
+ display: block,
88
+ height: 2px,
89
+ margin-bottom: -2px,
90
+ outline: none,
91
+ width: 100%,
92
+ ),
93
+
94
+ treeview-dropping-indicator-over: (
95
+ background-color: $primary-l0,
96
+ ),
97
+
98
+ treeview-link: (
99
+ background-color: transparent,
100
+ cursor: pointer,
101
+ display: block,
102
+ border-color: transparent,
103
+ border-style: solid,
104
+ border-width: 1px,
105
+ margin-bottom: 2px,
106
+ margin-top: 2px,
107
+ min-width: 100%,
108
+ padding: 0rem,
109
+ position: relative,
110
+ text-align: left,
111
+ user-select: none,
112
+
113
+ treeview-dropping-middle: (
114
+ background-color: $primary-l3,
115
+ border-color: $primary-l0,
116
+ ),
117
+
118
+ hover: (
119
+ text-decoration: none,
120
+ ),
121
+
122
+ focus: (
123
+ box-shadow: $component-focus-inset-box-shadow,
124
+ outline: 0,
125
+ ),
126
+
127
+ disabled: (
128
+ cursor: $disabled-cursor,
129
+ ),
130
+ ),
131
+
132
+ component-expander: (
133
+ font-size: 10px,
134
+ ),
135
+
136
+ component-action: (
137
+ font-size: 16px,
138
+ margin-left: 2px,
139
+ margin-right: 2px,
140
+
141
+ hover: (
142
+ background-color: transparent,
143
+ color: $secondary,
144
+ ),
145
+
146
+ focus: (
147
+ color: $secondary,
148
+ ),
149
+
150
+ active: (
151
+ background-color: transparent,
152
+ ),
153
+ ),
154
+
155
+ component-icon: (
156
+ color: $secondary,
157
+ display: inline-block,
158
+ font-size: 16px,
159
+ height: auto,
160
+ margin: 4px,
161
+ vertical-align: middle,
162
+ width: auto,
163
+
164
+ lexicon-icon: (
165
+ display: block,
166
+ ),
167
+ ),
168
+
169
+ component-text: (
170
+ line-height: 24px,
171
+ padding-left: 4px,
172
+ user-select: auto,
173
+ ),
174
+
175
+ quick-action-item: (
176
+ margin: 0px 2px,
177
+ min-height: 0rem,
178
+ min-width: 0rem,
179
+ ),
180
+
181
+ autofit-row: (
182
+ align-items: center,
183
+ ),
184
+ ),
185
+ $treeview
186
+ );
187
+
188
+ $treeview-nested-margins: ();
189
+ $treeview-nested-margins: map-deep-merge(
190
+ (
191
+ treeview-group: (
192
+ treeview-item: (
193
+ margin-left: 24px,
194
+ ),
195
+ ),
196
+ ),
197
+ $treeview-nested-margins
198
+ );
199
+
200
+ $treeview-show-component-expander-on-hover: ();
201
+ $treeview-show-component-expander-on-hover: map-deep-merge(
202
+ (
203
+ hover: (
204
+ component-expander: (
205
+ opacity: 1,
206
+ transition: opacity ease-in-out 600ms,
207
+ ),
208
+ ),
209
+
210
+ component-expander: (
211
+ opacity: 0,
212
+ transition: opacity ease-in-out 450ms,
213
+ ),
214
+
215
+ treeview-link: (
216
+ focus: (
217
+ component-expander: (
218
+ opacity: 1,
219
+ transition: none,
220
+ ),
221
+ ),
222
+ ),
223
+ ),
224
+ $treeview-show-component-expander-on-hover
225
+ );
226
+
227
+ // Variants
228
+
229
+ $treeview-light: ();
230
+ $treeview-light: map-deep-merge(
231
+ (
232
+ component-expander: (
233
+ color: $secondary,
234
+
235
+ disabled: (
236
+ color: $secondary,
237
+ opacity: 0.5,
238
+ ),
239
+
240
+ btn-secondary: (
241
+ background-color: $white,
242
+ ),
243
+ ),
244
+
245
+ treeview-link: (
246
+ color: $gray-600,
247
+
248
+ treeview-no-hover: (
249
+ hover: (
250
+ background-color: transparent,
251
+ color: $secondary,
252
+ ),
253
+ ),
254
+
255
+ hover: (
256
+ box-shadow: inset 0 0 0 1px $secondary-l0,
257
+ ),
258
+
259
+ focus: (
260
+ box-shadow: $component-focus-inset-box-shadow,
261
+ ),
262
+
263
+ active: (
264
+ background-color: $primary-l3,
265
+ box-shadow: inset 0 0 0 1px $primary,
266
+ color: $dark-l2,
267
+ focus: (
268
+ box-shadow: $component-focus-inset-box-shadow,
269
+ ),
270
+ ),
271
+
272
+ active-class: (
273
+ background-color: $primary-l3,
274
+ box-shadow: inset 0 0 0 1px $primary,
275
+ color: $dark-l2,
276
+
277
+ focus: (
278
+ box-shadow: $component-focus-inset-box-shadow,
279
+ ),
280
+ ),
281
+
282
+ disabled: (
283
+ background-color: transparent,
284
+ color: unquote('hsl(from #{$gray-600} h s l / 0.5)'),
285
+ ),
286
+
287
+ show: (
288
+ background-color: c-unset,
289
+ box-shadow: c-unset,
290
+ color: c-unset,
291
+ ),
292
+ ),
293
+ ),
294
+ $treeview-light
295
+ );
296
+
297
+ $treeview-dark: ();
298
+ $treeview-dark: map-deep-merge(
299
+ (
300
+ component-expander: (
301
+ color: $secondary-l1,
302
+
303
+ disabled: (
304
+ color: $secondary-l1,
305
+ opacity: 0.5,
306
+ ),
307
+ ),
308
+
309
+ treeview-link: (
310
+ color: $secondary-l1,
311
+
312
+ treeview-no-hover: (
313
+ hover: (
314
+ background-color: transparent,
315
+ color: $secondary-l1,
316
+ ),
317
+ ),
318
+
319
+ hover: (
320
+ box-shadow: inset 0 0 0 1px $secondary-l0,
321
+ ),
322
+
323
+ focus: (
324
+ box-shadow: $component-focus-inset-box-shadow,
325
+ ),
326
+
327
+ active: (
328
+ background-color: $dark-l2,
329
+ box-shadow: inset 0 0 0 1px $primary,
330
+ color: $primary-l3,
331
+
332
+ focus: (
333
+ box-shadow: $component-focus-inset-box-shadow,
334
+ ),
335
+ ),
336
+
337
+ active-class: (
338
+ background-color: $dark-l2,
339
+ box-shadow: inset 0 0 0 1px $primary,
340
+ color: $primary-l3,
341
+
342
+ focus: (
343
+ box-shadow: $component-focus-inset-box-shadow,
344
+ ),
345
+ ),
346
+
347
+ disabled: (
348
+ background-color: transparent,
349
+ color: unquote('hsl(from #{$secondary-l1} h s l / 0.5)'),
350
+ ),
351
+
352
+ show: (
353
+ background-color: c-unset,
354
+ box-shadow: c-unset,
355
+ color: c-unset,
356
+ ),
357
+ ),
358
+
359
+ component-action: (
360
+ color: $secondary-l1,
361
+
362
+ disabled: (
363
+ color: $secondary-l1,
364
+ ),
365
+ ),
366
+ ),
367
+ $treeview-dark
368
+ );
369
+ }