@vuu-ui/vuu-ui-controls 0.8.8-debug → 0.8.8
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/LICENSE +201 -0
- package/cjs/index.js +6 -6250
- package/cjs/index.js.map +2 -2
- package/esm/index.js +6 -6282
- package/esm/index.js.map +2 -2
- package/index.css +1 -731
- package/index.css.map +1 -1
- package/package.json +6 -6
package/index.css
CHANGED
|
@@ -1,732 +1,2 @@
|
|
|
1
|
-
/* src/drag-drop/Draggable.css */
|
|
2
|
-
.vuuDraggable {
|
|
3
|
-
background: transparent;
|
|
4
|
-
box-shadow: var(--salt-overlayable-shadow-drag);
|
|
5
|
-
cursor: var(--salt-draggable-grab-cursor-active);
|
|
6
|
-
position: absolute;
|
|
7
|
-
opacity: .95;
|
|
8
|
-
z-index: 2000;
|
|
9
|
-
}
|
|
10
|
-
.vuuDraggable-spacer {
|
|
11
|
-
display: var(--vuuDraggable-display, inline-block);
|
|
12
|
-
height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
|
|
13
|
-
transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
|
|
14
|
-
width: var(--vuuDraggable-spacer-width, 0);
|
|
15
|
-
}
|
|
16
|
-
.vuuDraggable-dropIndicatorPosition {
|
|
17
|
-
display: var(--saltDraggable-display, inline-block);
|
|
18
|
-
height: 0px;
|
|
19
|
-
width: 100%;
|
|
20
|
-
}
|
|
21
|
-
.vuuDraggable-dropIndicatorContainer {
|
|
22
|
-
transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
|
|
23
|
-
}
|
|
24
|
-
.vuuDraggable-dropIndicator {
|
|
25
|
-
background-color: var(--salt-palette-accent-background);
|
|
26
|
-
height: 2px;
|
|
27
|
-
width: 100%;
|
|
28
|
-
}
|
|
29
|
-
.vuuDraggable-dropIndicator:before {
|
|
30
|
-
content: "";
|
|
31
|
-
width: 6px;
|
|
32
|
-
height: 6px;
|
|
33
|
-
border-radius: 3px;
|
|
34
|
-
background-color: var(--salt-palette-accent-background);
|
|
35
|
-
position: absolute;
|
|
36
|
-
top: -2px;
|
|
37
|
-
left: -3px;
|
|
38
|
-
}
|
|
39
|
-
.vuuDraggable-settling {
|
|
40
|
-
transition-property: left, top;
|
|
41
|
-
transition-duration: .15s;
|
|
42
|
-
transition-timing-function: ease-out;
|
|
43
|
-
}
|
|
44
|
-
.vuuDraggable-spacer {
|
|
45
|
-
order: 1;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/* src/editable-label/EditableLabel.css */
|
|
49
|
-
.vuuEditableLabel {
|
|
50
|
-
--saltInput-background: transparent;
|
|
51
|
-
--saltInput-minWidth: 14px;
|
|
52
|
-
--saltInput-position: absolute;
|
|
53
|
-
--editableLabel-padding: var(--saltEditableLabel-padding, 6px);
|
|
54
|
-
--editableLabel-height: var(--saltEditableLabel-height, 26px);
|
|
55
|
-
color: inherit;
|
|
56
|
-
cursor: default;
|
|
57
|
-
display: flex;
|
|
58
|
-
flex-direction: column;
|
|
59
|
-
font-size: var(--salt-text-fontSize);
|
|
60
|
-
height: var(--editableLabel-height);
|
|
61
|
-
justify-content: center;
|
|
62
|
-
outline: none;
|
|
63
|
-
padding: 0 var(--editableLabel-padding);
|
|
64
|
-
position: relative;
|
|
65
|
-
z-index: var(--salt-zIndex-default);
|
|
66
|
-
}
|
|
67
|
-
.vuuEditableLabel:before {
|
|
68
|
-
content: attr(data-text);
|
|
69
|
-
display: block;
|
|
70
|
-
height: 0px;
|
|
71
|
-
visibility: hidden;
|
|
72
|
-
white-space: pre-wrap;
|
|
73
|
-
}
|
|
74
|
-
.vuuEditableLabel .saltInput {
|
|
75
|
-
font-weight: var(--salt-text-fontWeight);
|
|
76
|
-
left: var(--editableLabel-padding, 0);
|
|
77
|
-
padding: 0;
|
|
78
|
-
outline-style: none;
|
|
79
|
-
position: absolute;
|
|
80
|
-
right: var(--editableLabel-padding, 0);
|
|
81
|
-
top: var(--saltEditableLabel-top, 2px);
|
|
82
|
-
width: auto;
|
|
83
|
-
}
|
|
84
|
-
.vuuEditableLabel .saltInput-activationIndicator {
|
|
85
|
-
display: none;
|
|
86
|
-
}
|
|
87
|
-
.vuuEditableLabel-input {
|
|
88
|
-
background-color: transparent;
|
|
89
|
-
border: none;
|
|
90
|
-
box-sizing: content-box;
|
|
91
|
-
display: block;
|
|
92
|
-
flex: 1;
|
|
93
|
-
font: inherit;
|
|
94
|
-
height: 20px;
|
|
95
|
-
margin: 0;
|
|
96
|
-
min-width: 0;
|
|
97
|
-
outline: none;
|
|
98
|
-
padding: 0;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/* src/list/Highlighter.css */
|
|
102
|
-
.saltHighlighter-highlight {
|
|
103
|
-
font-weight: var(--salt-text-fontWeight-strong);
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/* src/list/CheckboxIcon.css */
|
|
107
|
-
.vuuCheckboxIcon {
|
|
108
|
-
--vuu-icon-size: 14px;
|
|
109
|
-
--vuu-icon-left: -1px;
|
|
110
|
-
--vuu-icon-top: -1px;
|
|
111
|
-
--vuu-icon-svg: var(--vuu-svg-tick);
|
|
112
|
-
border-style: solid;
|
|
113
|
-
border-color: var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));
|
|
114
|
-
border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
|
|
115
|
-
border-width: 1px;
|
|
116
|
-
display: inline-block;
|
|
117
|
-
height: var(--vuuCheckboxIcon-size, 14px);
|
|
118
|
-
position: relative;
|
|
119
|
-
width: var(--vuuCheckboxIcon-size, 14px);
|
|
120
|
-
}
|
|
121
|
-
.vuuCheckboxIcon-checked {
|
|
122
|
-
background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
|
|
123
|
-
border-color: var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected));
|
|
124
|
-
}
|
|
125
|
-
.vuuCheckboxIcon-checked:after {
|
|
126
|
-
content: "";
|
|
127
|
-
background-color: white;
|
|
128
|
-
left: var(--vuu-icon-left, auto);
|
|
129
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
130
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
131
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
132
|
-
mask-repeat: no-repeat;
|
|
133
|
-
-webkit-mask-repeat: no-repeat;
|
|
134
|
-
position: absolute;
|
|
135
|
-
top: var(--vuu-icon-top, auto);
|
|
136
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
/* src/list/ListItem.css */
|
|
140
|
-
.vuuListItem {
|
|
141
|
-
--list-item-text-color: var(--salt-text-primary-foreground);
|
|
142
|
-
--list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
|
|
143
|
-
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
144
|
-
--list-item-background-active: var(--salt-selectable-background-selected);
|
|
145
|
-
--list-item-alignItems: center;
|
|
146
|
-
}
|
|
147
|
-
.vuuListItem.saltHighlighted {
|
|
148
|
-
--saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
|
|
149
|
-
--list-item-background: var(--salt-selectable-background-hover);
|
|
150
|
-
}
|
|
151
|
-
.vuuListItemHeader {
|
|
152
|
-
font-weight: var(--salt-text-fontWeight-strong);
|
|
153
|
-
}
|
|
154
|
-
.vuuListItemHeader[data-sticky] {
|
|
155
|
-
position: sticky;
|
|
156
|
-
top: 0;
|
|
157
|
-
z-index: 1;
|
|
158
|
-
}
|
|
159
|
-
.vuuListItem {
|
|
160
|
-
color: var(--list-item-text-color);
|
|
161
|
-
cursor: var(--vuuList-item-cursor, pointer);
|
|
162
|
-
background: var(--vuuList-item-background, var(--list-item-background));
|
|
163
|
-
font-size: var(--salt-text-fontSize);
|
|
164
|
-
text-align: var(--salt-text-textAlign);
|
|
165
|
-
line-height: var(--salt-text-lineHeight);
|
|
166
|
-
height: var(--vuuList-item-height, var(--list-item-height, auto));
|
|
167
|
-
margin-bottom: var(--list-item-gap);
|
|
168
|
-
padding: 0 var(--salt-size-unit);
|
|
169
|
-
left: 0;
|
|
170
|
-
right: 0;
|
|
171
|
-
display: flex;
|
|
172
|
-
position: relative;
|
|
173
|
-
align-items: var(--list-item-alignItems);
|
|
174
|
-
white-space: nowrap;
|
|
175
|
-
}
|
|
176
|
-
.vuuListItem:last-child {
|
|
177
|
-
margin-bottom: 0px;
|
|
178
|
-
}
|
|
179
|
-
.vuuListItem-checkbox {
|
|
180
|
-
--list-item-background-active: var(--salt-selectable-background);
|
|
181
|
-
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
182
|
-
--list-item-text-padding: 0 0 0 var(--salt-size-unit);
|
|
183
|
-
}
|
|
184
|
-
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
|
|
185
|
-
--list-item-background: var(--list-item-background-active);
|
|
186
|
-
color: var(--list-item-text-color-active);
|
|
187
|
-
}
|
|
188
|
-
.vuuListItem.saltDisabled {
|
|
189
|
-
--list-item-text-color: var(--salt-text-primary-foreground-disabled);
|
|
190
|
-
cursor: var(--salt-selectable-cursor-disabled);
|
|
191
|
-
}
|
|
192
|
-
.vuuListItem.vuuFocusVisible {
|
|
193
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
194
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
195
|
-
outline-offset: -2px;
|
|
196
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
197
|
-
}
|
|
198
|
-
.vuuListItem.vuuFocusVisible:after {
|
|
199
|
-
content: none;
|
|
200
|
-
}
|
|
201
|
-
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
|
|
202
|
-
outline-color: var(--list-item-selected-focus-outlineColor);
|
|
203
|
-
}
|
|
204
|
-
.vuuListItem-textWrapper {
|
|
205
|
-
flex: 1;
|
|
206
|
-
overflow: hidden;
|
|
207
|
-
padding: var(--list-item-text-padding, 0px);
|
|
208
|
-
white-space: nowrap;
|
|
209
|
-
text-overflow: ellipsis;
|
|
210
|
-
}
|
|
211
|
-
.vuuListItem-proxy {
|
|
212
|
-
position: absolute !important;
|
|
213
|
-
visibility: hidden;
|
|
214
|
-
}
|
|
215
|
-
.vuuDraggable-list-item {
|
|
216
|
-
--vuuList-item-height: 24px;
|
|
217
|
-
background-color: white;
|
|
218
|
-
}
|
|
219
|
-
.vuuListItem.vuuDraggable-dragAway {
|
|
220
|
-
display: none;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
/* src/list/List.css */
|
|
224
|
-
.vuuList {
|
|
225
|
-
--list-background: var(--salt-container-primary-background);
|
|
226
|
-
--list-borderStyle: var(--vuuList-borderStyle,--salt-container-borderStyle);
|
|
227
|
-
--list-borderWidth: var(--salt-size-border);
|
|
228
|
-
--list-height: auto;
|
|
229
|
-
--list-item-height: var(--salt-size-stackable);
|
|
230
|
-
--list-item-gap: 0px;
|
|
231
|
-
--list-maxHeight: 100%;
|
|
232
|
-
--vuuDraggable-display: block;
|
|
233
|
-
--vuuDraggable-spacer-height: 0;
|
|
234
|
-
--vuuDraggable-spacer-width: 100%;
|
|
235
|
-
--vuuDraggable-transitionProp: height;
|
|
236
|
-
background: var(--list-background);
|
|
237
|
-
border-color: var(--salt-container-primary-borderColor);
|
|
238
|
-
border-style: var(--list-borderStyle);
|
|
239
|
-
border-width: var(--list-borderWidth);
|
|
240
|
-
height: var(--saltList-height, var(--list-height));
|
|
241
|
-
max-height: var(--list-maxHeight);
|
|
242
|
-
outline: none;
|
|
243
|
-
overflow-y: auto;
|
|
244
|
-
position: relative;
|
|
245
|
-
user-select: none;
|
|
246
|
-
width: var(--saltList-width, auto);
|
|
247
|
-
}
|
|
248
|
-
.vuuList-borderless {
|
|
249
|
-
--list-borderStyle: none;
|
|
250
|
-
}
|
|
251
|
-
.vuuList-viewport {
|
|
252
|
-
--list-item-height: 30px;
|
|
253
|
-
max-height: calc(var(--list-maxHeight) - 2 * var(--list-borderWidth));
|
|
254
|
-
overflow: auto;
|
|
255
|
-
}
|
|
256
|
-
.vuuListItemHeader {
|
|
257
|
-
--saltList-item-background: var(--list-item-header-background);
|
|
258
|
-
color: var(--list-item-header-color);
|
|
259
|
-
}
|
|
260
|
-
.vuuListItemHeader[data-sticky=true] {
|
|
261
|
-
--saltList-item-background: var(--list-background);
|
|
262
|
-
position: sticky;
|
|
263
|
-
top: 0;
|
|
264
|
-
z-index: 1;
|
|
265
|
-
}
|
|
266
|
-
.vuuList-collapsible .vuuListItemHeader:after {
|
|
267
|
-
border-width: var(--checkbox-borderWidth);
|
|
268
|
-
border-color: var(--checkbox-borderColor);
|
|
269
|
-
content: var(--list-item-header-twisty-content);
|
|
270
|
-
-webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
271
|
-
mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
272
|
-
background: var(--list-item-header-twisty-color);
|
|
273
|
-
height: 12px;
|
|
274
|
-
left: var(--list-item-header-twisty-left);
|
|
275
|
-
right: var(--list-item-header-twisty-right);
|
|
276
|
-
margin-top: -8px;
|
|
277
|
-
position: absolute;
|
|
278
|
-
top: var(--list-item-header-twisty-top);
|
|
279
|
-
transition: transform 0.3s;
|
|
280
|
-
width: 12px;
|
|
281
|
-
}
|
|
282
|
-
.vuuListItemHeader[aria-expanded=false]:after {
|
|
283
|
-
transform: rotate(-90deg);
|
|
284
|
-
}
|
|
285
|
-
.vuuList-scrollingContentContainer {
|
|
286
|
-
box-sizing: inherit;
|
|
287
|
-
position: relative;
|
|
288
|
-
}
|
|
289
|
-
.vuuList-virtualized .vuuListItem {
|
|
290
|
-
line-height: 30px;
|
|
291
|
-
position: absolute;
|
|
292
|
-
top: 0;
|
|
293
|
-
left: 0;
|
|
294
|
-
right: 0;
|
|
295
|
-
will-change: transform;
|
|
296
|
-
}
|
|
297
|
-
.vuuList.saltFocusVisible:after {
|
|
298
|
-
inset: 2px;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
/* src/tabstrip/Tabstrip.css */
|
|
302
|
-
.vuuTabstrip {
|
|
303
|
-
--vuuOverflowContainer-background: transparent;
|
|
304
|
-
--tabstrip-dragging-display: none;
|
|
305
|
-
--tabstrip-display: inline-flex;
|
|
306
|
-
--tabstrip-background: transparent;
|
|
307
|
-
align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
|
|
308
|
-
font-size: var(--salt-text-fontSize);
|
|
309
|
-
font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
|
|
310
|
-
position: relative;
|
|
311
|
-
overflow: visible;
|
|
312
|
-
display: flex;
|
|
313
|
-
min-width: 28px;
|
|
314
|
-
width: var(--tabstrip-width);
|
|
315
|
-
}
|
|
316
|
-
.vuuTabstrip-horizontal {
|
|
317
|
-
--tabstrip-height: var(--vuuTabstrip-height, 28px);
|
|
318
|
-
--tabstrip-width: var(--vuuTabstrip-width, 100%);
|
|
319
|
-
--tab-width: auto;
|
|
320
|
-
--tab-thumb-height: 2px;
|
|
321
|
-
--tab-thumb-left: var(--tab-thumb-offset, 0);
|
|
322
|
-
--tab-thumb-top: auto;
|
|
323
|
-
--tab-thumb-width: var(--tab-thumb-size, 100%);
|
|
324
|
-
align-items: flex-start;
|
|
325
|
-
border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
|
|
326
|
-
}
|
|
327
|
-
.vuuTabstrip-vertical {
|
|
328
|
-
--tabstrip-height: var(--vuuTabstrip-height, 100%);
|
|
329
|
-
--tabstrip-width: var(--vuuTabstrip-width, 100px);
|
|
330
|
-
--tab-width: 100%;
|
|
331
|
-
--tab-thumb-height: var(--tab-thumb-size, 100%);
|
|
332
|
-
--tab-thumb-left: 0;
|
|
333
|
-
--tab-thumb-top: var(--tab-thumb-offset, 0);
|
|
334
|
-
--tab-thumb-width: 2px;
|
|
335
|
-
align-self: flex-start;
|
|
336
|
-
display: inline-flex;
|
|
337
|
-
}
|
|
338
|
-
.vuuTabstrip-draggingTab .vuuTab {
|
|
339
|
-
pointer-events: none;
|
|
340
|
-
}
|
|
341
|
-
.vuuTabstrip-addTabButton {
|
|
342
|
-
--saltButton-height: 20px;
|
|
343
|
-
--saltButton-width: 20px;
|
|
344
|
-
}
|
|
345
|
-
.vuuTabstrip-overflowMenu.saltDropdown {
|
|
346
|
-
--saltIcon-margin: 2px 0 0 0px;
|
|
347
|
-
}
|
|
348
|
-
.vuuTabstrip-overflowMenu-open {
|
|
349
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
350
|
-
--saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
|
|
351
|
-
}
|
|
352
|
-
.vuuTabstrip-overflowMenu-open .saltButton {
|
|
353
|
-
--saltIcon-color: var(--salt-actionable-secondary-foreground-active);
|
|
354
|
-
}
|
|
355
|
-
.vuuTabstrip-inner {
|
|
356
|
-
width: 100%;
|
|
357
|
-
align-items: center;
|
|
358
|
-
display: flex;
|
|
359
|
-
flex-basis: auto;
|
|
360
|
-
flex-grow: 0;
|
|
361
|
-
flex-shrink: 1;
|
|
362
|
-
flex-wrap: wrap;
|
|
363
|
-
justify-content: flex-start;
|
|
364
|
-
line-height: var(--tabstrip-height);
|
|
365
|
-
}
|
|
366
|
-
.vuuTabstrip-vertical .vuuTabstrip-inner {
|
|
367
|
-
flex-direction: column;
|
|
368
|
-
height: auto;
|
|
369
|
-
}
|
|
370
|
-
.vuuTabstrip-centered .vuuTabstrip-inner {
|
|
371
|
-
justify-content: center;
|
|
372
|
-
}
|
|
373
|
-
.vuuDraggable[class*=vuuTabstrip] {
|
|
374
|
-
--tabstrip-display: flex;
|
|
375
|
-
--tabstrip-height: 100%;
|
|
376
|
-
--tabstrip-dragging-display: block;
|
|
377
|
-
--tabs-tab-background: var(--salt-navigable-primary-background-hover);
|
|
378
|
-
--tabs-tab-before-content: "";
|
|
379
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-hover);
|
|
380
|
-
--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
|
|
381
|
-
--tabs-tab-before-inset: var(--tab-activationIndicator-inset);
|
|
382
|
-
--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
383
|
-
--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
|
|
384
|
-
--tabs-tab-position: static;
|
|
385
|
-
font-size: 12px;
|
|
386
|
-
}
|
|
387
|
-
.vuuDraggable-tabstrip-horizontal {
|
|
388
|
-
--tab-thumb-height: 2px;
|
|
389
|
-
--tab-thumb-left: 0px;
|
|
390
|
-
--tabstrip-height: 28px;
|
|
391
|
-
line-height: var(--tabstrip-height);
|
|
392
|
-
}
|
|
393
|
-
.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
|
|
394
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-active);
|
|
395
|
-
}
|
|
396
|
-
.vuuTabstrip-overflowMenu-dropTarget:after {
|
|
397
|
-
background: var(--salt-selectable-background-selected);
|
|
398
|
-
content: "";
|
|
399
|
-
position: absolute;
|
|
400
|
-
height: 2px;
|
|
401
|
-
left: 0;
|
|
402
|
-
right: 0;
|
|
403
|
-
bottom: 0;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
/* src/tabstrip/TabMenu.css */
|
|
407
|
-
.vuuTabMenu {
|
|
408
|
-
top: -2px;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
/* src/tabstrip/Tab.css */
|
|
412
|
-
.vuuTab {
|
|
413
|
-
--saltEditableLabel-padding: 0;
|
|
414
|
-
--saltEditableLabel-height: var(--tabstrip-height);
|
|
415
|
-
--saltInputLegacy-minWidth: 4em;
|
|
416
|
-
--saltEditableLabel-top: 3px;
|
|
417
|
-
--tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
|
|
418
|
-
--tab-cursor: pointer;
|
|
419
|
-
--tab-position: relative;
|
|
420
|
-
}
|
|
421
|
-
.vuuTab {
|
|
422
|
-
align-items: center;
|
|
423
|
-
align-self: stretch;
|
|
424
|
-
background: var(--tab-background);
|
|
425
|
-
border: none;
|
|
426
|
-
border-radius: var(--vuuTab-borderRadius, 0);
|
|
427
|
-
color: var(--salt-text-primary-foreground);
|
|
428
|
-
cursor: var(--vuuTab-cursor, var(--tab-cursor));
|
|
429
|
-
display: var(--tabstrip-display);
|
|
430
|
-
gap: 8px;
|
|
431
|
-
height: var(--vuuTab-height, var(--tabstrip-height));
|
|
432
|
-
letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
|
|
433
|
-
min-width: var(--vuuTab-minWidth, 40px);
|
|
434
|
-
outline: none;
|
|
435
|
-
padding: var(--vuuTab-padding, 0 24px);
|
|
436
|
-
position: var(--vuuTab-position, var(--tab-position));
|
|
437
|
-
user-select: none;
|
|
438
|
-
width: var(--tab-width);
|
|
439
|
-
}
|
|
440
|
-
.vuuTab {
|
|
441
|
-
margin: 0 var(--tab-spacing) 0 0;
|
|
442
|
-
}
|
|
443
|
-
.vuuTab-selected {
|
|
444
|
-
background: var(--vuuTab-background-selected, var(--tab-background));
|
|
445
|
-
color: var(--salt-text-primary-foreground);
|
|
446
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
447
|
-
}
|
|
448
|
-
.vuuTab-main {
|
|
449
|
-
align-items: center;
|
|
450
|
-
border: none;
|
|
451
|
-
color: inherit;
|
|
452
|
-
cursor: inherit;
|
|
453
|
-
display: flex;
|
|
454
|
-
font-family: inherit;
|
|
455
|
-
font-size: inherit;
|
|
456
|
-
font-weight: inherit;
|
|
457
|
-
height: var(--vuuTabstrip-height, var(--salt-size-stackable));
|
|
458
|
-
outline: none;
|
|
459
|
-
position: relative;
|
|
460
|
-
}
|
|
461
|
-
.vuuTab-closeable .vuuTab-main {
|
|
462
|
-
border-right: solid transparent var(--salt-size-unit);
|
|
463
|
-
}
|
|
464
|
-
.vuuTab .vuuTab-closeButton {
|
|
465
|
-
display: flex;
|
|
466
|
-
align-items: center;
|
|
467
|
-
justify-content: center;
|
|
468
|
-
}
|
|
469
|
-
.vuuTab-close-icon {
|
|
470
|
-
display: none;
|
|
471
|
-
}
|
|
472
|
-
.salt-density-touch .vuuTab-close-icon,
|
|
473
|
-
.salt-density-low .vuuTab-close-icon {
|
|
474
|
-
display: block;
|
|
475
|
-
}
|
|
476
|
-
.salt-density-touch .vuuTab-close-icon-small,
|
|
477
|
-
.salt-density-low .vuuTab-close-icon-small {
|
|
478
|
-
display: none;
|
|
479
|
-
}
|
|
480
|
-
.vuuTab .vuuTab-text {
|
|
481
|
-
display: inline-block;
|
|
482
|
-
position: relative;
|
|
483
|
-
overflow: hidden;
|
|
484
|
-
text-align: var(--salt-text-textAlign-embedded);
|
|
485
|
-
text-overflow: ellipsis;
|
|
486
|
-
top: var(--vuuTab-top, var(--tab-top, auto));
|
|
487
|
-
white-space: nowrap;
|
|
488
|
-
z-index: var(--salt-zIndex-default);
|
|
489
|
-
}
|
|
490
|
-
.vuuTab .vuuTab-text:before {
|
|
491
|
-
height: 0;
|
|
492
|
-
content: attr(data-text);
|
|
493
|
-
display: block;
|
|
494
|
-
visibility: hidden;
|
|
495
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
496
|
-
}
|
|
497
|
-
.vuuTab-editing:after {
|
|
498
|
-
content: "";
|
|
499
|
-
position: absolute;
|
|
500
|
-
top: 0;
|
|
501
|
-
left: 0;
|
|
502
|
-
right: 0;
|
|
503
|
-
bottom: 2px;
|
|
504
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
505
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
506
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
507
|
-
outline-offset: -2px;
|
|
508
|
-
}
|
|
509
|
-
.vuuTab.vuuFocusVisible {
|
|
510
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
511
|
-
outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
|
|
512
|
-
outline-style: dashed;
|
|
513
|
-
outline-width: 1px;
|
|
514
|
-
outline-offset: -1px;
|
|
515
|
-
}
|
|
516
|
-
.vuuTab:before {
|
|
517
|
-
content: var(--tab-before-content, none);
|
|
518
|
-
content: "";
|
|
519
|
-
background: var(--tab-before-background);
|
|
520
|
-
height: var(--tab-before-height);
|
|
521
|
-
inset: var(--tab-before-inset);
|
|
522
|
-
position: absolute;
|
|
523
|
-
width: var(--tab-before-width);
|
|
524
|
-
z-index: 1;
|
|
525
|
-
}
|
|
526
|
-
.vuuTabstrip-draggingTab .vuuTab-selected:before {
|
|
527
|
-
--tab-before-content: "";
|
|
528
|
-
--tab-before-background: var(--salt-navigable-indicator-color-active);
|
|
529
|
-
--tab-before-height: var(--tab-thumb-height);
|
|
530
|
-
--tab-before-inset: var(--tab-activationIndicator-inset);
|
|
531
|
-
--tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
532
|
-
}
|
|
533
|
-
.vuuTab-selected:before {
|
|
534
|
-
--tab-before-content: "";
|
|
535
|
-
background: var(--salt-navigable-indicator-active);
|
|
536
|
-
height: var(--tab-thumb-height);
|
|
537
|
-
position: absolute;
|
|
538
|
-
left: var(--tab-thumb-left);
|
|
539
|
-
bottom: 0px;
|
|
540
|
-
top: var(--tab-thumb-top, auto);
|
|
541
|
-
transition: var(--tab-thumb-transition, none);
|
|
542
|
-
width: var(--tab-thumb-width, 100%);
|
|
543
|
-
}
|
|
544
|
-
.vuuTab:hover:not(.vuuTab-closeHover) {
|
|
545
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
/* src/tree/Tree.css */
|
|
549
|
-
.vuuTree {
|
|
550
|
-
--tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
|
|
551
|
-
--tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
|
|
552
|
-
--tree-toggle-width: 12px;
|
|
553
|
-
--tree-icon-color: var(--vuuTree-icon-color, #4c505b);
|
|
554
|
-
--tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
|
|
555
|
-
--tree-node-indent: 0px;
|
|
556
|
-
--list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
|
|
557
|
-
--list-item-height: var(--hw-list-item-height, 30px);
|
|
558
|
-
--list-item-padding: var(--hw-list-item-padding, 0 6px);
|
|
559
|
-
--list-item-header-bg: var(--hw-list-item-header-bg, black);
|
|
560
|
-
--list-item-header-color: var(--hw-list-item-header-color, white);
|
|
561
|
-
--list-item-header-font-weight: bold;
|
|
562
|
-
--list-item-header-twisty-color: black;
|
|
563
|
-
--list-item-header-twisty-content: "";
|
|
564
|
-
--list-item-header-twisty-top: 50%;
|
|
565
|
-
--list-item-header-twisty-left: -18px;
|
|
566
|
-
--list-item-header-twisty-right: auto;
|
|
567
|
-
--list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
|
|
568
|
-
--list-item-selected-color: white;
|
|
569
|
-
--list-item-text-color: var(--hw-gray-800);
|
|
570
|
-
--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
|
|
571
|
-
list-style: none;
|
|
572
|
-
margin: 0;
|
|
573
|
-
padding: 0 1px;
|
|
574
|
-
font-size: var(--vuuTree-font-size, 14px);
|
|
575
|
-
max-height: inherit;
|
|
576
|
-
outline: none;
|
|
577
|
-
overflow-y: auto;
|
|
578
|
-
position: relative;
|
|
579
|
-
user-select: none;
|
|
580
|
-
}
|
|
581
|
-
.vuuTree-viewport {
|
|
582
|
-
--list-item-height: 30px;
|
|
583
|
-
box-sizing: border-box;
|
|
584
|
-
max-height: inherit;
|
|
585
|
-
overflow: auto;
|
|
586
|
-
}
|
|
587
|
-
.vuuTree-scrollingContentContainer {
|
|
588
|
-
box-sizing: inherit;
|
|
589
|
-
position: relative;
|
|
590
|
-
}
|
|
591
|
-
.vuuTree-scrollingContentContainer .vuuTreeNode {
|
|
592
|
-
line-height: 30px;
|
|
593
|
-
position: absolute;
|
|
594
|
-
top: 0;
|
|
595
|
-
left: 0;
|
|
596
|
-
right: 0;
|
|
597
|
-
will-change: transform;
|
|
598
|
-
}
|
|
599
|
-
.vuuTreeNode {
|
|
600
|
-
list-style: none;
|
|
601
|
-
}
|
|
602
|
-
.vuuTreeNode:not([aria-expanded]),
|
|
603
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
|
|
604
|
-
--checkbox-border-color: black;
|
|
605
|
-
--checkbox-border-width: 1px;
|
|
606
|
-
--checkbox-tick: black;
|
|
607
|
-
--list-item-padding-left: 6px;
|
|
608
|
-
--svg-toggle: var(--tree-node-collapse);
|
|
609
|
-
align-items: center;
|
|
610
|
-
color: var(--list-item-text-color);
|
|
611
|
-
display: flex;
|
|
612
|
-
flex-wrap: nowrap;
|
|
613
|
-
height: var(--list-item-height);
|
|
614
|
-
line-height: var(--list-item-height);
|
|
615
|
-
padding: var(--list-item-padding);
|
|
616
|
-
padding-left: var(--padding-left);
|
|
617
|
-
position: relative;
|
|
618
|
-
cursor: default;
|
|
619
|
-
margin: 0;
|
|
620
|
-
white-space: nowrap;
|
|
621
|
-
}
|
|
622
|
-
.vuuTreeNode:not([aria-expanded]) {
|
|
623
|
-
--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
|
|
624
|
-
}
|
|
625
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
|
|
626
|
-
--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
|
|
627
|
-
}
|
|
628
|
-
.vuuTreeNode-icon {
|
|
629
|
-
background-color: var(--tree-icon-color);
|
|
630
|
-
display: inline-block;
|
|
631
|
-
height: 18px;
|
|
632
|
-
margin-right: 6px;
|
|
633
|
-
-webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
|
|
634
|
-
mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
|
|
635
|
-
flex: 0 0 18px;
|
|
636
|
-
}
|
|
637
|
-
.vuuTreeNode[aria-expanded] {
|
|
638
|
-
flex-direction: column;
|
|
639
|
-
}
|
|
640
|
-
.vuuTreeNode[aria-expanded] {
|
|
641
|
-
flex-direction: column;
|
|
642
|
-
height: auto;
|
|
643
|
-
}
|
|
644
|
-
.vuuTreeNode > *[role=group] {
|
|
645
|
-
padding-left: 0px;
|
|
646
|
-
}
|
|
647
|
-
.vuuTreeNode {
|
|
648
|
-
padding-left: calc(var(--padding-left) + var(--tree-node-indent));
|
|
649
|
-
}
|
|
650
|
-
.vuuTreeNode[aria-level="2"] {
|
|
651
|
-
--tree-node-indent: 12px;
|
|
652
|
-
}
|
|
653
|
-
.vuuTreeNode[aria-level="3"] {
|
|
654
|
-
--tree-node-indent: 24px;
|
|
655
|
-
}
|
|
656
|
-
.vuuTreeNode[aria-level="4"] {
|
|
657
|
-
--tree-node-indent: 36px;
|
|
658
|
-
}
|
|
659
|
-
.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
|
|
660
|
-
.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
|
|
661
|
-
background-color: var(--list-hilited-bg);
|
|
662
|
-
}
|
|
663
|
-
.vuuTreeNode-toggle {
|
|
664
|
-
cursor: pointer;
|
|
665
|
-
}
|
|
666
|
-
.vuuTreeNode > .vuuTreeNode-toggle {
|
|
667
|
-
display: inline-block;
|
|
668
|
-
height: 100%;
|
|
669
|
-
left: 0;
|
|
670
|
-
position: absolute;
|
|
671
|
-
width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
|
|
672
|
-
}
|
|
673
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
|
|
674
|
-
content: var(--list-item-header-twisty-content);
|
|
675
|
-
-webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
|
|
676
|
-
mask: var(--svg-toggle) center center/8px 8px no-repeat;
|
|
677
|
-
background-color: var(--list-item-header-twisty-color);
|
|
678
|
-
height: 18px;
|
|
679
|
-
margin-top: -9px;
|
|
680
|
-
left: var(--tree-node-indent);
|
|
681
|
-
position: absolute;
|
|
682
|
-
top: var(--list-item-header-twisty-top);
|
|
683
|
-
transition: transform 0.3s;
|
|
684
|
-
width: 18px;
|
|
685
|
-
}
|
|
686
|
-
.vuuTreeNode[aria-selected=true] {
|
|
687
|
-
--list-item-header-twisty-color: var(--list-item-selected-color);
|
|
688
|
-
}
|
|
689
|
-
.vuuTreeNode:not(.focusVisible):focus {
|
|
690
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
691
|
-
}
|
|
692
|
-
.vuuTreeNode:not([aria-expanded]).focusVisible:before,
|
|
693
|
-
.vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
|
|
694
|
-
content: "";
|
|
695
|
-
position: absolute;
|
|
696
|
-
top: 0px;
|
|
697
|
-
left: var(--tree-focus-offset, 0px);
|
|
698
|
-
right: 0;
|
|
699
|
-
bottom: 0px;
|
|
700
|
-
border: dotted var(--focus-visible-border-color) 2px;
|
|
701
|
-
background-color: var(--list-hilited-bg);
|
|
702
|
-
}
|
|
703
|
-
.vuuTreeNode[aria-expanded=false] > *:first-child:after {
|
|
704
|
-
--svg-toggle: var(--tree-node-expand);
|
|
705
|
-
}
|
|
706
|
-
.vuuTreeNode[aria-expanded=true] > *:first-child:after {
|
|
707
|
-
transform: var(--tree-node-expanded-transform);
|
|
708
|
-
}
|
|
709
|
-
.vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
|
|
710
|
-
.vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
|
|
711
|
-
--checkbox-border-color: var(--list-item-selected-color);
|
|
712
|
-
--checkbox-tick: var(--list-item-selected-color);
|
|
713
|
-
--focus-visible-border-color: var(--list-item-selected-color);
|
|
714
|
-
background-color: var(--list-item-selected-bg);
|
|
715
|
-
color: var(--list-item-selected-color);
|
|
716
|
-
}
|
|
717
|
-
.with-checkbox .vuuTreeNode {
|
|
718
|
-
padding-left: 28px;
|
|
719
|
-
}
|
|
720
|
-
.with-checkbox .vuuTreeNode:before {
|
|
721
|
-
border-style: solid;
|
|
722
|
-
border-width: var(--checkbox-border-width);
|
|
723
|
-
border-color: var(--checkbox-border-color);
|
|
724
|
-
content: "";
|
|
725
|
-
height: 12px;
|
|
726
|
-
left: 3px;
|
|
727
|
-
margin-top: -7px;
|
|
728
|
-
position: absolute;
|
|
729
|
-
top: 50%;
|
|
730
|
-
width: 12px;
|
|
731
|
-
}
|
|
1
|
+
.vuuDraggable{background:transparent;box-shadow:var(--salt-overlayable-shadow-drag);cursor:var(--salt-draggable-grab-cursor-active);position:absolute;opacity:.95;z-index:2000}.vuuDraggable-spacer{display:var(--vuuDraggable-display, inline-block);height:var(--vuuDraggable-spacer-height, var(--tabstrip-height));transition:var(--vuuDraggable-transitionProp, width) .3s ease;width:var(--vuuDraggable-spacer-width, 0)}.vuuDraggable-dropIndicatorPosition{display:var(--saltDraggable-display, inline-block);height:0px;width:100%}.vuuDraggable-dropIndicatorContainer{transition:var(--vuuDraggable-transitionProp, top) .2s ease}.vuuDraggable-dropIndicator{background-color:var(--salt-palette-accent-background);height:2px;width:100%}.vuuDraggable-dropIndicator:before{content:"";width:6px;height:6px;border-radius:3px;background-color:var(--salt-palette-accent-background);position:absolute;top:-2px;left:-3px}.vuuDraggable-settling{transition-property:left,top;transition-duration:.15s;transition-timing-function:ease-out}.vuuDraggable-spacer{order:1}.vuuEditableLabel{--saltInput-background: transparent;--saltInput-minWidth: 14px;--saltInput-position: absolute;--editableLabel-padding: var(--saltEditableLabel-padding, 6px);--editableLabel-height: var(--saltEditableLabel-height, 26px);color:inherit;cursor:default;display:flex;flex-direction:column;font-size:var(--salt-text-fontSize);height:var(--editableLabel-height);justify-content:center;outline:none;padding:0 var(--editableLabel-padding);position:relative;z-index:var(--salt-zIndex-default)}.vuuEditableLabel:before{content:attr(data-text);display:block;height:0px;visibility:hidden;white-space:pre-wrap}.vuuEditableLabel .saltInput{font-weight:var(--salt-text-fontWeight);left:var(--editableLabel-padding, 0);padding:0;outline-style:none;position:absolute;right:var(--editableLabel-padding, 0);top:var(--saltEditableLabel-top, 2px);width:auto}.vuuEditableLabel .saltInput-activationIndicator{display:none}.vuuEditableLabel-input{background-color:transparent;border:none;box-sizing:content-box;display:block;flex:1;font:inherit;height:20px;margin:0;min-width:0;outline:none;padding:0}.saltHighlighter-highlight{font-weight:var(--salt-text-fontWeight-strong)}.vuuCheckboxIcon{--vuu-icon-size: 14px;--vuu-icon-left: -1px;--vuu-icon-top: -1px;--vuu-icon-svg: var(--vuu-svg-tick);border-style:solid;border-color:var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));border-radius:var(--vuuCheckboxIcon-borderRadius, 3px);border-width:1px;display:inline-block;height:var(--vuuCheckboxIcon-size, 14px);position:relative;width:var(--vuuCheckboxIcon-size, 14px)}.vuuCheckboxIcon-checked{background-color:var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));border-color:var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected))}.vuuCheckboxIcon-checked:after{content:"";background-color:#fff;left:var(--vuu-icon-left, auto);height:var(--vuu-icon-height, var(--vuu-icon-size, 12px));-webkit-mask:var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);mask:var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;position:absolute;top:var(--vuu-icon-top, auto);width:var(--vuu-icon-width, var(--vuu-icon-size, 12px))}.vuuListItem{--list-item-text-color: var(--salt-text-primary-foreground);--list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));--list-item-text-color-active: var(--salt-text-primary-foreground);--list-item-background-active: var(--salt-selectable-background-selected);--list-item-alignItems: center}.vuuListItem.saltHighlighted{--saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);--list-item-background: var(--salt-selectable-background-hover)}.vuuListItemHeader{font-weight:var(--salt-text-fontWeight-strong)}.vuuListItemHeader[data-sticky]{position:sticky;top:0;z-index:1}.vuuListItem{color:var(--list-item-text-color);cursor:var(--vuuList-item-cursor, pointer);background:var(--vuuList-item-background, var(--list-item-background));font-size:var(--salt-text-fontSize);text-align:var(--salt-text-textAlign);line-height:var(--salt-text-lineHeight);height:var(--vuuList-item-height, var(--list-item-height, auto));margin-bottom:var(--list-item-gap);padding:0 var(--salt-size-unit);left:0;right:0;display:flex;position:relative;align-items:var(--list-item-alignItems);white-space:nowrap}.vuuListItem:last-child{margin-bottom:0}.vuuListItem-checkbox{--list-item-background-active: var(--salt-selectable-background);--list-item-text-color-active: var(--salt-text-primary-foreground);--list-item-text-padding: 0 0 0 var(--salt-size-unit)}.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox){--list-item-background: var(--list-item-background-active);color:var(--list-item-text-color-active)}.vuuListItem.saltDisabled{--list-item-text-color: var(--salt-text-primary-foreground-disabled);cursor:var(--salt-selectable-cursor-disabled)}.vuuListItem.vuuFocusVisible{outline-style:var(--salt-focused-outlineStyle);outline-width:var(--salt-focused-outlineWidth);outline-offset:-2px;outline-color:var(--salt-focused-outlineColor)}.vuuListItem.vuuFocusVisible:after{content:none}.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible{outline-color:var(--list-item-selected-focus-outlineColor)}.vuuListItem-textWrapper{flex:1;overflow:hidden;padding:var(--list-item-text-padding, 0px);white-space:nowrap;text-overflow:ellipsis}.vuuListItem-proxy{position:absolute!important;visibility:hidden}.vuuDraggable-list-item{--vuuList-item-height: 24px;background-color:#fff}.vuuListItem.vuuDraggable-dragAway{display:none}.vuuList{--list-background: var(--salt-container-primary-background);--list-borderStyle: var(--vuuList-borderStyle,--salt-container-borderStyle);--list-borderWidth: var(--salt-size-border);--list-height: auto;--list-item-height: var(--salt-size-stackable);--list-item-gap: 0px;--list-maxHeight: 100%;--vuuDraggable-display: block;--vuuDraggable-spacer-height: 0;--vuuDraggable-spacer-width: 100%;--vuuDraggable-transitionProp: height;background:var(--list-background);border-color:var(--salt-container-primary-borderColor);border-style:var(--list-borderStyle);border-width:var(--list-borderWidth);height:var(--saltList-height, var(--list-height));max-height:var(--list-maxHeight);outline:none;overflow-y:auto;position:relative;user-select:none;width:var(--saltList-width, auto)}.vuuList-borderless{--list-borderStyle: none}.vuuList-viewport{--list-item-height: 30px;max-height:calc(var(--list-maxHeight) - 2 * var(--list-borderWidth));overflow:auto}.vuuListItemHeader{--saltList-item-background: var(--list-item-header-background);color:var(--list-item-header-color)}.vuuListItemHeader[data-sticky=true]{--saltList-item-background: var(--list-background);position:sticky;top:0;z-index:1}.vuuList-collapsible .vuuListItemHeader:after{border-width:var(--checkbox-borderWidth);border-color:var(--checkbox-borderColor);content:var(--list-item-header-twisty-content);-webkit-mask:var(--list-svg-chevron-down) center center/12px 12px no-repeat;mask:var(--list-svg-chevron-down) center center/12px 12px no-repeat;background:var(--list-item-header-twisty-color);height:12px;left:var(--list-item-header-twisty-left);right:var(--list-item-header-twisty-right);margin-top:-8px;position:absolute;top:var(--list-item-header-twisty-top);transition:transform .3s;width:12px}.vuuListItemHeader[aria-expanded=false]:after{transform:rotate(-90deg)}.vuuList-scrollingContentContainer{box-sizing:inherit;position:relative}.vuuList-virtualized .vuuListItem{line-height:30px;position:absolute;top:0;left:0;right:0;will-change:transform}.vuuList.saltFocusVisible:after{inset:2px}.vuuTabstrip{--vuuOverflowContainer-background: transparent;--tabstrip-dragging-display: none;--tabstrip-display: inline-flex;--tabstrip-background: transparent;align-self:var(--saltTabs-tabstrip-alignSelf, stretch);font-size:var(--salt-text-fontSize);font-weight:var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));position:relative;overflow:visible;display:flex;min-width:28px;width:var(--tabstrip-width)}.vuuTabstrip-horizontal{--tabstrip-height: var(--vuuTabstrip-height, 28px);--tabstrip-width: var(--vuuTabstrip-width, 100%);--tab-width: auto;--tab-thumb-height: 2px;--tab-thumb-left: var(--tab-thumb-offset, 0);--tab-thumb-top: auto;--tab-thumb-width: var(--tab-thumb-size, 100%);align-items:flex-start;border-bottom:var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor))}.vuuTabstrip-vertical{--tabstrip-height: var(--vuuTabstrip-height, 100%);--tabstrip-width: var(--vuuTabstrip-width, 100px);--tab-width: 100%;--tab-thumb-height: var(--tab-thumb-size, 100%);--tab-thumb-left: 0;--tab-thumb-top: var(--tab-thumb-offset, 0);--tab-thumb-width: 2px;align-self:flex-start;display:inline-flex}.vuuTabstrip-draggingTab .vuuTab{pointer-events:none}.vuuTabstrip-addTabButton{--saltButton-height: 20px;--saltButton-width: 20px}.vuuTabstrip-overflowMenu.saltDropdown{--saltIcon-margin: 2px 0 0 0px}.vuuTabstrip-overflowMenu-open{--saltButton-background: var(--salt-actionable-secondary-background-active);--saltButton-text-color: var(--salt-actionable-secondary-text-color-active)}.vuuTabstrip-overflowMenu-open .saltButton{--saltIcon-color: var(--salt-actionable-secondary-foreground-active)}.vuuTabstrip-inner{width:100%;align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:1;flex-wrap:wrap;justify-content:flex-start;line-height:var(--tabstrip-height)}.vuuTabstrip-vertical .vuuTabstrip-inner{flex-direction:column;height:auto}.vuuTabstrip-centered .vuuTabstrip-inner{justify-content:center}.vuuDraggable[class*=vuuTabstrip]{--tabstrip-display: flex;--tabstrip-height: 100%;--tabstrip-dragging-display: block;--tabs-tab-background: var(--salt-navigable-primary-background-hover);--tabs-tab-before-content: "";--tabs-tab-before-background: var(--salt-navigable-indicator-hover);--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);--tabs-tab-before-inset: var(--tab-activationIndicator-inset);--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);--tabs-tab-position: static;font-size:12px}.vuuDraggable-tabstrip-horizontal{--tab-thumb-height: 2px;--tab-thumb-left: 0px;--tabstrip-height: 28px;line-height:var(--tabstrip-height)}.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before{--tabs-tab-before-background: var(--salt-navigable-indicator-active)}.vuuTabstrip-overflowMenu-dropTarget:after{background:var(--salt-selectable-background-selected);content:"";position:absolute;height:2px;left:0;right:0;bottom:0}.vuuTabMenu{top:-2px}.vuuTab{--saltEditableLabel-padding: 0;--saltEditableLabel-height: var(--tabstrip-height);--saltInputLegacy-minWidth: 4em;--saltEditableLabel-top: 3px;--tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));--tab-cursor: pointer;--tab-position: relative}.vuuTab{align-items:center;align-self:stretch;background:var(--tab-background);border:none;border-radius:var(--vuuTab-borderRadius, 0);color:var(--salt-text-primary-foreground);cursor:var(--vuuTab-cursor, var(--tab-cursor));display:var(--tabstrip-display);gap:8px;height:var(--vuuTab-height, var(--tabstrip-height));letter-spacing:var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));min-width:var(--vuuTab-minWidth, 40px);outline:none;padding:var(--vuuTab-padding, 0 24px);position:var(--vuuTab-position, var(--tab-position));user-select:none;width:var(--tab-width)}.vuuTab{margin:0 var(--tab-spacing) 0 0}.vuuTab-selected{background:var(--vuuTab-background-selected, var(--tab-background));color:var(--salt-text-primary-foreground);font-weight:var(--salt-navigable-fontWeight-active)}.vuuTab-main{align-items:center;border:none;color:inherit;cursor:inherit;display:flex;font-family:inherit;font-size:inherit;font-weight:inherit;height:var(--vuuTabstrip-height, var(--salt-size-stackable));outline:none;position:relative}.vuuTab-closeable .vuuTab-main{border-right:solid transparent var(--salt-size-unit)}.vuuTab .vuuTab-closeButton{display:flex;align-items:center;justify-content:center}.vuuTab-close-icon{display:none}.salt-density-touch .vuuTab-close-icon,.salt-density-low .vuuTab-close-icon{display:block}.salt-density-touch .vuuTab-close-icon-small,.salt-density-low .vuuTab-close-icon-small{display:none}.vuuTab .vuuTab-text{display:inline-block;position:relative;overflow:hidden;text-align:var(--salt-text-textAlign-embedded);text-overflow:ellipsis;top:var(--vuuTab-top, var(--tab-top, auto));white-space:nowrap;z-index:var(--salt-zIndex-default)}.vuuTab .vuuTab-text:before{height:0;content:attr(data-text);display:block;visibility:hidden;font-weight:var(--salt-navigable-fontWeight-active)}.vuuTab-editing:after{content:"";position:absolute;top:0;left:0;right:0;bottom:2px;outline-color:var(--salt-focused-outlineColor);outline-style:var(--salt-focused-outlineStyle);outline-width:var(--salt-focused-outlineWidth);outline-offset:-2px}.vuuTab.vuuFocusVisible{background:var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));outline-color:var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));outline-style:dashed;outline-width:1px;outline-offset:-1px}.vuuTab:before{content:var(--tab-before-content, none);content:"";background:var(--tab-before-background);height:var(--tab-before-height);inset:var(--tab-before-inset);position:absolute;width:var(--tab-before-width);z-index:1}.vuuTabstrip-draggingTab .vuuTab-selected:before{--tab-before-content: "";--tab-before-background: var(--salt-navigable-indicator-color-active);--tab-before-height: var(--tab-thumb-height);--tab-before-inset: var(--tab-activationIndicator-inset);--tab-before-width: var(--tab-activationIndicator-thumb-width)}.vuuTab-selected:before{--tab-before-content: "";background:var(--salt-navigable-indicator-active);height:var(--tab-thumb-height);position:absolute;left:var(--tab-thumb-left);bottom:0px;top:var(--tab-thumb-top, auto);transition:var(--tab-thumb-transition, none);width:var(--tab-thumb-width, 100%)}.vuuTab:hover:not(.vuuTab-closeHover){background:var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover))}.vuuTree{--tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));--tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));--tree-toggle-width: 12px;--tree-icon-color: var(--vuuTree-icon-color, #4c505b);--tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);--tree-node-indent: 0px;--list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, .1));--list-item-height: var(--hw-list-item-height, 30px);--list-item-padding: var(--hw-list-item-padding, 0 6px);--list-item-header-bg: var(--hw-list-item-header-bg, black);--list-item-header-color: var(--hw-list-item-header-color, white);--list-item-header-font-weight: bold;--list-item-header-twisty-color: black;--list-item-header-twisty-content: "";--list-item-header-twisty-top: 50%;--list-item-header-twisty-left: -18px;--list-item-header-twisty-right: auto;--list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);--list-item-selected-color: white;--list-item-text-color: var(--hw-gray-800);--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));list-style:none;margin:0;padding:0 1px;font-size:var(--vuuTree-font-size, 14px);max-height:inherit;outline:none;overflow-y:auto;position:relative;user-select:none}.vuuTree-viewport{--list-item-height: 30px;box-sizing:border-box;max-height:inherit;overflow:auto}.vuuTree-scrollingContentContainer{box-sizing:inherit;position:relative}.vuuTree-scrollingContentContainer .vuuTreeNode{line-height:30px;position:absolute;top:0;left:0;right:0;will-change:transform}.vuuTreeNode{list-style:none}.vuuTreeNode:not([aria-expanded]),.vuuTreeNode[aria-expanded]>.vuuTreeNode-label{--checkbox-border-color: black;--checkbox-border-width: 1px;--checkbox-tick: black;--list-item-padding-left: 6px;--svg-toggle: var(--tree-node-collapse);align-items:center;color:var(--list-item-text-color);display:flex;flex-wrap:nowrap;height:var(--list-item-height);line-height:var(--list-item-height);padding:var(--list-item-padding);padding-left:var(--padding-left);position:relative;cursor:default;margin:0;white-space:nowrap}.vuuTreeNode:not([aria-expanded]){--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) )}.vuuTreeNode[aria-expanded]>.vuuTreeNode-label{--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) )}.vuuTreeNode-icon{background-color:var(--tree-icon-color);display:inline-block;height:18px;margin-right:6px;-webkit-mask:var(--vuu-icon-svg) center center/12px 12px no-repeat;mask:var(--vuu-icon-svg) center center/12px 12px no-repeat;flex:0 0 18px}.vuuTreeNode[aria-expanded]{flex-direction:column}.vuuTreeNode[aria-expanded]{flex-direction:column;height:auto}.vuuTreeNode>*[role=group]{padding-left:0}.vuuTreeNode{padding-left:calc(var(--padding-left) + var(--tree-node-indent))}.vuuTreeNode[aria-level="2"]{--tree-node-indent: 12px}.vuuTreeNode[aria-level="3"]{--tree-node-indent: 24px}.vuuTreeNode[aria-level="4"]{--tree-node-indent: 36px}.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted]>div:first-child{background-color:var(--list-hilited-bg)}.vuuTreeNode-toggle{cursor:pointer}.vuuTreeNode>.vuuTreeNode-toggle{display:inline-block;height:100%;left:0;position:absolute;width:calc(var(--list-item-padding-left) + var(--tree-toggle-width))}.vuuTreeNode[aria-expanded]>.vuuTreeNode-label:after{content:var(--list-item-header-twisty-content);-webkit-mask:var(--svg-toggle) center center/8px 8px no-repeat;mask:var(--svg-toggle) center center/8px 8px no-repeat;background-color:var(--list-item-header-twisty-color);height:18px;margin-top:-9px;left:var(--tree-node-indent);position:absolute;top:var(--list-item-header-twisty-top);transition:transform .3s;width:18px}.vuuTreeNode[aria-selected=true]{--list-item-header-twisty-color: var(--list-item-selected-color)}.vuuTreeNode:not(.focusVisible):focus{background-color:#0000001a}.vuuTreeNode:not([aria-expanded]).focusVisible:before,.vuuTreeNode[aria-expanded].focusVisible>div:first-child:before{content:"";position:absolute;top:0px;left:var(--tree-focus-offset, 0px);right:0;bottom:0px;border:dotted var(--focus-visible-border-color) 2px;background-color:var(--list-hilited-bg)}.vuuTreeNode[aria-expanded=false]>*:first-child:after{--svg-toggle: var(--tree-node-expand)}.vuuTreeNode[aria-expanded=true]>*:first-child:after{transform:var(--tree-node-expanded-transform)}.vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],.vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true]>div:first-child{--checkbox-border-color: var(--list-item-selected-color);--checkbox-tick: var(--list-item-selected-color);--focus-visible-border-color: var(--list-item-selected-color);background-color:var(--list-item-selected-bg);color:var(--list-item-selected-color)}.with-checkbox .vuuTreeNode{padding-left:28px}.with-checkbox .vuuTreeNode:before{border-style:solid;border-width:var(--checkbox-border-width);border-color:var(--checkbox-border-color);content:"";height:12px;left:3px;margin-top:-7px;position:absolute;top:50%;width:12px}
|
|
732
2
|
/*# sourceMappingURL=index.css.map */
|