@clayui/css 3.44.2 → 3.45.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.
- package/lib/css/atlas.css +228 -1
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +228 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +22 -14
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/add-cell.svg +1 -1
- package/lib/images/icons/corner-radius.svg +12 -0
- package/lib/images/icons/font-family.svg +10 -0
- package/lib/images/icons/font-size.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/shadow.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/add-cell.svg +1 -1
- package/src/images/icons/corner-radius.svg +12 -0
- package/src/images/icons/font-family.svg +10 -0
- package/src/images/icons/font-size.svg +10 -0
- package/src/images/icons/shadow.svg +9 -0
- package/src/scss/_components.scss +1 -0
- package/src/scss/_variables.scss +1 -0
- package/src/scss/atlas/variables/_forms.scss +2 -1
- package/src/scss/cadmin/components/_custom-forms.scss +4 -0
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_links.scss +1 -6
- package/src/scss/cadmin/components/_navs.scss +8 -0
- package/src/scss/cadmin/components/_treeview.scss +135 -211
- package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
- package/src/scss/cadmin/variables/_forms.scss +3 -2
- package/src/scss/cadmin/variables/_treeview.scss +21 -16
- package/src/scss/components/_forms.scss +1 -1
- package/src/scss/components/_links.scss +12 -0
- package/src/scss/components/_treeview.scss +310 -0
- package/src/scss/functions/_lx-icons-generated.scss +8 -0
- package/src/scss/variables/_forms.scss +3 -2
- package/src/scss/variables/_links.scss +17 -0
- package/src/scss/variables/_treeview.scss +222 -0
|
@@ -2,61 +2,45 @@
|
|
|
2
2
|
@include clay-css($cadmin-treeview);
|
|
3
3
|
|
|
4
4
|
.btn {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
@include clay-button-variant($btn);
|
|
5
|
+
@include clay-button-variant(map-get($cadmin-treeview, btn));
|
|
8
6
|
}
|
|
9
7
|
|
|
10
8
|
.btn-monospaced {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
@include clay-button-variant($btn-monospaced);
|
|
9
|
+
@include clay-button-variant(map-get($cadmin-treeview, btn-monospaced));
|
|
14
10
|
}
|
|
15
11
|
|
|
16
12
|
.custom-control {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
@include clay-css($custom-control);
|
|
13
|
+
@include clay-css(map-get($cadmin-treeview, custom-control));
|
|
20
14
|
}
|
|
21
15
|
|
|
22
16
|
.component-expander {
|
|
23
|
-
|
|
24
|
-
map-get($cadmin-treeview, component-expander)
|
|
25
|
-
()
|
|
17
|
+
@include clay-button-variant(
|
|
18
|
+
map-get($cadmin-treeview, component-expander)
|
|
26
19
|
);
|
|
27
20
|
|
|
28
|
-
@include clay-button-variant($component-expander);
|
|
29
|
-
|
|
30
21
|
.lexicon-icon:not(.component-expanded-d-none) {
|
|
31
22
|
display: none;
|
|
32
23
|
}
|
|
33
24
|
}
|
|
34
25
|
|
|
35
26
|
.component-action {
|
|
36
|
-
|
|
37
|
-
map-get($cadmin-treeview, component-action)
|
|
38
|
-
()
|
|
27
|
+
@include clay-button-variant(
|
|
28
|
+
map-get($cadmin-treeview, component-action)
|
|
39
29
|
);
|
|
40
|
-
|
|
41
|
-
@include clay-button-variant($component-action);
|
|
42
30
|
}
|
|
43
31
|
|
|
44
32
|
.component-icon {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
@include clay-css($component-icon);
|
|
33
|
+
@include clay-css(map-get($cadmin-treeview, component-icon));
|
|
48
34
|
|
|
49
35
|
.lexicon-icon {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
36
|
+
@include clay-css(
|
|
37
|
+
map-deep-get($cadmin-treeview, component-icon, lexicon-icon)
|
|
38
|
+
);
|
|
53
39
|
}
|
|
54
40
|
}
|
|
55
41
|
|
|
56
42
|
.component-text {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
@include clay-css($component-text);
|
|
43
|
+
@include clay-css(map-get($cadmin-treeview, component-text));
|
|
60
44
|
}
|
|
61
45
|
|
|
62
46
|
&.show-component-expander-on-hover {
|
|
@@ -64,124 +48,107 @@
|
|
|
64
48
|
|
|
65
49
|
&:hover,
|
|
66
50
|
&.hover {
|
|
67
|
-
|
|
51
|
+
@include clay-css(
|
|
68
52
|
map-get(
|
|
69
53
|
$cadmin-treeview-show-component-expander-on-hover,
|
|
70
54
|
hover
|
|
71
|
-
)
|
|
72
|
-
()
|
|
55
|
+
)
|
|
73
56
|
);
|
|
74
57
|
|
|
75
|
-
@include clay-css($hover);
|
|
76
|
-
|
|
77
58
|
.component-expander {
|
|
78
|
-
|
|
79
|
-
map-get(
|
|
80
|
-
|
|
59
|
+
@include clay-css(
|
|
60
|
+
map-deep-get(
|
|
61
|
+
$cadmin-treeview-show-component-expander-on-hover,
|
|
62
|
+
hover,
|
|
63
|
+
component-expander
|
|
64
|
+
)
|
|
81
65
|
);
|
|
82
|
-
|
|
83
|
-
@include clay-css($component-expander);
|
|
84
66
|
}
|
|
85
67
|
}
|
|
86
68
|
|
|
87
69
|
.treeview-link {
|
|
88
|
-
|
|
70
|
+
@include clay-css(
|
|
89
71
|
map-get(
|
|
90
72
|
$cadmin-treeview-show-component-expander-on-hover,
|
|
91
73
|
treeview-link
|
|
92
|
-
)
|
|
93
|
-
()
|
|
74
|
+
)
|
|
94
75
|
);
|
|
95
76
|
|
|
96
|
-
@include clay-css($treeview-link);
|
|
97
|
-
|
|
98
77
|
&:focus,
|
|
99
78
|
&.focus {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
79
|
+
@include clay-css(
|
|
80
|
+
map-deep-get(
|
|
81
|
+
$cadmin-treeview-show-component-expander-on-hover,
|
|
82
|
+
treeview-link,
|
|
83
|
+
focus
|
|
84
|
+
)
|
|
85
|
+
);
|
|
103
86
|
|
|
104
87
|
.component-expander {
|
|
105
|
-
|
|
106
|
-
map-get(
|
|
88
|
+
@include clay-css(
|
|
89
|
+
map-deep-get(
|
|
90
|
+
$cadmin-treeview-show-component-expander-on-hover,
|
|
91
|
+
treeview-link,
|
|
92
|
+
focus,
|
|
93
|
+
component-expander
|
|
94
|
+
)
|
|
107
95
|
);
|
|
108
|
-
|
|
109
|
-
@include clay-css($component-expander);
|
|
110
96
|
}
|
|
111
97
|
}
|
|
112
98
|
}
|
|
113
99
|
|
|
114
100
|
.component-expander {
|
|
115
|
-
|
|
101
|
+
@include clay-css(
|
|
116
102
|
map-get(
|
|
117
103
|
$cadmin-treeview-show-component-expander-on-hover,
|
|
118
104
|
component-expander
|
|
119
|
-
)
|
|
120
|
-
()
|
|
105
|
+
)
|
|
121
106
|
);
|
|
122
|
-
|
|
123
|
-
@include clay-css($component-expander);
|
|
124
107
|
}
|
|
125
108
|
}
|
|
126
109
|
}
|
|
127
110
|
|
|
128
111
|
.treeview-group {
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
@include clay-css($group);
|
|
112
|
+
@include clay-css(map-get($cadmin-treeview, treeview-group));
|
|
132
113
|
}
|
|
133
114
|
|
|
134
115
|
.treeview-item {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
@include clay-css($item);
|
|
116
|
+
@include clay-css(map-get($cadmin-treeview, treeview-item));
|
|
138
117
|
|
|
139
118
|
&:last-child {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
&.disabled {
|
|
146
|
-
cursor: $cadmin-disabled-cursor;
|
|
147
|
-
opacity: 0.4;
|
|
148
|
-
|
|
149
|
-
.treeview-dropping {
|
|
150
|
-
&-bottom,
|
|
151
|
-
&-middle,
|
|
152
|
-
&-top {
|
|
153
|
-
border-color: transparent;
|
|
154
|
-
background-color: transparent;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
119
|
+
@include clay-css(
|
|
120
|
+
map-deep-get($cadmin-treeview, treeview-item, last-child)
|
|
121
|
+
);
|
|
157
122
|
}
|
|
158
123
|
}
|
|
159
124
|
|
|
160
125
|
.treeview-link {
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
&-middle {
|
|
175
|
-
$dropping-middle: setter(map-get($dropping, middle), ());
|
|
176
|
-
|
|
177
|
-
@include clay-css($dropping-middle);
|
|
178
|
-
}
|
|
126
|
+
@include clay-link(map-get($cadmin-treeview, treeview-link));
|
|
127
|
+
|
|
128
|
+
&.treeview-dropping-bottom {
|
|
129
|
+
@include clay-link(
|
|
130
|
+
map-deep-get(
|
|
131
|
+
$cadmin-treeview,
|
|
132
|
+
treeview-link,
|
|
133
|
+
treeview-dropping-bottom
|
|
134
|
+
)
|
|
135
|
+
);
|
|
136
|
+
}
|
|
179
137
|
|
|
180
|
-
|
|
181
|
-
|
|
138
|
+
&.treeview-dropping-middle {
|
|
139
|
+
@include clay-link(
|
|
140
|
+
map-deep-get(
|
|
141
|
+
$cadmin-treeview,
|
|
142
|
+
treeview-link,
|
|
143
|
+
treeview-dropping-middle
|
|
144
|
+
)
|
|
145
|
+
);
|
|
146
|
+
}
|
|
182
147
|
|
|
183
|
-
|
|
184
|
-
|
|
148
|
+
&.treeview-dropping-top {
|
|
149
|
+
@include clay-link(
|
|
150
|
+
map-deep-get($cadmin-treeview, treeview-link, treeview-dropping-top)
|
|
151
|
+
);
|
|
185
152
|
}
|
|
186
153
|
|
|
187
154
|
&.hover,
|
|
@@ -211,25 +178,38 @@
|
|
|
211
178
|
@include clay-css($cadmin-treeview-nested-margins);
|
|
212
179
|
|
|
213
180
|
.treeview-group {
|
|
214
|
-
|
|
215
|
-
map-get($cadmin-treeview-nested-margins, treeview-group)
|
|
216
|
-
()
|
|
181
|
+
@include clay-css(
|
|
182
|
+
map-get($cadmin-treeview-nested-margins, treeview-group)
|
|
217
183
|
);
|
|
218
184
|
|
|
219
|
-
@include clay-css($group);
|
|
220
|
-
|
|
221
185
|
.treeview-item {
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
186
|
+
@include clay-css(
|
|
187
|
+
map-deep-get(
|
|
188
|
+
$cadmin-treeview-nested-margins,
|
|
189
|
+
treeview-group,
|
|
190
|
+
treeview-item
|
|
191
|
+
)
|
|
192
|
+
);
|
|
225
193
|
}
|
|
226
194
|
}
|
|
227
195
|
}
|
|
228
196
|
|
|
229
|
-
.treeview-dragging {
|
|
230
|
-
|
|
197
|
+
.treeview-item-dragging {
|
|
198
|
+
@include clay-css(map-get($cadmin-treeview, treeview-item-dragging));
|
|
199
|
+
|
|
200
|
+
.treeview-link {
|
|
201
|
+
@include clay-link(
|
|
202
|
+
map-deep-get(
|
|
203
|
+
$cadmin-treeview,
|
|
204
|
+
treeview-item-dragging,
|
|
205
|
+
treeview-link
|
|
206
|
+
)
|
|
207
|
+
);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
231
210
|
|
|
232
|
-
|
|
211
|
+
.treeview-dragging {
|
|
212
|
+
@include clay-css(map-get($cadmin-treeview, treeview-dragging));
|
|
233
213
|
}
|
|
234
214
|
|
|
235
215
|
// Treeview Variants
|
|
@@ -238,90 +218,65 @@
|
|
|
238
218
|
@include clay-css($cadmin-treeview-light);
|
|
239
219
|
|
|
240
220
|
.btn {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
@include clay-button-variant($btn);
|
|
221
|
+
@include clay-button-variant(map-get($cadmin-treeview-light, btn));
|
|
244
222
|
}
|
|
245
223
|
|
|
246
224
|
.btn-monospaced {
|
|
247
|
-
|
|
248
|
-
map-get($cadmin-treeview-light, btn-monospaced)
|
|
249
|
-
()
|
|
225
|
+
@include clay-button-variant(
|
|
226
|
+
map-get($cadmin-treeview-light, btn-monospaced)
|
|
250
227
|
);
|
|
251
|
-
|
|
252
|
-
@include clay-button-variant($btn-monospaced);
|
|
253
228
|
}
|
|
254
229
|
|
|
255
230
|
.component-expander {
|
|
256
|
-
|
|
257
|
-
map-get($cadmin-treeview-light, component-expander)
|
|
258
|
-
()
|
|
231
|
+
@include clay-button-variant(
|
|
232
|
+
map-get($cadmin-treeview-light, component-expander)
|
|
259
233
|
);
|
|
260
234
|
|
|
261
|
-
@include clay-button-variant($component-expander);
|
|
262
|
-
|
|
263
235
|
&.btn-secondary {
|
|
264
|
-
|
|
265
|
-
map-get(
|
|
266
|
-
|
|
236
|
+
@include clay-button-variant(
|
|
237
|
+
map-deep-get(
|
|
238
|
+
$cadmin-treeview-light,
|
|
239
|
+
component-expander,
|
|
240
|
+
btn-secondary
|
|
241
|
+
)
|
|
267
242
|
);
|
|
268
|
-
|
|
269
|
-
@include clay-button-variant($btn-secondary);
|
|
270
243
|
}
|
|
271
244
|
}
|
|
272
245
|
|
|
273
246
|
.custom-control {
|
|
274
|
-
$custom-control
|
|
275
|
-
map-get($cadmin-treeview-light, custom-control),
|
|
276
|
-
()
|
|
277
|
-
);
|
|
278
|
-
|
|
279
|
-
@include clay-css($custom-control);
|
|
247
|
+
@include clay-css(map-get($cadmin-treeview-light, custom-control));
|
|
280
248
|
}
|
|
281
249
|
|
|
282
250
|
.treeview-group {
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
@include clay-css($group);
|
|
251
|
+
@include clay-css(map-get($cadmin-treeview-light, treeview-group));
|
|
286
252
|
}
|
|
287
253
|
|
|
288
254
|
.treeview-item {
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
@include clay-css($item);
|
|
255
|
+
@include clay-css(map-get($cadmin-treeview-light, treeview-item));
|
|
292
256
|
|
|
293
257
|
&:last-child {
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
258
|
+
@include clay-css(
|
|
259
|
+
map-deep-get($cadmin-treeview-light, treeview-item, last-child)
|
|
260
|
+
);
|
|
297
261
|
}
|
|
298
262
|
}
|
|
299
263
|
|
|
300
264
|
.treeview-link {
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
@include clay-link($link);
|
|
265
|
+
@include clay-link(map-get($cadmin-treeview-light, treeview-link));
|
|
304
266
|
}
|
|
305
267
|
|
|
306
268
|
.component-action {
|
|
307
|
-
|
|
308
|
-
map-get($cadmin-treeview-light, component-action)
|
|
309
|
-
()
|
|
269
|
+
@include clay-button-variant(
|
|
270
|
+
map-get($cadmin-treeview-light, component-action)
|
|
310
271
|
);
|
|
311
|
-
|
|
312
|
-
@include clay-button-variant($component-action);
|
|
313
272
|
}
|
|
314
273
|
|
|
315
274
|
.component-icon {
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
@include clay-css($component);
|
|
275
|
+
@include clay-css(map-get($cadmin-treeview-light, component));
|
|
319
276
|
}
|
|
320
277
|
|
|
321
278
|
.component-text {
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
@include clay-css($component);
|
|
279
|
+
@include clay-css(map-get($cadmin-treeview-light, component));
|
|
325
280
|
}
|
|
326
281
|
}
|
|
327
282
|
|
|
@@ -329,95 +284,64 @@
|
|
|
329
284
|
@include clay-css($cadmin-treeview-dark);
|
|
330
285
|
|
|
331
286
|
.btn {
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
@include clay-button-variant($btn);
|
|
287
|
+
@include clay-button-variant(map-get($cadmin-treeview-dark, btn));
|
|
335
288
|
}
|
|
336
289
|
|
|
337
290
|
.btn-monospaced {
|
|
338
|
-
|
|
339
|
-
map-get($cadmin-treeview-dark, btn-monospaced)
|
|
340
|
-
()
|
|
291
|
+
@include clay-button-variant(
|
|
292
|
+
map-get($cadmin-treeview-dark, btn-monospaced)
|
|
341
293
|
);
|
|
342
|
-
|
|
343
|
-
@include clay-button-variant($btn-monospaced);
|
|
344
294
|
}
|
|
345
295
|
|
|
346
296
|
.component-expander {
|
|
347
|
-
|
|
348
|
-
map-get($cadmin-treeview-dark, component-expander)
|
|
349
|
-
()
|
|
297
|
+
@include clay-button-variant(
|
|
298
|
+
map-get($cadmin-treeview-dark, component-expander)
|
|
350
299
|
);
|
|
351
300
|
|
|
352
|
-
@include clay-button-variant($component-expander);
|
|
353
|
-
|
|
354
301
|
&.btn-secondary {
|
|
355
|
-
|
|
356
|
-
map-get(
|
|
357
|
-
|
|
302
|
+
@include clay-button-variant(
|
|
303
|
+
map-deep-get(
|
|
304
|
+
$cadmin-treeview-dark,
|
|
305
|
+
component-expander,
|
|
306
|
+
btn-secondary
|
|
307
|
+
)
|
|
358
308
|
);
|
|
359
|
-
|
|
360
|
-
@include clay-button-variant($btn-secondary);
|
|
361
309
|
}
|
|
362
310
|
}
|
|
363
311
|
|
|
364
312
|
.custom-control {
|
|
365
|
-
$custom-control
|
|
366
|
-
map-get($cadmin-treeview-dark, custom-control),
|
|
367
|
-
()
|
|
368
|
-
);
|
|
369
|
-
|
|
370
|
-
@include clay-css($custom-control);
|
|
313
|
+
@include clay-css(map-get($cadmin-treeview-dark, custom-control));
|
|
371
314
|
}
|
|
372
315
|
|
|
373
316
|
.treeview-group {
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
@include clay-css($group);
|
|
317
|
+
@include clay-css(map-get($cadmin-treeview-dark, treeview-group));
|
|
377
318
|
}
|
|
378
319
|
|
|
379
320
|
.treeview-item {
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
@include clay-css($item);
|
|
321
|
+
@include clay-css(map-get($cadmin-treeview-dark, treeview-item));
|
|
383
322
|
|
|
384
323
|
&:last-child {
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
324
|
+
@include clay-css(
|
|
325
|
+
map-deep-get($cadmin-treeview-dark, treeview-item, last-child)
|
|
326
|
+
);
|
|
388
327
|
}
|
|
389
328
|
}
|
|
390
329
|
|
|
391
330
|
.treeview-link {
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
@include clay-link($link);
|
|
331
|
+
@include clay-link(map-get($cadmin-treeview-dark, treeview-link));
|
|
395
332
|
}
|
|
396
333
|
|
|
397
334
|
.component-action {
|
|
398
|
-
|
|
399
|
-
map-get($cadmin-treeview-dark, component-action)
|
|
400
|
-
()
|
|
335
|
+
@include clay-button-variant(
|
|
336
|
+
map-get($cadmin-treeview-dark, component-action)
|
|
401
337
|
);
|
|
402
|
-
|
|
403
|
-
@include clay-button-variant($component-action);
|
|
404
338
|
}
|
|
405
339
|
|
|
406
340
|
.component-icon {
|
|
407
|
-
$component-icon
|
|
408
|
-
map-get($cadmin-treeview-dark, component-icon),
|
|
409
|
-
()
|
|
410
|
-
);
|
|
411
|
-
|
|
412
|
-
@include clay-css($component-icon);
|
|
341
|
+
@include clay-css(map-get($cadmin-treeview-dark, component-icon));
|
|
413
342
|
}
|
|
414
343
|
|
|
415
344
|
.component-text {
|
|
416
|
-
$component-text
|
|
417
|
-
map-get($cadmin-treeview-dark, component-text),
|
|
418
|
-
()
|
|
419
|
-
);
|
|
420
|
-
|
|
421
|
-
@include clay-css($component-text);
|
|
345
|
+
@include clay-css(map-get($cadmin-treeview-dark, component-text));
|
|
422
346
|
}
|
|
423
347
|
}
|
|
@@ -136,6 +136,7 @@ $cadmin-custom-control-label: map-deep-merge(
|
|
|
136
136
|
top: $cadmin-custom-control-indicator-position-top,
|
|
137
137
|
transition: clay-enable-transitions($cadmin-custom-forms-transition),
|
|
138
138
|
width: $cadmin-custom-control-indicator-size,
|
|
139
|
+
z-index: 0,
|
|
139
140
|
),
|
|
140
141
|
after: (
|
|
141
142
|
background: no-repeat 50% / #{$cadmin-custom-control-indicator-bg-size},
|
|
@@ -146,6 +147,7 @@ $cadmin-custom-control-label: map-deep-merge(
|
|
|
146
147
|
position: absolute,
|
|
147
148
|
top: $cadmin-custom-control-indicator-position-top,
|
|
148
149
|
width: $cadmin-custom-control-indicator-size,
|
|
150
|
+
z-index: 0,
|
|
149
151
|
),
|
|
150
152
|
),
|
|
151
153
|
$cadmin-custom-control-label
|
|
@@ -216,6 +218,7 @@ $cadmin-custom-control: map-deep-merge(
|
|
|
216
218
|
display: inline,
|
|
217
219
|
font-size: $cadmin-font-size-base,
|
|
218
220
|
margin-bottom: 0,
|
|
221
|
+
position: static,
|
|
219
222
|
),
|
|
220
223
|
),
|
|
221
224
|
$cadmin-custom-control
|
|
@@ -319,10 +319,11 @@ $cadmin-form-control-label-size: map-deep-merge(
|
|
|
319
319
|
(
|
|
320
320
|
border-width: 1px,
|
|
321
321
|
font-size: map-get($cadmin-label-lg, font-size),
|
|
322
|
-
height:
|
|
322
|
+
height: auto,
|
|
323
323
|
margin-bottom: 5px,
|
|
324
324
|
margin-right: 10px,
|
|
325
325
|
margin-top: 5px,
|
|
326
|
+
min-height: 24px,
|
|
326
327
|
padding-x: map-get($cadmin-label-lg, padding-x),
|
|
327
328
|
padding-y: map-get($cadmin-label-lg, padding-y),
|
|
328
329
|
text-transform: none,
|
|
@@ -340,7 +341,7 @@ $cadmin-form-control-label-size: map-deep-merge(
|
|
|
340
341
|
$cadmin-form-control-tag-group-padding-y: (
|
|
341
342
|
$cadmin-input-height - $cadmin-input-border-bottom-width -
|
|
342
343
|
$cadmin-input-border-top-width -
|
|
343
|
-
map-get($cadmin-form-control-label-size, height) -
|
|
344
|
+
map-get($cadmin-form-control-label-size, min-height) -
|
|
344
345
|
(map-get($cadmin-form-control-label-size, margin-bottom)) -
|
|
345
346
|
(map-get($cadmin-form-control-label-size, margin-top))
|
|
346
347
|
) * 0.5 !default;
|
|
@@ -42,7 +42,16 @@ $cadmin-treeview: map-merge(
|
|
|
42
42
|
treeview-item: (
|
|
43
43
|
word-wrap: break-word,
|
|
44
44
|
),
|
|
45
|
-
|
|
45
|
+
treeview-item-dragging: (
|
|
46
|
+
cursor: $cadmin-disabled-cursor,
|
|
47
|
+
opacity: 0.4,
|
|
48
|
+
treeview-link: (
|
|
49
|
+
background-color: transparent,
|
|
50
|
+
border-color: transparent,
|
|
51
|
+
box-shadow: none,
|
|
52
|
+
),
|
|
53
|
+
),
|
|
54
|
+
treeview-link: (
|
|
46
55
|
cursor: pointer,
|
|
47
56
|
display: block,
|
|
48
57
|
border-color: transparent,
|
|
@@ -54,19 +63,15 @@ $cadmin-treeview: map-merge(
|
|
|
54
63
|
padding: 0,
|
|
55
64
|
position: relative,
|
|
56
65
|
user-select: none,
|
|
57
|
-
dropping: (
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
top: (
|
|
67
|
-
border-top-color: $cadmin-primary-l1,
|
|
68
|
-
border-top-width: 2px,
|
|
69
|
-
),
|
|
66
|
+
treeview-dropping-bottom: (
|
|
67
|
+
box-shadow: 0 2px 0 0 $cadmin-primary-l1,
|
|
68
|
+
),
|
|
69
|
+
treeview-dropping-middle: (
|
|
70
|
+
background-color: $cadmin-primary-l3,
|
|
71
|
+
border-color: $cadmin-primary-l1,
|
|
72
|
+
),
|
|
73
|
+
treeview-dropping-top: (
|
|
74
|
+
box-shadow: 0 -2px 0 0 $cadmin-primary-l1,
|
|
70
75
|
),
|
|
71
76
|
hover: (
|
|
72
77
|
text-decoration: none,
|
|
@@ -159,7 +164,7 @@ $cadmin-treeview-light: map-deep-merge(
|
|
|
159
164
|
background-color: $cadmin-white,
|
|
160
165
|
),
|
|
161
166
|
),
|
|
162
|
-
link: (
|
|
167
|
+
treeview-link: (
|
|
163
168
|
color: $cadmin-gray-600,
|
|
164
169
|
hover: (
|
|
165
170
|
background-color: $cadmin-gray-100,
|
|
@@ -191,7 +196,7 @@ $cadmin-treeview-dark: map-deep-merge(
|
|
|
191
196
|
color: $cadmin-primary-l1,
|
|
192
197
|
),
|
|
193
198
|
),
|
|
194
|
-
link: (
|
|
199
|
+
treeview-link: (
|
|
195
200
|
color: $cadmin-secondary-l1,
|
|
196
201
|
hover: (
|
|
197
202
|
background-color: rgba($cadmin-white, 0.04),
|
|
@@ -65,3 +65,15 @@ button.link-outline {
|
|
|
65
65
|
.component-action {
|
|
66
66
|
@include clay-link($component-action);
|
|
67
67
|
}
|
|
68
|
+
|
|
69
|
+
.component-text {
|
|
70
|
+
@include clay-css($component-text);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.component-icon {
|
|
74
|
+
@include clay-css($component-icon);
|
|
75
|
+
|
|
76
|
+
.lexicon-icon {
|
|
77
|
+
@include clay-css(map-get($component-icon, lexicon-icon));
|
|
78
|
+
}
|
|
79
|
+
}
|