@clayui/css 3.44.2 → 3.47.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 (76) hide show
  1. package/README.md +23 -69
  2. package/lib/css/atlas.css +457 -86
  3. package/lib/css/atlas.css.map +1 -1
  4. package/lib/css/base.css +411 -68
  5. package/lib/css/base.css.map +1 -1
  6. package/lib/css/cadmin.css +204 -90
  7. package/lib/css/cadmin.css.map +1 -1
  8. package/lib/images/icons/add-cell.svg +1 -1
  9. package/lib/images/icons/corner-radius.svg +12 -0
  10. package/lib/images/icons/export.svg +11 -0
  11. package/lib/images/icons/font-family.svg +10 -0
  12. package/lib/images/icons/font-size.svg +10 -0
  13. package/lib/images/icons/icons.svg +1 -1
  14. package/lib/images/icons/shadow.svg +9 -0
  15. package/package.json +2 -2
  16. package/src/images/icons/add-cell.svg +1 -1
  17. package/src/images/icons/corner-radius.svg +12 -0
  18. package/src/images/icons/export.svg +11 -0
  19. package/src/images/icons/font-family.svg +10 -0
  20. package/src/images/icons/font-size.svg +10 -0
  21. package/src/images/icons/shadow.svg +9 -0
  22. package/src/scss/_components.scss +1 -0
  23. package/src/scss/_variables.scss +2 -0
  24. package/src/scss/atlas/variables/_buttons.scss +3 -0
  25. package/src/scss/atlas/variables/_cards.scss +12 -0
  26. package/src/scss/atlas/variables/_forms.scss +2 -1
  27. package/src/scss/atlas/variables/_globals.scss +42 -13
  28. package/src/scss/atlas/variables/_list-group.scss +28 -12
  29. package/src/scss/cadmin/_variables.scss +1 -0
  30. package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
  31. package/src/scss/cadmin/components/_cards.scss +10 -120
  32. package/src/scss/cadmin/components/_custom-forms.scss +4 -0
  33. package/src/scss/cadmin/components/_empty-state.scss +36 -0
  34. package/src/scss/cadmin/components/_forms.scss +1 -1
  35. package/src/scss/cadmin/components/_links.scss +1 -14
  36. package/src/scss/cadmin/components/_navs.scss +8 -0
  37. package/src/scss/cadmin/components/_treeview.scss +191 -210
  38. package/src/scss/cadmin/components/_type.scss +27 -42
  39. package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
  40. package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
  41. package/src/scss/cadmin/variables/_cards.scss +164 -1
  42. package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
  43. package/src/scss/cadmin/variables/_empty-state.scss +23 -0
  44. package/src/scss/cadmin/variables/_forms.scss +3 -2
  45. package/src/scss/cadmin/variables/_globals.scss +173 -11
  46. package/src/scss/cadmin/variables/_links.scss +14 -0
  47. package/src/scss/cadmin/variables/_list-group.scss +32 -16
  48. package/src/scss/cadmin/variables/_sidebar.scss +1 -1
  49. package/src/scss/cadmin/variables/_treeview.scss +38 -17
  50. package/src/scss/cadmin/variables/_utilities.scss +42 -0
  51. package/src/scss/components/_aspect-ratio.scss +25 -38
  52. package/src/scss/components/_cards.scss +28 -122
  53. package/src/scss/components/_empty-state.scss +30 -0
  54. package/src/scss/components/_forms.scss +1 -1
  55. package/src/scss/components/_links.scss +12 -8
  56. package/src/scss/components/_tables.scss +0 -8
  57. package/src/scss/components/_treeview.scss +367 -0
  58. package/src/scss/components/_type.scss +27 -41
  59. package/src/scss/components/_utilities-functional-important.scss +35 -15
  60. package/src/scss/functions/_lx-icons-generated.scss +10 -0
  61. package/src/scss/mixins/_buttons.scss +4 -0
  62. package/src/scss/mixins/_cards.scss +59 -25
  63. package/src/scss/mixins/_grid.scss +29 -0
  64. package/src/scss/mixins/_links.scss +22 -2
  65. package/src/scss/variables/_aspect-ratio.scss +26 -0
  66. package/src/scss/variables/_buttons.scss +6 -0
  67. package/src/scss/variables/_cards.scss +158 -4
  68. package/src/scss/variables/_empty-state.scss +23 -0
  69. package/src/scss/variables/_forms.scss +3 -2
  70. package/src/scss/variables/_globals.scss +172 -11
  71. package/src/scss/variables/_links.scss +38 -3
  72. package/src/scss/variables/_list-group.scss +22 -12
  73. package/src/scss/variables/_sidebar.scss +3 -3
  74. package/src/scss/variables/_tables.scss +14 -0
  75. package/src/scss/variables/_treeview.scss +242 -0
  76. package/src/scss/variables/_utilities.scss +42 -0
@@ -1,112 +1,50 @@
1
1
  .card,
2
2
  .card-horizontal {
3
- background-color: $card-bg;
4
- border-color: $card-border-color;
5
- border-style: $card-border-style;
6
- border-width: $card-border-width;
7
-
8
- @include border-radius($card-border-radius);
9
- @include box-shadow($card-box-shadow);
10
-
11
- display: block;
12
- height: $card-height;
13
- margin-bottom: $card-margin-bottom;
14
-
15
- // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106
16
-
17
- min-width: 0;
18
- position: relative;
19
- word-wrap: break-word;
3
+ @include clay-card-variant($card);
20
4
 
21
5
  .autofit-col {
22
6
  &:first-child {
23
- @include border-left-radius($card-inner-border-radius);
7
+ border-bottom-left-radius: clay-enable-rounded(
8
+ $card-inner-border-radius
9
+ );
10
+ border-top-left-radius: clay-enable-rounded(
11
+ $card-inner-border-radius
12
+ );
24
13
  }
25
14
 
26
15
  &:last-child {
27
- @include border-right-radius($card-inner-border-radius);
16
+ border-bottom-right-radius: clay-enable-rounded(
17
+ $card-inner-border-radius
18
+ );
19
+ border-top-right-radius: clay-enable-rounded(
20
+ $card-inner-border-radius
21
+ );
28
22
  }
29
23
  }
30
24
 
31
- .aspect-ratio {
32
- .label {
33
- @include clay-css($card-aspect-ratio-label);
34
- }
35
- }
36
-
37
- .aspect-ratio-item-top-left {
38
- @include clay-css($card-aspect-ratio-item-top-left);
39
- }
40
-
41
- .aspect-ratio-item-top-center {
42
- @include clay-css($card-aspect-ratio-item-top-center);
43
- }
44
-
45
- .aspect-ratio-item-top-right {
46
- @include clay-css($card-aspect-ratio-item-top-right);
47
- }
48
-
49
- .aspect-ratio-item-right-middle {
50
- @include clay-css($card-aspect-ratio-item-right-middle);
51
- }
52
-
53
- .aspect-ratio-item-bottom-right {
54
- @include clay-css($card-aspect-ratio-item-bottom-right);
55
- }
56
-
57
- .aspect-ratio-item-bottom-center {
58
- @include clay-css($card-aspect-ratio-item-bottom-center);
59
- }
60
-
61
- .aspect-ratio-item-bottom-left {
62
- @include clay-css($card-aspect-ratio-item-bottom-left);
63
- }
64
-
65
- > hr {
66
- margin-left: 0;
67
- margin-right: 0;
68
- }
69
-
70
25
  > .list-group:first-child {
71
26
  .list-group-item:first-child {
72
- @include border-top-radius($card-border-radius);
27
+ border-top-left-radius: clay-enable-rounded($card-border-radius);
28
+ border-top-right-radius: clay-enable-rounded($card-border-radius);
73
29
  }
74
30
  }
75
31
 
76
32
  > .list-group:last-child {
77
33
  .list-group-item:last-child {
78
- @include border-bottom-radius($card-border-radius);
34
+ border-bottom-left-radius: clay-enable-rounded($card-border-radius);
35
+ border-bottom-right-radius: clay-enable-rounded(
36
+ $card-border-radius
37
+ );
79
38
  }
80
39
  }
81
40
  }
82
41
 
83
42
  .card-body {
84
- color: $card-color;
85
-
86
- // Enable `flex-grow: 1` for decks and groups so that card blocks take up
87
- // as much space as possible, ensuring footers are aligned to the bottom.
88
-
89
- flex: 1 1 auto;
90
-
91
- // Workaround for the image size bug in IE
92
- // See: https://github.com/twbs/bootstrap/pull/28855
93
-
94
- min-height: 1px;
95
-
96
- padding-bottom: $card-body-padding-bottom;
97
- padding-left: $card-body-padding-left;
98
- padding-right: $card-body-padding-right;
99
- padding-top: $card-body-padding-top;
43
+ @include clay-css($card-body);
100
44
  }
101
45
 
102
46
  .card-section-header {
103
- color: $card-section-header-color;
104
- font-size: $card-section-header-font-size;
105
- font-weight: $card-section-header-font-weight;
106
- line-height: $card-section-header-line-height;
107
- margin-bottom: $card-section-header-margin-bottom;
108
- padding: $card-section-header-padding;
109
- text-transform: $card-section-header-text-transform;
47
+ @include clay-css($card-section-header);
110
48
  }
111
49
 
112
50
  // Card Title
@@ -115,24 +53,16 @@
115
53
  @include clay-text-typography($card-title);
116
54
  }
117
55
 
118
- .card-title a {
119
- @include clay-link($card-title-link);
120
- }
121
-
122
56
  // Card Subtitle
123
57
 
124
58
  .card-subtitle {
125
59
  @include clay-text-typography($card-subtitle);
126
60
  }
127
61
 
128
- .card-subtitle a {
129
- @include clay-link($card-subtitle-link);
130
- }
131
-
132
62
  // Card Text
133
63
 
134
- .card-text:last-child {
135
- margin-bottom: 0;
64
+ .card-text {
65
+ @include clay-text-typography($card-text);
136
66
  }
137
67
 
138
68
  // Card Link
@@ -149,32 +79,16 @@
149
79
  }
150
80
  }
151
81
 
82
+ // Card Divider
83
+
152
84
  .card-divider {
153
- background-color: $card-divider-bg;
154
- height: $card-divider-height;
155
- margin-bottom: $card-divider-spacer-y;
156
- margin-left: $card-divider-spacer-x;
157
- margin-right: $card-divider-spacer-x;
158
- margin-top: $card-divider-spacer-y;
85
+ @include clay-css($card-divider);
159
86
  }
160
87
 
161
88
  // Card Header
162
89
 
163
90
  .card-header {
164
- background-color: $card-cap-bg;
165
- border-bottom: $card-border-width solid $card-border-color;
166
- color: $card-cap-color;
167
-
168
- // Removes the default margin-bottom of <hN> (h1 - h6)
169
-
170
- margin-bottom: 0;
171
- padding: $card-spacer-y $card-spacer-x;
172
-
173
- &:first-child {
174
- @include border-radius(
175
- $card-inner-border-radius $card-inner-border-radius 0 0
176
- );
177
- }
91
+ @include clay-card-section-variant($card-header);
178
92
 
179
93
  + .list-group {
180
94
  .list-group-item:first-child {
@@ -200,15 +114,7 @@
200
114
  // Card Footer
201
115
 
202
116
  .card-footer {
203
- background-color: $card-cap-bg;
204
- border-top: $card-border-width solid $card-border-color;
205
- padding: $card-spacer-y $card-spacer-x;
206
-
207
- &:last-child {
208
- @include border-radius(
209
- 0 0 $card-inner-border-radius $card-inner-border-radius
210
- );
211
- }
117
+ @include clay-card-section-variant($card-footer);
212
118
  }
213
119
 
214
120
  @if ($enable-bs4-deprecated) {
@@ -2,6 +2,10 @@
2
2
  @include clay-css($c-empty-state);
3
3
  }
4
4
 
5
+ .c-empty-state-sm {
6
+ @include clay-css($c-empty-state-sm);
7
+ }
8
+
5
9
  .c-empty-state-animation {
6
10
  @include clay-css($c-empty-state-animation);
7
11
  }
@@ -33,3 +37,29 @@
33
37
  .c-empty-state-footer {
34
38
  @include clay-css($c-empty-state-footer);
35
39
  }
40
+
41
+ // C Empty State Small
42
+
43
+ .c-empty-state-sm {
44
+ @include clay-css($c-empty-state-sm);
45
+
46
+ &.c-empty-state-animation {
47
+ @include clay-css(map-get($c-empty-state-sm, c-empty-state-animation));
48
+ }
49
+
50
+ .c-empty-state-image {
51
+ @include clay-css(map-get($c-empty-state-sm, c-empty-state-image));
52
+ }
53
+
54
+ .c-empty-state-title {
55
+ @include clay-css(map-get($c-empty-state-sm, c-empty-state-title));
56
+ }
57
+
58
+ .c-empty-state-text {
59
+ @include clay-css(map-get($c-empty-state-sm, c-empty-state-text));
60
+ }
61
+
62
+ .c-empty-state-footer {
63
+ @include clay-css(map-get($c-empty-state-sm, c-empty-state-footer));
64
+ }
65
+ }
@@ -118,7 +118,7 @@ fieldset[disabled] label {
118
118
  }
119
119
 
120
120
  .label {
121
- @include clay-label-size($form-control-label-size);
121
+ @include clay-label-variant($form-control-label-size);
122
122
  }
123
123
  }
124
124
 
@@ -48,20 +48,24 @@ button.link-outline {
48
48
 
49
49
  .component-title {
50
50
  @include clay-text-typography($component-title);
51
-
52
- a {
53
- @include clay-link($component-title-link);
54
- }
55
51
  }
56
52
 
57
53
  .component-subtitle {
58
54
  @include clay-text-typography($component-subtitle);
59
-
60
- a {
61
- @include clay-link($component-subtitle-link);
62
- }
63
55
  }
64
56
 
65
57
  .component-action {
66
58
  @include clay-link($component-action);
67
59
  }
60
+
61
+ .component-text {
62
+ @include clay-text-typography($component-text);
63
+ }
64
+
65
+ .component-icon {
66
+ @include clay-css($component-icon);
67
+
68
+ .lexicon-icon {
69
+ @include clay-css(map-get($component-icon, lexicon-icon));
70
+ }
71
+ }
@@ -362,10 +362,6 @@ caption {
362
362
  @include clay-text-typography($table-title);
363
363
  }
364
364
 
365
- .table-title a {
366
- @include clay-link($table-title-link);
367
- }
368
-
369
365
  // Table Link
370
366
 
371
367
  .table-link {
@@ -663,10 +659,6 @@ caption {
663
659
  @include clay-text-typography($table-list-title);
664
660
  }
665
661
 
666
- .table-list-title a {
667
- @include clay-link($table-list-title-link);
668
- }
669
-
670
662
  // Table List Link
671
663
 
672
664
  .table-list-link {
@@ -0,0 +1,367 @@
1
+ .treeview {
2
+ @include clay-css($treeview);
3
+
4
+ .btn {
5
+ @include clay-button-variant(map-get($treeview, btn));
6
+ }
7
+
8
+ .btn-monospaced {
9
+ @include clay-button-variant(map-get($treeview, btn-monospaced));
10
+ }
11
+
12
+ .custom-control {
13
+ @include clay-css(map-get($treeview, custom-control));
14
+ }
15
+
16
+ .component-expander {
17
+ @include clay-button-variant(map-get($treeview, component-expander));
18
+
19
+ .lexicon-icon:not(.component-expanded-d-none) {
20
+ display: none;
21
+ }
22
+ }
23
+
24
+ .component-action {
25
+ @include clay-button-variant(map-get($treeview, component-action));
26
+ }
27
+
28
+ .component-icon {
29
+ @include clay-css(map-get($treeview, component-icon));
30
+
31
+ .lexicon-icon {
32
+ @include clay-css(
33
+ map-deep-get($treeview, component-icon, lexicon-icon)
34
+ );
35
+ }
36
+ }
37
+
38
+ .component-text {
39
+ @include clay-css(map-get($treeview, component-text));
40
+ }
41
+
42
+ &.show-component-expander-on-hover {
43
+ @include clay-css($treeview-show-component-expander-on-hover);
44
+
45
+ &:hover,
46
+ &.hover {
47
+ @include clay-css(
48
+ map-get($treeview-show-component-expander-on-hover, hover)
49
+ );
50
+
51
+ .component-expander {
52
+ @include clay-css(
53
+ map-deep-get(
54
+ $treeview-show-component-expander-on-hover,
55
+ hover,
56
+ component-expander
57
+ )
58
+ );
59
+ }
60
+ }
61
+
62
+ .treeview-link {
63
+ @include clay-css(
64
+ map-get(
65
+ $treeview-show-component-expander-on-hover,
66
+ treeview-link
67
+ )
68
+ );
69
+
70
+ &:focus,
71
+ &.focus {
72
+ @include clay-css(
73
+ map-deep-get(
74
+ $treeview-show-component-expander-on-hover,
75
+ treeview-link,
76
+ focus
77
+ )
78
+ );
79
+
80
+ .component-expander {
81
+ @include clay-css(
82
+ map-deep-get(
83
+ $treeview-show-component-expander-on-hover,
84
+ treeview-link,
85
+ focus,
86
+ component-expander
87
+ )
88
+ );
89
+ }
90
+ }
91
+ }
92
+
93
+ .component-expander {
94
+ @include clay-css(
95
+ map-get(
96
+ $treeview-show-component-expander-on-hover,
97
+ component-expander
98
+ )
99
+ );
100
+ }
101
+ }
102
+ }
103
+
104
+ .treeview-group {
105
+ @include clay-css(map-get($treeview, treeview-group));
106
+ }
107
+
108
+ .treeview-item {
109
+ @include clay-css(map-get($treeview, treeview-item));
110
+
111
+ &:last-child {
112
+ @include clay-css(map-deep-get($treeview, treeview-item, last-child));
113
+ }
114
+ }
115
+
116
+ .treeview-link {
117
+ @include clay-link(map-get($treeview, treeview-link));
118
+
119
+ &.treeview-dropping-bottom {
120
+ @include clay-link(
121
+ map-deep-get($treeview, treeview-link, treeview-dropping-bottom)
122
+ );
123
+ }
124
+
125
+ &.treeview-dropping-middle {
126
+ @include clay-link(
127
+ map-deep-get($treeview, treeview-link, treeview-dropping-middle)
128
+ );
129
+ }
130
+
131
+ &.treeview-dropping-top {
132
+ @include clay-link(
133
+ map-deep-get($treeview, treeview-link, treeview-dropping-top)
134
+ );
135
+ }
136
+
137
+ &.hover,
138
+ &:hover,
139
+ &.focus,
140
+ &:focus {
141
+ .component-action {
142
+ display: flex;
143
+ }
144
+ }
145
+
146
+ &:disabled,
147
+ &.disabled {
148
+ .component-action {
149
+ display: none;
150
+ }
151
+ }
152
+
153
+ &.show,
154
+ &[aria-expanded='true'] {
155
+ .component-expander {
156
+ .component-expanded-d-none {
157
+ display: none;
158
+ }
159
+
160
+ .lexicon-icon:not(.component-expanded-d-none) {
161
+ display: inline-block;
162
+ }
163
+ }
164
+ }
165
+ }
166
+
167
+ .treeview-nested-margins {
168
+ @include clay-css($treeview-nested-margins);
169
+
170
+ .treeview-group {
171
+ @include clay-css(map-get($treeview-nested-margins, treeview-group));
172
+
173
+ .treeview-item {
174
+ @include clay-css(
175
+ map-deep-get(
176
+ $treeview-nested-margins,
177
+ treeview-group,
178
+ treeview-item
179
+ )
180
+ );
181
+ }
182
+ }
183
+ }
184
+
185
+ .treeview-item-dragging {
186
+ @include clay-css(map-get($treeview, treeview-item-dragging));
187
+
188
+ .treeview-link {
189
+ @include clay-link(
190
+ map-deep-get($treeview, treeview-item-dragging, treeview-link)
191
+ );
192
+ }
193
+ }
194
+
195
+ .treeview-dragging {
196
+ @include clay-css(map-get($treeview, treeview-dragging));
197
+ }
198
+
199
+ // Treeview Variants
200
+
201
+ .treeview-light {
202
+ @include clay-css($treeview-light);
203
+
204
+ .btn {
205
+ @include clay-button-variant(map-get($treeview-light, btn));
206
+ }
207
+
208
+ .btn-monospaced {
209
+ @include clay-button-variant(map-get($treeview-light, btn-monospaced));
210
+ }
211
+
212
+ .component-expander {
213
+ @include clay-button-variant(
214
+ map-get($treeview-light, component-expander)
215
+ );
216
+
217
+ &.btn-secondary {
218
+ @include clay-button-variant(
219
+ map-deep-get($treeview-light, component-expander, btn-secondary)
220
+ );
221
+ }
222
+ }
223
+
224
+ .custom-control {
225
+ @include clay-css(map-get($treeview-light, custom-control));
226
+ }
227
+
228
+ .treeview-group {
229
+ @include clay-css(map-get($treeview-light, treeview-group));
230
+ }
231
+
232
+ .treeview-item {
233
+ @include clay-css(map-get($treeview-light, treeview-item));
234
+
235
+ &:last-child {
236
+ @include clay-css(
237
+ map-deep-get($treeview-light, treeview-item, last-child)
238
+ );
239
+ }
240
+ }
241
+
242
+ .treeview-link {
243
+ @include clay-link(map-get($treeview-light, treeview-link));
244
+
245
+ &:disabled,
246
+ &.disabled {
247
+ .component-expander {
248
+ @include clay-css(
249
+ map-deep-get(
250
+ $treeview-light,
251
+ treeview-link,
252
+ disabled,
253
+ component-expander
254
+ )
255
+ );
256
+ }
257
+
258
+ .component-action {
259
+ @include clay-css(
260
+ map-deep-get(
261
+ $treeview-light,
262
+ treeview-link,
263
+ disabled,
264
+ component-action
265
+ )
266
+ );
267
+ }
268
+ }
269
+ }
270
+
271
+ .component-action {
272
+ @include clay-button-variant(
273
+ map-get($treeview-light, component-action)
274
+ );
275
+ }
276
+
277
+ .component-icon {
278
+ @include clay-css(map-get($treeview-light, component));
279
+ }
280
+
281
+ .component-text {
282
+ @include clay-css(map-get($treeview-light, component));
283
+ }
284
+ }
285
+
286
+ .treeview-dark {
287
+ @include clay-css($treeview-dark);
288
+
289
+ .btn {
290
+ @include clay-button-variant(map-get($treeview-dark, btn));
291
+ }
292
+
293
+ .btn-monospaced {
294
+ @include clay-button-variant(map-get($treeview-dark, btn-monospaced));
295
+ }
296
+
297
+ .component-expander {
298
+ @include clay-button-variant(
299
+ map-get($treeview-dark, component-expander)
300
+ );
301
+
302
+ &.btn-secondary {
303
+ @include clay-button-variant(
304
+ map-deep-get($treeview-dark, component-expander, btn-secondary)
305
+ );
306
+ }
307
+ }
308
+
309
+ .custom-control {
310
+ @include clay-css(map-get($treeview-dark, custom-control));
311
+ }
312
+
313
+ .treeview-group {
314
+ @include clay-css(map-get($treeview-dark, treeview-group));
315
+ }
316
+
317
+ .treeview-item {
318
+ @include clay-css(map-get($treeview-dark, treeview-item));
319
+
320
+ &:last-child {
321
+ @include clay-css(
322
+ map-deep-get($treeview-dark, treeview-item, last-child)
323
+ );
324
+ }
325
+ }
326
+
327
+ .treeview-link {
328
+ @include clay-link(map-get($treeview-dark, treeview-link));
329
+
330
+ &:disabled,
331
+ &.disabled {
332
+ .component-expander {
333
+ @include clay-css(
334
+ map-deep-get(
335
+ $treeview-dark,
336
+ treeview-link,
337
+ disabled,
338
+ component-expander
339
+ )
340
+ );
341
+ }
342
+
343
+ .component-action {
344
+ @include clay-css(
345
+ map-deep-get(
346
+ $treeview-dark,
347
+ treeview-link,
348
+ disabled,
349
+ component-action
350
+ )
351
+ );
352
+ }
353
+ }
354
+ }
355
+
356
+ .component-action {
357
+ @include clay-button-variant(map-get($treeview-dark, component-action));
358
+ }
359
+
360
+ .component-icon {
361
+ @include clay-css(map-get($treeview-dark, component-icon));
362
+ }
363
+
364
+ .component-text {
365
+ @include clay-css(map-get($treeview-dark, component-text));
366
+ }
367
+ }