@vuu-ui/vuu-data-react 0.8.20-debug → 0.8.20
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 +388 -46642
- package/cjs/index.js.map +4 -4
- package/esm/index.js +388 -46880
- package/esm/index.js.map +4 -4
- package/index.css +1 -4168
- package/index.css.map +3 -3
- package/package.json +9 -9
package/index.css
CHANGED
|
@@ -1,4169 +1,2 @@
|
|
|
1
|
-
/* ../vuu-layout/src/dock-layout/Drawer.css */
|
|
2
|
-
.vuuDrawer {
|
|
3
|
-
--drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
|
|
4
|
-
--vuu-close-icon-svg: var(--svg-chevron-double-right);
|
|
5
|
-
transition: flex-basis;
|
|
6
|
-
transition-duration: var(--drawer-transition-duration);
|
|
7
|
-
position: relative;
|
|
8
|
-
z-index: 1;
|
|
9
|
-
flex-basis: 0;
|
|
10
|
-
flex-grow: 1;
|
|
11
|
-
flex-shrink: 1;
|
|
12
|
-
min-width: 0;
|
|
13
|
-
min-height: 0;
|
|
14
|
-
display: flex;
|
|
15
|
-
}
|
|
16
|
-
.vuuDrawer-peekaboo {
|
|
17
|
-
flex-basis: var(--drawer-peek-size);
|
|
18
|
-
flex-grow: 0;
|
|
19
|
-
flex-shrink: 0;
|
|
20
|
-
}
|
|
21
|
-
.vuuDrawer-inline.vuuDrawer-open {
|
|
22
|
-
flex-basis: var(--drawer-size);
|
|
23
|
-
flex-grow: 0;
|
|
24
|
-
flex-shrink: 0;
|
|
25
|
-
}
|
|
26
|
-
.vuuDrawer-liner {
|
|
27
|
-
background-color: var(--drawer-bg);
|
|
28
|
-
overflow: hidden;
|
|
29
|
-
position: relative;
|
|
30
|
-
}
|
|
31
|
-
.vuuDrawer-content {
|
|
32
|
-
height: 100%;
|
|
33
|
-
overflow: hidden;
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: 0;
|
|
36
|
-
right: var(--drawer-peek-size);
|
|
37
|
-
transition: right;
|
|
38
|
-
transition-duration: var(--drawer-transition-duration);
|
|
39
|
-
width: 100%;
|
|
40
|
-
flex: 1 1 100%;
|
|
41
|
-
}
|
|
42
|
-
.vuuDrawer-open .vuuDrawer-content {
|
|
43
|
-
right: 0;
|
|
44
|
-
}
|
|
45
|
-
.vuuDrawer-left {
|
|
46
|
-
border-right: var(--drawer-leading-edge-border);
|
|
47
|
-
}
|
|
48
|
-
.vuuDrawer-right {
|
|
49
|
-
border-left: var(--drawer-leading-edge-border);
|
|
50
|
-
}
|
|
51
|
-
.vuuDrawer-top {
|
|
52
|
-
border-bottom: var(--drawer-leading-edge-border);
|
|
53
|
-
}
|
|
54
|
-
.vuuDrawer-bottom {
|
|
55
|
-
border-top: var(--drawer-leading-edge-border);
|
|
56
|
-
}
|
|
57
|
-
.vuuDrawer-left .vuuDrawer-liner,
|
|
58
|
-
.vuuDrawer-right .vuuDrawer-liner {
|
|
59
|
-
height: 100%;
|
|
60
|
-
transition: width;
|
|
61
|
-
}
|
|
62
|
-
.vuuDrawer-top .vuuDrawer-liner,
|
|
63
|
-
.vuuDrawer-bottom .vuuDrawer-liner {
|
|
64
|
-
width: 100%;
|
|
65
|
-
transition: height;
|
|
66
|
-
}
|
|
67
|
-
.vuuDrawer-inline .vuuDrawer-liner {
|
|
68
|
-
width: 100%;
|
|
69
|
-
height: 100%;
|
|
70
|
-
}
|
|
71
|
-
.vuuDrawer-over .vuuDrawer-liner {
|
|
72
|
-
position: absolute;
|
|
73
|
-
transition-duration: 0.4s;
|
|
74
|
-
}
|
|
75
|
-
.vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
|
|
76
|
-
top: 0;
|
|
77
|
-
left: 0;
|
|
78
|
-
width: 0;
|
|
79
|
-
}
|
|
80
|
-
.vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
|
|
81
|
-
top: 0;
|
|
82
|
-
right: 0;
|
|
83
|
-
width: 0;
|
|
84
|
-
}
|
|
85
|
-
.vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
|
|
86
|
-
height: 0;
|
|
87
|
-
top: 0;
|
|
88
|
-
left: 0;
|
|
89
|
-
}
|
|
90
|
-
.vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
|
|
91
|
-
bottom: 0;
|
|
92
|
-
height: 0;
|
|
93
|
-
left: 0;
|
|
94
|
-
}
|
|
95
|
-
.vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
|
|
96
|
-
.vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
|
|
97
|
-
width: var(--drawer-peek-size);
|
|
98
|
-
}
|
|
99
|
-
.vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
|
|
100
|
-
.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
|
|
101
|
-
height: var(--drawer-peek-size);
|
|
102
|
-
}
|
|
103
|
-
.vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
|
|
104
|
-
.vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
|
|
105
|
-
width: var(--drawer-size);
|
|
106
|
-
}
|
|
107
|
-
.vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
|
|
108
|
-
.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
|
|
109
|
-
height: var(--drawer-size);
|
|
110
|
-
}
|
|
111
|
-
.vuuDrawer-top,
|
|
112
|
-
.vuuDrawer-left {
|
|
113
|
-
order: 0;
|
|
114
|
-
}
|
|
115
|
-
.vuuDrawer-bottom,
|
|
116
|
-
.vuuDrawer-right {
|
|
117
|
-
order: 99;
|
|
118
|
-
}
|
|
119
|
-
.vuuDrawer-left,
|
|
120
|
-
.vuuDrawer-right {
|
|
121
|
-
flex-direction: column;
|
|
122
|
-
}
|
|
123
|
-
.vuuToggleButton-container {
|
|
124
|
-
--saltButton-height: 28px;
|
|
125
|
-
--saltButton-width: 28px;
|
|
126
|
-
--vuu-icon-size: 12px;
|
|
127
|
-
flex: 0 0 28px;
|
|
128
|
-
}
|
|
129
|
-
.vuuDrawer-open {
|
|
130
|
-
--vuu-close-icon-svg: var(--svg-chevron-double-left);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/* ../vuu-layout/src/dock-layout/DockLayout.css */
|
|
134
|
-
.vuuDockLayout {
|
|
135
|
-
--chest-bg: var(--hw-chest-bg, inherit);
|
|
136
|
-
--drawer-bg: var(--hw-drawer-bg, inherit);
|
|
137
|
-
--drawer-size: var(--hw-drawer-size, 200px);
|
|
138
|
-
--drawer-peek-size: var(--hw-drawer-peek-size, 32px);
|
|
139
|
-
--drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
|
|
140
|
-
background-color: var(--chest-bg);
|
|
141
|
-
display: flex;
|
|
142
|
-
}
|
|
143
|
-
.vuuDockLayout-horizontal {
|
|
144
|
-
flex-direction: row;
|
|
145
|
-
}
|
|
146
|
-
.vuuDockLayout-vertical {
|
|
147
|
-
flex-direction: column;
|
|
148
|
-
}
|
|
149
|
-
.vuuDockLayout-content {
|
|
150
|
-
background-color: var(--chest-bg);
|
|
151
|
-
flex-grow: 1;
|
|
152
|
-
flex-shrink: 1;
|
|
153
|
-
overflow: hidden;
|
|
154
|
-
display: flex;
|
|
155
|
-
align-items: center;
|
|
156
|
-
justify-content: center;
|
|
157
|
-
}
|
|
158
|
-
.vuuDockLayout-horizontal .vuuDockLayout-content {
|
|
159
|
-
flex-basis: 100%;
|
|
160
|
-
}
|
|
161
|
-
.vuuDockLayout-vertical .vuuDockLayout-content {
|
|
162
|
-
flex-basis: 100%;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
/* ../vuu-layout/src/Component.css */
|
|
166
|
-
|
|
167
|
-
/* ../vuu-popups/src/dialog-header/DialogHeader.css */
|
|
168
|
-
.vuuDialogHeader {
|
|
169
|
-
--saltButton-height: 28px;
|
|
170
|
-
--saltButton-width: 28px;
|
|
171
|
-
--saltToolbar-background: transparent;
|
|
172
|
-
--saltToolbar-height: calc(var(--salt-size-base) + 5px);
|
|
173
|
-
--vuuToolbarProxy-height: 22px;
|
|
174
|
-
--salt-text-fontFamily: Nunito Sans A-Variant, sans-serif;
|
|
175
|
-
display: flex;
|
|
176
|
-
align-items: flex-start;
|
|
177
|
-
color: var(--light-text-primary, #15171B);
|
|
178
|
-
font-feature-settings:
|
|
179
|
-
"ss02" on,
|
|
180
|
-
"ss01" on,
|
|
181
|
-
"salt" on,
|
|
182
|
-
"liga" off;
|
|
183
|
-
font-size: 16px;
|
|
184
|
-
font-weight: 600;
|
|
185
|
-
}
|
|
186
|
-
.vuuDialogHeader > .Responsive-inner {
|
|
187
|
-
align-items: center;
|
|
188
|
-
}
|
|
189
|
-
.vuuDialogHeader > .Responsive-inner > :last-child {
|
|
190
|
-
right: 2px;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
/* ../vuu-popups/src/dialog/Dialog.css */
|
|
194
|
-
.vuuDialog {
|
|
195
|
-
background: var(--salt-container-primary-background);
|
|
196
|
-
border: var(--vuuDialog-border, solid 1px #ccc);
|
|
197
|
-
border-radius: 5px;
|
|
198
|
-
padding: var(--vuuDialog-padding, 16px);
|
|
199
|
-
position: relative;
|
|
200
|
-
box-shadow: var(--salt-overlayable-shadow, none);
|
|
201
|
-
height: var(--vuuDialog-height, fit-content);
|
|
202
|
-
overflow: visible;
|
|
203
|
-
width: var(--vuuDialog-width, fit-content);
|
|
204
|
-
}
|
|
205
|
-
.vuuDialog-body {
|
|
206
|
-
padding-top: 16px;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/* ../vuu-popups/src/popup/popup-service.css */
|
|
210
|
-
.vuuPopup {
|
|
211
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
212
|
-
position: absolute;
|
|
213
|
-
top: 0;
|
|
214
|
-
left: 0;
|
|
215
|
-
width: 0;
|
|
216
|
-
height: 0;
|
|
217
|
-
overflow: visible;
|
|
218
|
-
z-index: 1000;
|
|
219
|
-
}
|
|
220
|
-
.vuuPopup {
|
|
221
|
-
position: absolute;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
/* ../vuu-popups/src/popup/Popup.css */
|
|
225
|
-
|
|
226
|
-
/* ../vuu-popups/src/portal/Portal.css */
|
|
227
|
-
.vuuPortal {
|
|
228
|
-
background-color: var(--salt-container-primary-background);
|
|
229
|
-
border-radius: 4px;
|
|
230
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
231
|
-
position: absolute;
|
|
232
|
-
border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
|
|
233
|
-
border-style: solid;
|
|
234
|
-
border-width: 1px;
|
|
235
|
-
padding: 4px 0;
|
|
236
|
-
z-index: 100;
|
|
237
|
-
}
|
|
238
|
-
.vuuPortal:has(.vuuDropdown-popup-component.vuuList-empty) {
|
|
239
|
-
display: none;
|
|
240
|
-
}
|
|
241
|
-
#vuu-portal-root {
|
|
242
|
-
z-index: 1000;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
/* ../vuu-popups/src/menu/MenuList.css */
|
|
246
|
-
.vuuMenuList {
|
|
247
|
-
--salt-focused-outlineStyle: dashed !important;
|
|
248
|
-
--salt-focused-outlineWidth: 1px !important;
|
|
249
|
-
--vuuListItem-padding: 8px;
|
|
250
|
-
--context-menu-color: var(--vuuMenuList-color,#161616);
|
|
251
|
-
--context-menu-padding: var(--hw-list-item-padding, 0 6px);
|
|
252
|
-
--context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
|
|
253
|
-
--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
|
|
254
|
-
--context-menu-highlight-bg: var(--salt-selectable-background-hover);
|
|
255
|
-
--context-menu-blur-focus-bg: #e0e4e9;
|
|
256
|
-
--menu-item-icon-color: black;
|
|
257
|
-
--menu-item-twisty-color: black;
|
|
258
|
-
--menu-item-twisty-content: "";
|
|
259
|
-
--menu-item-twisty-top: 50%;
|
|
260
|
-
--menu-item-twisty-left: auto;
|
|
261
|
-
--menu-item-twisty-right: 0px;
|
|
262
|
-
--menu-icon-size: 12px;
|
|
263
|
-
background-clip: padding-box;
|
|
264
|
-
background-color: white;
|
|
265
|
-
font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
|
|
266
|
-
font-weight: var(--salt-typography-fontWeight-medium);
|
|
267
|
-
list-style: none;
|
|
268
|
-
outline: 0;
|
|
269
|
-
overflow: hidden;
|
|
270
|
-
padding: var(--vuuMenuList-padding, 0);
|
|
271
|
-
position: absolute;
|
|
272
|
-
}
|
|
273
|
-
.vuuPortal > .vuuMenuList {
|
|
274
|
-
position: relative;
|
|
275
|
-
}
|
|
276
|
-
.vuuMenuItem {
|
|
277
|
-
align-items: center;
|
|
278
|
-
border-width: 1px;
|
|
279
|
-
border-color: var(--vuuMenuItem-borderColor, transparent);
|
|
280
|
-
border-style: var(--vuuMenuItem-borderStyle, none);
|
|
281
|
-
color: var(--context-menu-color);
|
|
282
|
-
display: flex;
|
|
283
|
-
gap: 6px;
|
|
284
|
-
height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
|
|
285
|
-
padding: var(--context-menu-padding);
|
|
286
|
-
padding-right: 24px;
|
|
287
|
-
position: relative;
|
|
288
|
-
white-space: nowrap;
|
|
289
|
-
}
|
|
290
|
-
.vuuIconContainer {
|
|
291
|
-
display: inline-block;
|
|
292
|
-
flex: 12px 0 0;
|
|
293
|
-
height: var(--menu-icon-size);
|
|
294
|
-
-webkit-mask-repeat: no-repeat;
|
|
295
|
-
mask-repeat: no-repeat;
|
|
296
|
-
width: var(--menu-icon-size);
|
|
297
|
-
}
|
|
298
|
-
.vuuMenuItem[aria-expanded=true] {
|
|
299
|
-
background-color: var(--context-menu-blur-focus-bg);
|
|
300
|
-
}
|
|
301
|
-
.vuuMenuItem-separator {
|
|
302
|
-
border-top: solid 1px var(--context-menu-blur-focus-bg);
|
|
303
|
-
}
|
|
304
|
-
.vuuMenuItem[aria-haspopup=true]:after {
|
|
305
|
-
content: var(--menu-item-twisty-content);
|
|
306
|
-
mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
|
|
307
|
-
-webkit-mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
|
|
308
|
-
background-color: var(--menu-item-twisty-color);
|
|
309
|
-
height: 16px;
|
|
310
|
-
left: var(--menu-item-twisty-left);
|
|
311
|
-
right: var(--menu-item-twisty-right);
|
|
312
|
-
margin-top: -8px;
|
|
313
|
-
position: absolute;
|
|
314
|
-
top: var(--menu-item-twisty-top);
|
|
315
|
-
transition: transform 0.3s;
|
|
316
|
-
width: 16px;
|
|
317
|
-
}
|
|
318
|
-
.vuuMenuItem[data-highlighted] {
|
|
319
|
-
background-color: var(--context-menu-highlight-bg);
|
|
320
|
-
}
|
|
321
|
-
.vuuMenuItem:hover {
|
|
322
|
-
background-color: var(--context-menu-highlight-bg);
|
|
323
|
-
cursor: default;
|
|
324
|
-
}
|
|
325
|
-
.vuuMenuList-childMenuShowing .vuuMenuItem[data-highlighted] {
|
|
326
|
-
background-color: var(--context-menu-blur-focus-bg);
|
|
327
|
-
}
|
|
328
|
-
.vuuMenuItem.focusVisible:before {
|
|
329
|
-
content: "";
|
|
330
|
-
position: absolute;
|
|
331
|
-
top: 0;
|
|
332
|
-
left: 0;
|
|
333
|
-
right: 0;
|
|
334
|
-
bottom: 0px;
|
|
335
|
-
border: dotted var(--focus-visible-border-color) 2px;
|
|
336
|
-
}
|
|
337
|
-
.vuuPopupContainer.top-bottom-right-right .popup-menu {
|
|
338
|
-
left: auto;
|
|
339
|
-
right: 0;
|
|
340
|
-
}
|
|
341
|
-
.popup-menu .menu-item.showing > button,
|
|
342
|
-
.popup-menu .menu-item > button:focus,
|
|
343
|
-
.popup-menu .menu-item > button:hover {
|
|
344
|
-
text-decoration: none;
|
|
345
|
-
color: rgb(0, 0, 0);
|
|
346
|
-
background-color: rgb(220, 220, 220);
|
|
347
|
-
}
|
|
348
|
-
.vuuMenuItem-button:active,
|
|
349
|
-
.vuuMenuItem-button:hover {
|
|
350
|
-
outline: 0;
|
|
351
|
-
}
|
|
352
|
-
.popup-menu .menu-item.disabled > button {
|
|
353
|
-
clear: both;
|
|
354
|
-
font-weight: normal;
|
|
355
|
-
line-height: 1.5;
|
|
356
|
-
color: rgb(120, 120, 120);
|
|
357
|
-
white-space: nowrap;
|
|
358
|
-
text-decoration: none;
|
|
359
|
-
cursor: default;
|
|
360
|
-
}
|
|
361
|
-
.vuuMenuList.salt-theme {
|
|
362
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
363
|
-
position: absolute;
|
|
364
|
-
border-color: var(--salt-container-primary-borderColor);
|
|
365
|
-
border-style: solid !important;
|
|
366
|
-
border-width: 1px;
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
/* ../vuu-popups/src/popup-menu/PopupMenu.css */
|
|
370
|
-
.vuuPopupMenu {
|
|
371
|
-
--saltButton-height: 24px;
|
|
372
|
-
--saltButton-width: 24px;
|
|
373
|
-
--vuu-icon-color: var(--vuuPopupMenu-iconColor,#606477);
|
|
374
|
-
--vuu-icon-height: 20px;
|
|
375
|
-
--vuu-icon-left: 2px;
|
|
376
|
-
--vuu-icon-size: 16px;
|
|
377
|
-
--vuu-icon-top: 2px;
|
|
378
|
-
--vuu-icon-width: 20px;
|
|
379
|
-
background: var(--vuuPopupMenu-background, transparent);
|
|
380
|
-
border: var(--vuuPopupMenu-border, none);
|
|
381
|
-
border-radius: var(--vuuPopupMenu-borderRadius, 4px);
|
|
382
|
-
cursor: pointer;
|
|
383
|
-
display: inline-block;
|
|
384
|
-
margin-top: 2px;
|
|
385
|
-
padding: 2px;
|
|
386
|
-
}
|
|
387
|
-
.vuuPopupMenu:hover {
|
|
388
|
-
--vuu-icon-color: var(--saltButton-text-color-hover);
|
|
389
|
-
}
|
|
390
|
-
.vuuPopupMenu-open {
|
|
391
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
392
|
-
--vuu-icon-color: white;
|
|
393
|
-
}
|
|
394
|
-
.vuu-theme .vuuPopupMenu:hover {
|
|
395
|
-
--saltButton-background-hover: #F37880;
|
|
396
|
-
}
|
|
397
|
-
.vuu-theme .vuuPopupMenu-open {
|
|
398
|
-
--saltButton-background: #6D18BD;
|
|
399
|
-
}
|
|
400
|
-
.vuuPopupMenu-withCaption {
|
|
401
|
-
--vuu-icon-left: calc(100% - 24px);
|
|
402
|
-
--vuu-icon-size: 20px;
|
|
403
|
-
--saltButton-width: auto;
|
|
404
|
-
padding: 0 28px 0 8px;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
/* ../vuu-popups/src/prompt/Prompt.css */
|
|
408
|
-
.vuuPrompt {
|
|
409
|
-
--saltButton-padding: var(--prompt-padding);
|
|
410
|
-
--saltButton-width: auto;
|
|
411
|
-
--border-width: var(--vuuPrompt-borderWidth, 1px);
|
|
412
|
-
--border-color: var(--vuuPrompt-borderColor, var(--vuu-color-purple-10));
|
|
413
|
-
--prompt-padding: 16px;
|
|
414
|
-
--variant-color: inherit;
|
|
415
|
-
--vuu-icon-color: var(--vuu-color-gray-80);
|
|
416
|
-
--vuu-icon-left: 6px;
|
|
417
|
-
--vuu-icon-size: 24px;
|
|
418
|
-
background-color: var(--salt-container-primary-background);
|
|
419
|
-
border-color: var(--border-color);
|
|
420
|
-
border-radius: 4px;
|
|
421
|
-
border-style: solid;
|
|
422
|
-
border-width: var(--border-width);
|
|
423
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
424
|
-
margin: 0;
|
|
425
|
-
padding: 0;
|
|
426
|
-
position: absolute;
|
|
427
|
-
}
|
|
428
|
-
.vuuPrompt-warn {
|
|
429
|
-
--border-color: var(--vuu-color-yellow-20);
|
|
430
|
-
--variant-color: var(--vuu-color-yellow-20);
|
|
431
|
-
}
|
|
432
|
-
.vuuPrompt-form {
|
|
433
|
-
display: flex;
|
|
434
|
-
flex-direction: column;
|
|
435
|
-
}
|
|
436
|
-
.vuuPrompt-header {
|
|
437
|
-
align-items: center;
|
|
438
|
-
background-color: var(--variant-color);
|
|
439
|
-
display: flex;
|
|
440
|
-
flex: 0 0 32px;
|
|
441
|
-
font-size: 16px;
|
|
442
|
-
font-weight: 700;
|
|
443
|
-
padding: 0 var(--prompt-padding);
|
|
444
|
-
}
|
|
445
|
-
.vuuPrompt-header[data-icon] {
|
|
446
|
-
padding-left: 36px;
|
|
447
|
-
}
|
|
448
|
-
.vuuPrompt-text {
|
|
449
|
-
flex: 1 1 auto;
|
|
450
|
-
padding: var(--prompt-padding);
|
|
451
|
-
}
|
|
452
|
-
.vuuPrompt-buttonBar {
|
|
453
|
-
align-items: flex-end;
|
|
454
|
-
display: flex;
|
|
455
|
-
flex: 0 0 32px;
|
|
456
|
-
gap: 6px;
|
|
457
|
-
justify-content: flex-end;
|
|
458
|
-
padding: 0 var(--prompt-padding) var(--prompt-padding) var(--prompt-padding);
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
/* ../vuu-popups/src/tooltip/Tooltip.css */
|
|
462
|
-
.vuuTooltip {
|
|
463
|
-
--tooltip-align: flex-start;
|
|
464
|
-
--tooltip-background: white;
|
|
465
|
-
--tooltip-border: var(--vuu-color-gray-30);
|
|
466
|
-
--tooltip-color: var(--vuu-color-gray-80);
|
|
467
|
-
--tooltip-justify: flex-start;
|
|
468
|
-
--tooltip-top: auto;
|
|
469
|
-
--tooltip-right: auto;
|
|
470
|
-
--tooltip-bottom: auto;
|
|
471
|
-
--tooltip-left: auto;
|
|
472
|
-
align-items: var(--tooltip-align);
|
|
473
|
-
justify-content: var(--tooltip-justify);
|
|
474
|
-
display: flex;
|
|
475
|
-
position: absolute;
|
|
476
|
-
z-index: 100;
|
|
477
|
-
}
|
|
478
|
-
.vuuTooltip[data-align=right] {
|
|
479
|
-
--tooltip-align: center;
|
|
480
|
-
--tooltip-left: 9px;
|
|
481
|
-
}
|
|
482
|
-
.vuuTooltip[data-align=left] {
|
|
483
|
-
--tooltip-align: center;
|
|
484
|
-
--tooltip-left: auto;
|
|
485
|
-
--tooltip-right: 10px;
|
|
486
|
-
}
|
|
487
|
-
.vuuTooltip[data-align=above] {
|
|
488
|
-
--tooltip-justify: center;
|
|
489
|
-
--tooltip-bottom: 9px;
|
|
490
|
-
--tooltip-left: auto;
|
|
491
|
-
}
|
|
492
|
-
.vuuTooltip[data-align=below] {
|
|
493
|
-
--tooltip-justify: center;
|
|
494
|
-
--tooltip-top: 9px;
|
|
495
|
-
--tooltip-left: auto;
|
|
496
|
-
}
|
|
497
|
-
.vuuTooltip-content {
|
|
498
|
-
background-color: var(--tooltip-background);
|
|
499
|
-
border-color: var(--tooltip-border);
|
|
500
|
-
border-width: 1px;
|
|
501
|
-
border-style: solid;
|
|
502
|
-
border-radius: 6px;
|
|
503
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
504
|
-
color: var(--tooltip-color);
|
|
505
|
-
line-height: 24px;
|
|
506
|
-
padding: 2px 8px;
|
|
507
|
-
position: absolute;
|
|
508
|
-
white-space: nowrap;
|
|
509
|
-
top: var(--tooltip-top);
|
|
510
|
-
right: var(--tooltip-right);
|
|
511
|
-
bottom: var(--tooltip-bottom);
|
|
512
|
-
left: var(--tooltip-left);
|
|
513
|
-
}
|
|
514
|
-
.vuuTooltip::before {
|
|
515
|
-
background-color: var(--tooltip-border);
|
|
516
|
-
content: " ";
|
|
517
|
-
display: block;
|
|
518
|
-
position: absolute;
|
|
519
|
-
width: 12px;
|
|
520
|
-
height: 12px;
|
|
521
|
-
}
|
|
522
|
-
.vuuTooltip[data-align=above]::before {
|
|
523
|
-
transform: translate(0, -18px) rotate(45deg);
|
|
524
|
-
}
|
|
525
|
-
.vuuTooltip[data-align=below]::before {
|
|
526
|
-
transform: translate(0, 6px) rotate(45deg);
|
|
527
|
-
}
|
|
528
|
-
.vuuTooltip[data-align=right]::before {
|
|
529
|
-
transform: translate(7px, 0px) rotate(45deg);
|
|
530
|
-
}
|
|
531
|
-
.vuuTooltip[data-align=left]::before {
|
|
532
|
-
transform: translate(-19px, 0) rotate(45deg);
|
|
533
|
-
}
|
|
534
|
-
.vuuTooltip-error {
|
|
535
|
-
--tooltip-background: var(--vuu-color-red-50);
|
|
536
|
-
--tooltip-color: white;
|
|
537
|
-
color: white;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
/* ../vuu-popups/src/notifications/notifications.css */
|
|
541
|
-
.vuuToastNotifications-toast {
|
|
542
|
-
--vuu-icon-size: 24px;
|
|
543
|
-
position: absolute;
|
|
544
|
-
display: flex;
|
|
545
|
-
padding: 8px 32px 8px 8px;
|
|
546
|
-
align-items: center;
|
|
547
|
-
gap: 8px;
|
|
548
|
-
border-radius: 6px;
|
|
549
|
-
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.40);
|
|
550
|
-
z-index: 100000;
|
|
551
|
-
}
|
|
552
|
-
.vuuToastNotifications-toastContent {
|
|
553
|
-
display: flex;
|
|
554
|
-
flex-direction: column;
|
|
555
|
-
gap: 4px;
|
|
556
|
-
}
|
|
557
|
-
.vuuToastNotifications-toastHeader {
|
|
558
|
-
font-size: 16px;
|
|
559
|
-
font-weight: 700;
|
|
560
|
-
}
|
|
561
|
-
.error {
|
|
562
|
-
background: var(--status-error-background-emphasize, #E23434);
|
|
563
|
-
}
|
|
564
|
-
.success {
|
|
565
|
-
background: var(--status-success-background-emphasize, #248913);
|
|
566
|
-
}
|
|
567
|
-
.info {
|
|
568
|
-
background: var(--status-info-background-emphasize, #017CB1);
|
|
569
|
-
}
|
|
570
|
-
.warning {
|
|
571
|
-
background: var(--status-warning-background-emphasize, #F4CA33);
|
|
572
|
-
}
|
|
573
|
-
.error,
|
|
574
|
-
.success,
|
|
575
|
-
.info {
|
|
576
|
-
color: white;
|
|
577
|
-
}
|
|
578
|
-
.vuuToastNotifications-toastIcon {
|
|
579
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 24px));
|
|
580
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 24px));
|
|
581
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
582
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
583
|
-
-webkit-mask-repeat: no-repeat;
|
|
584
|
-
mask-repeat: no-repeat;
|
|
585
|
-
}
|
|
586
|
-
.success-icon {
|
|
587
|
-
--vuu-icon-svg: var(--vuu-svg-tick);
|
|
588
|
-
}
|
|
589
|
-
.warning-icon {
|
|
590
|
-
--vuu-icon-svg: var(--vuu-svg-warn-triangle);
|
|
591
|
-
background-color: #000000;
|
|
592
|
-
}
|
|
593
|
-
.info-icon {
|
|
594
|
-
--vuu-icon-svg: var(--vuu-svg-info-circle);
|
|
595
|
-
}
|
|
596
|
-
.error-icon {
|
|
597
|
-
--vuu-icon-svg: var(--vuu-svg-alert-circle);
|
|
598
|
-
}
|
|
599
|
-
.success-icon,
|
|
600
|
-
.info-icon,
|
|
601
|
-
.error-icon {
|
|
602
|
-
background-color: #ffffff;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
/* ../vuu-layout/src/drag-drop/DropMenu.css */
|
|
606
|
-
.vuuDropMenu {
|
|
607
|
-
margin-left: -50%;
|
|
608
|
-
margin-bottom: -50%;
|
|
609
|
-
background-color: white;
|
|
610
|
-
border: solid 1px var(--grey40);
|
|
611
|
-
display: inline-flex;
|
|
612
|
-
justify-content: center;
|
|
613
|
-
align-items: center;
|
|
614
|
-
padding: 3px;
|
|
615
|
-
border-radius: 3px;
|
|
616
|
-
}
|
|
617
|
-
.vuuDropMenu-left,
|
|
618
|
-
.vuuDropMenu-right {
|
|
619
|
-
flex-direction: column;
|
|
620
|
-
}
|
|
621
|
-
.vuuDropMenu-bottom {
|
|
622
|
-
transform: translate(0, -30px);
|
|
623
|
-
}
|
|
624
|
-
.vuuDropMenu-right {
|
|
625
|
-
transform: translate(-20px, 0);
|
|
626
|
-
}
|
|
627
|
-
.vuuDropMenu-item {
|
|
628
|
-
--vuu-icon-size: 20px;
|
|
629
|
-
width: 32px;
|
|
630
|
-
height: 32px;
|
|
631
|
-
background-color: var(--grey20);
|
|
632
|
-
border-bottom: solid 1px var(--grey40);
|
|
633
|
-
cursor: pointer;
|
|
634
|
-
display: flex;
|
|
635
|
-
align-items: center;
|
|
636
|
-
justify-content: center;
|
|
637
|
-
}
|
|
638
|
-
.vuuDropMenu-item .Icon {
|
|
639
|
-
transform: scale(1.25);
|
|
640
|
-
transform-origin: center center;
|
|
641
|
-
}
|
|
642
|
-
.vuuDropMenu-left .vuuDropMenu-item .hwIcon {
|
|
643
|
-
transform: scale(1.25) rotate(180deg);
|
|
644
|
-
transform-origin: center center;
|
|
645
|
-
}
|
|
646
|
-
.vuuDropMenu-top .vuuDropMenu-item .hwIcon {
|
|
647
|
-
transform: scale(1.25) rotate(270deg);
|
|
648
|
-
transform-origin: center center;
|
|
649
|
-
}
|
|
650
|
-
.vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
|
|
651
|
-
transform: scale(1.25) rotate(90deg);
|
|
652
|
-
transform-origin: center center;
|
|
653
|
-
}
|
|
654
|
-
.vuuDropMenu-item .hwIcon-path {
|
|
655
|
-
fill: grey;
|
|
656
|
-
}
|
|
657
|
-
.vuuDropMenu-item:hover {
|
|
658
|
-
background-color: rgba(200, 200, 200, 0.5);
|
|
659
|
-
}
|
|
660
|
-
.vuuDropMenu-item:hover .hwIcon-path-2 {
|
|
661
|
-
fill: blue;
|
|
662
|
-
}
|
|
663
|
-
.vuuDropMenu-item:last-child {
|
|
664
|
-
border-bottom: none;
|
|
665
|
-
}
|
|
666
|
-
|
|
667
|
-
/* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
|
|
668
|
-
#hw-drag-canvas {
|
|
669
|
-
visibility: hidden;
|
|
670
|
-
z-index: 10;
|
|
671
|
-
position: absolute;
|
|
672
|
-
top: 0px;
|
|
673
|
-
left: 0;
|
|
674
|
-
right: 0;
|
|
675
|
-
bottom: 0;
|
|
676
|
-
background-color: transparent;
|
|
677
|
-
}
|
|
678
|
-
#hw-drag-canvas > svg {
|
|
679
|
-
position: absolute;
|
|
680
|
-
}
|
|
681
|
-
.drawing #hw-drag-canvas {
|
|
682
|
-
visibility: visible;
|
|
683
|
-
}
|
|
684
|
-
path.drop-target {
|
|
685
|
-
stroke: blue;
|
|
686
|
-
stroke-width: 4px;
|
|
687
|
-
fill: transparent;
|
|
688
|
-
}
|
|
689
|
-
path.drop-target.centre {
|
|
690
|
-
stroke: red;
|
|
691
|
-
}
|
|
692
|
-
#vuu-drop-outline {
|
|
693
|
-
fill: rgba(0, 0, 255, .3);
|
|
694
|
-
stroke: none;
|
|
695
|
-
stroke-dasharray: 4 2;
|
|
696
|
-
}
|
|
697
|
-
#hw-drop-guides {
|
|
698
|
-
fill: none;
|
|
699
|
-
stroke: rgba(0, 0, 0, 0.3);
|
|
700
|
-
stroke-dasharray: 2 3;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
/* ../vuu-layout/src/DraggableLayout.css */
|
|
704
|
-
.DraggableLayout {
|
|
705
|
-
display: inline-block;
|
|
706
|
-
outline: none;
|
|
707
|
-
}
|
|
708
|
-
[data-dragging=true] {
|
|
709
|
-
position: absolute !important;
|
|
710
|
-
z-index: 100;
|
|
711
|
-
}
|
|
712
|
-
.vuuSimpleDraggableWrapper {
|
|
713
|
-
background-color: white;
|
|
714
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
|
|
715
|
-
}
|
|
716
|
-
.vuuSimpleDraggableWrapper > * {
|
|
717
|
-
height: 100%;
|
|
718
|
-
width: 100%;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
/* ../vuu-ui-controls/src/dropdown/Dropdown.css */
|
|
722
|
-
.vuuDropdown {
|
|
723
|
-
--saltIcon-margin: 2px 0 0 8px;
|
|
724
|
-
display: inline-block;
|
|
725
|
-
line-height: 0;
|
|
726
|
-
position: relative;
|
|
727
|
-
width: var(--vuuDropdown-width, auto);
|
|
728
|
-
}
|
|
729
|
-
.vuuDropdownButton.saltButton-secondary {
|
|
730
|
-
--saltButton-borderStyle: solid;
|
|
731
|
-
--saltButton-borderColor: var(--salt-editable-borderColor);
|
|
732
|
-
--saltButton-borderWidth: 1px;
|
|
733
|
-
--saltButton-borderRadius: 6px;
|
|
734
|
-
--saltButton-height: var(--vuuDropdown-height, auto);
|
|
735
|
-
}
|
|
736
|
-
.vuuDropdown-fullWidth {
|
|
737
|
-
width: 100%;
|
|
738
|
-
}
|
|
739
|
-
.vuuDropdown-popup {
|
|
740
|
-
background: var(--salt-container-primary-background);
|
|
741
|
-
z-index: calc(var(--salt-zIndex-flyover) - 1);
|
|
742
|
-
}
|
|
743
|
-
.vuuDropdown-popup-component {
|
|
744
|
-
--vuuList-borderStyle: none;
|
|
745
|
-
}
|
|
746
|
-
.vuuDropdownButton {
|
|
747
|
-
width: 100%;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
/* ../vuu-ui-controls/src/dropdown/DropdownButton.css */
|
|
751
|
-
.vuuDropdownButton {
|
|
752
|
-
--saltButton-background-hover: var(--salt-actionable-secondary-background);
|
|
753
|
-
--saltButton-background-active: var(--salt-actionable-secondary-background);
|
|
754
|
-
--saltButton-fontWeight: var(--salt-text-fontWeight-strong);
|
|
755
|
-
--saltButton-textAlign: left;
|
|
756
|
-
--saltButton-textTransform: none;
|
|
757
|
-
--saltButton-width: 100%;
|
|
758
|
-
--vuu-icon-size: 16px;
|
|
759
|
-
}
|
|
760
|
-
.vuuDropdownButton:active {
|
|
761
|
-
--saltIcon-color: var(--salt-actionable-secondary-foreground);
|
|
762
|
-
--saltButton-text-color-active: var(--salt-actionable-secondary-foreground);
|
|
763
|
-
}
|
|
764
|
-
.vuuDropdownButton-fullwidth {
|
|
765
|
-
width: 100%;
|
|
766
|
-
}
|
|
767
|
-
.vuuDropdownButton-content {
|
|
768
|
-
align-items: center;
|
|
769
|
-
flex: 1;
|
|
770
|
-
width: 100%;
|
|
771
|
-
display: flex;
|
|
772
|
-
white-space: nowrap;
|
|
773
|
-
}
|
|
774
|
-
.vuuDropdownButton-buttonLabel {
|
|
775
|
-
display: inline-block;
|
|
776
|
-
letter-spacing: 0;
|
|
777
|
-
overflow: hidden;
|
|
778
|
-
text-overflow: ellipsis;
|
|
779
|
-
width: 100%;
|
|
780
|
-
}
|
|
781
|
-
.vuuDropdownButton-formField.saltButton:focus,
|
|
782
|
-
.vuuDropdownButton-formField.saltButton:focus-visible {
|
|
783
|
-
outline: none;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
/* ../vuu-ui-controls/src/list/Highlighter.css */
|
|
787
|
-
.saltHighlighter-highlight {
|
|
788
|
-
font-weight: var(--salt-text-fontWeight-strong);
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
/* ../vuu-ui-controls/src/list/CheckboxIcon.css */
|
|
792
|
-
.vuuCheckboxIcon {
|
|
793
|
-
--vuu-icon-size: 12px;
|
|
794
|
-
--vuu-icon-left: -1px;
|
|
795
|
-
--vuu-icon-top: -1px;
|
|
796
|
-
--vuu-icon-svg: var(--vuu-svg-tick);
|
|
797
|
-
border-style: solid;
|
|
798
|
-
border-color: var( --vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor) );
|
|
799
|
-
border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
|
|
800
|
-
border-width: 1px;
|
|
801
|
-
display: inline-block;
|
|
802
|
-
height: var(--vuuCheckboxIcon-size, 12px);
|
|
803
|
-
position: relative;
|
|
804
|
-
width: var(--vuuCheckboxIcon-size, 12px);
|
|
805
|
-
}
|
|
806
|
-
.vuuCheckboxIcon-checked-enabled {
|
|
807
|
-
background-color: var( --vuuCheckboxIcon-background-checked-enabled, var(--vuu-color-purple-10) );
|
|
808
|
-
border-color: var( --vuuCheckboxIcon-borderColor-checked-enabled, var(--vuu-color-purple-10) );
|
|
809
|
-
}
|
|
810
|
-
.vuuCheckboxIcon-checked-disabled {
|
|
811
|
-
background-color: var( --vuuCheckboxIcon-background-checked-disabled, var(--vuu-color-gray-35) );
|
|
812
|
-
border-color: var( --vuuCheckboxIcon-borderColor-checked-disabled, var(--vuu-color-gray-35) );
|
|
813
|
-
}
|
|
814
|
-
.vuuCheckboxIcon-checked-enabled::after,
|
|
815
|
-
.vuuCheckboxIcon-checked-disabled::after {
|
|
816
|
-
content: "";
|
|
817
|
-
background-color: white;
|
|
818
|
-
left: var(--vuu-icon-left, auto);
|
|
819
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
820
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
821
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
822
|
-
mask-repeat: no-repeat;
|
|
823
|
-
-webkit-mask-repeat: no-repeat;
|
|
824
|
-
position: absolute;
|
|
825
|
-
top: var(--vuu-icon-top, auto);
|
|
826
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
827
|
-
}
|
|
828
|
-
.vuuCheckboxIcon-checked-disabled::after {
|
|
829
|
-
background-color: var( --vuuCheckboxIcon-tick-checked-disabled, var(--vuu-color-gray-30) );
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
/* ../vuu-ui-controls/src/list/ListItem.css */
|
|
833
|
-
.vuuListItem {
|
|
834
|
-
--list-item-text-color: var(--salt-text-primary-foreground);
|
|
835
|
-
--list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
|
|
836
|
-
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
837
|
-
--list-item-background-active: var(--salt-selectable-background-selected);
|
|
838
|
-
--list-item-alignItems: center;
|
|
839
|
-
}
|
|
840
|
-
.vuuListItem.vuuHighlighted {
|
|
841
|
-
--saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
|
|
842
|
-
--list-item-background: var(--salt-selectable-background-hover);
|
|
843
|
-
}
|
|
844
|
-
.vuuListItemHeader {
|
|
845
|
-
font-weight: var(--salt-text-fontWeight-strong);
|
|
846
|
-
}
|
|
847
|
-
.vuuListItemHeader[data-sticky] {
|
|
848
|
-
position: sticky;
|
|
849
|
-
top: 0;
|
|
850
|
-
z-index: 1;
|
|
851
|
-
}
|
|
852
|
-
.vuuListItem {
|
|
853
|
-
color: var(--list-item-text-color);
|
|
854
|
-
cursor: var(--vuuList-item-cursor, pointer);
|
|
855
|
-
background: var(--vuuList-item-background, var(--list-item-background));
|
|
856
|
-
font-size: var(--salt-text-fontSize);
|
|
857
|
-
text-align: var(--salt-text-textAlign);
|
|
858
|
-
line-height: var(--salt-text-lineHeight);
|
|
859
|
-
height: var(--vuuList-item-height, var(--list-item-height, auto));
|
|
860
|
-
margin-bottom: var(--list-item-gap);
|
|
861
|
-
padding: 0 var(--vuuListItem-padding, var(--salt-size-unit));
|
|
862
|
-
left: 0;
|
|
863
|
-
right: 0;
|
|
864
|
-
display: flex;
|
|
865
|
-
position: relative;
|
|
866
|
-
align-items: var(--list-item-alignItems);
|
|
867
|
-
white-space: nowrap;
|
|
868
|
-
}
|
|
869
|
-
.vuuListItem:last-child {
|
|
870
|
-
margin-bottom: 0px;
|
|
871
|
-
}
|
|
872
|
-
.vuuListItem-checkbox {
|
|
873
|
-
--list-item-background-active: var(--salt-selectable-background);
|
|
874
|
-
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
875
|
-
--list-item-text-padding: 0 0 0 var(--salt-size-unit);
|
|
876
|
-
}
|
|
877
|
-
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
|
|
878
|
-
--list-item-background: var(--list-item-background-active);
|
|
879
|
-
color: var(--list-item-text-color-active);
|
|
880
|
-
}
|
|
881
|
-
.vuuListItem.vuuDisabled {
|
|
882
|
-
--list-item-text-color: var(--salt-text-primary-foreground-disabled);
|
|
883
|
-
cursor: var(--salt-selectable-cursor-disabled);
|
|
884
|
-
}
|
|
885
|
-
.vuuListItem.vuuFocusVisible {
|
|
886
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
887
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
888
|
-
outline-offset: -2px;
|
|
889
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
890
|
-
}
|
|
891
|
-
.vuuListItem.vuuFocusVisible:after {
|
|
892
|
-
content: none;
|
|
893
|
-
}
|
|
894
|
-
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
|
|
895
|
-
outline-color: var(--list-item-selected-focus-outlineColor);
|
|
896
|
-
}
|
|
897
|
-
.vuuListItem-textWrapper {
|
|
898
|
-
flex: 1;
|
|
899
|
-
overflow: hidden;
|
|
900
|
-
padding: var(--list-item-text-padding, 0px);
|
|
901
|
-
white-space: nowrap;
|
|
902
|
-
text-overflow: ellipsis;
|
|
903
|
-
}
|
|
904
|
-
.vuuListItem-proxy {
|
|
905
|
-
position: absolute !important;
|
|
906
|
-
visibility: hidden;
|
|
907
|
-
}
|
|
908
|
-
.vuuDraggable-list-item {
|
|
909
|
-
--vuuList-item-height: 24px;
|
|
910
|
-
background-color: white;
|
|
911
|
-
}
|
|
912
|
-
.vuuListItem.vuuDraggable-dragAway {
|
|
913
|
-
display: none;
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
/* ../vuu-ui-controls/src/drag-drop/Draggable.css */
|
|
917
|
-
.vuuDraggable {
|
|
918
|
-
background: transparent;
|
|
919
|
-
box-shadow: var(--salt-overlayable-shadow-drag);
|
|
920
|
-
cursor: var(--salt-draggable-grab-cursor-active);
|
|
921
|
-
position: absolute;
|
|
922
|
-
opacity: .95;
|
|
923
|
-
z-index: 2000;
|
|
924
|
-
}
|
|
925
|
-
.vuuDraggable-spacer {
|
|
926
|
-
display: var(--vuuDraggable-display, inline-block);
|
|
927
|
-
height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
|
|
928
|
-
transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
|
|
929
|
-
width: var(--vuuDraggable-spacer-width, 0);
|
|
930
|
-
}
|
|
931
|
-
.vuuDraggable-dropIndicatorPosition {
|
|
932
|
-
display: var(--saltDraggable-display, inline-block);
|
|
933
|
-
height: 0px;
|
|
934
|
-
width: 100%;
|
|
935
|
-
}
|
|
936
|
-
.vuuDraggable-dropIndicatorContainer {
|
|
937
|
-
transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
|
|
938
|
-
}
|
|
939
|
-
.vuuDraggable-dropIndicator {
|
|
940
|
-
background-color: var(--salt-palette-accent-background);
|
|
941
|
-
height: 2px;
|
|
942
|
-
width: 100%;
|
|
943
|
-
}
|
|
944
|
-
.vuuDraggable-dropIndicator:before {
|
|
945
|
-
content: "";
|
|
946
|
-
width: 6px;
|
|
947
|
-
height: 6px;
|
|
948
|
-
border-radius: 3px;
|
|
949
|
-
background-color: var(--salt-palette-accent-background);
|
|
950
|
-
position: absolute;
|
|
951
|
-
top: -2px;
|
|
952
|
-
left: -3px;
|
|
953
|
-
}
|
|
954
|
-
.vuuDraggable-settling {
|
|
955
|
-
transition-property: left, top;
|
|
956
|
-
transition-duration: .15s;
|
|
957
|
-
transition-timing-function: ease-out;
|
|
958
|
-
}
|
|
959
|
-
.vuuDraggable-spacer {
|
|
960
|
-
order: 1;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
/* ../vuu-ui-controls/src/list/List.css */
|
|
964
|
-
.vuuList {
|
|
965
|
-
--list-background: var(--salt-container-primary-background);
|
|
966
|
-
--list-borderStyle: var(--vuuList-borderStyle,var(--salt-container-borderStyle));
|
|
967
|
-
--list-borderWidth: var(--salt-size-border);
|
|
968
|
-
--list-height: auto;
|
|
969
|
-
--list-item-height: var(--salt-size-stackable);
|
|
970
|
-
--list-item-gap: 0px;
|
|
971
|
-
--list-maxHeight: 100%;
|
|
972
|
-
--vuuDraggable-display: block;
|
|
973
|
-
--vuuDraggable-spacer-height: 0;
|
|
974
|
-
--vuuDraggable-spacer-width: 100%;
|
|
975
|
-
--vuuDraggable-transitionProp: height;
|
|
976
|
-
--vuuMeasuredContainer-height: var(--computed-list-height);
|
|
977
|
-
background: var(--list-background);
|
|
978
|
-
height: var(--saltList-height, var(--list-height));
|
|
979
|
-
max-height: var(--list-maxHeight);
|
|
980
|
-
outline: none;
|
|
981
|
-
position: relative;
|
|
982
|
-
user-select: none;
|
|
983
|
-
width: var(--saltList-width, auto);
|
|
984
|
-
padding: 0 1px;
|
|
985
|
-
}
|
|
986
|
-
.vuuList-contentSized {
|
|
987
|
-
box-sizing: content-box;
|
|
988
|
-
}
|
|
989
|
-
.vuuList-borderless {
|
|
990
|
-
--list-borderStyle: none;
|
|
991
|
-
}
|
|
992
|
-
.vuuList-viewport {
|
|
993
|
-
height: var(--computed-list-height, var(--measured-px-height));
|
|
994
|
-
overflow: auto;
|
|
995
|
-
}
|
|
996
|
-
.vuuListHeader {
|
|
997
|
-
--saltList-item-background: var(--list-item-header-background);
|
|
998
|
-
color: var(--list-item-header-color);
|
|
999
|
-
font-weight: 600;
|
|
1000
|
-
}
|
|
1001
|
-
.vuuListHeader[data-sticky=true] {
|
|
1002
|
-
--saltList-item-background: var(--list-background);
|
|
1003
|
-
position: sticky;
|
|
1004
|
-
top: 0;
|
|
1005
|
-
z-index: 1;
|
|
1006
|
-
}
|
|
1007
|
-
.vuuList-collapsible .vuuListItemHeader:after {
|
|
1008
|
-
border-width: var(--checkbox-borderWidth);
|
|
1009
|
-
border-color: var(--checkbox-borderColor);
|
|
1010
|
-
content: var(--list-item-header-twisty-content);
|
|
1011
|
-
-webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
1012
|
-
mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
1013
|
-
background: var(--list-item-header-twisty-color);
|
|
1014
|
-
height: 12px;
|
|
1015
|
-
left: var(--list-item-header-twisty-left);
|
|
1016
|
-
right: var(--list-item-header-twisty-right);
|
|
1017
|
-
margin-top: -8px;
|
|
1018
|
-
position: absolute;
|
|
1019
|
-
top: var(--list-item-header-twisty-top);
|
|
1020
|
-
transition: transform 0.3s;
|
|
1021
|
-
width: 12px;
|
|
1022
|
-
}
|
|
1023
|
-
.vuuListItemHeader[aria-expanded=false]:after {
|
|
1024
|
-
transform: rotate(-90deg);
|
|
1025
|
-
}
|
|
1026
|
-
.vuuList-scrollingContentContainer {
|
|
1027
|
-
box-sizing: inherit;
|
|
1028
|
-
position: relative;
|
|
1029
|
-
}
|
|
1030
|
-
.vuuList-virtualized .vuuListItem {
|
|
1031
|
-
line-height: 30px;
|
|
1032
|
-
position: absolute;
|
|
1033
|
-
top: 0;
|
|
1034
|
-
left: 0;
|
|
1035
|
-
right: 0;
|
|
1036
|
-
will-change: transform;
|
|
1037
|
-
}
|
|
1038
|
-
.vuuList.saltFocusVisible:after {
|
|
1039
|
-
top: 2px;
|
|
1040
|
-
right: 2px;
|
|
1041
|
-
bottom: 2px;
|
|
1042
|
-
left: 2px;
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
/* ../vuu-ui-controls/src/list/RadioIcon.css */
|
|
1046
|
-
.vuuRadioIcon {
|
|
1047
|
-
--vuu-icon-size: 12px;
|
|
1048
|
-
--vuu-icon-left: -1px;
|
|
1049
|
-
--vuu-icon-top: -1px;
|
|
1050
|
-
--vuu-icon-svg: var(--vuu-svg-radio);
|
|
1051
|
-
border-style: solid;
|
|
1052
|
-
border-color: var(--vuuRadioIcon-borderColor, var(--salt-selectable-borderColor));
|
|
1053
|
-
border-radius: 50%;
|
|
1054
|
-
border-width: 1px;
|
|
1055
|
-
display: inline-block;
|
|
1056
|
-
height: var(--vuuRadioIcon-size, 12px);
|
|
1057
|
-
position: relative;
|
|
1058
|
-
width: var(--vuuRadioIcon-size, 12px);
|
|
1059
|
-
}
|
|
1060
|
-
.vuuRadioIcon-checked {
|
|
1061
|
-
background-image: var(--vuu-svg-radio);
|
|
1062
|
-
border: none;
|
|
1063
|
-
background-repeat: no-repeat;
|
|
1064
|
-
}
|
|
1065
|
-
.vuuRadioIcon-checked:after {
|
|
1066
|
-
content: "";
|
|
1067
|
-
left: var(--vuu-icon-left, auto);
|
|
1068
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
1069
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
1070
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
1071
|
-
mask-repeat: no-repeat;
|
|
1072
|
-
-webkit-mask-repeat: no-repeat;
|
|
1073
|
-
position: absolute;
|
|
1074
|
-
top: var(--vuu-icon-top, auto);
|
|
1075
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
/* ../vuu-ui-controls/src/list/ChevronIcon.css */
|
|
1079
|
-
.vuuChevronIcon {
|
|
1080
|
-
--vuu-icon-size: 14px;
|
|
1081
|
-
--vuu-icon-left: -1px;
|
|
1082
|
-
--vuu-icon-top: -1px;
|
|
1083
|
-
height: var(--vuuChevronIcon-size, 14px);
|
|
1084
|
-
position: relative;
|
|
1085
|
-
width: var(--vuuChevronIcon-size, 14px);
|
|
1086
|
-
cursor: pointer;
|
|
1087
|
-
}
|
|
1088
|
-
.vuuChevronIcon:after {
|
|
1089
|
-
content: "";
|
|
1090
|
-
background-color: #777C94;
|
|
1091
|
-
left: var(--vuu-icon-left, auto);
|
|
1092
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
1093
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
1094
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
1095
|
-
mask-repeat: no-repeat;
|
|
1096
|
-
-webkit-mask-repeat: no-repeat;
|
|
1097
|
-
position: absolute;
|
|
1098
|
-
top: var(--vuu-icon-top, auto);
|
|
1099
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
1100
|
-
}
|
|
1101
|
-
.vuuChevronIcon.up {
|
|
1102
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-up);
|
|
1103
|
-
}
|
|
1104
|
-
.vuuChevronIcon.down {
|
|
1105
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-down);
|
|
1106
|
-
}
|
|
1107
|
-
.vuuChevronIcon.left {
|
|
1108
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-left);
|
|
1109
|
-
}
|
|
1110
|
-
.vuuChevronIcon.right {
|
|
1111
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-right);
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
/* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
|
|
1115
|
-
.vuuEditableLabel {
|
|
1116
|
-
--editableLabel-padding: var(--vuuEditableLabel-padding, 6px);
|
|
1117
|
-
--editableLabel-height: var(--vuuEditableLabel-height, 26px);
|
|
1118
|
-
--saltInput-background: transparent;
|
|
1119
|
-
--saltInput-height: calc(var(--editableLabel-height) - 4px);
|
|
1120
|
-
--saltInput-minWidth: 14px;
|
|
1121
|
-
color: inherit;
|
|
1122
|
-
cursor: default;
|
|
1123
|
-
display: flex;
|
|
1124
|
-
flex-direction: column;
|
|
1125
|
-
font-size: var(--salt-text-fontSize);
|
|
1126
|
-
height: var(--editableLabel-height);
|
|
1127
|
-
justify-content: center;
|
|
1128
|
-
outline: none;
|
|
1129
|
-
overflow: hidden;
|
|
1130
|
-
padding: 0 var(--editableLabel-padding);
|
|
1131
|
-
position: relative;
|
|
1132
|
-
text-overflow: ellipsis;
|
|
1133
|
-
white-space: nowrap;
|
|
1134
|
-
z-index: var(--salt-zIndex-default);
|
|
1135
|
-
}
|
|
1136
|
-
.vuuEditableLabel:before {
|
|
1137
|
-
content: attr(data-text);
|
|
1138
|
-
display: block;
|
|
1139
|
-
height: 0px;
|
|
1140
|
-
visibility: hidden;
|
|
1141
|
-
white-space: pre-wrap;
|
|
1142
|
-
}
|
|
1143
|
-
.vuuEditableLabel .saltInput {
|
|
1144
|
-
font-weight: var(--salt-text-fontWeight);
|
|
1145
|
-
left: var(--editableLabel-padding, 0);
|
|
1146
|
-
padding: 0;
|
|
1147
|
-
outline-style: none;
|
|
1148
|
-
position: absolute;
|
|
1149
|
-
right: var(--editableLabel-padding, 0);
|
|
1150
|
-
top: var(--saltEditableLabel-top, 2px);
|
|
1151
|
-
width: auto;
|
|
1152
|
-
}
|
|
1153
|
-
.vuuEditableLabel .saltInput-activationIndicator {
|
|
1154
|
-
display: none;
|
|
1155
|
-
}
|
|
1156
|
-
.vuuEditableLabel-input {
|
|
1157
|
-
background-color: transparent;
|
|
1158
|
-
border: none;
|
|
1159
|
-
box-sizing: content-box;
|
|
1160
|
-
color: inherit;
|
|
1161
|
-
display: block;
|
|
1162
|
-
flex: 1;
|
|
1163
|
-
font: inherit;
|
|
1164
|
-
height: 20px;
|
|
1165
|
-
margin: 0;
|
|
1166
|
-
min-width: 0;
|
|
1167
|
-
outline: none;
|
|
1168
|
-
padding: 0;
|
|
1169
|
-
}
|
|
1170
|
-
.vuuEditableLabel-label {
|
|
1171
|
-
overflow: hidden;
|
|
1172
|
-
text-overflow: ellipsis;
|
|
1173
|
-
white-space: nowrap;
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
/* ../vuu-ui-controls/src/vuu-input/VuuInput.css */
|
|
1177
|
-
.vuuInput {
|
|
1178
|
-
--vuu-icon-size: 16px;
|
|
1179
|
-
}
|
|
1180
|
-
.vuuInput-errorIcon:after {
|
|
1181
|
-
cursor: pointer;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
/* ../vuu-ui-controls/src/expando-input/ExpandoInput.css */
|
|
1185
|
-
.vuuExpandoInput {
|
|
1186
|
-
--salt-editable-secondary-background: white;
|
|
1187
|
-
--expandoInput-height: var(--vuuExpandoInput-height, 26px);
|
|
1188
|
-
--expandoInput-padding: var(--vuuExpandoInput-padding, 6px);
|
|
1189
|
-
--saltInput-height: calc(var(--vuuExpandoInput-height) - 4px);
|
|
1190
|
-
--saltInput-minWidth: var(--vuuExpandoInput-minWidth, 8px);
|
|
1191
|
-
border: var(--vuuExpandoInput-border, none);
|
|
1192
|
-
border-radius: var(--vuuExpandoInput-borderRadius, 0);
|
|
1193
|
-
color: inherit;
|
|
1194
|
-
cursor: default;
|
|
1195
|
-
display: inline-block;
|
|
1196
|
-
font-size: var(--salt-text-fontSize);
|
|
1197
|
-
height: var(--expandoInput-height);
|
|
1198
|
-
min-width: calc(var(--saltInput-minWidth) + 2 * var(--expandoInput-padding));
|
|
1199
|
-
outline: none;
|
|
1200
|
-
padding: 0 var(--expandoInput-padding);
|
|
1201
|
-
position: relative;
|
|
1202
|
-
}
|
|
1203
|
-
.vuuExpandoInput:before {
|
|
1204
|
-
content: attr(data-text);
|
|
1205
|
-
display: block;
|
|
1206
|
-
height: 0px;
|
|
1207
|
-
visibility: hidden;
|
|
1208
|
-
white-space: pre-wrap;
|
|
1209
|
-
}
|
|
1210
|
-
.vuuExpandoInput-error {
|
|
1211
|
-
border-color: var(--vuu-color-red-50);
|
|
1212
|
-
}
|
|
1213
|
-
.vuuExpandoInput .saltInput {
|
|
1214
|
-
font-weight: var(--salt-text-fontWeight);
|
|
1215
|
-
left: var(--expandoInput-padding, 0);
|
|
1216
|
-
padding: 0;
|
|
1217
|
-
outline-style: none;
|
|
1218
|
-
position: absolute;
|
|
1219
|
-
right: var(--expandoInput-padding, 0);
|
|
1220
|
-
top: var(--vuuExpandoInput-top, 2px);
|
|
1221
|
-
width: auto;
|
|
1222
|
-
}
|
|
1223
|
-
.vuuExpandoInput .saltInput-activationIndicator {
|
|
1224
|
-
display: none;
|
|
1225
|
-
}
|
|
1226
|
-
.vuuExpandoInput-input {
|
|
1227
|
-
background-color: transparent;
|
|
1228
|
-
border: none;
|
|
1229
|
-
box-sizing: content-box;
|
|
1230
|
-
display: block;
|
|
1231
|
-
flex: 1;
|
|
1232
|
-
font: inherit;
|
|
1233
|
-
height: 20px;
|
|
1234
|
-
margin: 0;
|
|
1235
|
-
min-width: 0;
|
|
1236
|
-
outline: none;
|
|
1237
|
-
padding: 0;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
/* ../vuu-ui-controls/src/inputs/Checkbox.css */
|
|
1241
|
-
.vuuCheckbox {
|
|
1242
|
-
--vuuCheckboxIcon-background-checked-enabled: var(--vuu-color-purple-10);
|
|
1243
|
-
display: flex;
|
|
1244
|
-
height: 24px;
|
|
1245
|
-
align-items: center;
|
|
1246
|
-
gap: 6px;
|
|
1247
|
-
color: var(--light-text-primary, #15171B);
|
|
1248
|
-
font-family: Nunito Sans A-Variant, serif;
|
|
1249
|
-
font-feature-settings:
|
|
1250
|
-
"ss02" on,
|
|
1251
|
-
"ss01" on,
|
|
1252
|
-
"salt" on,
|
|
1253
|
-
"liga" off;
|
|
1254
|
-
font-size: 12px;
|
|
1255
|
-
font-weight: 400;
|
|
1256
|
-
cursor: pointer;
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
/* ../vuu-ui-controls/src/inputs/RadioButton.css */
|
|
1260
|
-
.vuuRadioButton {
|
|
1261
|
-
display: flex;
|
|
1262
|
-
height: 24px;
|
|
1263
|
-
align-items: center;
|
|
1264
|
-
gap: 6px;
|
|
1265
|
-
color: var(--light-text-primary, #15171B);
|
|
1266
|
-
font-family: Nunito Sans A-Variant, sans-serif;
|
|
1267
|
-
font-feature-settings:
|
|
1268
|
-
"ss02" on,
|
|
1269
|
-
"ss01" on,
|
|
1270
|
-
"salt" on,
|
|
1271
|
-
"liga" off;
|
|
1272
|
-
font-size: 12px;
|
|
1273
|
-
font-weight: 400;
|
|
1274
|
-
cursor: pointer;
|
|
1275
|
-
}
|
|
1276
|
-
.radio {
|
|
1277
|
-
position: relative;
|
|
1278
|
-
height: 12px;
|
|
1279
|
-
}
|
|
1280
|
-
input[type=radio] {
|
|
1281
|
-
position: absolute;
|
|
1282
|
-
-webkit-appearance: none;
|
|
1283
|
-
appearance: none;
|
|
1284
|
-
width: 100%;
|
|
1285
|
-
height: 100%;
|
|
1286
|
-
border-radius: 50%;
|
|
1287
|
-
margin: 0;
|
|
1288
|
-
top: 0;
|
|
1289
|
-
}
|
|
1290
|
-
|
|
1291
|
-
/* ../vuu-table/src/column-header-pill/ColumnHeaderPill.css */
|
|
1292
|
-
.vuuColumnHeaderPill {
|
|
1293
|
-
--vuu-icon-size: 14px;
|
|
1294
|
-
--menu-item-icon-color: black;
|
|
1295
|
-
--vuu-icon-color: white;
|
|
1296
|
-
--vuu-icon-height: 12px;
|
|
1297
|
-
--vuu-icon-width: 12px;
|
|
1298
|
-
align-items: center;
|
|
1299
|
-
background: var(--salt-taggable-background-active);
|
|
1300
|
-
color: white;
|
|
1301
|
-
border-radius: 4px;
|
|
1302
|
-
flex: var(--vuuColumnHeaderPill-flex, none);
|
|
1303
|
-
font-size: 11px;
|
|
1304
|
-
gap: 4px;
|
|
1305
|
-
height: 16px;
|
|
1306
|
-
display: flex;
|
|
1307
|
-
margin: var(--vuuColumnHeaderPill-margin, 0);
|
|
1308
|
-
padding: 0 6px;
|
|
1309
|
-
position: relative;
|
|
1310
|
-
}
|
|
1311
|
-
.vuuColumnHeaderPill:hover {
|
|
1312
|
-
--vuu-icon-color: var(--vuu-color-gray-80);
|
|
1313
|
-
background-color: var(--salt-taggable-background-hover);
|
|
1314
|
-
color: var(--vuu-color-gray-80);
|
|
1315
|
-
}
|
|
1316
|
-
.vuuColumnHeaderPill-removeButton {
|
|
1317
|
-
cursor: pointer;
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
/* ../vuu-table/src/column-header-pill/GroupColumnPill.css */
|
|
1321
|
-
.vuuSortPosition {
|
|
1322
|
-
font-size: 11px;
|
|
1323
|
-
font-weight: 700;
|
|
1324
|
-
padding-top: 1px;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
/* ../vuu-table/src/column-header-pill/SortIndicator.css */
|
|
1328
|
-
.vuuSortPosition {
|
|
1329
|
-
font-size: 11px;
|
|
1330
|
-
font-weight: 700;
|
|
1331
|
-
padding-top: 1px;
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
|
-
/* ../vuu-table/src/column-resizing/ColumnResizer.css */
|
|
1335
|
-
.vuuColumnResizerNext {
|
|
1336
|
-
background-color: var(--columnResizer-color);
|
|
1337
|
-
cursor: col-resize;
|
|
1338
|
-
height: var(--header-height);
|
|
1339
|
-
margin-left: var(--columnResizer-left, auto);
|
|
1340
|
-
position: absolute;
|
|
1341
|
-
right: -5px;
|
|
1342
|
-
width: 8px;
|
|
1343
|
-
z-index: 1;
|
|
1344
|
-
}
|
|
1345
|
-
.vuuColumnResizerNext:hover {
|
|
1346
|
-
--columnResizer-color: var(--vuu-color-purple-10);
|
|
1347
|
-
}
|
|
1348
|
-
.vuuColumnResizerNext:after {
|
|
1349
|
-
background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
|
|
1350
|
-
bottom: 0;
|
|
1351
|
-
content: "";
|
|
1352
|
-
position: absolute;
|
|
1353
|
-
top: 0;
|
|
1354
|
-
right: 3px;
|
|
1355
|
-
height: var(--columnResizer-height, 0);
|
|
1356
|
-
width: 2px;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
/* ../vuu-table/src/header-cell/GroupHeaderCell.css */
|
|
1360
|
-
.vuu-theme {
|
|
1361
|
-
--svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
|
|
1362
|
-
}
|
|
1363
|
-
.vuuTableGroupHeaderCell {
|
|
1364
|
-
--vuuColumnHeaderPill-margin: 0;
|
|
1365
|
-
--cell-align: "flex-start";
|
|
1366
|
-
text-align: left;
|
|
1367
|
-
background: var(--dataTable-background);
|
|
1368
|
-
cursor: default;
|
|
1369
|
-
height: var(--vuuTableHeaderHeight);
|
|
1370
|
-
}
|
|
1371
|
-
.vuuTableGroupHeaderCell-inner {
|
|
1372
|
-
align-items: center;
|
|
1373
|
-
display: flex;
|
|
1374
|
-
gap: 4px;
|
|
1375
|
-
height: 100%;
|
|
1376
|
-
padding-left: 1px;
|
|
1377
|
-
}
|
|
1378
|
-
.vuuTableGroupHeaderCell-col {
|
|
1379
|
-
align-items: center;
|
|
1380
|
-
background-color: inherit;
|
|
1381
|
-
display: inline-flex;
|
|
1382
|
-
flex: 0 1 auto;
|
|
1383
|
-
height: calc(var(--vuuTableHeaderHeight) - 2px);
|
|
1384
|
-
justify-content: space-between;
|
|
1385
|
-
padding-right: 8px;
|
|
1386
|
-
position: relative;
|
|
1387
|
-
}
|
|
1388
|
-
.vuuTableGroupHeaderCell-label {
|
|
1389
|
-
align-items: center;
|
|
1390
|
-
display: flex;
|
|
1391
|
-
flex: 0 0 auto;
|
|
1392
|
-
}
|
|
1393
|
-
.vuuTableGroupHeaderCell-close {
|
|
1394
|
-
--vuu-icon-height: 18px;
|
|
1395
|
-
--vuu-icon-width: 18px;
|
|
1396
|
-
cursor: pointer;
|
|
1397
|
-
left: 3px;
|
|
1398
|
-
}
|
|
1399
|
-
.vuuTableGroupHeaderCell-resizing {
|
|
1400
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
1401
|
-
--columnResizer-height: var(--table-height);
|
|
1402
|
-
--columnResizer-width: 2px;
|
|
1403
|
-
}
|
|
1404
|
-
.vuuTableGroupHeaderCell-pending {
|
|
1405
|
-
--pending-content: "";
|
|
1406
|
-
}
|
|
1407
|
-
.vuuTableGroupHeaderCell-col:has(+ .vuuColumnResizer):after {
|
|
1408
|
-
content: var(--pending-content);
|
|
1409
|
-
width: 24px;
|
|
1410
|
-
height: 24px;
|
|
1411
|
-
background-image: var(--svg-spinner);
|
|
1412
|
-
background-repeat: no-repeat;
|
|
1413
|
-
background-size: cover;
|
|
1414
|
-
}
|
|
1415
|
-
|
|
1416
|
-
/* ../vuu-table/src/column-menu/ColumnMenu.css */
|
|
1417
|
-
.vuuMenuItem {
|
|
1418
|
-
--vuu-svg-cog: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.9533 8.65331C12.98 8.43998 13 8.22665 13 7.99998C13 7.77331 12.98 7.55998 12.9533 7.34665L14.36 6.24665C14.4867 6.14665 14.52 5.96665 14.44 5.81998L13.1067 3.51331C13.0267 3.36665 12.8467 3.31331 12.7 3.36665L11.04 4.03331C10.6933 3.76665 10.32 3.54665 9.91333 3.37998L9.66 1.61331C9.64 1.45331 9.5 1.33331 9.33333 1.33331H6.66667C6.5 1.33331 6.36 1.45331 6.34 1.61331L6.08667 3.37998C5.68 3.54665 5.30667 3.77331 4.96 4.03331L3.3 3.36665C3.14667 3.30665 2.97333 3.36665 2.89333 3.51331L1.56 5.81998C1.47333 5.96665 1.51333 6.14665 1.64 6.24665L3.04667 7.34665C3.02 7.55998 3 7.77998 3 7.99998C3 8.21998 3.02 8.43998 3.04667 8.65331L1.64 9.75331C1.51333 9.85331 1.48 10.0333 1.56 10.18L2.89333 12.4866C2.97333 12.6333 3.15333 12.6866 3.3 12.6333L4.96 11.9666C5.30667 12.2333 5.68 12.4533 6.08667 12.62L6.34 14.3866C6.36 14.5466 6.5 14.6666 6.66667 14.6666H9.33333C9.5 14.6666 9.64 14.5466 9.66 14.3866L9.91333 12.62C10.32 12.4533 10.6933 12.2266 11.04 11.9666L12.7 12.6333C12.8533 12.6933 13.0267 12.6333 13.1067 12.4866L14.44 10.18C14.52 10.0333 14.4867 9.85331 14.36 9.75331L12.9533 8.65331V8.65331ZM8 10.3333C6.71333 10.3333 5.66667 9.28665 5.66667 7.99998C5.66667 6.71331 6.71333 5.66665 8 5.66665C9.28667 5.66665 10.3333 6.71331 10.3333 7.99998C10.3333 9.28665 9.28667 10.3333 8 10.3333Z"/></svg>');
|
|
1419
|
-
}
|
|
1420
|
-
.vuuTable-columnMenu {
|
|
1421
|
-
--vuu-icon-color: #606477;
|
|
1422
|
-
--vuu-icon-height: 20px;
|
|
1423
|
-
--vuu-icon-left: 0px;
|
|
1424
|
-
--vuu-icon-size: 16px;
|
|
1425
|
-
--vuu-icon-top: 0px;
|
|
1426
|
-
--vuu-icon-width: 20px;
|
|
1427
|
-
border-radius: 4px;
|
|
1428
|
-
cursor: pointer;
|
|
1429
|
-
display: inline-block;
|
|
1430
|
-
flex: 0 0 20px;
|
|
1431
|
-
padding: 2px;
|
|
1432
|
-
margin: var(--vuuTable-columnMenu-margin, 0);
|
|
1433
|
-
width: auto;
|
|
1434
|
-
}
|
|
1435
|
-
.vuuTable-columnMenu:hover {
|
|
1436
|
-
--vuu-icon-color: #15171B;
|
|
1437
|
-
background-color: #F37880;
|
|
1438
|
-
}
|
|
1439
|
-
.vuuTable-columnMenu-open:hover,
|
|
1440
|
-
.vuuTable-columnMenu-open {
|
|
1441
|
-
background-color: #6D18BD;
|
|
1442
|
-
--vuu-icon-color: white;
|
|
1443
|
-
}
|
|
1444
|
-
[data-icon=cog] {
|
|
1445
|
-
--vuu-icon-svg: var(--vuu-svg-cog);
|
|
1446
|
-
--vuu-icon-size: 14px;
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
/* ../vuu-table/src/header-cell/HeaderCell.css */
|
|
1450
|
-
.vuuTableGroupHeaderCell,
|
|
1451
|
-
.vuuTableHeaderCell {
|
|
1452
|
-
--cell-align: "flex-start";
|
|
1453
|
-
--vuuColumnHeaderPill-margin: 0;
|
|
1454
|
-
--vuuColumnHeaderPill-flex: 0 0 24px;
|
|
1455
|
-
align-items: center;
|
|
1456
|
-
background-color: var(--vuuTableHeaderCell-background, inherit);
|
|
1457
|
-
border-bottom: 1px solid #ccc;
|
|
1458
|
-
border-right-color: var(--cell-borderColor);
|
|
1459
|
-
border-right-style: solid;
|
|
1460
|
-
border-right-width: 1px;
|
|
1461
|
-
box-sizing: border-box;
|
|
1462
|
-
cursor: default;
|
|
1463
|
-
display: inline-flex;
|
|
1464
|
-
gap: 4px;
|
|
1465
|
-
height: var(--header-height);
|
|
1466
|
-
padding: 0 12px 0 4px;
|
|
1467
|
-
position: relative;
|
|
1468
|
-
vertical-align: top;
|
|
1469
|
-
}
|
|
1470
|
-
.vuuTableHeaderCell-right {
|
|
1471
|
-
--columnResizer-left: 0;
|
|
1472
|
-
--vuuTable-columnMenu-margin: 0;
|
|
1473
|
-
--vuuColumnHeaderPill-margin: 0 3px 0 0;
|
|
1474
|
-
--column-menu-left: 2px;
|
|
1475
|
-
justify-content: flex-end;
|
|
1476
|
-
padding: 0 3px 0 12px;
|
|
1477
|
-
}
|
|
1478
|
-
.vuuTableHeaderCell-label {
|
|
1479
|
-
flex: 0 1 auto;
|
|
1480
|
-
line-height: calc(var(--header-height) - 1px);
|
|
1481
|
-
overflow: hidden;
|
|
1482
|
-
text-overflow: ellipsis;
|
|
1483
|
-
white-space: nowrap;
|
|
1484
|
-
}
|
|
1485
|
-
.vuuTableHeaderCell-right .vuuTableHeaderCell-label {
|
|
1486
|
-
text-align: right;
|
|
1487
|
-
}
|
|
1488
|
-
.vuuTableHeaderCell-resizing {
|
|
1489
|
-
--columnResizer-height: var(--table-height);
|
|
1490
|
-
}
|
|
1491
|
-
.vuuTableHeaderCell.vuuPinLeft {
|
|
1492
|
-
padding-left: 2px;
|
|
1493
|
-
}
|
|
1494
|
-
.vuuTableHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before {
|
|
1495
|
-
--height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
1496
|
-
--inset-r: calc(var(--pin-width) - 2px);
|
|
1497
|
-
--inset-b: calc(var(--height) - 2px);
|
|
1498
|
-
--clip-path: polygon( 0% 0%, 0% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
|
|
1499
|
-
background-color: transparent;
|
|
1500
|
-
border-color: var(--vuu-color-gray-40);
|
|
1501
|
-
border-width: 1px;
|
|
1502
|
-
border-style: solid solid solid solid;
|
|
1503
|
-
border-radius: 4px;
|
|
1504
|
-
box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
|
|
1505
|
-
clip-path: var(--clip-path);
|
|
1506
|
-
content: "";
|
|
1507
|
-
position: absolute;
|
|
1508
|
-
width: var(--pin-width);
|
|
1509
|
-
top: 0;
|
|
1510
|
-
bottom: 0;
|
|
1511
|
-
right: 3px;
|
|
1512
|
-
height: var(--height);
|
|
1513
|
-
z-index: -5;
|
|
1514
|
-
}
|
|
1515
|
-
.vuuTableHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before {
|
|
1516
|
-
--height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
1517
|
-
--inset-r: calc(var(--pin-width) - 2px);
|
|
1518
|
-
--inset-b: calc(var(--height) - 2px);
|
|
1519
|
-
--clip-path: polygon( -20% 0%, -20% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
|
|
1520
|
-
background-color: transparent;
|
|
1521
|
-
border-color: #A9AAAD;
|
|
1522
|
-
border-width: 1px;
|
|
1523
|
-
border-style: solid solid solid solid;
|
|
1524
|
-
border-radius: 4px;
|
|
1525
|
-
box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
|
|
1526
|
-
clip-path: var(--clip-path);
|
|
1527
|
-
content: "";
|
|
1528
|
-
position: absolute;
|
|
1529
|
-
width: var(--pin-width);
|
|
1530
|
-
top: 0;
|
|
1531
|
-
bottom: 0;
|
|
1532
|
-
right: 0px;
|
|
1533
|
-
height: var(--height);
|
|
1534
|
-
z-index: -5;
|
|
1535
|
-
}
|
|
1536
|
-
.vuuTableHeaderCell.vuuDraggable-dragAway {
|
|
1537
|
-
display: none;
|
|
1538
|
-
}
|
|
1539
|
-
.vuuTable-headingCell {
|
|
1540
|
-
background: var(--dataTable-background);
|
|
1541
|
-
border-color: var(--salt-separable-tertiary-borderColor);
|
|
1542
|
-
border-style: solid solid solid none;
|
|
1543
|
-
border-width: 1px;
|
|
1544
|
-
color: var(--salt-text-secondary-foreground);
|
|
1545
|
-
display: inline-block;
|
|
1546
|
-
height: var(--header-height);
|
|
1547
|
-
padding: 0 !important;
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
/* ../vuu-table/src/table-cell/TableCell.css */
|
|
1551
|
-
.vuuTableCell {
|
|
1552
|
-
border-right-color: var(--cell-borderColor);
|
|
1553
|
-
border-right-style: solid;
|
|
1554
|
-
border-right-width: 1px;
|
|
1555
|
-
display: inline-block;
|
|
1556
|
-
height: 100%;
|
|
1557
|
-
overflow: hidden;
|
|
1558
|
-
padding: var(--vuuTableCell-padding, 0 11px 0 12px);
|
|
1559
|
-
text-overflow: ellipsis;
|
|
1560
|
-
vertical-align: top;
|
|
1561
|
-
}
|
|
1562
|
-
.vuuTableCell-right {
|
|
1563
|
-
text-align: right;
|
|
1564
|
-
}
|
|
1565
|
-
.vuuTableCell-editable {
|
|
1566
|
-
display: inline-flex;
|
|
1567
|
-
line-height: 18px;
|
|
1568
|
-
padding-bottom: 1px;
|
|
1569
|
-
padding-top: 1px;
|
|
1570
|
-
text-overflow: unset;
|
|
1571
|
-
}
|
|
1572
|
-
.vuuTableCell:focus {
|
|
1573
|
-
outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
|
|
1574
|
-
outline-offset: -2px;
|
|
1575
|
-
box-shadow: inset 0 0 0 var(--cell-outline-width) white;
|
|
1576
|
-
border-bottom: none;
|
|
1577
|
-
}
|
|
1578
|
-
.vuuTableRow-selected .vuuTableCell:not(.vuuTableCell-editable):focus {
|
|
1579
|
-
outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
|
|
1580
|
-
outline-offset: -1px;
|
|
1581
|
-
}
|
|
1582
|
-
.vuuTableCell-editable:focus {
|
|
1583
|
-
outline: none;
|
|
1584
|
-
}
|
|
1585
|
-
|
|
1586
|
-
/* ../vuu-table/src/table-cell/TableGroupCell.css */
|
|
1587
|
-
.vuuTableGroupCell {
|
|
1588
|
-
--group-cell-spacer-width: 20px;
|
|
1589
|
-
align-items: center;
|
|
1590
|
-
border-right-color: var(--vuuTableGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));
|
|
1591
|
-
border-right-style: solid;
|
|
1592
|
-
border-right-width: 1px;
|
|
1593
|
-
cursor: pointer;
|
|
1594
|
-
display: inline-flex;
|
|
1595
|
-
height: var(--row-height);
|
|
1596
|
-
line-height: 16px;
|
|
1597
|
-
}
|
|
1598
|
-
.vuuTableGroupCell-toggle {
|
|
1599
|
-
--vuu-icon-height: 16px;
|
|
1600
|
-
--vuu-icon-size: 16px;
|
|
1601
|
-
--vuu-icon-width: 8px;
|
|
1602
|
-
margin-right: 4px;
|
|
1603
|
-
transition: transform 0.25s;
|
|
1604
|
-
transform: var(--toggle-icon-transform);
|
|
1605
|
-
}
|
|
1606
|
-
.vuuTableGroupCell-spacer {
|
|
1607
|
-
width: var(--group-cell-spacer-width);
|
|
1608
|
-
}
|
|
1609
|
-
|
|
1610
|
-
/* ../vuu-table/src/Row.css */
|
|
1611
|
-
.vuuTableRow {
|
|
1612
|
-
background: var(--row-background,#fff);
|
|
1613
|
-
border-bottom: 1px solid var(--row-borderColor);
|
|
1614
|
-
box-sizing: border-box;
|
|
1615
|
-
height: var(--row-height);
|
|
1616
|
-
line-height: calc(var(--row-height) - 1px);
|
|
1617
|
-
position: absolute;
|
|
1618
|
-
top: 0;
|
|
1619
|
-
white-space: nowrap;
|
|
1620
|
-
}
|
|
1621
|
-
.vuuTableRow-even {
|
|
1622
|
-
--row-background: var(--row-background-even);
|
|
1623
|
-
}
|
|
1624
|
-
.vuuTableRow-highlighted {
|
|
1625
|
-
background-color: var(--vuu-color-gray-10);
|
|
1626
|
-
}
|
|
1627
|
-
.vuuTableRow-selected,
|
|
1628
|
-
.vuuTableRow-selectedEnd {
|
|
1629
|
-
background-color: rgb(235, 235, 236);
|
|
1630
|
-
}
|
|
1631
|
-
.vuuTableRow-selectedStart {
|
|
1632
|
-
--vuu-selection-decorator-left-radius: 5px 0 0 0;
|
|
1633
|
-
--vuu-selection-decorator-right-radius: 0 5px 0 0;
|
|
1634
|
-
border-radius: 5px 5px 0 0;
|
|
1635
|
-
}
|
|
1636
|
-
.vuuTableRow-selectedEnd {
|
|
1637
|
-
--vuu-selection-decorator-left-radius: 0 0 0 5px;
|
|
1638
|
-
--vuu-selection-decorator-right-radius: 0 0 5px 0;
|
|
1639
|
-
border-radius: 0 0 5px 5px;
|
|
1640
|
-
}
|
|
1641
|
-
.vuuTableRow-selectedStart.vuuTableRow-selectedEnd {
|
|
1642
|
-
--vuu-selection-decorator-left-radius: 5px 0 0 5px;
|
|
1643
|
-
--vuu-selection-decorator-right-radius: 0 5px 5px 0;
|
|
1644
|
-
border-radius: 5px 5px 5px 5px;
|
|
1645
|
-
}
|
|
1646
|
-
.vuuTableRow-selectedStart:after {
|
|
1647
|
-
content: "";
|
|
1648
|
-
position: absolute;
|
|
1649
|
-
top: 0;
|
|
1650
|
-
left: 4px;
|
|
1651
|
-
height: 1px;
|
|
1652
|
-
background-color: var(--vuu-color-purple-10);
|
|
1653
|
-
width: calc(var(--content-width) - 8px);
|
|
1654
|
-
z-index: 1;
|
|
1655
|
-
}
|
|
1656
|
-
.vuuTableRow-selectedEnd {
|
|
1657
|
-
border-bottom-color: var(--vuu-color-purple-10);
|
|
1658
|
-
}
|
|
1659
|
-
.vuuTableRow-selectionDecorator {
|
|
1660
|
-
background-color: var(--vuu-selection-decorator-bg, white);
|
|
1661
|
-
display: inline-block;
|
|
1662
|
-
position: relative;
|
|
1663
|
-
height: var(--row-height);
|
|
1664
|
-
width: 4px;
|
|
1665
|
-
z-index: 2;
|
|
1666
|
-
}
|
|
1667
|
-
.vuuTableRow-selectionDecorator.vuuStickyLeft {
|
|
1668
|
-
left: 0;
|
|
1669
|
-
position: sticky;
|
|
1670
|
-
}
|
|
1671
|
-
.vuuTableRow-selectionDecorator.vuuStickyRight {
|
|
1672
|
-
right: 0;
|
|
1673
|
-
position: sticky;
|
|
1674
|
-
}
|
|
1675
|
-
.vuuTableRow-selected {
|
|
1676
|
-
--vuu-selection-decorator-bg: var(--vuu-color-purple-10);
|
|
1677
|
-
}
|
|
1678
|
-
.vuuTableRow-selectedStart {
|
|
1679
|
-
--vuu-selection-decorator-bg: white;
|
|
1680
|
-
}
|
|
1681
|
-
.vuuTableRow-selectedEnd {
|
|
1682
|
-
--vuu-selection-decorator-bg: white;
|
|
1683
|
-
}
|
|
1684
|
-
.vuuTableRow-selectedStart.vuuTableRow-selectedEnd {
|
|
1685
|
-
}
|
|
1686
|
-
.vuuTableRow-selectedStart .vuuTableRow-selectionDecorator:before,
|
|
1687
|
-
.vuuTableRow-selectedEnd .vuuTableRow-selectionDecorator:before {
|
|
1688
|
-
content: "";
|
|
1689
|
-
top: 0;
|
|
1690
|
-
right: 0;
|
|
1691
|
-
bottom: 0;
|
|
1692
|
-
left: 0;
|
|
1693
|
-
position: absolute;
|
|
1694
|
-
background-color: var(--vuu-color-purple-10);
|
|
1695
|
-
}
|
|
1696
|
-
.vuuTableRow-selectionDecorator.vuuStickyLeft:before {
|
|
1697
|
-
border-radius: var(--vuu-selection-decorator-left-radius, 0);
|
|
1698
|
-
}
|
|
1699
|
-
.vuuTableRow-selectionDecorator.vuuStickyRight:before {
|
|
1700
|
-
border-radius: var(--vuu-selection-decorator-right-radius, 0);
|
|
1701
|
-
}
|
|
1702
|
-
.vuuTableRow-expanded {
|
|
1703
|
-
--toggle-icon-transform: rotate(90deg);
|
|
1704
|
-
}
|
|
1705
|
-
.vuuDraggable .vuuTableRow {
|
|
1706
|
-
--cell-borderColor: transparent;
|
|
1707
|
-
--vuu-selection-decorator-bg: transparent;
|
|
1708
|
-
transform: none !important;
|
|
1709
|
-
z-index: 1;
|
|
1710
|
-
}
|
|
1711
|
-
|
|
1712
|
-
/* ../vuu-table/src/Table.css */
|
|
1713
|
-
.vuuTable {
|
|
1714
|
-
--vuu-table-cell-outlineWidth: 1px;
|
|
1715
|
-
--table-height: var(--measured-px-height);
|
|
1716
|
-
--table-width: var(--measured-px-width);
|
|
1717
|
-
--vuu-table-next-selection-bookend-width: 4px;
|
|
1718
|
-
--columnResizer-color: transparent;
|
|
1719
|
-
--row-background: white;
|
|
1720
|
-
--cell-borderColor: transparent;
|
|
1721
|
-
--row-borderColor: var(--row-background);
|
|
1722
|
-
--table-background: var(--salt-container-primary-background);
|
|
1723
|
-
font-family: var(--vuuTable-fontFamily,var(--salt-typography-fontFamily, sans-serif));
|
|
1724
|
-
font-size: var(--vuuTable-fontSize,var(--salt-text-fontSize, 12px));
|
|
1725
|
-
position: relative;
|
|
1726
|
-
user-select: none;
|
|
1727
|
-
}
|
|
1728
|
-
.vuuTable-zebra {
|
|
1729
|
-
--row-background-even: var(--vuu-color-gray-25) ;
|
|
1730
|
-
}
|
|
1731
|
-
.vuuTable-colLines {
|
|
1732
|
-
--cell-borderColor: var(--vuu-color-gray-03);
|
|
1733
|
-
}
|
|
1734
|
-
.vuuTable-rowLines {
|
|
1735
|
-
--row-borderColor: var(--vuu-color-gray-03);
|
|
1736
|
-
}
|
|
1737
|
-
.vuuTable-highlight .vuuTableRow:hover {
|
|
1738
|
-
background-color: var(--vuu-color-pink-10-fade-20);
|
|
1739
|
-
}
|
|
1740
|
-
.vuuTable-scrollbarContainer {
|
|
1741
|
-
--scroll-content-width: 1100px;
|
|
1742
|
-
border-bottom: none !important;
|
|
1743
|
-
border-top: none !important;
|
|
1744
|
-
border-left: solid 1px var(--salt-container-primary-borderColor);
|
|
1745
|
-
height: var(--viewport-body-height);
|
|
1746
|
-
left: 0px;
|
|
1747
|
-
overflow: auto;
|
|
1748
|
-
position: absolute;
|
|
1749
|
-
top: var(--total-header-height);
|
|
1750
|
-
width: var(--table-width);
|
|
1751
|
-
}
|
|
1752
|
-
.vuuTable-scrollbarContainer::-webkit-scrollbar {
|
|
1753
|
-
border: none;
|
|
1754
|
-
width: 10px;
|
|
1755
|
-
}
|
|
1756
|
-
.vuuTable-scrollbarContainer::-webkit-scrollbar:horizontal {
|
|
1757
|
-
height: 10px;
|
|
1758
|
-
}
|
|
1759
|
-
.vuuTable-scrollbarContainer::-webkit-scrollbar-track {
|
|
1760
|
-
background-color: white;
|
|
1761
|
-
}
|
|
1762
|
-
.vuuTable-scrollbarContainer::-webkit-scrollbar-thumb {
|
|
1763
|
-
background-clip: padding-box;
|
|
1764
|
-
border-radius: 10px;
|
|
1765
|
-
border: 2px solid rgba(0, 0, 0, 0);
|
|
1766
|
-
background-color: var(--vuu-color-gray-30);
|
|
1767
|
-
}
|
|
1768
|
-
.vuuTable-scrollbarContent {
|
|
1769
|
-
height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
|
|
1770
|
-
position: absolute;
|
|
1771
|
-
width: var(--content-width);
|
|
1772
|
-
}
|
|
1773
|
-
.vuuTable-contentContainer {
|
|
1774
|
-
background-color: var(--salt-container-primary-background);
|
|
1775
|
-
height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
1776
|
-
position: relative;
|
|
1777
|
-
overflow: auto;
|
|
1778
|
-
overscroll-behavior: none;
|
|
1779
|
-
width: calc(var(--table-width) - var(--vertical-scrollbar-width));
|
|
1780
|
-
}
|
|
1781
|
-
.vuuTable-contentContainer::-webkit-scrollbar {
|
|
1782
|
-
display: none;
|
|
1783
|
-
}
|
|
1784
|
-
.vuuTable-table {
|
|
1785
|
-
position: absolute;
|
|
1786
|
-
top: 0;
|
|
1787
|
-
left: 0;
|
|
1788
|
-
table-layout: fixed;
|
|
1789
|
-
width: var(--content-width);
|
|
1790
|
-
margin: 0;
|
|
1791
|
-
border: none;
|
|
1792
|
-
background-color: #fff;
|
|
1793
|
-
border-collapse: separate;
|
|
1794
|
-
border-spacing: 0;
|
|
1795
|
-
}
|
|
1796
|
-
.vuuTable-body {
|
|
1797
|
-
height: var(--content-height);
|
|
1798
|
-
}
|
|
1799
|
-
.vuuPinLeft,
|
|
1800
|
-
.vuuPinRight {
|
|
1801
|
-
background-color: inherit;
|
|
1802
|
-
position: sticky;
|
|
1803
|
-
z-index: 1;
|
|
1804
|
-
}
|
|
1805
|
-
.vuuTable-col-headings {
|
|
1806
|
-
background-color: white;
|
|
1807
|
-
padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
|
|
1808
|
-
position: sticky;
|
|
1809
|
-
top: 0;
|
|
1810
|
-
z-index: 1;
|
|
1811
|
-
}
|
|
1812
|
-
.vuuTable-col-headers {
|
|
1813
|
-
background-color: var(--table-background);
|
|
1814
|
-
white-space: nowrap;
|
|
1815
|
-
}
|
|
1816
|
-
.sizer-cell {
|
|
1817
|
-
background-color: green !important;
|
|
1818
|
-
border: none !important;
|
|
1819
|
-
height: 0px;
|
|
1820
|
-
}
|
|
1821
|
-
.vuuDraggable-vuuTable {
|
|
1822
|
-
--header-height: 25px;
|
|
1823
|
-
--vuuTableHeaderCell-background: var(--vuu-color-gray-25);
|
|
1824
|
-
}
|
|
1825
|
-
.vuuDraggable-vuuTable {
|
|
1826
|
-
--row-height: 25px;
|
|
1827
|
-
}
|
|
1828
|
-
|
|
1829
|
-
/* ../vuu-table/src/cell-renderers/input-cell/InputCell.css */
|
|
1830
|
-
.vuuTableInputCell.saltInput-primary {
|
|
1831
|
-
--salt-focused-outlineStyle: none;
|
|
1832
|
-
--saltInput-height: 17px;
|
|
1833
|
-
--saltInput-minHeight: 17px;
|
|
1834
|
-
border-radius: 4px;
|
|
1835
|
-
font-weight: 500;
|
|
1836
|
-
}
|
|
1837
|
-
.vuuTableCell:focus .vuuTableInputCell.saltInput-primary,
|
|
1838
|
-
.vuuTableInputCell.saltInput-primary.saltInput-focused {
|
|
1839
|
-
border: solid 2px var(--vuu-color-purple-10);
|
|
1840
|
-
padding: 0 3px;
|
|
1841
|
-
}
|
|
1842
|
-
.vuuTableInputCell-icon {
|
|
1843
|
-
--vuu-icon-height: 13px;
|
|
1844
|
-
--vuu-icon-size: 15px;
|
|
1845
|
-
--vuu-icon-width: 12px;
|
|
1846
|
-
border-radius: 10px;
|
|
1847
|
-
}
|
|
1848
|
-
.vuuTableCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,
|
|
1849
|
-
.vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error {
|
|
1850
|
-
border: solid 2px var(--vuu-color-red-50);
|
|
1851
|
-
}
|
|
1852
|
-
.vuuTableInputCell-error.saltInput-primary {
|
|
1853
|
-
border: solid 1px var(--vuu-color-red-50);
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
/* ../vuu-table/src/cell-renderers/toggle-cell/ToggleCell.css */
|
|
1857
|
-
.vuuTableToggleCell {
|
|
1858
|
-
--saltButton-borderRadius: 4px;
|
|
1859
|
-
--saltButton-height: 16px;
|
|
1860
|
-
font-weight: 500;
|
|
1861
|
-
position: relative;
|
|
1862
|
-
top: 1px;
|
|
1863
|
-
}
|
|
1864
|
-
.vuuTableToggleCell-side {
|
|
1865
|
-
--saltButton-minWidth: 40px;
|
|
1866
|
-
}
|
|
1867
|
-
.vuuTableToggleCell.vuuCycleStateButton-buy {
|
|
1868
|
-
background-color: var(--vuu-color-green-50);
|
|
1869
|
-
}
|
|
1870
|
-
.vuuTableToggleCell.vuuCycleStateButton-sell {
|
|
1871
|
-
background-color: var(--vuu-color-red-50);
|
|
1872
|
-
}
|
|
1873
|
-
.vuuTableCell .vuuTableToggleCell:focus {
|
|
1874
|
-
border: solid 2px var(--vuu-color-purple-10) !important;
|
|
1875
|
-
color: white !important;
|
|
1876
|
-
height: 18px !important;
|
|
1877
|
-
top: 0px !important;
|
|
1878
|
-
}
|
|
1879
|
-
|
|
1880
|
-
/* ../vuu-ui-controls/src/instrument-picker/SearchCell.css */
|
|
1881
|
-
.vuuSearchCell {
|
|
1882
|
-
--vuu-icon-left: 0;
|
|
1883
|
-
--vuu-icon-size: 16px;
|
|
1884
|
-
--vuu-icon-top: 0px;
|
|
1885
|
-
align-items: center;
|
|
1886
|
-
color: var(--background-cell-color);
|
|
1887
|
-
display: flex;
|
|
1888
|
-
gap: 4px;
|
|
1889
|
-
padding: 0 8px 0 8px;
|
|
1890
|
-
position: relative;
|
|
1891
|
-
z-index: -1;
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
/* ../vuu-ui-controls/src/instrument-picker/InstrumentPicker.css */
|
|
1895
|
-
.vuuInstrumentPicker {
|
|
1896
|
-
height: 100%;
|
|
1897
|
-
padding: var(--vuuInstrumentPicker-padding, 12px);
|
|
1898
|
-
display: flex;
|
|
1899
|
-
flex-direction: column;
|
|
1900
|
-
}
|
|
1901
|
-
.vuuInstrumentPicker-inputField {
|
|
1902
|
-
--vuu-icon-size: 16px;
|
|
1903
|
-
flex: 0 0 40px;
|
|
1904
|
-
}
|
|
1905
|
-
.vuuInstrumentPicker-list {
|
|
1906
|
-
background-color: var(--salt-container-primary-background);
|
|
1907
|
-
flex: 1 1 auto;
|
|
1908
|
-
}
|
|
1909
|
-
.vuuInstrumentPicker .vuuTableCell {
|
|
1910
|
-
padding: 0;
|
|
1911
|
-
}
|
|
1912
|
-
|
|
1913
|
-
/* ../vuu-ui-controls/src/instrument-search/SearchCell.css */
|
|
1914
|
-
.vuuSearchCell {
|
|
1915
|
-
--vuu-icon-left: 0;
|
|
1916
|
-
--vuu-icon-size: 16px;
|
|
1917
|
-
--vuu-icon-top: 0px;
|
|
1918
|
-
align-items: center;
|
|
1919
|
-
color: var(--background-cell-color);
|
|
1920
|
-
display: flex;
|
|
1921
|
-
gap: 4px;
|
|
1922
|
-
padding: 0 8px 0 8px;
|
|
1923
|
-
position: relative;
|
|
1924
|
-
z-index: -1;
|
|
1925
|
-
}
|
|
1926
|
-
|
|
1927
|
-
/* ../vuu-ui-controls/src/instrument-search/InstrumentSearch.css */
|
|
1928
|
-
.vuuInstrumentSearch {
|
|
1929
|
-
height: 100%;
|
|
1930
|
-
padding: var(--vuuInstrumentSearch-padding, 12px);
|
|
1931
|
-
display: flex;
|
|
1932
|
-
flex-direction: column;
|
|
1933
|
-
}
|
|
1934
|
-
.vuuInstrumentSearch-inputField {
|
|
1935
|
-
--vuu-icon-size: 16px;
|
|
1936
|
-
flex: 0 0 40px;
|
|
1937
|
-
padding: 0 12px;
|
|
1938
|
-
}
|
|
1939
|
-
.vuuInstrumentSearch-list {
|
|
1940
|
-
--vuuMeasuredContainer-flex: 1 1 1px;
|
|
1941
|
-
background-color: var(--salt-container-primary-background);
|
|
1942
|
-
flex: 1 1 auto;
|
|
1943
|
-
}
|
|
1944
|
-
.vuuInstrumentSearch .vuuTableCell {
|
|
1945
|
-
padding: 0;
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
|
-
/* ../vuu-ui-controls/src/price-ticker/PriceTicker.css */
|
|
1949
|
-
@property --price-ticker-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
|
|
1950
|
-
.vuuPriceTicker {
|
|
1951
|
-
align-items: center;
|
|
1952
|
-
display: flex;
|
|
1953
|
-
font-size: var(--vuuPriceTicker-fontSize, var(--salt-text-fontSize));
|
|
1954
|
-
font-weight: var(--vuuPriceTicker-fontWeight, 700);
|
|
1955
|
-
transition-property: color;
|
|
1956
|
-
transition-duration: .3s;
|
|
1957
|
-
}
|
|
1958
|
-
.vuuPriceTicker.up1 {
|
|
1959
|
-
--vuu-icon-color: var(--vuu-color-green-50);
|
|
1960
|
-
color: var(--vuu-color-green-50);
|
|
1961
|
-
animation-duration: 30s;
|
|
1962
|
-
}
|
|
1963
|
-
.vuuPriceTicker.up2 {
|
|
1964
|
-
--vuu-icon-color: var(--vuu-color-green-50);
|
|
1965
|
-
color: var(--vuu-color-green-50);
|
|
1966
|
-
animation-duration: 30s;
|
|
1967
|
-
}
|
|
1968
|
-
.vuuPriceTicker.down1 {
|
|
1969
|
-
--vuu-icon-transform: rotate(180deg);
|
|
1970
|
-
--vuu-icon-color: var(--vuu-color-red-50);
|
|
1971
|
-
color: var(--vuu-color-red-50);
|
|
1972
|
-
animation-duration: 30s;
|
|
1973
|
-
}
|
|
1974
|
-
.vuuPriceTicker.down2 {
|
|
1975
|
-
--vuu-icon-transform: rotate(180deg);
|
|
1976
|
-
--vuu-icon-color: var(--vuu-color-red-50);
|
|
1977
|
-
color: var(--vuu-color-red-50);
|
|
1978
|
-
animation-duration: 30s;
|
|
1979
|
-
}
|
|
1980
|
-
|
|
1981
|
-
/* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
|
|
1982
|
-
.vuuTabstrip {
|
|
1983
|
-
--vuuOverflowContainer-background: transparent;
|
|
1984
|
-
--tabstrip-dragging-display: none;
|
|
1985
|
-
--tabstrip-display: inline-flex;
|
|
1986
|
-
--tabstrip-background: transparent;
|
|
1987
|
-
align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
|
|
1988
|
-
display: flex;
|
|
1989
|
-
font-size: var(--salt-text-fontSize);
|
|
1990
|
-
font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
|
|
1991
|
-
min-width: 28px;
|
|
1992
|
-
position: relative;
|
|
1993
|
-
overflow: visible;
|
|
1994
|
-
width: var(--tabstrip-width);
|
|
1995
|
-
}
|
|
1996
|
-
.vuuTabstrip-horizontal {
|
|
1997
|
-
--vuuOverflowContainer-borderColor: var(--salt-container-primary-borderColor);
|
|
1998
|
-
--vuuOverflowContainer-borderStyle: none none solid none;
|
|
1999
|
-
--vuuOverflowContainer-borderBottomWidth: 1px;
|
|
2000
|
-
--tabstrip-height: var(--vuuTabstrip-height, 28px);
|
|
2001
|
-
--tabstrip-width: var(--vuuTabstrip-width, 100%);
|
|
2002
|
-
--tab-height: var(--tabstrip-height);
|
|
2003
|
-
--tab-width: auto;
|
|
2004
|
-
--tab-thumb-height: 2px;
|
|
2005
|
-
--tab-thumb-left: var(--tab-thumb-offset, 0);
|
|
2006
|
-
--tab-thumb-top: auto;
|
|
2007
|
-
--tab-thumb-width: var(--tab-thumb-size, 100%);
|
|
2008
|
-
align-items: flex-start;
|
|
2009
|
-
}
|
|
2010
|
-
.vuuTabstrip-vertical {
|
|
2011
|
-
--tabstrip-height: var(--vuuTabstrip-height, 100%);
|
|
2012
|
-
--tabstrip-width: var(--vuuTabstrip-width, 100px);
|
|
2013
|
-
--tab-height: 50px;
|
|
2014
|
-
--tab-width: 100%;
|
|
2015
|
-
--tab-thumb-height: 0;
|
|
2016
|
-
--tab-thumb-left: 0;
|
|
2017
|
-
--tab-thumb-top: var(--tab-thumb-offset, 0);
|
|
2018
|
-
--tab-thumb-width: 2px;
|
|
2019
|
-
align-self: flex-start;
|
|
2020
|
-
display: inline-flex;
|
|
2021
|
-
}
|
|
2022
|
-
.vuuTabstrip-draggingTab .vuuTab {
|
|
2023
|
-
pointer-events: none;
|
|
2024
|
-
}
|
|
2025
|
-
.vuuTabstrip-addTabButton {
|
|
2026
|
-
--saltButton-height: 20px;
|
|
2027
|
-
--saltButton-width: 20px;
|
|
2028
|
-
}
|
|
2029
|
-
.vuuTabstrip-overflowMenu.vuuDropdown {
|
|
2030
|
-
--saltIcon-margin: 2px 0 0 0px;
|
|
2031
|
-
}
|
|
2032
|
-
.vuuTabstrip-overflowMenu-open {
|
|
2033
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
2034
|
-
--saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
|
|
2035
|
-
}
|
|
2036
|
-
.vuuTabstrip-overflowMenu-open .saltButton {
|
|
2037
|
-
--saltIcon-color: var(--salt-actionable-secondary-foreground-active);
|
|
2038
|
-
}
|
|
2039
|
-
.vuuTabstrip-inner {
|
|
2040
|
-
width: 100%;
|
|
2041
|
-
align-items: center;
|
|
2042
|
-
display: flex;
|
|
2043
|
-
flex-basis: auto;
|
|
2044
|
-
flex-grow: 0;
|
|
2045
|
-
flex-shrink: 1;
|
|
2046
|
-
flex-wrap: wrap;
|
|
2047
|
-
justify-content: flex-start;
|
|
2048
|
-
line-height: var(--tabstrip-height);
|
|
2049
|
-
}
|
|
2050
|
-
.vuuTabstrip-vertical .vuuTabstrip-inner {
|
|
2051
|
-
flex-direction: column;
|
|
2052
|
-
height: auto;
|
|
2053
|
-
}
|
|
2054
|
-
.vuuTabstrip-centered .vuuTabstrip-inner {
|
|
2055
|
-
justify-content: center;
|
|
2056
|
-
}
|
|
2057
|
-
.vuuDraggable[class*=vuuTabstrip] {
|
|
2058
|
-
--tabstrip-display: flex;
|
|
2059
|
-
--tabstrip-height: 100%;
|
|
2060
|
-
--tabstrip-dragging-display: block;
|
|
2061
|
-
--tabs-tab-background: var(--salt-navigable-primary-background-hover);
|
|
2062
|
-
--tabs-tab-before-content: "";
|
|
2063
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-hover);
|
|
2064
|
-
--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
|
|
2065
|
-
--tabs-tab-before-inset: var(--tab-activationIndicator-inset);
|
|
2066
|
-
--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
2067
|
-
--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
|
|
2068
|
-
--tabs-tab-position: static;
|
|
2069
|
-
font-size: 12px;
|
|
2070
|
-
}
|
|
2071
|
-
.vuuDraggable-tabstrip-horizontal {
|
|
2072
|
-
--overflow-item-height: var(--tabstrip-height);
|
|
2073
|
-
--tab-thumb-height: 2px;
|
|
2074
|
-
--tab-thumb-left: 0px;
|
|
2075
|
-
--tabstrip-display: inline-flex;
|
|
2076
|
-
--tabstrip-height: 28px;
|
|
2077
|
-
line-height: var(--tabstrip-height);
|
|
2078
|
-
}
|
|
2079
|
-
.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
|
|
2080
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-active);
|
|
2081
|
-
}
|
|
2082
|
-
.vuuTabstrip-overflowMenu-dropTarget:after {
|
|
2083
|
-
background: var(--salt-selectable-background-selected);
|
|
2084
|
-
content: "";
|
|
2085
|
-
position: absolute;
|
|
2086
|
-
height: 2px;
|
|
2087
|
-
left: 0;
|
|
2088
|
-
right: 0;
|
|
2089
|
-
bottom: 0;
|
|
2090
|
-
}
|
|
2091
|
-
|
|
2092
|
-
/* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
|
|
2093
|
-
.vuuTabMenu {
|
|
2094
|
-
top: var(--vuuTabMenu-top, -2px);
|
|
2095
|
-
}
|
|
2096
|
-
|
|
2097
|
-
/* ../vuu-ui-controls/src/tabstrip/Tab.css */
|
|
2098
|
-
.vuuTab {
|
|
2099
|
-
--saltEditableLabel-padding: 0;
|
|
2100
|
-
--saltEditableLabel-height: calc(var(--tabstrip-height) - 2px);
|
|
2101
|
-
--saltInputLegacy-minWidth: 4em;
|
|
2102
|
-
--saltEditableLabel-top: 2px;
|
|
2103
|
-
--tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
|
|
2104
|
-
--tab-cursor: pointer;
|
|
2105
|
-
--tab-position: relative;
|
|
2106
|
-
}
|
|
2107
|
-
.vuuTab {
|
|
2108
|
-
align-items: center;
|
|
2109
|
-
align-self: stretch;
|
|
2110
|
-
background: var(--tab-background);
|
|
2111
|
-
border: none;
|
|
2112
|
-
border-radius: var(--vuuTab-borderRadius, 0);
|
|
2113
|
-
color: var(--salt-text-primary-foreground);
|
|
2114
|
-
cursor: var(--vuuTab-cursor, var(--tab-cursor));
|
|
2115
|
-
display: var(--tabstrip-display);
|
|
2116
|
-
gap: 8px;
|
|
2117
|
-
height: var(--vuuTabHeight, var(--tab-height));
|
|
2118
|
-
letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
|
|
2119
|
-
min-width: var(--vuuTab-minWidth, 40px);
|
|
2120
|
-
outline: none;
|
|
2121
|
-
padding: var(--vuuTab-padding, 0 24px);
|
|
2122
|
-
position: var(--vuuTab-position, var(--tab-position));
|
|
2123
|
-
user-select: none;
|
|
2124
|
-
width: var(--tab-width);
|
|
2125
|
-
}
|
|
2126
|
-
.vuuTab {
|
|
2127
|
-
margin: 0 var(--tab-spacing) 0 0;
|
|
2128
|
-
}
|
|
2129
|
-
.vuuTab-selected {
|
|
2130
|
-
background: var(--vuuTab-background-selected, var(--tab-background));
|
|
2131
|
-
color: var(--salt-text-primary-foreground);
|
|
2132
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
2133
|
-
}
|
|
2134
|
-
.vuuTab-main {
|
|
2135
|
-
align-items: center;
|
|
2136
|
-
border: none;
|
|
2137
|
-
color: inherit;
|
|
2138
|
-
cursor: inherit;
|
|
2139
|
-
display: flex;
|
|
2140
|
-
font-family: inherit;
|
|
2141
|
-
font-size: inherit;
|
|
2142
|
-
font-weight: inherit;
|
|
2143
|
-
height: calc(var(--tab-height) - var(--tab-thumb-height));
|
|
2144
|
-
margin-bottom: var(--tab-thumb-height);
|
|
2145
|
-
outline: none;
|
|
2146
|
-
position: relative;
|
|
2147
|
-
}
|
|
2148
|
-
.vuuTab-closeable .vuuTab-main {
|
|
2149
|
-
border-right: solid transparent var(--salt-size-unit);
|
|
2150
|
-
}
|
|
2151
|
-
.vuuTab .vuuTab-closeButton {
|
|
2152
|
-
display: flex;
|
|
2153
|
-
align-items: center;
|
|
2154
|
-
justify-content: center;
|
|
2155
|
-
}
|
|
2156
|
-
.vuuTab-close-icon {
|
|
2157
|
-
display: none;
|
|
2158
|
-
}
|
|
2159
|
-
.salt-density-touch .vuuTab-close-icon,
|
|
2160
|
-
.salt-density-low .vuuTab-close-icon {
|
|
2161
|
-
display: block;
|
|
2162
|
-
}
|
|
2163
|
-
.salt-density-touch .vuuTab-close-icon-small,
|
|
2164
|
-
.salt-density-low .vuuTab-close-icon-small {
|
|
2165
|
-
display: none;
|
|
2166
|
-
}
|
|
2167
|
-
.vuuTab .vuuTab-text {
|
|
2168
|
-
display: inline-block;
|
|
2169
|
-
position: relative;
|
|
2170
|
-
overflow: hidden;
|
|
2171
|
-
text-align: var(--salt-text-textAlign-embedded);
|
|
2172
|
-
text-overflow: ellipsis;
|
|
2173
|
-
top: var(--vuuTab-top, var(--tab-top, auto));
|
|
2174
|
-
white-space: nowrap;
|
|
2175
|
-
z-index: var(--salt-zIndex-default);
|
|
2176
|
-
}
|
|
2177
|
-
.vuuTab .vuuTab-text:before {
|
|
2178
|
-
height: 0;
|
|
2179
|
-
content: attr(data-text);
|
|
2180
|
-
display: block;
|
|
2181
|
-
visibility: hidden;
|
|
2182
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
2183
|
-
}
|
|
2184
|
-
.vuuTab-editing:after {
|
|
2185
|
-
content: "";
|
|
2186
|
-
position: absolute;
|
|
2187
|
-
top: 0;
|
|
2188
|
-
left: 0;
|
|
2189
|
-
right: 0;
|
|
2190
|
-
bottom: 2px;
|
|
2191
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
2192
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
2193
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
2194
|
-
outline-offset: -2px;
|
|
2195
|
-
}
|
|
2196
|
-
.vuuTab.vuuFocusVisible {
|
|
2197
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
2198
|
-
outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
|
|
2199
|
-
outline-style: dashed;
|
|
2200
|
-
outline-width: 1px;
|
|
2201
|
-
outline-offset: -1px;
|
|
2202
|
-
}
|
|
2203
|
-
.vuuTab:before {
|
|
2204
|
-
content: var(--tab-before-content, none);
|
|
2205
|
-
content: "";
|
|
2206
|
-
background: var(--tab-before-background);
|
|
2207
|
-
height: var(--tab-before-height);
|
|
2208
|
-
inset: var(--tab-before-inset);
|
|
2209
|
-
position: absolute;
|
|
2210
|
-
width: var(--tab-before-width);
|
|
2211
|
-
z-index: 1;
|
|
2212
|
-
}
|
|
2213
|
-
.vuuTabstrip-draggingTab .vuuTab-selected:before {
|
|
2214
|
-
--tab-before-content: "";
|
|
2215
|
-
--tab-before-background: var(--salt-navigable-indicator-color-active);
|
|
2216
|
-
--tab-before-height: var(--tab-thumb-height);
|
|
2217
|
-
--tab-before-inset: var(--tab-activationIndicator-inset);
|
|
2218
|
-
--tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
2219
|
-
}
|
|
2220
|
-
.vuuTab-selected:before {
|
|
2221
|
-
--tab-before-content: "";
|
|
2222
|
-
background: var(--salt-navigable-indicator-active);
|
|
2223
|
-
height: var(--tab-thumb-height);
|
|
2224
|
-
position: absolute;
|
|
2225
|
-
left: var(--tab-thumb-left);
|
|
2226
|
-
bottom: 0px;
|
|
2227
|
-
top: var(--tab-thumb-top, auto);
|
|
2228
|
-
transition: var(--tab-thumb-transition, none);
|
|
2229
|
-
width: var(--tab-thumb-width, 100%);
|
|
2230
|
-
}
|
|
2231
|
-
.vuuTab:hover:not(.vuuTab-closeHover, .vuuTab-selected) {
|
|
2232
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
2233
|
-
}
|
|
2234
|
-
|
|
2235
|
-
/* ../vuu-ui-controls/src/tree/Tree.css */
|
|
2236
|
-
.vuuTree {
|
|
2237
|
-
--tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
|
|
2238
|
-
--tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
|
|
2239
|
-
--tree-toggle-width: 12px;
|
|
2240
|
-
--tree-icon-color: var(--vuuTree-icon-color, #4c505b);
|
|
2241
|
-
--tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
|
|
2242
|
-
--tree-node-indent: 0px;
|
|
2243
|
-
--list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
|
|
2244
|
-
--list-item-height: var(--hw-list-item-height, 30px);
|
|
2245
|
-
--list-item-padding: var(--hw-list-item-padding, 0 6px);
|
|
2246
|
-
--list-item-header-bg: var(--hw-list-item-header-bg, black);
|
|
2247
|
-
--list-item-header-color: var(--hw-list-item-header-color, white);
|
|
2248
|
-
--list-item-header-font-weight: bold;
|
|
2249
|
-
--list-item-header-twisty-color: black;
|
|
2250
|
-
--list-item-header-twisty-content: "";
|
|
2251
|
-
--list-item-header-twisty-top: 50%;
|
|
2252
|
-
--list-item-header-twisty-left: -18px;
|
|
2253
|
-
--list-item-header-twisty-right: auto;
|
|
2254
|
-
--list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
|
|
2255
|
-
--list-item-selected-color: white;
|
|
2256
|
-
--list-item-text-color: var(--hw-gray-800);
|
|
2257
|
-
--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
|
|
2258
|
-
list-style: none;
|
|
2259
|
-
margin: 0;
|
|
2260
|
-
padding: 0 1px;
|
|
2261
|
-
font-size: var(--vuuTree-font-size, 14px);
|
|
2262
|
-
max-height: inherit;
|
|
2263
|
-
outline: none;
|
|
2264
|
-
overflow-y: auto;
|
|
2265
|
-
position: relative;
|
|
2266
|
-
user-select: none;
|
|
2267
|
-
}
|
|
2268
|
-
.vuuTree-viewport {
|
|
2269
|
-
--list-item-height: 30px;
|
|
2270
|
-
box-sizing: border-box;
|
|
2271
|
-
max-height: inherit;
|
|
2272
|
-
overflow: auto;
|
|
2273
|
-
}
|
|
2274
|
-
.vuuTree-scrollingContentContainer {
|
|
2275
|
-
box-sizing: inherit;
|
|
2276
|
-
position: relative;
|
|
2277
|
-
}
|
|
2278
|
-
.vuuTree-scrollingContentContainer .vuuTreeNode {
|
|
2279
|
-
line-height: 30px;
|
|
2280
|
-
position: absolute;
|
|
2281
|
-
top: 0;
|
|
2282
|
-
left: 0;
|
|
2283
|
-
right: 0;
|
|
2284
|
-
will-change: transform;
|
|
2285
|
-
}
|
|
2286
|
-
.vuuTreeNode {
|
|
2287
|
-
list-style: none;
|
|
2288
|
-
}
|
|
2289
|
-
.vuuTreeNode:not([aria-expanded]),
|
|
2290
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
|
|
2291
|
-
--checkbox-border-color: black;
|
|
2292
|
-
--checkbox-border-width: 1px;
|
|
2293
|
-
--checkbox-tick: black;
|
|
2294
|
-
--list-item-padding-left: 6px;
|
|
2295
|
-
--svg-toggle: var(--tree-node-collapse);
|
|
2296
|
-
align-items: center;
|
|
2297
|
-
color: var(--list-item-text-color);
|
|
2298
|
-
display: flex;
|
|
2299
|
-
flex-wrap: nowrap;
|
|
2300
|
-
height: var(--list-item-height);
|
|
2301
|
-
line-height: var(--list-item-height);
|
|
2302
|
-
padding: var(--list-item-padding);
|
|
2303
|
-
padding-left: var(--padding-left);
|
|
2304
|
-
position: relative;
|
|
2305
|
-
cursor: default;
|
|
2306
|
-
margin: 0;
|
|
2307
|
-
white-space: nowrap;
|
|
2308
|
-
}
|
|
2309
|
-
.vuuTreeNode:not([aria-expanded]) {
|
|
2310
|
-
--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
|
|
2311
|
-
}
|
|
2312
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
|
|
2313
|
-
--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
|
|
2314
|
-
}
|
|
2315
|
-
.vuuTreeNode-icon {
|
|
2316
|
-
background-color: var(--tree-icon-color);
|
|
2317
|
-
display: inline-block;
|
|
2318
|
-
height: 18px;
|
|
2319
|
-
margin-right: 6px;
|
|
2320
|
-
-webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
|
|
2321
|
-
mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
|
|
2322
|
-
flex: 0 0 18px;
|
|
2323
|
-
}
|
|
2324
|
-
.vuuTreeNode[aria-expanded] {
|
|
2325
|
-
flex-direction: column;
|
|
2326
|
-
}
|
|
2327
|
-
.vuuTreeNode[aria-expanded] {
|
|
2328
|
-
flex-direction: column;
|
|
2329
|
-
height: auto;
|
|
2330
|
-
}
|
|
2331
|
-
.vuuTreeNode > *[role=group] {
|
|
2332
|
-
padding-left: 0px;
|
|
2333
|
-
}
|
|
2334
|
-
.vuuTreeNode {
|
|
2335
|
-
padding-left: calc(var(--padding-left) + var(--tree-node-indent));
|
|
2336
|
-
}
|
|
2337
|
-
.vuuTreeNode[aria-level="2"] {
|
|
2338
|
-
--tree-node-indent: 12px;
|
|
2339
|
-
}
|
|
2340
|
-
.vuuTreeNode[aria-level="3"] {
|
|
2341
|
-
--tree-node-indent: 24px;
|
|
2342
|
-
}
|
|
2343
|
-
.vuuTreeNode[aria-level="4"] {
|
|
2344
|
-
--tree-node-indent: 36px;
|
|
2345
|
-
}
|
|
2346
|
-
.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
|
|
2347
|
-
.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
|
|
2348
|
-
background-color: var(--list-hilited-bg);
|
|
2349
|
-
}
|
|
2350
|
-
.vuuTreeNode-toggle {
|
|
2351
|
-
cursor: pointer;
|
|
2352
|
-
}
|
|
2353
|
-
.vuuTreeNode > .vuuTreeNode-toggle {
|
|
2354
|
-
display: inline-block;
|
|
2355
|
-
height: 100%;
|
|
2356
|
-
left: 0;
|
|
2357
|
-
position: absolute;
|
|
2358
|
-
width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
|
|
2359
|
-
}
|
|
2360
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
|
|
2361
|
-
content: var(--list-item-header-twisty-content);
|
|
2362
|
-
-webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
|
|
2363
|
-
mask: var(--svg-toggle) center center/8px 8px no-repeat;
|
|
2364
|
-
background-color: var(--list-item-header-twisty-color);
|
|
2365
|
-
height: 18px;
|
|
2366
|
-
margin-top: -9px;
|
|
2367
|
-
left: var(--tree-node-indent);
|
|
2368
|
-
position: absolute;
|
|
2369
|
-
top: var(--list-item-header-twisty-top);
|
|
2370
|
-
transition: transform 0.3s;
|
|
2371
|
-
width: 18px;
|
|
2372
|
-
}
|
|
2373
|
-
.vuuTreeNode[aria-selected=true] {
|
|
2374
|
-
--list-item-header-twisty-color: var(--list-item-selected-color);
|
|
2375
|
-
}
|
|
2376
|
-
.vuuTreeNode:not(.focusVisible):focus {
|
|
2377
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
2378
|
-
}
|
|
2379
|
-
.vuuTreeNode:not([aria-expanded]).focusVisible:before,
|
|
2380
|
-
.vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
|
|
2381
|
-
content: "";
|
|
2382
|
-
position: absolute;
|
|
2383
|
-
top: 0px;
|
|
2384
|
-
left: var(--tree-focus-offset, 0px);
|
|
2385
|
-
right: 0;
|
|
2386
|
-
bottom: 0px;
|
|
2387
|
-
border: dotted var(--focus-visible-border-color) 2px;
|
|
2388
|
-
background-color: var(--list-hilited-bg);
|
|
2389
|
-
}
|
|
2390
|
-
.vuuTreeNode[aria-expanded=false] > *:first-child:after {
|
|
2391
|
-
--svg-toggle: var(--tree-node-expand);
|
|
2392
|
-
}
|
|
2393
|
-
.vuuTreeNode[aria-expanded=true] > *:first-child:after {
|
|
2394
|
-
transform: var(--tree-node-expanded-transform);
|
|
2395
|
-
}
|
|
2396
|
-
.vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
|
|
2397
|
-
.vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
|
|
2398
|
-
--checkbox-border-color: var(--list-item-selected-color);
|
|
2399
|
-
--checkbox-tick: var(--list-item-selected-color);
|
|
2400
|
-
--focus-visible-border-color: var(--list-item-selected-color);
|
|
2401
|
-
background-color: var(--list-item-selected-bg);
|
|
2402
|
-
color: var(--list-item-selected-color);
|
|
2403
|
-
}
|
|
2404
|
-
.with-checkbox .vuuTreeNode {
|
|
2405
|
-
padding-left: 28px;
|
|
2406
|
-
}
|
|
2407
|
-
.with-checkbox .vuuTreeNode:before {
|
|
2408
|
-
border-style: solid;
|
|
2409
|
-
border-width: var(--checkbox-border-width);
|
|
2410
|
-
border-color: var(--checkbox-border-color);
|
|
2411
|
-
content: "";
|
|
2412
|
-
height: 12px;
|
|
2413
|
-
left: 3px;
|
|
2414
|
-
margin-top: -7px;
|
|
2415
|
-
position: absolute;
|
|
2416
|
-
top: 50%;
|
|
2417
|
-
width: 12px;
|
|
2418
|
-
}
|
|
2419
|
-
|
|
2420
|
-
/* ../vuu-layout/src/layout-header/Header.css */
|
|
2421
|
-
.vuuHeader {
|
|
2422
|
-
--saltButton-height: 24px;
|
|
2423
|
-
--saltButton-width: 24px;
|
|
2424
|
-
}
|
|
2425
|
-
.salt-density-high .vuuHeader {
|
|
2426
|
-
--saltToolbarField-marginTop: 0;
|
|
2427
|
-
}
|
|
2428
|
-
|
|
2429
|
-
/* ../vuu-layout/src/layout-view/View.css */
|
|
2430
|
-
.vuuView {
|
|
2431
|
-
border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
|
|
2432
|
-
border-width: var(--vuuView-borderWidth, 1px);
|
|
2433
|
-
border-style: var(--vuuView-borderStyle, none);
|
|
2434
|
-
display: flex;
|
|
2435
|
-
flex-direction: column;
|
|
2436
|
-
margin: var(--vuuView-margin, 0px);
|
|
2437
|
-
min-height: 50px;
|
|
2438
|
-
min-width: 50px;
|
|
2439
|
-
outline: none;
|
|
2440
|
-
overflow: hidden;
|
|
2441
|
-
position: relative;
|
|
2442
|
-
}
|
|
2443
|
-
.vuuView.focus-visible:after {
|
|
2444
|
-
content: "";
|
|
2445
|
-
position: absolute;
|
|
2446
|
-
top: 0;
|
|
2447
|
-
left: 0;
|
|
2448
|
-
right: 0;
|
|
2449
|
-
bottom: 0;
|
|
2450
|
-
border: dotted cornflowerblue 2px;
|
|
2451
|
-
}
|
|
2452
|
-
.vuuView.dragging {
|
|
2453
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
2454
|
-
}
|
|
2455
|
-
.vuuView-main {
|
|
2456
|
-
display: flex;
|
|
2457
|
-
flex-direction: var(--vuuView-flexDirection, column);
|
|
2458
|
-
flex-wrap: var(--vuuView-flex-wrap, nowrap);
|
|
2459
|
-
flex: 1;
|
|
2460
|
-
justify-content: var(--vuuView-justify, flex-start);
|
|
2461
|
-
overflow: hidden;
|
|
2462
|
-
position: relative;
|
|
2463
|
-
}
|
|
2464
|
-
.vuuView-main > * {
|
|
2465
|
-
flex-basis: auto;
|
|
2466
|
-
flex-grow: var(--vuuView-flex-grow, 1);
|
|
2467
|
-
flex-shrink: var(--vuuView-flex-shrink, 1);
|
|
2468
|
-
}
|
|
2469
|
-
.vuuView-collapsed .vuuView-main {
|
|
2470
|
-
display: none;
|
|
2471
|
-
}
|
|
2472
|
-
.vuuView-collapsed + .Splitter {
|
|
2473
|
-
display: none;
|
|
2474
|
-
}
|
|
2475
|
-
.vuuView-collapsed .Toolbar-vertical {
|
|
2476
|
-
border-right: solid 1px var(--grey40);
|
|
2477
|
-
}
|
|
2478
|
-
.vuuView-collapsed .Toolbar-vertical .toolbar-title {
|
|
2479
|
-
display: none;
|
|
2480
|
-
}
|
|
2481
|
-
|
|
2482
|
-
/* ../vuu-layout/src/placeholder/LayoutStartPanel.css */
|
|
2483
|
-
.vuuLayoutStartPanel {
|
|
2484
|
-
align-items: center;
|
|
2485
|
-
flex: 0 0 auto !important;
|
|
2486
|
-
display: flex;
|
|
2487
|
-
flex-direction: column;
|
|
2488
|
-
font-weight: 700;
|
|
2489
|
-
gap: 12px;
|
|
2490
|
-
}
|
|
2491
|
-
.vuuLayoutStartPanel-title {
|
|
2492
|
-
color: var(--vuu-color-gray-80);
|
|
2493
|
-
font-size: 28px;
|
|
2494
|
-
line-height: 1.5;
|
|
2495
|
-
text-align: center;
|
|
2496
|
-
}
|
|
2497
|
-
.vuuLayoutStartPanel-text {
|
|
2498
|
-
color: var(--vuu-color-gray-50);
|
|
2499
|
-
font-size: 18px;
|
|
2500
|
-
line-height: 1.5;
|
|
2501
|
-
max-width: 460px;
|
|
2502
|
-
}
|
|
2503
|
-
.vuuLayoutStartPanel-addButton {
|
|
2504
|
-
--vuu-icon-size: 20px;
|
|
2505
|
-
--saltButton-borderRadius: 28px !important;
|
|
2506
|
-
--saltButton-height: 56px;
|
|
2507
|
-
--saltButton-width: 56px;
|
|
2508
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
2509
|
-
}
|
|
2510
|
-
|
|
2511
|
-
/* ../vuu-layout/src/placeholder/Placeholder.css */
|
|
2512
|
-
.vuuPlaceholder {
|
|
2513
|
-
--vuuView-justify: center;
|
|
2514
|
-
align-items: center;
|
|
2515
|
-
display: flex;
|
|
2516
|
-
flex-basis: 0;
|
|
2517
|
-
flex-grow: 1;
|
|
2518
|
-
flex-shrink: 1;
|
|
2519
|
-
}
|
|
2520
|
-
.vuuPlaceholder-nested {
|
|
2521
|
-
background-color: red;
|
|
2522
|
-
}
|
|
2523
|
-
.vuuPlaceholder-shim {
|
|
2524
|
-
flex-grow: 0;
|
|
2525
|
-
flex-shrink: 0;
|
|
2526
|
-
}
|
|
2527
|
-
|
|
2528
|
-
/* ../vuu-layout/src/flexbox/Splitter.css */
|
|
2529
|
-
.vuuSplitter {
|
|
2530
|
-
--splitter-background: var(--salt-separable-secondary-borderColor);
|
|
2531
|
-
--splitter-borderColor: var(--salt-separable-secondary-borderColor);
|
|
2532
|
-
--splitter-borderStyle: none;
|
|
2533
|
-
--splitter-borderWidth: 0;
|
|
2534
|
-
--splitter-size: 3px;
|
|
2535
|
-
align-items: center;
|
|
2536
|
-
background-color: var(--splitter-background);
|
|
2537
|
-
border-color: var(--splitter-borderColor);
|
|
2538
|
-
border-style: var(--splitter-borderStyle);
|
|
2539
|
-
border-width: var(--splitter-borderWidth);
|
|
2540
|
-
box-sizing: border-box;
|
|
2541
|
-
display: flex;
|
|
2542
|
-
justify-content: center;
|
|
2543
|
-
position: relative;
|
|
2544
|
-
outline: none;
|
|
2545
|
-
z-index: 1;
|
|
2546
|
-
}
|
|
2547
|
-
.vuuSplitter:hover {
|
|
2548
|
-
--splitter-background: var(--salt-separable-primary-borderColor);
|
|
2549
|
-
}
|
|
2550
|
-
.vuuSplitter-active {
|
|
2551
|
-
--splitter-background: var(--salt-separable-primary-borderColor);
|
|
2552
|
-
}
|
|
2553
|
-
.vuuSplitter-column {
|
|
2554
|
-
cursor: ns-resize;
|
|
2555
|
-
height: var(--splitter-size);
|
|
2556
|
-
}
|
|
2557
|
-
.vuuSplitter:not(.vuuSplitter-column) {
|
|
2558
|
-
cursor: ew-resize;
|
|
2559
|
-
width: var(--splitter-size);
|
|
2560
|
-
}
|
|
2561
|
-
.vuuSplitter:before {
|
|
2562
|
-
border: none;
|
|
2563
|
-
border-radius: 0;
|
|
2564
|
-
content: "";
|
|
2565
|
-
display: block;
|
|
2566
|
-
padding: 0;
|
|
2567
|
-
}
|
|
2568
|
-
.vuuSplitter-grab-zone {
|
|
2569
|
-
position: absolute;
|
|
2570
|
-
background-color: rgba(255, 0, 0, 0.01);
|
|
2571
|
-
cursor: inherit;
|
|
2572
|
-
}
|
|
2573
|
-
.vuuSplitter-column .vuuSplitter-grab-zone {
|
|
2574
|
-
left: 0;
|
|
2575
|
-
right: 0;
|
|
2576
|
-
top: -5px;
|
|
2577
|
-
bottom: -5px;
|
|
2578
|
-
}
|
|
2579
|
-
.vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
|
|
2580
|
-
left: -5px;
|
|
2581
|
-
right: -5px;
|
|
2582
|
-
top: 0;
|
|
2583
|
-
bottom: 0;
|
|
2584
|
-
}
|
|
2585
|
-
.vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
|
|
2586
|
-
background-color: rgba(255, 255, 255, .05);
|
|
2587
|
-
left: -150px;
|
|
2588
|
-
right: -150px;
|
|
2589
|
-
}
|
|
2590
|
-
.vuuSplitter:not(.vuuSplitter-column):before {
|
|
2591
|
-
width: 1px;
|
|
2592
|
-
height: 10px;
|
|
2593
|
-
background:
|
|
2594
|
-
linear-gradient(
|
|
2595
|
-
to bottom,
|
|
2596
|
-
var(--grey900) 10%,
|
|
2597
|
-
transparent 10%,
|
|
2598
|
-
transparent 30%,
|
|
2599
|
-
var(--grey900) 30%,
|
|
2600
|
-
var(--grey900) 40%,
|
|
2601
|
-
transparent 40%,
|
|
2602
|
-
transparent 60%,
|
|
2603
|
-
var(--grey900) 60%,
|
|
2604
|
-
var(--grey900) 70%,
|
|
2605
|
-
transparent 70%,
|
|
2606
|
-
transparent 90%,
|
|
2607
|
-
var(--grey900) 90%);
|
|
2608
|
-
}
|
|
2609
|
-
.vuuSplitter-active.vuuSplitter-column:before {
|
|
2610
|
-
background:
|
|
2611
|
-
linear-gradient(
|
|
2612
|
-
to right,
|
|
2613
|
-
#ffffff 10%,
|
|
2614
|
-
transparent 10%,
|
|
2615
|
-
transparent 30%,
|
|
2616
|
-
#ffffff 30%,
|
|
2617
|
-
#ffffff 40%,
|
|
2618
|
-
transparent 40%,
|
|
2619
|
-
transparent 60%,
|
|
2620
|
-
#ffffff 60%,
|
|
2621
|
-
#ffffff 70%,
|
|
2622
|
-
transparent 70%,
|
|
2623
|
-
transparent 90%,
|
|
2624
|
-
#ffffff 90%);
|
|
2625
|
-
}
|
|
2626
|
-
.vuuSplitter-active:not(.vuuSplitter-column):before {
|
|
2627
|
-
background:
|
|
2628
|
-
linear-gradient(
|
|
2629
|
-
to bottom,
|
|
2630
|
-
#ffffff 10%,
|
|
2631
|
-
transparent 10%,
|
|
2632
|
-
transparent 30%,
|
|
2633
|
-
#ffffff 30%,
|
|
2634
|
-
#ffffff 40%,
|
|
2635
|
-
transparent 40%,
|
|
2636
|
-
transparent 60%,
|
|
2637
|
-
#ffffff 60%,
|
|
2638
|
-
#ffffff 70%,
|
|
2639
|
-
transparent 70%,
|
|
2640
|
-
transparent 90%,
|
|
2641
|
-
#ffffff 90%);
|
|
2642
|
-
}
|
|
2643
|
-
.vuuSplitter-column:before {
|
|
2644
|
-
width: 10px;
|
|
2645
|
-
height: 1px;
|
|
2646
|
-
background:
|
|
2647
|
-
linear-gradient(
|
|
2648
|
-
to right,
|
|
2649
|
-
var(--grey900) 10%,
|
|
2650
|
-
transparent 10%,
|
|
2651
|
-
transparent 30%,
|
|
2652
|
-
var(--grey900) 30%,
|
|
2653
|
-
var(--grey900) 40%,
|
|
2654
|
-
transparent 40%,
|
|
2655
|
-
transparent 60%,
|
|
2656
|
-
var(--grey900) 60%,
|
|
2657
|
-
var(--grey900) 70%,
|
|
2658
|
-
transparent 70%,
|
|
2659
|
-
transparent 90%,
|
|
2660
|
-
var(--grey900) 90%);
|
|
2661
|
-
}
|
|
2662
|
-
|
|
2663
|
-
/* ../vuu-layout/src/flexbox/Flexbox.css */
|
|
2664
|
-
:root {
|
|
2665
|
-
--hw-space-unit: 4px;
|
|
2666
|
-
--hw-flex-gap: 3;
|
|
2667
|
-
--hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
|
|
2668
|
-
}
|
|
2669
|
-
.hwFlexbox {
|
|
2670
|
-
background-color: var(--container1-background);
|
|
2671
|
-
box-sizing: border-box;
|
|
2672
|
-
display: flex;
|
|
2673
|
-
gap: calc(var(--spacing) * var(--space));
|
|
2674
|
-
min-height: 0;
|
|
2675
|
-
min-width: 0;
|
|
2676
|
-
overflow: hidden;
|
|
2677
|
-
}
|
|
2678
|
-
.hwFlexbox-column {
|
|
2679
|
-
flex-direction: column;
|
|
2680
|
-
}
|
|
2681
|
-
.hwFlexbox-row {
|
|
2682
|
-
flex-direction: row;
|
|
2683
|
-
}
|
|
2684
|
-
.hwFlexbox > .Splitter {
|
|
2685
|
-
flex-basis: auto;
|
|
2686
|
-
flex-grow: 0;
|
|
2687
|
-
flex-shrink: 0;
|
|
2688
|
-
}
|
|
2689
|
-
.hwFlexbox.full-page {
|
|
2690
|
-
height: 100vh;
|
|
2691
|
-
width: 100vw;
|
|
2692
|
-
}
|
|
2693
|
-
.flex-fill {
|
|
2694
|
-
border-color: red;
|
|
2695
|
-
flex: 0;
|
|
2696
|
-
flex-grow: 1;
|
|
2697
|
-
flex-shrink: 1;
|
|
2698
|
-
}
|
|
2699
|
-
.vuuView.flex-fill {
|
|
2700
|
-
border-color: red;
|
|
2701
|
-
}
|
|
2702
|
-
|
|
2703
|
-
/* ../vuu-layout/src/flexbox/FluidGrid.css */
|
|
2704
|
-
:root {
|
|
2705
|
-
--hw-space-unit: 4px;
|
|
2706
|
-
--hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
|
|
2707
|
-
}
|
|
2708
|
-
.hwFluidGrid {
|
|
2709
|
-
--gap: var(--gutter-width);
|
|
2710
|
-
display: flex;
|
|
2711
|
-
gap: calc(var(--grid-gap) * var(--hw-space-unit));
|
|
2712
|
-
flex-wrap: wrap;
|
|
2713
|
-
padding: 0;
|
|
2714
|
-
}
|
|
2715
|
-
.hwFluidGrid > * {
|
|
2716
|
-
--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
|
|
2717
|
-
--gutter-count: calc(var(--parent-col-count) - 1);
|
|
2718
|
-
--total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
|
|
2719
|
-
--available-width: calc(100% - var(--total-gutter-width));
|
|
2720
|
-
flex-basis: 0;
|
|
2721
|
-
flex-grow: 1;
|
|
2722
|
-
flex-shrink: 1;
|
|
2723
|
-
position: relative;
|
|
2724
|
-
}
|
|
2725
|
-
.hwFluidGrid > *:after {
|
|
2726
|
-
content: "";
|
|
2727
|
-
position: absolute;
|
|
2728
|
-
top: 0;
|
|
2729
|
-
left: 0;
|
|
2730
|
-
right: 0;
|
|
2731
|
-
bottom: 0;
|
|
2732
|
-
border: dashed 2px blue;
|
|
2733
|
-
}
|
|
2734
|
-
.hwFluidGrid > [data-xs] {
|
|
2735
|
-
--internal-gutter-count: calc(var(--col-span) - 1);
|
|
2736
|
-
--percent-width: calc(var(--col-span) / var(--parent-col-count));
|
|
2737
|
-
--internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
|
|
2738
|
-
flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
|
|
2739
|
-
flex-grow: 0;
|
|
2740
|
-
}
|
|
2741
|
-
.hwFluidGrid > [data-xs="1"] {
|
|
2742
|
-
--col-span: 1;
|
|
2743
|
-
}
|
|
2744
|
-
.hwFluidGrid > [data-xs="2"] {
|
|
2745
|
-
--col-span: 2;
|
|
2746
|
-
}
|
|
2747
|
-
.hwFluidGrid > [data-xs="3"] {
|
|
2748
|
-
--col-span: 3;
|
|
2749
|
-
}
|
|
2750
|
-
.hwFluidGrid > [data-xs="4"] {
|
|
2751
|
-
--col-span: 4;
|
|
2752
|
-
}
|
|
2753
|
-
.hwFluidGrid > [data-xs="6"] {
|
|
2754
|
-
--col-span: 6;
|
|
2755
|
-
}
|
|
2756
|
-
.hwFluidGrid > [data-xs="8"] {
|
|
2757
|
-
--col-span: 8;
|
|
2758
|
-
}
|
|
2759
|
-
.hwFluidGrid > [data-xs="9"] {
|
|
2760
|
-
--col-span: 9;
|
|
2761
|
-
}
|
|
2762
|
-
.hwFluidGrid > [data-xs="10"] {
|
|
2763
|
-
--col-span: 10;
|
|
2764
|
-
}
|
|
2765
|
-
.hwFluidGrid > [data-xs="11"] {
|
|
2766
|
-
--col-span: 11;
|
|
2767
|
-
}
|
|
2768
|
-
.hwFluidGrid > [data-xs="12"] {
|
|
2769
|
-
--col-span: 12;
|
|
2770
|
-
}
|
|
2771
|
-
@media (min-width: 600px) {
|
|
2772
|
-
.hwFluidGrid > [data-sm="1"] {
|
|
2773
|
-
--col-span: 1;
|
|
2774
|
-
}
|
|
2775
|
-
.hwFluidGrid > [data-sm="2"] {
|
|
2776
|
-
--col-span: 2;
|
|
2777
|
-
}
|
|
2778
|
-
.hwFluidGrid > [data-sm="3"] {
|
|
2779
|
-
--col-span: 3;
|
|
2780
|
-
}
|
|
2781
|
-
.hwFluidGrid > [data-sm="4"] {
|
|
2782
|
-
--col-span: 4;
|
|
2783
|
-
}
|
|
2784
|
-
.hwFluidGrid > [data-sm="6"] {
|
|
2785
|
-
--col-span: 6;
|
|
2786
|
-
}
|
|
2787
|
-
.hwFluidGrid > [data-sm="8"] {
|
|
2788
|
-
--col-span: 8;
|
|
2789
|
-
}
|
|
2790
|
-
.hwFluidGrid > [data-sm="9"] {
|
|
2791
|
-
--col-span: 9;
|
|
2792
|
-
}
|
|
2793
|
-
.hwFluidGrid > [data-sm="10"] {
|
|
2794
|
-
--col-span: 10;
|
|
2795
|
-
}
|
|
2796
|
-
.hwFluidGrid > [data-sm="11"] {
|
|
2797
|
-
--col-span: 11;
|
|
2798
|
-
}
|
|
2799
|
-
.hwFluidGrid > [data-sm="12"] {
|
|
2800
|
-
--col-span: 12;
|
|
2801
|
-
}
|
|
2802
|
-
}
|
|
2803
|
-
.hwFluidGrid-show-grid {
|
|
2804
|
-
--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
|
|
2805
|
-
--grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
|
|
2806
|
-
--grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
|
|
2807
|
-
--grid-available-width: calc(100% - var(--grid-total-gutter-width));
|
|
2808
|
-
--grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
|
|
2809
|
-
--column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
|
|
2810
|
-
background:
|
|
2811
|
-
repeating-linear-gradient(
|
|
2812
|
-
to right,
|
|
2813
|
-
var(--hw-fluid-grid-col-bg) 0,
|
|
2814
|
-
var(--hw-fluid-grid-col-bg) var(--column-width),
|
|
2815
|
-
white var(--column-width),
|
|
2816
|
-
white calc(var(--column-width) + var(--gutter-width)));
|
|
2817
|
-
}
|
|
2818
|
-
|
|
2819
|
-
/* ../vuu-layout/src/measured-container/MeasuredContainer.css */
|
|
2820
|
-
.vuuMeasuredContainer {
|
|
2821
|
-
flex: var(--vuuMeasuredContainer-flex, none);
|
|
2822
|
-
height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
|
|
2823
|
-
min-height: 0;
|
|
2824
|
-
width: var(--measured-css-width);
|
|
2825
|
-
}
|
|
2826
|
-
|
|
2827
|
-
/* ../vuu-layout/src/overflow-container/OverflowContainer.css */
|
|
2828
|
-
.vuuOverflowContainer {
|
|
2829
|
-
--overflow-borderColor: var(--vuuOverflowContainer-borderColor, none);
|
|
2830
|
-
--overflow-borderStyle: var(--vuuOverflowContainer-borderStyle, none);
|
|
2831
|
-
--overflow-borderWidth: var(--vuuOverflowContainer-borderWidth, 0px);
|
|
2832
|
-
--overflow-border-topWidth: var(--vuuOverflowContainer-borderTopWidth, var(--overflow-borderWidth));
|
|
2833
|
-
--overflow-border-rightWidth: var(--vuuOverflowContainer-borderRightWidth, var(--overflow-borderWidth));
|
|
2834
|
-
--overflow-border-bottomWidth: var(--vuuOverflowContainer-borderBottomWidth, var(--overflow-borderWidth));
|
|
2835
|
-
--overflow-border-leftWidth: var(--vuuOverflowContainer-borderLeftWidth, var(--overflow-borderWidth));
|
|
2836
|
-
--overflow-item-gap: var(--vuuOverflowContainer-gap,2px);
|
|
2837
|
-
--overflow-direction: row;
|
|
2838
|
-
--overflow-height: var(--overflow-item-height);
|
|
2839
|
-
--overflow-top:top:0;
|
|
2840
|
-
--overflow-width: 0px;
|
|
2841
|
-
background-color: var(--vuuOverflowContainer-background);
|
|
2842
|
-
border-color: var(--overflow-borderColor);
|
|
2843
|
-
border-style: var(--overflow-borderStyle);
|
|
2844
|
-
border-top-width: var(--overflow-border-topWidth);
|
|
2845
|
-
border-right-width: var(--overflow-border-rightWidth);
|
|
2846
|
-
border-bottom-width: var(--overflow-border-bottomWidth);
|
|
2847
|
-
border-left-width: var(--overflow-border-leftWidth);
|
|
2848
|
-
height: var(--overflow-container-heightWidth);
|
|
2849
|
-
}
|
|
2850
|
-
.vuuOverflowContainer-horizontal {
|
|
2851
|
-
--item-align: center;
|
|
2852
|
-
--item-margin: 0 var(--overflow-item-gap) 0 var(--overflow-item-gap);
|
|
2853
|
-
}
|
|
2854
|
-
.vuuOverflowContainer-vertical {
|
|
2855
|
-
--item-align: stretch;
|
|
2856
|
-
--overflow-item-height: auto;
|
|
2857
|
-
--item-margin: var(--overflow-item-gap) 0 var(--overflow-item-gap) 0;
|
|
2858
|
-
--overflow-direction: column;
|
|
2859
|
-
--overflow-height: 0;
|
|
2860
|
-
--overflow-left: 0;
|
|
2861
|
-
--overflow-top: 100%;
|
|
2862
|
-
--overflow-width: auto;
|
|
2863
|
-
}
|
|
2864
|
-
.vuuOverflowContainer-wrapContainer {
|
|
2865
|
-
--border: calc(var(--overflow-border-topWidth) + var(--overflow-border-bottomWidth));
|
|
2866
|
-
--overflow-item-height: calc(var(--overflow-container-height) - var(--border));
|
|
2867
|
-
align-items: var(--item-align);
|
|
2868
|
-
display: flex;
|
|
2869
|
-
flex-direction: var(--overflow-direction);
|
|
2870
|
-
flex-wrap: wrap;
|
|
2871
|
-
height: var(--overflow-item-height);
|
|
2872
|
-
justify-content: var(--vuuOverflowContainer-justifyContent, flex-start);
|
|
2873
|
-
min-width: var(--vuuOverflowContainer-minWidth, 44px);
|
|
2874
|
-
overflow: hidden;
|
|
2875
|
-
position: relative;
|
|
2876
|
-
width: 100%;
|
|
2877
|
-
}
|
|
2878
|
-
.vuuOverflowContainer-wrapContainer-overflowed {
|
|
2879
|
-
--overflow-order: 2;
|
|
2880
|
-
--overflow-left: auto;
|
|
2881
|
-
--overflow-position: relative;
|
|
2882
|
-
--overflow-width: auto;
|
|
2883
|
-
}
|
|
2884
|
-
.vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed {
|
|
2885
|
-
--overflow-height: auto;
|
|
2886
|
-
}
|
|
2887
|
-
.vuuOverflowContainer-item {
|
|
2888
|
-
align-items: inherit;
|
|
2889
|
-
display: flex;
|
|
2890
|
-
order: 1;
|
|
2891
|
-
position: relative;
|
|
2892
|
-
height: var(--overflow-item-height);
|
|
2893
|
-
margin: var(--item-margin);
|
|
2894
|
-
}
|
|
2895
|
-
.vuuOverflowContainer-item[data-align=right] {
|
|
2896
|
-
margin-left: auto;
|
|
2897
|
-
}
|
|
2898
|
-
.vuuOverflowContainer-item.wrapped {
|
|
2899
|
-
--overflow-item-bg: #ccc;
|
|
2900
|
-
order: 3;
|
|
2901
|
-
}
|
|
2902
|
-
.vuuOverflowContainer-item.vuuDraggable-dragAway,
|
|
2903
|
-
.vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
|
|
2904
|
-
display: none;
|
|
2905
|
-
}
|
|
2906
|
-
.vuuOverflowContainer-item.vuuDropTarget-settling {
|
|
2907
|
-
visibility: hidden;
|
|
2908
|
-
}
|
|
2909
|
-
.vuuOverflowContainer-OverflowIndicator {
|
|
2910
|
-
align-items: center;
|
|
2911
|
-
background-color: transparent;
|
|
2912
|
-
display: flex;
|
|
2913
|
-
height: var(--overflow-height);
|
|
2914
|
-
order: var(--overflow-order, 99);
|
|
2915
|
-
overflow: hidden;
|
|
2916
|
-
left: var(--overflow-left, 100%);
|
|
2917
|
-
top: var(--overflow-top, 100%);
|
|
2918
|
-
position: var(--overflow-position, absolute);
|
|
2919
|
-
width: var(--overflow-width);
|
|
2920
|
-
}
|
|
2921
|
-
.vuuDraggable-vuuOverflowContainer {
|
|
2922
|
-
align-items: center;
|
|
2923
|
-
display: flex;
|
|
2924
|
-
height: 44px;
|
|
2925
|
-
}
|
|
2926
|
-
|
|
2927
|
-
/* ../vuu-layout/src/palette/Palette.css */
|
|
2928
|
-
.vuuPalette {
|
|
2929
|
-
--vuuList-borderStyle: none;
|
|
2930
|
-
}
|
|
2931
|
-
.vuuPalette-horizontal {
|
|
2932
|
-
align-items: center;
|
|
2933
|
-
display: flex;
|
|
2934
|
-
}
|
|
2935
|
-
.vuuPaletteItem {
|
|
2936
|
-
--vuu-icon-color: var(--salt-text-primary-foreground);
|
|
2937
|
-
--vuu-icon-left: 0;
|
|
2938
|
-
--vuu-icon-size: 16px;
|
|
2939
|
-
--vuu-icon-top: 11px;
|
|
2940
|
-
--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
|
|
2941
|
-
border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
|
|
2942
|
-
padding-left: 12px;
|
|
2943
|
-
font-size: 12px;
|
|
2944
|
-
font-weight: 600;
|
|
2945
|
-
}
|
|
2946
|
-
.vuuSimpleDraggableWrapper > .vuuPaletteItem {
|
|
2947
|
-
--vuu-icon-color: var(--salt-selectable-foreground);
|
|
2948
|
-
}
|
|
2949
|
-
.salt-theme .vuuPaletteItem {
|
|
2950
|
-
font-size: 11px;
|
|
2951
|
-
font-weight: normal;
|
|
2952
|
-
}
|
|
2953
|
-
|
|
2954
|
-
/* ../vuu-layout/src/stack/Stack.css */
|
|
2955
|
-
.vuuTabs {
|
|
2956
|
-
display: flex;
|
|
2957
|
-
box-sizing: border-box;
|
|
2958
|
-
flex-direction: column;
|
|
2959
|
-
}
|
|
2960
|
-
.vuuTabs-horizontal {
|
|
2961
|
-
--vuu-tabs-border-style: none solid none none;
|
|
2962
|
-
flex-direction: row;
|
|
2963
|
-
}
|
|
2964
|
-
.vuuTabs .Toolbar:before {
|
|
2965
|
-
left: 0;
|
|
2966
|
-
width: 100%;
|
|
2967
|
-
bottom: 0;
|
|
2968
|
-
height: 1px;
|
|
2969
|
-
content: "";
|
|
2970
|
-
position: absolute;
|
|
2971
|
-
background: var(--grey60);
|
|
2972
|
-
}
|
|
2973
|
-
.vuuTabs-tabPanel {
|
|
2974
|
-
display: flex;
|
|
2975
|
-
flex: 1;
|
|
2976
|
-
flex-direction: column;
|
|
2977
|
-
}
|
|
2978
|
-
.vuuTabs-tabPanel > * {
|
|
2979
|
-
flex: 1 1 auto;
|
|
2980
|
-
}
|
|
2981
|
-
.vuuTabHeader {
|
|
2982
|
-
--saltTabs-activationIndicator-background: transparent;
|
|
2983
|
-
--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
|
|
2984
|
-
border-color: var(--salt-container-primary-borderColor);
|
|
2985
|
-
border-style: var(--vuu-tabs-border-style, none none solid none);
|
|
2986
|
-
border-width: 1px;
|
|
2987
|
-
}
|
|
2988
|
-
.vuuTabHeader + .vuuView > .vuuHeader {
|
|
2989
|
-
height: 0;
|
|
2990
|
-
overflow: hidden;
|
|
2991
|
-
}
|
|
2992
|
-
.Layout-svg-button {
|
|
2993
|
-
--spacing-medium: 5px;
|
|
2994
|
-
}
|
|
2995
|
-
|
|
2996
|
-
/* ../vuu-layout/src/toolbar/Toolbar.css */
|
|
2997
|
-
.vuuToolbar {
|
|
2998
|
-
--toolbar-height: var(--vuuToolbar-height, 36px);
|
|
2999
|
-
--toolbar-item-height: var(--vuuToolbarItem-height, 100%);
|
|
3000
|
-
--vuuOverflowContainer-background: var(--vuuToolbar-background);
|
|
3001
|
-
--vuuOverflowContainer-borderColor: var(--vuuToolbar-borderColor);
|
|
3002
|
-
--vuuOverflowContainer-borderStyle: var(--vuuToolbar-borderStyle);
|
|
3003
|
-
--vuuOverflowContainer-borderWidth: var(--vuuToolbar-borderWidth);
|
|
3004
|
-
height: var(--toolbar-height);
|
|
3005
|
-
}
|
|
3006
|
-
.vuuToolbar-alignCenter {
|
|
3007
|
-
--vuuOverflowContainer-justifyContent: center;
|
|
3008
|
-
}
|
|
3009
|
-
.vuuToolbar-alignEnd {
|
|
3010
|
-
--vuuOverflowContainer-justifyContent: flex-end;
|
|
3011
|
-
}
|
|
3012
|
-
.vuuToolbarItem {
|
|
3013
|
-
height: var(--toolbar-item-height);
|
|
3014
|
-
}
|
|
3015
|
-
.vuuToolbar-withSeparators .vuuOverflowContainer-item:not(:first-child):before {
|
|
3016
|
-
content: "";
|
|
3017
|
-
position: absolute;
|
|
3018
|
-
left: calc(-1 * var(--overflow-item-gap));
|
|
3019
|
-
top: calc((var(--toolbar-height) - var(--toolbar-item-height)) /2);
|
|
3020
|
-
width: 1px;
|
|
3021
|
-
height: var(--toolbar-item-height);
|
|
3022
|
-
background-color: var(--vuu-color-gray-05);
|
|
3023
|
-
}
|
|
3024
|
-
.vuuToolbarItem.vuuFocusVisible {
|
|
3025
|
-
outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
|
|
3026
|
-
outline-style: dashed;
|
|
3027
|
-
outline-width: 1px;
|
|
3028
|
-
outline-offset: 0px;
|
|
3029
|
-
}
|
|
3030
|
-
.vuuPopupMenu:focus,
|
|
3031
|
-
.vuuToolbarItem:focus,
|
|
3032
|
-
.vuuToolbarItem:focus-visible {
|
|
3033
|
-
outline-color: var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));
|
|
3034
|
-
outline-style: dashed;
|
|
3035
|
-
outline-width: 1px;
|
|
3036
|
-
outline-offset: 0px;
|
|
3037
|
-
}
|
|
3038
|
-
|
|
3039
|
-
/* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
|
|
3040
|
-
[data-design-mode=true] .Component {
|
|
3041
|
-
filter: grayscale(100%);
|
|
3042
|
-
opacity: 0.4;
|
|
3043
|
-
}
|
|
3044
|
-
[data-design-mode=true] .Component:after {
|
|
3045
|
-
color: black;
|
|
3046
|
-
content: "Component";
|
|
3047
|
-
height: 12px;
|
|
3048
|
-
background-color: yellow;
|
|
3049
|
-
}
|
|
3050
|
-
.LayoutConfigurator {
|
|
3051
|
-
--margin-color: #f3cea5;
|
|
3052
|
-
--border-color: #fddda0;
|
|
3053
|
-
--padding-color: #c6d092;
|
|
3054
|
-
--content-color: #8cb6c0;
|
|
3055
|
-
display: flex;
|
|
3056
|
-
flex-direction: column;
|
|
3057
|
-
align-items: stretch;
|
|
3058
|
-
background-color: var(--margin-color);
|
|
3059
|
-
}
|
|
3060
|
-
.LayoutConfigurator .layout-outer {
|
|
3061
|
-
flex: 1 1 auto;
|
|
3062
|
-
display: flex;
|
|
3063
|
-
flex-direction: column;
|
|
3064
|
-
align-items: stretch;
|
|
3065
|
-
}
|
|
3066
|
-
.LayoutBox {
|
|
3067
|
-
--hw-control-font-size: 13px;
|
|
3068
|
-
--hw-text-input-bg: rgba(255, 255, 255, 0.3);
|
|
3069
|
-
--hwTextInput-padding: 3px;
|
|
3070
|
-
--hw-text-input-position: absolute;
|
|
3071
|
-
--hwTextInput-width: 30px;
|
|
3072
|
-
flex: 1 1 auto;
|
|
3073
|
-
}
|
|
3074
|
-
.LayoutBox > .layout-top {
|
|
3075
|
-
flex: 0 0 40px;
|
|
3076
|
-
padding-left: 12px;
|
|
3077
|
-
display: flex;
|
|
3078
|
-
flex-direction: row;
|
|
3079
|
-
align-items: center;
|
|
3080
|
-
position: relative;
|
|
3081
|
-
}
|
|
3082
|
-
.LayoutBox > .layout-bottom {
|
|
3083
|
-
flex: 0 0 40px;
|
|
3084
|
-
position: relative;
|
|
3085
|
-
display: flex;
|
|
3086
|
-
flex-direction: row;
|
|
3087
|
-
align-items: center;
|
|
3088
|
-
}
|
|
3089
|
-
.LayoutBox > .layout-inner > .layout-right,
|
|
3090
|
-
.LayoutBox > .layout-inner > .layout-left {
|
|
3091
|
-
flex: 0 0 40px;
|
|
3092
|
-
display: flex;
|
|
3093
|
-
flex-direction: column;
|
|
3094
|
-
justify-content: center;
|
|
3095
|
-
align-items: center;
|
|
3096
|
-
}
|
|
3097
|
-
.layout-top,
|
|
3098
|
-
.layout-bottom {
|
|
3099
|
-
--hw-text-input-margin: 0 0 0 -15px;
|
|
3100
|
-
}
|
|
3101
|
-
.layout-top > .layout-input,
|
|
3102
|
-
.layout-bottom > .layout-input {
|
|
3103
|
-
left: 50%;
|
|
3104
|
-
}
|
|
3105
|
-
.LayoutBox > .layout-inner {
|
|
3106
|
-
flex: 1 1 auto;
|
|
3107
|
-
display: flex;
|
|
3108
|
-
flex-direction: row;
|
|
3109
|
-
align-items: stretch;
|
|
3110
|
-
}
|
|
3111
|
-
.LayoutBox.layout-margin {
|
|
3112
|
-
background-color: var(--margin-color);
|
|
3113
|
-
border: dashed 2px black;
|
|
3114
|
-
}
|
|
3115
|
-
.LayoutBox.layout-border {
|
|
3116
|
-
background-color: var(--border-color);
|
|
3117
|
-
border: solid 2px black;
|
|
3118
|
-
}
|
|
3119
|
-
.LayoutBox.layout-padding {
|
|
3120
|
-
background-color: var(--padding-color);
|
|
3121
|
-
border: dashed 2px black;
|
|
3122
|
-
}
|
|
3123
|
-
.LayoutBox .layout-content {
|
|
3124
|
-
flex: 1 1 auto;
|
|
3125
|
-
background-color: var(--content-color);
|
|
3126
|
-
border: solid 2px #808080;
|
|
3127
|
-
}
|
|
3128
|
-
.LayoutBox .layout-title {
|
|
3129
|
-
color: #161616;
|
|
3130
|
-
font-size: 11px;
|
|
3131
|
-
left: 4px;
|
|
3132
|
-
line-height: 15px;
|
|
3133
|
-
position: absolute;
|
|
3134
|
-
top: 1px;
|
|
3135
|
-
}
|
|
3136
|
-
|
|
3137
|
-
/* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
|
|
3138
|
-
.hwLayoutTreeViewer {
|
|
3139
|
-
}
|
|
3140
|
-
.hwLayoutTreeNode {
|
|
3141
|
-
cursor: default;
|
|
3142
|
-
}
|
|
3143
|
-
.hwLayoutTreeNode:hover {
|
|
3144
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
3145
|
-
}
|
|
3146
|
-
.hwLayoutTreeNode[aria-selected=true] {
|
|
3147
|
-
background-color: cornflowerblue;
|
|
3148
|
-
color: white;
|
|
3149
|
-
}
|
|
3150
|
-
|
|
3151
|
-
/* ../vuu-shell/src/login/LoginPanel.css */
|
|
3152
|
-
.vuuLoginPanel {
|
|
3153
|
-
--saltInput-paddingLeft: 8px;
|
|
3154
|
-
--login-width: 856px;
|
|
3155
|
-
--login-height: 550px;
|
|
3156
|
-
--hwTextInput-border: solid 1px #ccc;
|
|
3157
|
-
--hwTextInput-height: 28px;
|
|
3158
|
-
--hwTextInput-padding: 0 12px;
|
|
3159
|
-
--hwTextInput-width: 100%;
|
|
3160
|
-
--login-row-height: 60px;
|
|
3161
|
-
border-radius: 16px;
|
|
3162
|
-
box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.25);
|
|
3163
|
-
display: flex;
|
|
3164
|
-
height: var(--login-height);
|
|
3165
|
-
margin: 0 auto;
|
|
3166
|
-
width: var(--login-width);
|
|
3167
|
-
}
|
|
3168
|
-
.vuuLoginPanel .saltInput-primary {
|
|
3169
|
-
--saltInput-height: 36px;
|
|
3170
|
-
}
|
|
3171
|
-
.vuuLoginPanel-title {
|
|
3172
|
-
justify-content: center;
|
|
3173
|
-
font-size: 28px;
|
|
3174
|
-
font-weight: 400;
|
|
3175
|
-
display: flex;
|
|
3176
|
-
}
|
|
3177
|
-
.vuuLoginPanel-branding {
|
|
3178
|
-
align-items: center;
|
|
3179
|
-
background-color: var(--vuu-color-purple-50);
|
|
3180
|
-
border-radius: 16px 0 0 16px;
|
|
3181
|
-
display: flex;
|
|
3182
|
-
flex: 0 0 368px;
|
|
3183
|
-
flex-direction: column;
|
|
3184
|
-
gap: 40px;
|
|
3185
|
-
justify-content: center;
|
|
3186
|
-
padding: 40px 100px;
|
|
3187
|
-
}
|
|
3188
|
-
.vuuLoginPanel-form {
|
|
3189
|
-
background-color: white;
|
|
3190
|
-
border-radius: 0 16px 16px 0px;
|
|
3191
|
-
display: flex;
|
|
3192
|
-
flex: 1 1 auto;
|
|
3193
|
-
flex-direction: column;
|
|
3194
|
-
gap: 32px;
|
|
3195
|
-
justify-content: center;
|
|
3196
|
-
padding: 0 40px;
|
|
3197
|
-
}
|
|
3198
|
-
.vuuLoginPanel-password {
|
|
3199
|
-
--vuu-icon-size: 16px;
|
|
3200
|
-
}
|
|
3201
|
-
.vuuLoginPanel-appName {
|
|
3202
|
-
color: white;
|
|
3203
|
-
font-size: 18px;
|
|
3204
|
-
font-weight: 700;
|
|
3205
|
-
text-transform: uppercase;
|
|
3206
|
-
}
|
|
3207
|
-
.vuuLoginPanel-login {
|
|
3208
|
-
--saltButton-height: 36px;
|
|
3209
|
-
--saltButton-borderRadius: 6px;
|
|
3210
|
-
width: 100%;
|
|
3211
|
-
}
|
|
3212
|
-
|
|
3213
|
-
/* ../vuu-shell/src/app-header/AppHeader.css */
|
|
3214
|
-
.vuuAppHeader {
|
|
3215
|
-
--saltButton-borderRadius: 6px;
|
|
3216
|
-
--saltButton-text-color: var(--vuu-color-gray-50);
|
|
3217
|
-
--saltButton-padding: 12px;
|
|
3218
|
-
--vuuToolbarItem-height: 26px;
|
|
3219
|
-
--vuuOverflowContainer-gap: 8px;
|
|
3220
|
-
--vuu-icon-color: var(--vuu-color-gray-45);
|
|
3221
|
-
--vuu-icon-size: 16px;
|
|
3222
|
-
--vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));
|
|
3223
|
-
--vuuToolbar-borderWidth: 1px;
|
|
3224
|
-
--vuuToolbar-borderStyle: solid;
|
|
3225
|
-
--vuuToolbar-borderColor: var(--vuu-color-gray-30);
|
|
3226
|
-
align-items: center;
|
|
3227
|
-
display: flex;
|
|
3228
|
-
justify-content: flex-end;
|
|
3229
|
-
}
|
|
3230
|
-
.vuu-theme .vuuAppHeader {
|
|
3231
|
-
border-radius: 8px;
|
|
3232
|
-
margin-bottom: 8px;
|
|
3233
|
-
}
|
|
3234
|
-
|
|
3235
|
-
/* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
|
|
3236
|
-
.vuuStatus-container {
|
|
3237
|
-
display: flex;
|
|
3238
|
-
}
|
|
3239
|
-
.vuuStatus-text {
|
|
3240
|
-
align-self: center;
|
|
3241
|
-
}
|
|
3242
|
-
.vuuStatus {
|
|
3243
|
-
--vuu-icon-height: 18px;
|
|
3244
|
-
--vuu-icon-padding: var(--vuuStatus-padding, 6px);
|
|
3245
|
-
--vuu-icon-width: var(--vuuStatus-width, auto);
|
|
3246
|
-
--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
|
|
3247
|
-
align-items: center;
|
|
3248
|
-
display: inline-flex;
|
|
3249
|
-
height: var(--vuu-icon-height);
|
|
3250
|
-
justify-content: center;
|
|
3251
|
-
min-width: var(--vuu-icon-min-width);
|
|
3252
|
-
padding: 0 var(--vuu-icon-padding);
|
|
3253
|
-
width: var(--vuu-icon-width);
|
|
3254
|
-
position: relative;
|
|
3255
|
-
}
|
|
3256
|
-
.vuuStatus[data-icon]::after {
|
|
3257
|
-
top: 0;
|
|
3258
|
-
right: 0;
|
|
3259
|
-
bottom: 0;
|
|
3260
|
-
left: 0;
|
|
3261
|
-
content: "";
|
|
3262
|
-
box-shadow: 0 0 0 0 black;
|
|
3263
|
-
position: absolute;
|
|
3264
|
-
mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
|
|
3265
|
-
-webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
|
|
3266
|
-
}
|
|
3267
|
-
.vuuActiveStatus::after {
|
|
3268
|
-
--vuu-icon-svg: var(--svg-active-status);
|
|
3269
|
-
background-color: rgb(0, 255, 0);
|
|
3270
|
-
}
|
|
3271
|
-
.vuuConnectingStatus::after {
|
|
3272
|
-
--vuu-icon-svg: var(--svg-connecting-status);
|
|
3273
|
-
background-color: orange;
|
|
3274
|
-
transform: scale(1);
|
|
3275
|
-
animation: infinite pulse 1s;
|
|
3276
|
-
}
|
|
3277
|
-
.vuuDisconnectedStatus::after {
|
|
3278
|
-
--vuu-icon-svg: var(--svg-disconnected-status);
|
|
3279
|
-
background-color: red;
|
|
3280
|
-
transform: scale(1);
|
|
3281
|
-
animation: infinite pulse 0.5s;
|
|
3282
|
-
}
|
|
3283
|
-
@keyframes pulse {
|
|
3284
|
-
0% {
|
|
3285
|
-
transform: scale(0.95);
|
|
3286
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
|
|
3287
|
-
}
|
|
3288
|
-
70% {
|
|
3289
|
-
transform: scale(1);
|
|
3290
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
3291
|
-
}
|
|
3292
|
-
100% {
|
|
3293
|
-
transform: scale(0.95);
|
|
3294
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
3295
|
-
}
|
|
3296
|
-
}
|
|
3297
|
-
|
|
3298
|
-
/* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
|
|
3299
|
-
.saveLayoutPanel {
|
|
3300
|
-
--salt-selectable-foreground-hover: #6d18bdc3;
|
|
3301
|
-
--salt-selectable-foreground-selected: #6D18BD;
|
|
3302
|
-
--salt-selectable-borderColor-selected: #6D18BD;
|
|
3303
|
-
--saltInputLegacy-fontSize: 12px;
|
|
3304
|
-
--salt-text-label-fontSize: 10px;
|
|
3305
|
-
--saltFormFieldLegacy-label-paddingLeft: 0;
|
|
3306
|
-
--saltFormField-label-fontWeight: 400;
|
|
3307
|
-
--saltText-color: var(--text-secondary-foreground, #606477);
|
|
3308
|
-
}
|
|
3309
|
-
.spinner {
|
|
3310
|
-
width: 100px;
|
|
3311
|
-
height: 100px;
|
|
3312
|
-
background-image: var(--svg-spinner);
|
|
3313
|
-
}
|
|
3314
|
-
.saveLayoutPanel-panelContainer {
|
|
3315
|
-
display: flex;
|
|
3316
|
-
flex-direction: column;
|
|
3317
|
-
align-items: flex-start;
|
|
3318
|
-
}
|
|
3319
|
-
.saveLayoutPanel-panelContent {
|
|
3320
|
-
display: flex;
|
|
3321
|
-
align-items: flex-start;
|
|
3322
|
-
gap: 32px;
|
|
3323
|
-
}
|
|
3324
|
-
.saveLayoutPanel-formContainer {
|
|
3325
|
-
display: flex;
|
|
3326
|
-
width: 217px;
|
|
3327
|
-
flex-direction: column;
|
|
3328
|
-
align-items: flex-start;
|
|
3329
|
-
gap: 16px;
|
|
3330
|
-
}
|
|
3331
|
-
.saveLayoutPanel-formField {
|
|
3332
|
-
display: flex;
|
|
3333
|
-
flex-direction: column;
|
|
3334
|
-
gap: 1px;
|
|
3335
|
-
}
|
|
3336
|
-
.saveLayoutPanel-inputText {
|
|
3337
|
-
border: none;
|
|
3338
|
-
color: var(--light-text-primary, #15171B);
|
|
3339
|
-
font-family: Nunito Sans A-Variant, serif;
|
|
3340
|
-
font-feature-settings:
|
|
3341
|
-
"ss02" on,
|
|
3342
|
-
"ss01" on,
|
|
3343
|
-
"salt" on,
|
|
3344
|
-
"liga" off;
|
|
3345
|
-
font-size: 12px;
|
|
3346
|
-
font-weight: 400;
|
|
3347
|
-
line-height: 16px;
|
|
3348
|
-
padding-left: 4px;
|
|
3349
|
-
width: 100%;
|
|
3350
|
-
outline: none;
|
|
3351
|
-
}
|
|
3352
|
-
.saveLayoutPanel-settingsGroup {
|
|
3353
|
-
display: flex;
|
|
3354
|
-
flex-wrap: wrap;
|
|
3355
|
-
align-items: flex-end;
|
|
3356
|
-
gap: 10px;
|
|
3357
|
-
width: 100%;
|
|
3358
|
-
line-height: 16px;
|
|
3359
|
-
}
|
|
3360
|
-
.saveLayoutPanel-screenshotContainer {
|
|
3361
|
-
display: flex;
|
|
3362
|
-
width: 304px;
|
|
3363
|
-
height: 208px;
|
|
3364
|
-
padding: 11px 15.5px;
|
|
3365
|
-
justify-content: center;
|
|
3366
|
-
align-items: center;
|
|
3367
|
-
border: 1px solid #E8E8E8;
|
|
3368
|
-
background: var(--dark-text-primary, #FFF);
|
|
3369
|
-
}
|
|
3370
|
-
.saveLayoutPanel-screenshot {
|
|
3371
|
-
background: lightgray 50% / cover no-repeat;
|
|
3372
|
-
width: 273px;
|
|
3373
|
-
height: 186px;
|
|
3374
|
-
}
|
|
3375
|
-
.saveLayoutPanel-buttonsContainer {
|
|
3376
|
-
display: flex;
|
|
3377
|
-
justify-content: flex-end;
|
|
3378
|
-
align-items: flex-start;
|
|
3379
|
-
align-self: stretch;
|
|
3380
|
-
padding-top: 24px;
|
|
3381
|
-
gap: 8px;
|
|
3382
|
-
}
|
|
3383
|
-
.saveLayoutPanel-cancelButton,
|
|
3384
|
-
.saveLayoutPanel-saveButton {
|
|
3385
|
-
display: flex;
|
|
3386
|
-
height: fit-content;
|
|
3387
|
-
padding: 4px 8px;
|
|
3388
|
-
align-items: flex-start;
|
|
3389
|
-
gap: 8px;
|
|
3390
|
-
border-radius: 6px;
|
|
3391
|
-
font-size: 12px;
|
|
3392
|
-
font-style: normal;
|
|
3393
|
-
font-weight: 700;
|
|
3394
|
-
line-height: 133.333%;
|
|
3395
|
-
letter-spacing: 0.48px;
|
|
3396
|
-
text-transform: uppercase;
|
|
3397
|
-
}
|
|
3398
|
-
.saveLayoutPanel-cancelButton {
|
|
3399
|
-
color: var(--actionable-primary-foreground-default, #606477);
|
|
3400
|
-
background: var(--actionable-primary-background-default, #FFF);
|
|
3401
|
-
}
|
|
3402
|
-
.saveLayoutPanel-saveButton {
|
|
3403
|
-
background: #6D18BD;
|
|
3404
|
-
border-color: #6D18BD;
|
|
3405
|
-
color: white;
|
|
3406
|
-
}
|
|
3407
|
-
.saveLayoutPanel-saveButton.saltButton:disabled {
|
|
3408
|
-
background: #6D18BD;
|
|
3409
|
-
border-color: #6D18BD;
|
|
3410
|
-
color: white;
|
|
3411
|
-
opacity: 0.3;
|
|
3412
|
-
}
|
|
3413
|
-
.saveLayoutPanel-saveButton.saltButton:hover {
|
|
3414
|
-
background: #F37880;
|
|
3415
|
-
border-color: #F37880;
|
|
3416
|
-
color: white;
|
|
3417
|
-
}
|
|
3418
|
-
|
|
3419
|
-
/* ../vuu-filters/src/filter-builder-menu/FilterBuilderMenu.css */
|
|
3420
|
-
.vuuFilterBuilderMenu {
|
|
3421
|
-
margin: 0;
|
|
3422
|
-
}
|
|
3423
|
-
.vuuFilterBuilderMenu-trigger {
|
|
3424
|
-
display: inline-block;
|
|
3425
|
-
height: 26px;
|
|
3426
|
-
width: 0px;
|
|
3427
|
-
}
|
|
3428
|
-
.vuuFilterBuilderMenuList {
|
|
3429
|
-
--vuuList-borderStyle: none;
|
|
3430
|
-
}
|
|
3431
|
-
.vuuListItem:has(.vuuMenuButton) {
|
|
3432
|
-
justify-content: center;
|
|
3433
|
-
}
|
|
3434
|
-
.vuuMenuButton {
|
|
3435
|
-
background-color: white;
|
|
3436
|
-
border: solid 1px var(--salt-actionable-primary-foreground);
|
|
3437
|
-
border-radius: 6px;
|
|
3438
|
-
color: var(--vuu-color-gray-50);
|
|
3439
|
-
font-size: 9px;
|
|
3440
|
-
padding: 1px 6px;
|
|
3441
|
-
}
|
|
3442
|
-
|
|
3443
|
-
/* ../vuu-filters/src/filter-clause/ExpandoCombobox.css */
|
|
3444
|
-
.vuuExpandoCombobox {
|
|
3445
|
-
--expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
|
|
3446
|
-
--expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
|
|
3447
|
-
--saltInput-outline: none;
|
|
3448
|
-
--saltInput-fontSize: var(--expando-combobox-fontSize);
|
|
3449
|
-
--saltInput-height: var(--expando-combobox-height);
|
|
3450
|
-
--saltInput-minWidth: 4px;
|
|
3451
|
-
display: inline-flex;
|
|
3452
|
-
flex-direction: column;
|
|
3453
|
-
height: var(--expando-combobox-height);
|
|
3454
|
-
min-width: 4px;
|
|
3455
|
-
padding: 0;
|
|
3456
|
-
}
|
|
3457
|
-
.vuuExpandoCombobox .saltInput {
|
|
3458
|
-
background-color: transparent;
|
|
3459
|
-
position: absolute;
|
|
3460
|
-
}
|
|
3461
|
-
.vuuExpandoCombobox .vuuDropdown {
|
|
3462
|
-
height: 100%;
|
|
3463
|
-
}
|
|
3464
|
-
.vuuExpandoCombobox-Input.saltInput {
|
|
3465
|
-
border: none;
|
|
3466
|
-
left: 0px;
|
|
3467
|
-
margin: 0;
|
|
3468
|
-
min-height: 100%;
|
|
3469
|
-
padding: 0;
|
|
3470
|
-
right: 0px;
|
|
3471
|
-
width: auto;
|
|
3472
|
-
}
|
|
3473
|
-
.vuuExpandoCombobox .saltInput-input {
|
|
3474
|
-
border: none;
|
|
3475
|
-
box-sizing: content-box;
|
|
3476
|
-
display: block;
|
|
3477
|
-
flex: 1;
|
|
3478
|
-
font: inherit;
|
|
3479
|
-
margin: 0;
|
|
3480
|
-
min-width: 0;
|
|
3481
|
-
outline: none;
|
|
3482
|
-
padding: 0;
|
|
3483
|
-
}
|
|
3484
|
-
.vuuExpandoCombobox:before {
|
|
3485
|
-
content: attr(data-text);
|
|
3486
|
-
display: block;
|
|
3487
|
-
font-size: var(--expando-combobox-fontSize);
|
|
3488
|
-
height: 0px;
|
|
3489
|
-
overflow: hidden;
|
|
3490
|
-
white-space: pre-wrap;
|
|
3491
|
-
}
|
|
3492
|
-
|
|
3493
|
-
/* ../vuu-filters/src/filter-clause/FilterClauseEditor.css */
|
|
3494
|
-
.vuuFilterClause {
|
|
3495
|
-
--vuuExpandoInput-top: 0;
|
|
3496
|
-
--vuuExpandoInput-height: 16px;
|
|
3497
|
-
--vuuExpandoCombobox-height: 16px;
|
|
3498
|
-
--saltButton-height: 16px;
|
|
3499
|
-
--saltButton-width: 16px;
|
|
3500
|
-
display: flex;
|
|
3501
|
-
flex-direction: row;
|
|
3502
|
-
width: fit-content;
|
|
3503
|
-
border-color: var(--vuu-color-gray-45);
|
|
3504
|
-
border-radius: 6px;
|
|
3505
|
-
border-width: 1px;
|
|
3506
|
-
border-style: solid;
|
|
3507
|
-
background: #ffffff;
|
|
3508
|
-
--salt-focused-outlineStyle: dotted;
|
|
3509
|
-
}
|
|
3510
|
-
.vuuFilterClause:focus-within {
|
|
3511
|
-
border-color: var(--vuu-color-purple-10);
|
|
3512
|
-
}
|
|
3513
|
-
.vuu-density-high .vuuFilterClause {
|
|
3514
|
-
padding: 4px 8px;
|
|
3515
|
-
gap: 4px;
|
|
3516
|
-
--salt-text-lineHeight: 12px;
|
|
3517
|
-
--saltInputLegacy-fontSize: 12px;
|
|
3518
|
-
--saltInputLegacy-minWidth: 12px;
|
|
3519
|
-
}
|
|
3520
|
-
.vuu-density-high .vuuFilterClause .saltInput {
|
|
3521
|
-
padding: 0;
|
|
3522
|
-
min-height: 16px;
|
|
3523
|
-
height: 16px;
|
|
3524
|
-
}
|
|
3525
|
-
.vuuFilterClause .vuuExpandoCombobox {
|
|
3526
|
-
flex-basis: auto;
|
|
3527
|
-
flex-shrink: 0;
|
|
3528
|
-
flex-grow: 0;
|
|
3529
|
-
}
|
|
3530
|
-
.vuuFilterClauseOperator-hidden {
|
|
3531
|
-
display: none;
|
|
3532
|
-
}
|
|
3533
|
-
.vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
|
|
3534
|
-
}
|
|
3535
|
-
.vuuFilterClause .saltInput-focused,
|
|
3536
|
-
.vuuFilterClause .saltTokenizedInput-focused {
|
|
3537
|
-
outline: none;
|
|
3538
|
-
color: var(--salt-text-primary-foreground);
|
|
3539
|
-
}
|
|
3540
|
-
.vuuFilterClause .saltInput-input::selection {
|
|
3541
|
-
color: #ffffff;
|
|
3542
|
-
}
|
|
3543
|
-
.vuu-theme .saltList {
|
|
3544
|
-
--list-borderWidth: 1px;
|
|
3545
|
-
--list-borderStyle: solid;
|
|
3546
|
-
border-radius: 4px;
|
|
3547
|
-
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
|
|
3548
|
-
}
|
|
3549
|
-
.saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
|
|
3550
|
-
--list-item-background: var(--list-item-background-active);
|
|
3551
|
-
color: var(--list-item-text-color-active);
|
|
3552
|
-
}
|
|
3553
|
-
.saltTokenizedInput {
|
|
3554
|
-
height: 16px;
|
|
3555
|
-
min-height: 16px;
|
|
3556
|
-
}
|
|
3557
|
-
.saltTokenizedInput .saltInputPill {
|
|
3558
|
-
--pill-fontSize: 12px;
|
|
3559
|
-
--saltButton-borderStyle: none;
|
|
3560
|
-
--pill-background: none;
|
|
3561
|
-
height: 16px;
|
|
3562
|
-
margin: 0;
|
|
3563
|
-
}
|
|
3564
|
-
.saltTokenizedInput-pillGroup {
|
|
3565
|
-
padding: 0;
|
|
3566
|
-
height: 16px;
|
|
3567
|
-
}
|
|
3568
|
-
|
|
3569
|
-
/* ../vuu-filters/src/filter-pill-menu/FilterPillMenu.css */
|
|
3570
|
-
.vuuFilterPillMenu {
|
|
3571
|
-
top: -1px;
|
|
3572
|
-
}
|
|
3573
|
-
|
|
3574
|
-
/* ../vuu-filters/src/filter-pill/FilterPill.css */
|
|
3575
|
-
.vuuFilterPill {
|
|
3576
|
-
align-items: center;
|
|
3577
|
-
background: var(--salt-taggable-background);
|
|
3578
|
-
border: solid 1px var(--salt-taggable-foreground);
|
|
3579
|
-
border-radius: 24px;
|
|
3580
|
-
color: var(--vuu-color-gray-50);
|
|
3581
|
-
display: inline-flex;
|
|
3582
|
-
max-width: var(--vuuFilterPill-maxWidth, 200px);
|
|
3583
|
-
padding: 0 8px;
|
|
3584
|
-
position: relative;
|
|
3585
|
-
user-select: none;
|
|
3586
|
-
outline: none;
|
|
3587
|
-
}
|
|
3588
|
-
.vuuFilterPill.vuuToolbarItem {
|
|
3589
|
-
height: 24px;
|
|
3590
|
-
}
|
|
3591
|
-
.vuuFilterPill[aria-selected=true] {
|
|
3592
|
-
--vuuPopupMenu-iconColor: white;
|
|
3593
|
-
--salt-text-background-selected: var(--vuu-color-blue-40);
|
|
3594
|
-
--salt-text-color-selected: var(--salt-text-primary-foreground);
|
|
3595
|
-
--saltInput-background-hover: var(--salt-taggable-background-active);
|
|
3596
|
-
--saltInput-color: var(--salt-taggable-foreground-active);
|
|
3597
|
-
background: var(--salt-taggable-background-active);
|
|
3598
|
-
color: white;
|
|
3599
|
-
}
|
|
3600
|
-
.vuuFilterPill:not([aria-selected=true]):hover {
|
|
3601
|
-
--vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
|
|
3602
|
-
background-color: var(--salt-taggable-background-hover);
|
|
3603
|
-
border-color: var(--salt-taggable-background-hover);
|
|
3604
|
-
color: var(--vuu-color-gray-80);
|
|
3605
|
-
}
|
|
3606
|
-
|
|
3607
|
-
/* ../vuu-filters/src/filter-bar/FilterBar.css */
|
|
3608
|
-
.vuuFilterBar {
|
|
3609
|
-
--vuu-svg-tune: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18C3 18.55 3.45 19 4 19H9V17H4C3.45 17 3 17.45 3 18ZM3 6C3 6.55 3.45 7 4 7H13V5H4C3.45 5 3 5.45 3 6ZM13 20V19H20C20.55 19 21 18.55 21 18C21 17.45 20.55 17 20 17H13V16C13 15.45 12.55 15 12 15C11.45 15 11 15.45 11 16V20C11 20.55 11.45 21 12 21C12.55 21 13 20.55 13 20ZM7 10V11H4C3.45 11 3 11.45 3 12C3 12.55 3.45 13 4 13H7V14C7 14.55 7.45 15 8 15C8.55 15 9 14.55 9 14V10C9 9.45 8.55 9 8 9C7.45 9 7 9.45 7 10ZM21 12C21 11.45 20.55 11 20 11H11V13H20C20.55 13 21 12.55 21 12ZM16 9C16.55 9 17 8.55 17 8V7H20C20.55 7 21 6.55 21 6C21 5.45 20.55 5 20 5H17V4C17 3.45 16.55 3 16 3C15.45 3 15 3.45 15 4V8C15 8.55 15.45 9 16 9Z" /></svg>');
|
|
3610
|
-
--vuuToolbar-height: 28px;
|
|
3611
|
-
--salt-container-primary-borderColor: var(--vuu-color-purple-10);
|
|
3612
|
-
--vuuOverflowContainer-minWidth: 0;
|
|
3613
|
-
--saltButton-height: 26px;
|
|
3614
|
-
--saltButton-width: 26px;
|
|
3615
|
-
align-items: center;
|
|
3616
|
-
background-color: var(--salt-container-secondary-background);
|
|
3617
|
-
border-bottom: solid 1px #D6D7DA;
|
|
3618
|
-
display: flex;
|
|
3619
|
-
flex: var(--vuuFilterBar-flex);
|
|
3620
|
-
gap: 4px;
|
|
3621
|
-
height: 33px;
|
|
3622
|
-
padding: 0px 8px;
|
|
3623
|
-
}
|
|
3624
|
-
.vuuFilterbar-icon {
|
|
3625
|
-
display: inline-block;
|
|
3626
|
-
height: 16px;
|
|
3627
|
-
width: 16px;
|
|
3628
|
-
}
|
|
3629
|
-
.vuuFilterBar [data-icon=tune] {
|
|
3630
|
-
--vuu-icon-size: 16px;
|
|
3631
|
-
--vuu-icon-svg: var(--vuu-svg-tune);
|
|
3632
|
-
}
|
|
3633
|
-
.vuuFilterBar [data-icon=plus] {
|
|
3634
|
-
--vuu-icon-size: 16px;
|
|
3635
|
-
}
|
|
3636
|
-
.vuuFilterBar .vuuToolbar {
|
|
3637
|
-
flex: 0 1 auto;
|
|
3638
|
-
}
|
|
3639
|
-
|
|
3640
|
-
/* ../vuu-filters/src/filter-input/FilterInput.css */
|
|
3641
|
-
.salt-theme {
|
|
3642
|
-
--vuuFilterEditor-lineHeight: 28px;
|
|
3643
|
-
}
|
|
3644
|
-
.salt-density-high {
|
|
3645
|
-
--vuuFilterEditor-buttonWidth: 20px;
|
|
3646
|
-
--vuuFilterEditor-height: 22px;
|
|
3647
|
-
--vuuFilterEditor-lineHeight: 20px;
|
|
3648
|
-
}
|
|
3649
|
-
.vuuFilterInput {
|
|
3650
|
-
--vuuFilterEditor-background: var(--salt-container-primary-background);
|
|
3651
|
-
--vuuFilterEditor-color: var(--salt-text-primary-foreground);
|
|
3652
|
-
--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
|
|
3653
|
-
--vuuFilterEditor-fontSize: var(--salt-text-fontSize);
|
|
3654
|
-
--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
|
|
3655
|
-
--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
|
|
3656
|
-
--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
|
|
3657
|
-
--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
|
|
3658
|
-
--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
|
|
3659
|
-
--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
|
|
3660
|
-
--vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
|
|
3661
|
-
--vuuFilterEditor-suggestion-height: 24px;
|
|
3662
|
-
--vuuFilterEditor-variableColor: var(--vuu-color_purple-10);
|
|
3663
|
-
align-items: center;
|
|
3664
|
-
border-color: var(--salt-container-secondary-borderColor);
|
|
3665
|
-
border-style: solid none;
|
|
3666
|
-
border-width: 1px;
|
|
3667
|
-
box-sizing: border-box;
|
|
3668
|
-
display: flex;
|
|
3669
|
-
height: var(--vuuFilterEditor-height, 30px);
|
|
3670
|
-
}
|
|
3671
|
-
.vuuFilterInput-Editor {
|
|
3672
|
-
flex: 1 1 auto;
|
|
3673
|
-
height: 100%;
|
|
3674
|
-
}
|
|
3675
|
-
.vuuFilterInput-FilterButton,
|
|
3676
|
-
.vuuFilterInput-ClearButton {
|
|
3677
|
-
--vuu-icon-size: 12px;
|
|
3678
|
-
--saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
|
|
3679
|
-
}
|
|
3680
|
-
.vuuIllustration {
|
|
3681
|
-
--vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
|
|
3682
|
-
background: var(--salt-container-secondary-background);
|
|
3683
|
-
color: var(--salt-text-secondary-foreground);
|
|
3684
|
-
}
|
|
3685
|
-
|
|
3686
|
-
/* ../vuu-shell/src/layout-management/LayoutTile.css */
|
|
3687
|
-
.vuuLayoutTile-layoutTile {
|
|
3688
|
-
display: flex;
|
|
3689
|
-
align-items: center;
|
|
3690
|
-
gap: 8px;
|
|
3691
|
-
padding: 8px 0px;
|
|
3692
|
-
flex: 1 1 auto;
|
|
3693
|
-
cursor: pointer;
|
|
3694
|
-
}
|
|
3695
|
-
.vuuLayoutTile-layoutName {
|
|
3696
|
-
color: var(--light-text-primary, #15171B);
|
|
3697
|
-
font-weight: 600;
|
|
3698
|
-
line-height: 133.333%;
|
|
3699
|
-
text-transform: capitalize;
|
|
3700
|
-
}
|
|
3701
|
-
.vuuLayoutTile-screenshot {
|
|
3702
|
-
width: 60px;
|
|
3703
|
-
height: 45.6px;
|
|
3704
|
-
border: 1px solid #D6D7DA;
|
|
3705
|
-
}
|
|
3706
|
-
.vuuLayoutTile-layoutDetails {
|
|
3707
|
-
color: var(--light-text-secondary, #606477);
|
|
3708
|
-
font-size: 10px;
|
|
3709
|
-
font-weight: 600;
|
|
3710
|
-
line-height: 150%;
|
|
3711
|
-
}
|
|
3712
|
-
|
|
3713
|
-
/* ../vuu-shell/src/layout-management/LayoutList.css */
|
|
3714
|
-
.vuuLayoutList {
|
|
3715
|
-
--vuuMeasuredContainer-flex: 1 1 1px;
|
|
3716
|
-
align-self: stretch;
|
|
3717
|
-
display: flex;
|
|
3718
|
-
flex-direction: column;
|
|
3719
|
-
height: 100%;
|
|
3720
|
-
overflow: hidden;
|
|
3721
|
-
}
|
|
3722
|
-
.vuuLayoutList-header {
|
|
3723
|
-
color: var(--light-text-primary, #15171B);
|
|
3724
|
-
flex: 0 0 47px;
|
|
3725
|
-
font-weight: 700;
|
|
3726
|
-
letter-spacing: 0.48px;
|
|
3727
|
-
text-transform: uppercase;
|
|
3728
|
-
display: flex;
|
|
3729
|
-
padding: 16px 0px;
|
|
3730
|
-
border-bottom: 1px solid rgba(119, 124, 148, 0.10);
|
|
3731
|
-
line-height: 200%;
|
|
3732
|
-
}
|
|
3733
|
-
.vuuLayoutList-groupName {
|
|
3734
|
-
display: flex;
|
|
3735
|
-
padding-top: 24px;
|
|
3736
|
-
color: var(--light-text-secondary, #606477);
|
|
3737
|
-
font-weight: 700;
|
|
3738
|
-
letter-spacing: 0.48px;
|
|
3739
|
-
line-height: 200%;
|
|
3740
|
-
}
|
|
3741
|
-
.vuuLayoutList-layoutContainer {
|
|
3742
|
-
display: flex;
|
|
3743
|
-
align-items: center;
|
|
3744
|
-
gap: 8px;
|
|
3745
|
-
padding: 8px 0px;
|
|
3746
|
-
flex: 1 1 auto;
|
|
3747
|
-
cursor: pointer;
|
|
3748
|
-
}
|
|
3749
|
-
.vuuLayoutList-layoutName {
|
|
3750
|
-
color: var(--light-text-primary, #15171B);
|
|
3751
|
-
font-weight: 600;
|
|
3752
|
-
line-height: 133.333%;
|
|
3753
|
-
text-transform: capitalize;
|
|
3754
|
-
}
|
|
3755
|
-
.vuuLayoutList-screenshot {
|
|
3756
|
-
width: 60px;
|
|
3757
|
-
height: 45.6px;
|
|
3758
|
-
border: 1px solid #D6D7DA;
|
|
3759
|
-
}
|
|
3760
|
-
.vuuLayoutList-layoutDetails {
|
|
3761
|
-
color: var(--light-text-secondary, #606477);
|
|
3762
|
-
font-size: 10px;
|
|
3763
|
-
font-weight: 600;
|
|
3764
|
-
line-height: 150%;
|
|
3765
|
-
}
|
|
3766
|
-
|
|
3767
|
-
/* ../vuu-shell/src/feature-list/FeatureList.css */
|
|
3768
|
-
.vuuFeatureList {
|
|
3769
|
-
background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
|
|
3770
|
-
display: flex;
|
|
3771
|
-
flex-direction: column;
|
|
3772
|
-
height: 100%;
|
|
3773
|
-
padding: 195px 32px 16px 24px;
|
|
3774
|
-
}
|
|
3775
|
-
.vuuFeatureList-header {
|
|
3776
|
-
flex: 0 0 40px;
|
|
3777
|
-
font-size: 12px;
|
|
3778
|
-
font-weight: 700;
|
|
3779
|
-
line-height: 2;
|
|
3780
|
-
}
|
|
3781
|
-
.vuuFeatureList-content {
|
|
3782
|
-
flex: 1 1 auto;
|
|
3783
|
-
font-size: 12px;
|
|
3784
|
-
font-weight: 700;
|
|
3785
|
-
}
|
|
3786
|
-
|
|
3787
|
-
/* ../vuu-shell/src/left-nav/LeftNav.css */
|
|
3788
|
-
.vuuLeftNav {
|
|
3789
|
-
--salt-navigable-fontWeight-active: 700;
|
|
3790
|
-
--vuuTab-background-selected: rgba(255, 255, 255, 0.10);
|
|
3791
|
-
--vuuTab-hover-background: rgba(255, 255, 255, 0.10);
|
|
3792
|
-
--vuuTab-before-content: none;
|
|
3793
|
-
--vuuTab-borderRadius: 6px;
|
|
3794
|
-
--vuuTab-height: 40px;
|
|
3795
|
-
--vuuTab-padding: 0 0 0 48px;
|
|
3796
|
-
--vuuTabstrip-fontWeight: 700;
|
|
3797
|
-
--vuuTabstrip-width: 100%;
|
|
3798
|
-
--svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');
|
|
3799
|
-
--svg-features: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');
|
|
3800
|
-
--svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');
|
|
3801
|
-
--svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');
|
|
3802
|
-
--vuu-light-text-primary: #15171b;
|
|
3803
|
-
--menu-level-2-width: 0px;
|
|
3804
|
-
box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
3805
|
-
display: flex;
|
|
3806
|
-
height: calc(100% - 4px);
|
|
3807
|
-
margin-bottom: 4px;
|
|
3808
|
-
overflow: hidden;
|
|
3809
|
-
position: relative;
|
|
3810
|
-
transition: width .2s ease-out;
|
|
3811
|
-
z-index: 0;
|
|
3812
|
-
}
|
|
3813
|
-
.vuuLeftNav-menu-full {
|
|
3814
|
-
--menu-width: var(--nav-menu-expanded-width);
|
|
3815
|
-
}
|
|
3816
|
-
.vuuLeftNav-menu-icons {
|
|
3817
|
-
--menu-width: var(--nav-menu-collapsed-width);
|
|
3818
|
-
}
|
|
3819
|
-
.vuuLeftNav-menu-icons-content {
|
|
3820
|
-
--menu-width: var(--nav-menu-collapsed-width);
|
|
3821
|
-
--menu-level-2-width: var(--nav-menu-content-width);
|
|
3822
|
-
}
|
|
3823
|
-
.vuuLeftNav-menu-full-content {
|
|
3824
|
-
--menu-width: var(--nav-menu-expanded-width);
|
|
3825
|
-
--menu-level-2-width: var(--nav-menu-content-width);
|
|
3826
|
-
}
|
|
3827
|
-
.vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
|
|
3828
|
-
.vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
|
|
3829
|
-
display: flex;
|
|
3830
|
-
}
|
|
3831
|
-
.vuuLeftNav-menu-primary {
|
|
3832
|
-
background-color: #2A015F;
|
|
3833
|
-
container-type: inline-size;
|
|
3834
|
-
display: flex;
|
|
3835
|
-
flex-direction: column;
|
|
3836
|
-
height: 100%;
|
|
3837
|
-
padding: 32px 16px;
|
|
3838
|
-
transition: flex-basis ease-out .2s;
|
|
3839
|
-
flex-grow: 0;
|
|
3840
|
-
flex-shrink: 0;
|
|
3841
|
-
flex-basis: var(--menu-width);
|
|
3842
|
-
}
|
|
3843
|
-
.vuuLeftNav-menu-secondary {
|
|
3844
|
-
flex: 1 1 auto;
|
|
3845
|
-
display: none;
|
|
3846
|
-
top: 0;
|
|
3847
|
-
right: 0;
|
|
3848
|
-
flex-grow: 0;
|
|
3849
|
-
flex-shrink: 0;
|
|
3850
|
-
flex-basis: var(--nav-menu-content-width, 240px);
|
|
3851
|
-
z-index: -1;
|
|
3852
|
-
}
|
|
3853
|
-
.vuuLeftNav .vuuTabstrip {
|
|
3854
|
-
margin-top: 102px;
|
|
3855
|
-
}
|
|
3856
|
-
.vuuLeftNav .vuuTab {
|
|
3857
|
-
--vuuTab-focusVisible-color: pink;
|
|
3858
|
-
--vuu-icon-color: white;
|
|
3859
|
-
--vuu-icon-left: 12px;
|
|
3860
|
-
--vuu-icon-size: 16px;
|
|
3861
|
-
border-left: solid 4px transparent;
|
|
3862
|
-
}
|
|
3863
|
-
.vuuLeftNav .vuuTab-selected {
|
|
3864
|
-
--vuu-icon-color: var(--salt-navigable-indicator-active);
|
|
3865
|
-
border-left: solid 4px var(--salt-navigable-indicator-active);
|
|
3866
|
-
}
|
|
3867
|
-
.vuuLeftNav-logo {
|
|
3868
|
-
display: flex;
|
|
3869
|
-
flex: 0 0 auto;
|
|
3870
|
-
justify-content: center;
|
|
3871
|
-
}
|
|
3872
|
-
.vuuLeftNav-main {
|
|
3873
|
-
flex: 1 1 auto;
|
|
3874
|
-
}
|
|
3875
|
-
.vuuLeftNav-menu {
|
|
3876
|
-
color: white;
|
|
3877
|
-
margin-top: 102px;
|
|
3878
|
-
padding: 0;
|
|
3879
|
-
}
|
|
3880
|
-
.vuuLeftNav [data-icon=demo] {
|
|
3881
|
-
--vuu-icon-svg: var(--svg-demo);
|
|
3882
|
-
}
|
|
3883
|
-
.vuuLeftNav [data-icon=tables] {
|
|
3884
|
-
--vuu-icon-svg: var(--svg-tables);
|
|
3885
|
-
}
|
|
3886
|
-
.vuuLeftNav [data-icon=features] {
|
|
3887
|
-
--vuu-icon-svg: var(--svg-features);
|
|
3888
|
-
}
|
|
3889
|
-
.vuuLeftNav [data-icon=layouts] {
|
|
3890
|
-
--vuu-icon-svg: var(--svg-layouts);
|
|
3891
|
-
}
|
|
3892
|
-
@container (max-width: 100px) {
|
|
3893
|
-
.vuuTab {
|
|
3894
|
-
--vuuTab-padding: 0 0 0 42px;
|
|
3895
|
-
}
|
|
3896
|
-
.vuuTab-main {
|
|
3897
|
-
display: none !important;
|
|
3898
|
-
}
|
|
3899
|
-
}
|
|
3900
|
-
.vuuLeftNav-buttonBar {
|
|
3901
|
-
align-items: center;
|
|
3902
|
-
display: flex;
|
|
3903
|
-
flex: 0 0 100px;
|
|
3904
|
-
justify-content: center;
|
|
3905
|
-
}
|
|
3906
|
-
.vuuLeftNav-toggleButton {
|
|
3907
|
-
--vuu-icon-color: var(--vuu-light-text-primary);
|
|
3908
|
-
--vuu-icon-left: 11px;
|
|
3909
|
-
--vuu-icon-top: 10px;
|
|
3910
|
-
--vuu-icon-size: 16px;
|
|
3911
|
-
background-color: var(--salt-navigable-indicator-active);
|
|
3912
|
-
border-width: 0;
|
|
3913
|
-
border-radius: 18px;
|
|
3914
|
-
height: 36px;
|
|
3915
|
-
position: relative;
|
|
3916
|
-
width: 36px;
|
|
3917
|
-
}
|
|
3918
|
-
.vuuLeftNav-toggleButton-open {
|
|
3919
|
-
--vuu-icon-left: 9px;
|
|
3920
|
-
}
|
|
3921
|
-
.vuuLeftNav-drawer {
|
|
3922
|
-
display: flex;
|
|
3923
|
-
padding: 40px 32px 0px 24px;
|
|
3924
|
-
flex-direction: column;
|
|
3925
|
-
align-items: flex-start;
|
|
3926
|
-
flex-shrink: 0;
|
|
3927
|
-
align-self: stretch;
|
|
3928
|
-
background: #FFF;
|
|
3929
|
-
box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
3930
|
-
height: 100%;
|
|
3931
|
-
}
|
|
3932
|
-
|
|
3933
|
-
/* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
|
|
3934
|
-
.vuuSessionEditingForm {
|
|
3935
|
-
display: flex;
|
|
3936
|
-
flex-direction: column;
|
|
3937
|
-
gap: 3px;
|
|
3938
|
-
min-width: 400px;
|
|
3939
|
-
padding: 6px;
|
|
3940
|
-
}
|
|
3941
|
-
.vuuSessionEditingForm-content {
|
|
3942
|
-
display: flex;
|
|
3943
|
-
flex-direction: column;
|
|
3944
|
-
flex: 1 1 auto;
|
|
3945
|
-
gap: 3px;
|
|
3946
|
-
overflow: auto;
|
|
3947
|
-
}
|
|
3948
|
-
.vuuSessionEditingForm-field {
|
|
3949
|
-
align-items: center;
|
|
3950
|
-
display: flex;
|
|
3951
|
-
height: 32px;
|
|
3952
|
-
}
|
|
3953
|
-
.vuuSessionEditingForm-fieldLabel {
|
|
3954
|
-
flex: 0 0 50%;
|
|
3955
|
-
}
|
|
3956
|
-
.vuuSessionEditingForm-fieldValue {
|
|
3957
|
-
max-width: 50%;
|
|
3958
|
-
}
|
|
3959
|
-
.vuuSessionEditingForm-fieldValue.vuuReadOnly {
|
|
3960
|
-
font-weight: var(--salt-text-label-fontWeight-strong);
|
|
3961
|
-
}
|
|
3962
|
-
.vuuSessionEditingForm-buttonbar {
|
|
3963
|
-
align-items: center;
|
|
3964
|
-
border-top: solid 1px var(--salt-container-primary-borderColor);
|
|
3965
|
-
display: flex;
|
|
3966
|
-
justify-content: flex-end;
|
|
3967
|
-
flex: 0 0 autox;
|
|
3968
|
-
gap: 6px;
|
|
3969
|
-
padding-top: 6px;
|
|
3970
|
-
}
|
|
3971
|
-
.vuuSessionEditingForm-errorBanner {
|
|
3972
|
-
--vuu-icon-left: 3px;
|
|
3973
|
-
--vuu-icon-size: 18px;
|
|
3974
|
-
--vuu-icon-top: 3px;
|
|
3975
|
-
border: solid 1px var(--salt-status-error-borderColor);
|
|
3976
|
-
line-height: 24px;
|
|
3977
|
-
padding: 0 6px 0 26px;
|
|
3978
|
-
position: relative;
|
|
3979
|
-
}
|
|
3980
|
-
|
|
3981
|
-
/* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
|
|
3982
|
-
.vuuContextPanel {
|
|
3983
|
-
position: relative;
|
|
3984
|
-
transition: width .3s ease-in-out;
|
|
3985
|
-
width: var(--vuu-side-panel-width, 0px) !important;
|
|
3986
|
-
z-index: 1;
|
|
3987
|
-
}
|
|
3988
|
-
.vuuContextPanel-expanded {
|
|
3989
|
-
--vuu-side-panel-width: 300px !important;
|
|
3990
|
-
--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
|
|
3991
|
-
--vuu-side-panel-padding: 24px;
|
|
3992
|
-
}
|
|
3993
|
-
.vuuContextPanel-overlay {
|
|
3994
|
-
width: 0px !important;
|
|
3995
|
-
}
|
|
3996
|
-
.vuuContextPanel-inner {
|
|
3997
|
-
background-color: var(--salt-container-primary-background);
|
|
3998
|
-
box-shadow: var(--vuu-side-panel-shadow, none);
|
|
3999
|
-
display: flex;
|
|
4000
|
-
flex-direction: column;
|
|
4001
|
-
height: 100%;
|
|
4002
|
-
min-width: 0 !important;
|
|
4003
|
-
overflow: auto;
|
|
4004
|
-
padding-bottom: 24px;
|
|
4005
|
-
padding-top: 24px;
|
|
4006
|
-
padding-left: var(--vuu-side-panel-padding, 0);
|
|
4007
|
-
padding-right: var(--vuu-side-panel-padding, 0);
|
|
4008
|
-
position: absolute !important;
|
|
4009
|
-
right: 0;
|
|
4010
|
-
top: 0;
|
|
4011
|
-
transition-property:
|
|
4012
|
-
padding-left,
|
|
4013
|
-
padding-right,
|
|
4014
|
-
width;
|
|
4015
|
-
transition-duration: .3s;
|
|
4016
|
-
transition-timing-function: ease-in-out;
|
|
4017
|
-
width: var(--vuu-side-panel-width, 0px);
|
|
4018
|
-
}
|
|
4019
|
-
.vuuContextPanel-header {
|
|
4020
|
-
align-items: center;
|
|
4021
|
-
display: flex;
|
|
4022
|
-
flex-wrap: nowrap;
|
|
4023
|
-
flex: 0 0 27px !important;
|
|
4024
|
-
justify-content: space-between;
|
|
4025
|
-
}
|
|
4026
|
-
.vuuContextPanel-title {
|
|
4027
|
-
font-size: 20px;
|
|
4028
|
-
font-weight: 700;
|
|
4029
|
-
white-space: nowrap;
|
|
4030
|
-
}
|
|
4031
|
-
.vuuContextPanel-content {
|
|
4032
|
-
flex: 1 1 auto;
|
|
4033
|
-
width: 100%;
|
|
4034
|
-
}
|
|
4035
|
-
|
|
4036
|
-
/* ../vuu-shell/src/shell-layouts/side-panel/SidePanel.css */
|
|
4037
|
-
.vuuShellSidePanel {
|
|
4038
|
-
transition: width .2s ease-out;
|
|
4039
|
-
width: var(--shell-left-nav-size);
|
|
4040
|
-
}
|
|
4041
|
-
|
|
4042
|
-
/* ../vuu-shell/src/shell.css */
|
|
4043
|
-
.vuuShell {
|
|
4044
|
-
background-color: var(--vuu-color-gray-25);
|
|
4045
|
-
height: var(--vuuShell-height, 100vh);
|
|
4046
|
-
width: var(--vuuShell-width, 100vw);
|
|
4047
|
-
}
|
|
4048
|
-
.vuuShell-mainTabs {
|
|
4049
|
-
background: var(--salt-container-primary-background);
|
|
4050
|
-
}
|
|
4051
|
-
.vuuShell-palette {
|
|
4052
|
-
--vuuView-border: none;
|
|
4053
|
-
--vuuView-margin: 0;
|
|
4054
|
-
}
|
|
4055
|
-
.vuuShell-warningPlaceholder {
|
|
4056
|
-
background-color: var(--salt-container-background-high);
|
|
4057
|
-
height: 100%;
|
|
4058
|
-
}
|
|
4059
|
-
.vuuToolbarProxy {
|
|
4060
|
-
background: var(--salt-container-primary-background);
|
|
4061
|
-
}
|
|
4062
|
-
.vuuShell-mainTabs > .vuuTabstrip > .vuuOverflowContainer-wrapContainer {
|
|
4063
|
-
background: var(--vuu-color-gray-25);
|
|
4064
|
-
}
|
|
4065
|
-
.vuuShell-mainTabs {
|
|
4066
|
-
--vuuTab-height: 28px;
|
|
4067
|
-
border: solid 1px #D6D7DA;
|
|
4068
|
-
border-top: none !important;
|
|
4069
|
-
border-radius: 6px;
|
|
4070
|
-
height: 100%;
|
|
4071
|
-
padding: 36px 8px 8px 8px;
|
|
4072
|
-
position: relative;
|
|
4073
|
-
width: 100%;
|
|
4074
|
-
}
|
|
4075
|
-
.vuuShell-mainTabs > .vuuTabstrip {
|
|
4076
|
-
--vuuTabstrip-height: 28px;
|
|
4077
|
-
--saltTabs-tabstrip-height: 29px;
|
|
4078
|
-
--tabstrip-height: 29px;
|
|
4079
|
-
left: -1px;
|
|
4080
|
-
padding-bottom: 7px;
|
|
4081
|
-
position: absolute !important;
|
|
4082
|
-
right: 1px;
|
|
4083
|
-
top: 0;
|
|
4084
|
-
width: calc(100% + 2px) !important;
|
|
4085
|
-
}
|
|
4086
|
-
.vuuShell-mainTabs > .vuuTabHeader {
|
|
4087
|
-
border-bottom: none;
|
|
4088
|
-
}
|
|
4089
|
-
.vuuShell-mainTabs > .vuuTabstrip:before {
|
|
4090
|
-
background-color: transparent;
|
|
4091
|
-
border-radius: 0 6px 0 0;
|
|
4092
|
-
border-left: solid 1px #D6D7DA;
|
|
4093
|
-
border-right: solid 1px #D6D7DA;
|
|
4094
|
-
border-top: solid 1px #D6D7DA;
|
|
4095
|
-
content: "";
|
|
4096
|
-
position: absolute;
|
|
4097
|
-
bottom: 0;
|
|
4098
|
-
left: 0;
|
|
4099
|
-
right: 0;
|
|
4100
|
-
height: 8px;
|
|
4101
|
-
z-index: 1;
|
|
4102
|
-
}
|
|
4103
|
-
.vuuTab.MainTab {
|
|
4104
|
-
--vuuTabMenu-top: -1px;
|
|
4105
|
-
background-color: #F1F2F4;
|
|
4106
|
-
border-color: #D6D7DA;
|
|
4107
|
-
border-radius: 6px 6px 0 0;
|
|
4108
|
-
border-width: 1px;
|
|
4109
|
-
border-style: solid;
|
|
4110
|
-
position: relative;
|
|
4111
|
-
}
|
|
4112
|
-
.MainTab.vuuTab-selected {
|
|
4113
|
-
background-color: white;
|
|
4114
|
-
border-bottom-color: white;
|
|
4115
|
-
z-index: 1;
|
|
4116
|
-
}
|
|
4117
|
-
.MainTab.vuuTab-selected:before {
|
|
4118
|
-
background-color: #6d188b;
|
|
4119
|
-
content: "";
|
|
4120
|
-
position: absolute;
|
|
4121
|
-
height: 100%;
|
|
4122
|
-
left: 0;
|
|
4123
|
-
top: 0;
|
|
4124
|
-
border-radius: 6px 0 0 0;
|
|
4125
|
-
width: 6px;
|
|
4126
|
-
}
|
|
4127
|
-
.MainTab.vuuTab:hover:before {
|
|
4128
|
-
background-color: #F37880;
|
|
4129
|
-
content: "";
|
|
4130
|
-
position: absolute;
|
|
4131
|
-
height: 100%;
|
|
4132
|
-
left: 0;
|
|
4133
|
-
top: 0;
|
|
4134
|
-
border-radius: 6px 0 0 0;
|
|
4135
|
-
width: 6px;
|
|
4136
|
-
}
|
|
4137
|
-
.vuuTab.MainTab .vuuTab-main {
|
|
4138
|
-
background-color: transparent;
|
|
4139
|
-
font-weight: 700;
|
|
4140
|
-
height: 29px;
|
|
4141
|
-
padding: 0 24px;
|
|
4142
|
-
}
|
|
4143
|
-
|
|
4144
|
-
/* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
|
|
4145
|
-
.vuuThemeSwitch {
|
|
4146
|
-
--saltButton-minWidth: 22px;
|
|
4147
|
-
--svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');
|
|
4148
|
-
--svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');
|
|
4149
|
-
padding: 2px;
|
|
4150
|
-
}
|
|
4151
|
-
.salt-density-high .vuuThemeSwitch {
|
|
4152
|
-
--saltButton-minWidth: 16px;
|
|
4153
|
-
--saltButton-width: 18px;
|
|
4154
|
-
--vuuThemeSwitch-iconSize: 16px;
|
|
4155
|
-
}
|
|
4156
|
-
.vuuThemeSwitch [data-icon] {
|
|
4157
|
-
--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
|
|
4158
|
-
}
|
|
4159
|
-
.vuuThemeSwitch [data-icon=light] {
|
|
4160
|
-
--vuu-icon-svg: var(--svg-light);
|
|
4161
|
-
}
|
|
4162
|
-
.vuuThemeSwitch [data-icon=dark] {
|
|
4163
|
-
--vuu-icon-svg: var(--svg-dark);
|
|
4164
|
-
}
|
|
4165
|
-
.vuuThemeSwitch .saltToggleButton {
|
|
4166
|
-
height: 20px;
|
|
4167
|
-
width: 20px;
|
|
4168
|
-
}
|
|
1
|
+
.vuuDrawer{--drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);--vuu-close-icon-svg: var(--svg-chevron-double-right);transition:flex-basis;transition-duration:var(--drawer-transition-duration);position:relative;z-index:1;flex-basis:0;flex-grow:1;flex-shrink:1;min-width:0;min-height:0;display:flex}.vuuDrawer-peekaboo{flex-basis:var(--drawer-peek-size);flex-grow:0;flex-shrink:0}.vuuDrawer-inline.vuuDrawer-open{flex-basis:var(--drawer-size);flex-grow:0;flex-shrink:0}.vuuDrawer-liner{background-color:var(--drawer-bg);overflow:hidden;position:relative}.vuuDrawer-content{height:100%;overflow:hidden;position:absolute;top:0;right:var(--drawer-peek-size);transition:right;transition-duration:var(--drawer-transition-duration);width:100%;flex:1 1 100%}.vuuDrawer-open .vuuDrawer-content{right:0}.vuuDrawer-left{border-right:var(--drawer-leading-edge-border)}.vuuDrawer-right{border-left:var(--drawer-leading-edge-border)}.vuuDrawer-top{border-bottom:var(--drawer-leading-edge-border)}.vuuDrawer-bottom{border-top:var(--drawer-leading-edge-border)}.vuuDrawer-left .vuuDrawer-liner,.vuuDrawer-right .vuuDrawer-liner{height:100%;transition:width}.vuuDrawer-top .vuuDrawer-liner,.vuuDrawer-bottom .vuuDrawer-liner{width:100%;transition:height}.vuuDrawer-inline .vuuDrawer-liner{width:100%;height:100%}.vuuDrawer-over .vuuDrawer-liner{position:absolute;transition-duration:.4s}.vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner{top:0;left:0;width:0}.vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner{top:0;right:0;width:0}.vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner{height:0;top:0;left:0}.vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner{bottom:0;height:0;left:0}.vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,.vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner{width:var(--drawer-peek-size)}.vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner{height:var(--drawer-peek-size)}.vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,.vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner{width:var(--drawer-size)}.vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner{height:var(--drawer-size)}.vuuDrawer-top,.vuuDrawer-left{order:0}.vuuDrawer-bottom,.vuuDrawer-right{order:99}.vuuDrawer-left,.vuuDrawer-right{flex-direction:column}.vuuToggleButton-container{--saltButton-height: 28px;--saltButton-width: 28px;--vuu-icon-size: 12px;flex:0 0 28px}.vuuDrawer-open{--vuu-close-icon-svg: var(--svg-chevron-double-left)}.vuuDockLayout{--chest-bg: var(--hw-chest-bg, inherit);--drawer-bg: var(--hw-drawer-bg, inherit);--drawer-size: var(--hw-drawer-size, 200px);--drawer-peek-size: var(--hw-drawer-peek-size, 32px);--drawer-transition-duration: var(--hw-drawer-transition-duration, .4s);background-color:var(--chest-bg);display:flex}.vuuDockLayout-horizontal{flex-direction:row}.vuuDockLayout-vertical{flex-direction:column}.vuuDockLayout-content{background-color:var(--chest-bg);flex-grow:1;flex-shrink:1;overflow:hidden;display:flex;align-items:center;justify-content:center}.vuuDockLayout-horizontal .vuuDockLayout-content,.vuuDockLayout-vertical .vuuDockLayout-content{flex-basis:100%}.vuuDialogHeader{--saltButton-height: 28px;--saltButton-width: 28px;--saltToolbar-background: transparent;--saltToolbar-height: calc(var(--salt-size-base) + 5px);--vuuToolbarProxy-height: 22px;--salt-text-fontFamily: Nunito Sans A-Variant, sans-serif;display:flex;align-items:flex-start;color:var(--light-text-primary, #15171B);font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:16px;font-weight:600}.vuuDialogHeader>.Responsive-inner{align-items:center}.vuuDialogHeader>.Responsive-inner>:last-child{right:2px}.vuuDialog{background:var(--salt-container-primary-background);border:var(--vuuDialog-border, solid 1px #ccc);border-radius:5px;padding:var(--vuuDialog-padding, 16px);position:relative;box-shadow:var(--salt-overlayable-shadow, none);height:var(--vuuDialog-height, fit-content);overflow:visible;width:var(--vuuDialog-width, fit-content)}.vuuDialog-body{padding-top:16px}.vuuPopup{box-shadow:0 6px 12px #0000002d;position:absolute;top:0;left:0;width:0;height:0;overflow:visible;z-index:1000}.vuuPopup{position:absolute}.vuuPortal{background-color:var(--salt-container-primary-background);border-radius:4px;box-shadow:0 6px 12px #0000002d;position:absolute;border-color:var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));border-style:solid;border-width:1px;padding:4px 0;z-index:100}.vuuPortal:has(.vuuDropdown-popup-component.vuuList-empty){display:none}#vuu-portal-root{z-index:1000}.vuuMenuList{--salt-focused-outlineStyle: dashed !important;--salt-focused-outlineWidth: 1px !important;--vuuListItem-padding: 8px;--context-menu-color: var(--vuuMenuList-color,#161616);--context-menu-padding: var(--hw-list-item-padding, 0 6px);--context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, .175));--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));--context-menu-highlight-bg: var(--salt-selectable-background-hover);--context-menu-blur-focus-bg: #e0e4e9;--menu-item-icon-color: black;--menu-item-twisty-color: black;--menu-item-twisty-content: "";--menu-item-twisty-top: 50%;--menu-item-twisty-left: auto;--menu-item-twisty-right: 0px;--menu-icon-size: 12px;background-clip:padding-box;background-color:#fff;font-size:var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));font-weight:var(--salt-typography-fontWeight-medium);list-style:none;outline:0;overflow:hidden;padding:var(--vuuMenuList-padding, 0);position:absolute}.vuuPortal>.vuuMenuList{position:relative}.vuuMenuItem{align-items:center;border-width:1px;border-color:var(--vuuMenuItem-borderColor, transparent);border-style:var(--vuuMenuItem-borderStyle, none);color:var(--context-menu-color);display:flex;gap:6px;height:var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));padding:var(--context-menu-padding);padding-right:24px;position:relative;white-space:nowrap}.vuuIconContainer{display:inline-block;flex:12px 0 0;height:var(--menu-icon-size);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:var(--menu-icon-size)}.vuuMenuItem[aria-expanded=true]{background-color:var(--context-menu-blur-focus-bg)}.vuuMenuItem-separator{border-top:solid 1px var(--context-menu-blur-focus-bg)}.vuuMenuItem[aria-haspopup=true]:after{content:var(--menu-item-twisty-content);mask:var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;-webkit-mask:var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;background-color:var(--menu-item-twisty-color);height:16px;left:var(--menu-item-twisty-left);right:var(--menu-item-twisty-right);margin-top:-8px;position:absolute;top:var(--menu-item-twisty-top);transition:transform .3s;width:16px}.vuuMenuItem[data-highlighted]{background-color:var(--context-menu-highlight-bg)}.vuuMenuItem:hover{background-color:var(--context-menu-highlight-bg);cursor:default}.vuuMenuList-childMenuShowing .vuuMenuItem[data-highlighted]{background-color:var(--context-menu-blur-focus-bg)}.vuuMenuItem.focusVisible:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dotted var(--focus-visible-border-color) 2px}.vuuPopupContainer.top-bottom-right-right .popup-menu{left:auto;right:0}.popup-menu .menu-item.showing>button,.popup-menu .menu-item>button:focus,.popup-menu .menu-item>button:hover{text-decoration:none;color:#000;background-color:#dcdcdc}.vuuMenuItem-button:active,.vuuMenuItem-button:hover{outline:0}.popup-menu .menu-item.disabled>button{clear:both;font-weight:400;line-height:1.5;color:#787878;white-space:nowrap;text-decoration:none;cursor:default}.vuuMenuList.salt-theme{box-shadow:0 6px 12px #0000002d;position:absolute;border-color:var(--salt-container-primary-borderColor);border-style:solid!important;border-width:1px}.vuuPopupMenu{--saltButton-height: 24px;--saltButton-width: 24px;--vuu-icon-color: var(--vuuPopupMenu-iconColor,#606477);--vuu-icon-height: 20px;--vuu-icon-left: 2px;--vuu-icon-size: 16px;--vuu-icon-top: 2px;--vuu-icon-width: 20px;background:var(--vuuPopupMenu-background, transparent);border:var(--vuuPopupMenu-border, none);border-radius:var(--vuuPopupMenu-borderRadius, 4px);cursor:pointer;display:inline-block;margin-top:2px;padding:2px}.vuuPopupMenu:hover{--vuu-icon-color: var(--saltButton-text-color-hover)}.vuuPopupMenu-open{--saltButton-background: var(--salt-actionable-secondary-background-active);--vuu-icon-color: white}.vuu-theme .vuuPopupMenu:hover{--saltButton-background-hover: #F37880}.vuu-theme .vuuPopupMenu-open{--saltButton-background: #6D18BD}.vuuPopupMenu-withCaption{--vuu-icon-left: calc(100% - 24px) ;--vuu-icon-size: 20px;--saltButton-width: auto;padding:0 28px 0 8px}.vuuPrompt{--saltButton-padding: var(--prompt-padding);--saltButton-width: auto;--border-width: var(--vuuPrompt-borderWidth, 1px);--border-color: var(--vuuPrompt-borderColor, var(--vuu-color-purple-10));--prompt-padding: 16px;--variant-color: inherit;--vuu-icon-color: var(--vuu-color-gray-80);--vuu-icon-left: 6px;--vuu-icon-size: 24px;background-color:var(--salt-container-primary-background);border-color:var(--border-color);border-radius:4px;border-style:solid;border-width:var(--border-width);box-shadow:0 6px 12px #0000002d;margin:0;padding:0;position:absolute}.vuuPrompt-warn{--border-color: var(--vuu-color-yellow-20);--variant-color: var(--vuu-color-yellow-20)}.vuuPrompt-form{display:flex;flex-direction:column}.vuuPrompt-header{align-items:center;background-color:var(--variant-color);display:flex;flex:0 0 32px;font-size:16px;font-weight:700;padding:0 var(--prompt-padding)}.vuuPrompt-header[data-icon]{padding-left:36px}.vuuPrompt-text{flex:1 1 auto;padding:var(--prompt-padding)}.vuuPrompt-buttonBar{align-items:flex-end;display:flex;flex:0 0 32px;gap:6px;justify-content:flex-end;padding:0 var(--prompt-padding) var(--prompt-padding) var(--prompt-padding)}.vuuTooltip{--tooltip-align: flex-start;--tooltip-background: white;--tooltip-border: var(--vuu-color-gray-30);--tooltip-color: var(--vuu-color-gray-80);--tooltip-justify: flex-start;--tooltip-top: auto;--tooltip-right: auto;--tooltip-bottom: auto;--tooltip-left: auto;align-items:var(--tooltip-align);justify-content:var(--tooltip-justify);display:flex;position:absolute;z-index:100}.vuuTooltip[data-align=right]{--tooltip-align: center;--tooltip-left: 9px}.vuuTooltip[data-align=left]{--tooltip-align: center;--tooltip-left: auto;--tooltip-right: 10px}.vuuTooltip[data-align=above]{--tooltip-justify: center;--tooltip-bottom: 9px;--tooltip-left: auto}.vuuTooltip[data-align=below]{--tooltip-justify: center;--tooltip-top: 9px;--tooltip-left: auto}.vuuTooltip-content{background-color:var(--tooltip-background);border-color:var(--tooltip-border);border-width:1px;border-style:solid;border-radius:6px;box-shadow:0 4px 4px #00000040;color:var(--tooltip-color);line-height:24px;padding:2px 8px;position:absolute;white-space:nowrap;top:var(--tooltip-top);right:var(--tooltip-right);bottom:var(--tooltip-bottom);left:var(--tooltip-left)}.vuuTooltip:before{background-color:var(--tooltip-border);content:" ";display:block;position:absolute;width:12px;height:12px}.vuuTooltip[data-align=above]:before{transform:translateY(-18px) rotate(45deg)}.vuuTooltip[data-align=below]:before{transform:translateY(6px) rotate(45deg)}.vuuTooltip[data-align=right]:before{transform:translate(7px) rotate(45deg)}.vuuTooltip[data-align=left]:before{transform:translate(-19px) rotate(45deg)}.vuuTooltip-error{--tooltip-background: var(--vuu-color-red-50);--tooltip-color: white;color:#fff}.vuuToastNotifications-toast{--vuu-icon-size: 24px;position:absolute;display:flex;padding:8px 32px 8px 8px;align-items:center;gap:8px;border-radius:6px;box-shadow:0 2px 3px #0006;z-index:100000}.vuuToastNotifications-toastContent{display:flex;flex-direction:column;gap:4px}.vuuToastNotifications-toastHeader{font-size:16px;font-weight:700}.error{background:var(--status-error-background-emphasize, #E23434)}.success{background:var(--status-success-background-emphasize, #248913)}.info{background:var(--status-info-background-emphasize, #017CB1)}.warning{background:var(--status-warning-background-emphasize, #F4CA33)}.error,.success,.info{color:#fff}.vuuToastNotifications-toastIcon{height:var(--vuu-icon-height, var(--vuu-icon-size, 24px));width:var(--vuu-icon-width, var(--vuu-icon-size, 24px));-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);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.success-icon{--vuu-icon-svg: var(--vuu-svg-tick)}.warning-icon{--vuu-icon-svg: var(--vuu-svg-warn-triangle);background-color:#000}.info-icon{--vuu-icon-svg: var(--vuu-svg-info-circle)}.error-icon{--vuu-icon-svg: var(--vuu-svg-alert-circle)}.success-icon,.info-icon,.error-icon{background-color:#fff}.vuuDropMenu{margin-left:-50%;margin-bottom:-50%;background-color:#fff;border:solid 1px var(--grey40);display:inline-flex;justify-content:center;align-items:center;padding:3px;border-radius:3px}.vuuDropMenu-left,.vuuDropMenu-right{flex-direction:column}.vuuDropMenu-bottom{transform:translateY(-30px)}.vuuDropMenu-right{transform:translate(-20px)}.vuuDropMenu-item{--vuu-icon-size: 20px;width:32px;height:32px;background-color:var(--grey20);border-bottom:solid 1px var(--grey40);cursor:pointer;display:flex;align-items:center;justify-content:center}.vuuDropMenu-item .Icon{transform:scale(1.25);transform-origin:center center}.vuuDropMenu-left .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(180deg);transform-origin:center center}.vuuDropMenu-top .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(270deg);transform-origin:center center}.vuuDropMenu-bottom .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(90deg);transform-origin:center center}.vuuDropMenu-item .hwIcon-path{fill:gray}.vuuDropMenu-item:hover{background-color:#c8c8c880}.vuuDropMenu-item:hover .hwIcon-path-2{fill:#00f}.vuuDropMenu-item:last-child{border-bottom:none}#hw-drag-canvas{visibility:hidden;z-index:10;position:absolute;top:0;left:0;right:0;bottom:0;background-color:transparent}#hw-drag-canvas>svg{position:absolute}.drawing #hw-drag-canvas{visibility:visible}path.drop-target{stroke:#00f;stroke-width:4px;fill:transparent}path.drop-target.centre{stroke:red}#vuu-drop-outline{fill:#0000ff4d;stroke:none;stroke-dasharray:4 2}#hw-drop-guides{fill:none;stroke:#0000004d;stroke-dasharray:2 3}.DraggableLayout{display:inline-block;outline:none}[data-dragging=true]{position:absolute!important;z-index:100}.vuuSimpleDraggableWrapper{background-color:#fff;box-shadow:0 6px 10px #0003}.vuuSimpleDraggableWrapper>*{height:100%;width:100%}.vuuDropdown{--saltIcon-margin: 2px 0 0 8px;display:inline-block;line-height:0;position:relative;width:var(--vuuDropdown-width, auto)}.vuuDropdownButton.saltButton-secondary{--saltButton-borderStyle: solid;--saltButton-borderColor: var(--salt-editable-borderColor);--saltButton-borderWidth: 1px;--saltButton-borderRadius: 6px;--saltButton-height: var(--vuuDropdown-height, auto)}.vuuDropdown-fullWidth{width:100%}.vuuDropdown-popup{background:var(--salt-container-primary-background);z-index:calc(var(--salt-zIndex-flyover) - 1)}.vuuDropdown-popup-component{--vuuList-borderStyle: none}.vuuDropdownButton{width:100%}.vuuDropdownButton{--saltButton-background-hover: var(--salt-actionable-secondary-background);--saltButton-background-active: var(--salt-actionable-secondary-background);--saltButton-fontWeight: var(--salt-text-fontWeight-strong);--saltButton-textAlign: left;--saltButton-textTransform: none;--saltButton-width: 100%;--vuu-icon-size: 16px}.vuuDropdownButton:active{--saltIcon-color: var(--salt-actionable-secondary-foreground);--saltButton-text-color-active: var(--salt-actionable-secondary-foreground)}.vuuDropdownButton-fullwidth{width:100%}.vuuDropdownButton-content{align-items:center;flex:1;width:100%;display:flex;white-space:nowrap}.vuuDropdownButton-buttonLabel{display:inline-block;letter-spacing:0;overflow:hidden;text-overflow:ellipsis;width:100%}.vuuDropdownButton-formField.saltButton:focus,.vuuDropdownButton-formField.saltButton:focus-visible{outline:none}.saltHighlighter-highlight{font-weight:var(--salt-text-fontWeight-strong)}.vuuCheckboxIcon{--vuu-icon-size: 12px;--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, 12px);position:relative;width:var(--vuuCheckboxIcon-size, 12px)}.vuuCheckboxIcon-checked-enabled{background-color:var( --vuuCheckboxIcon-background-checked-enabled, var(--vuu-color-purple-10) );border-color:var( --vuuCheckboxIcon-borderColor-checked-enabled, var(--vuu-color-purple-10) )}.vuuCheckboxIcon-checked-disabled{background-color:var( --vuuCheckboxIcon-background-checked-disabled, var(--vuu-color-gray-35) );border-color:var( --vuuCheckboxIcon-borderColor-checked-disabled, var(--vuu-color-gray-35) )}.vuuCheckboxIcon-checked-enabled:after,.vuuCheckboxIcon-checked-disabled: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))}.vuuCheckboxIcon-checked-disabled:after{background-color:var( --vuuCheckboxIcon-tick-checked-disabled, var(--vuu-color-gray-30) )}.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.vuuHighlighted{--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(--vuuListItem-padding, 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.vuuDisabled{--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}.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}.vuuList{--list-background: var(--salt-container-primary-background);--list-borderStyle: var(--vuuList-borderStyle,var(--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;--vuuMeasuredContainer-height: var(--computed-list-height);background:var(--list-background);height:var(--saltList-height, var(--list-height));max-height:var(--list-maxHeight);outline:none;position:relative;user-select:none;width:var(--saltList-width, auto);padding:0 1px}.vuuList-contentSized{box-sizing:content-box}.vuuList-borderless{--list-borderStyle: none}.vuuList-viewport{height:var(--computed-list-height, var(--measured-px-height));overflow:auto}.vuuListHeader{--saltList-item-background: var(--list-item-header-background);color:var(--list-item-header-color);font-weight:600}.vuuListHeader[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{top:2px;right:2px;bottom:2px;left:2px}.vuuRadioIcon{--vuu-icon-size: 12px;--vuu-icon-left: -1px;--vuu-icon-top: -1px;--vuu-icon-svg: var(--vuu-svg-radio);border-style:solid;border-color:var(--vuuRadioIcon-borderColor, var(--salt-selectable-borderColor));border-radius:50%;border-width:1px;display:inline-block;height:var(--vuuRadioIcon-size, 12px);position:relative;width:var(--vuuRadioIcon-size, 12px)}.vuuRadioIcon-checked{background-image:var(--vuu-svg-radio);border:none;background-repeat:no-repeat}.vuuRadioIcon-checked:after{content:"";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))}.vuuChevronIcon{--vuu-icon-size: 14px;--vuu-icon-left: -1px;--vuu-icon-top: -1px;height:var(--vuuChevronIcon-size, 14px);position:relative;width:var(--vuuChevronIcon-size, 14px);cursor:pointer}.vuuChevronIcon:after{content:"";background-color:#777c94;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))}.vuuChevronIcon.up{--vuu-icon-svg: var(--vuu-svg-chevron-up)}.vuuChevronIcon.down{--vuu-icon-svg: var(--vuu-svg-chevron-down)}.vuuChevronIcon.left{--vuu-icon-svg: var(--vuu-svg-chevron-left)}.vuuChevronIcon.right{--vuu-icon-svg: var(--vuu-svg-chevron-right)}.vuuEditableLabel{--editableLabel-padding: var(--vuuEditableLabel-padding, 6px);--editableLabel-height: var(--vuuEditableLabel-height, 26px);--saltInput-background: transparent;--saltInput-height: calc(var(--editableLabel-height) - 4px);--saltInput-minWidth: 14px;color:inherit;cursor:default;display:flex;flex-direction:column;font-size:var(--salt-text-fontSize);height:var(--editableLabel-height);justify-content:center;outline:none;overflow:hidden;padding:0 var(--editableLabel-padding);position:relative;text-overflow:ellipsis;white-space:nowrap;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;color:inherit;display:block;flex:1;font:inherit;height:20px;margin:0;min-width:0;outline:none;padding:0}.vuuEditableLabel-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vuuInput{--vuu-icon-size: 16px}.vuuInput-errorIcon:after{cursor:pointer}.vuuExpandoInput{--salt-editable-secondary-background: white;--expandoInput-height: var(--vuuExpandoInput-height, 26px);--expandoInput-padding: var(--vuuExpandoInput-padding, 6px);--saltInput-height: calc(var(--vuuExpandoInput-height) - 4px);--saltInput-minWidth: var(--vuuExpandoInput-minWidth, 8px);border:var(--vuuExpandoInput-border, none);border-radius:var(--vuuExpandoInput-borderRadius, 0);color:inherit;cursor:default;display:inline-block;font-size:var(--salt-text-fontSize);height:var(--expandoInput-height);min-width:calc(var(--saltInput-minWidth) + 2 * var(--expandoInput-padding));outline:none;padding:0 var(--expandoInput-padding);position:relative}.vuuExpandoInput:before{content:attr(data-text);display:block;height:0px;visibility:hidden;white-space:pre-wrap}.vuuExpandoInput-error{border-color:var(--vuu-color-red-50)}.vuuExpandoInput .saltInput{font-weight:var(--salt-text-fontWeight);left:var(--expandoInput-padding, 0);padding:0;outline-style:none;position:absolute;right:var(--expandoInput-padding, 0);top:var(--vuuExpandoInput-top, 2px);width:auto}.vuuExpandoInput .saltInput-activationIndicator{display:none}.vuuExpandoInput-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}.vuuCheckbox{--vuuCheckboxIcon-background-checked-enabled: var(--vuu-color-purple-10);display:flex;height:24px;align-items:center;gap:6px;color:var(--light-text-primary, #15171B);font-family:Nunito Sans A-Variant,serif;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-weight:400;cursor:pointer}.vuuRadioButton{display:flex;height:24px;align-items:center;gap:6px;color:var(--light-text-primary, #15171B);font-family:Nunito Sans A-Variant,sans-serif;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-weight:400;cursor:pointer}.radio{position:relative;height:12px}input[type=radio]{position:absolute;-webkit-appearance:none;appearance:none;width:100%;height:100%;border-radius:50%;margin:0;top:0}.vuuColumnHeaderPill{--vuu-icon-size: 14px;--menu-item-icon-color: black;--vuu-icon-color: white;--vuu-icon-height: 12px;--vuu-icon-width: 12px;align-items:center;background:var(--salt-taggable-background-active);color:#fff;border-radius:4px;flex:var(--vuuColumnHeaderPill-flex, none);font-size:11px;gap:4px;height:16px;display:flex;margin:var(--vuuColumnHeaderPill-margin, 0);padding:0 6px;position:relative}.vuuColumnHeaderPill:hover{--vuu-icon-color: var(--vuu-color-gray-80);background-color:var(--salt-taggable-background-hover);color:var(--vuu-color-gray-80)}.vuuColumnHeaderPill-removeButton{cursor:pointer}.vuuSortPosition{font-size:11px;font-weight:700;padding-top:1px}.vuuColumnResizerNext{background-color:var(--columnResizer-color);cursor:col-resize;height:var(--header-height);margin-left:var(--columnResizer-left, auto);position:absolute;right:-5px;width:8px;z-index:1}.vuuColumnResizerNext:hover{--columnResizer-color: var(--vuu-color-purple-10)}.vuuColumnResizerNext:after{background-color:var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));bottom:0;content:"";position:absolute;top:0;right:3px;height:var(--columnResizer-height, 0);width:2px}.vuu-theme{--svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>')}.vuuTableGroupHeaderCell{--vuuColumnHeaderPill-margin: 0;--cell-align: "flex-start";text-align:left;background:var(--dataTable-background);cursor:default;height:var(--vuuTableHeaderHeight)}.vuuTableGroupHeaderCell-inner{align-items:center;display:flex;gap:4px;height:100%;padding-left:1px}.vuuTableGroupHeaderCell-col{align-items:center;background-color:inherit;display:inline-flex;flex:0 1 auto;height:calc(var(--vuuTableHeaderHeight) - 2px);justify-content:space-between;padding-right:8px;position:relative}.vuuTableGroupHeaderCell-label{align-items:center;display:flex;flex:0 0 auto}.vuuTableGroupHeaderCell-close{--vuu-icon-height: 18px;--vuu-icon-width: 18px;cursor:pointer;left:3px}.vuuTableGroupHeaderCell-resizing{--columnResizer-color: var(--salt-color-blue-500);--columnResizer-height: var(--table-height);--columnResizer-width: 2px}.vuuTableGroupHeaderCell-pending{--pending-content: ""}.vuuTableGroupHeaderCell-col:has(+.vuuColumnResizer):after{content:var(--pending-content);width:24px;height:24px;background-image:var(--svg-spinner);background-repeat:no-repeat;background-size:cover}.vuuMenuItem{--vuu-svg-cog: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.9533 8.65331C12.98 8.43998 13 8.22665 13 7.99998C13 7.77331 12.98 7.55998 12.9533 7.34665L14.36 6.24665C14.4867 6.14665 14.52 5.96665 14.44 5.81998L13.1067 3.51331C13.0267 3.36665 12.8467 3.31331 12.7 3.36665L11.04 4.03331C10.6933 3.76665 10.32 3.54665 9.91333 3.37998L9.66 1.61331C9.64 1.45331 9.5 1.33331 9.33333 1.33331H6.66667C6.5 1.33331 6.36 1.45331 6.34 1.61331L6.08667 3.37998C5.68 3.54665 5.30667 3.77331 4.96 4.03331L3.3 3.36665C3.14667 3.30665 2.97333 3.36665 2.89333 3.51331L1.56 5.81998C1.47333 5.96665 1.51333 6.14665 1.64 6.24665L3.04667 7.34665C3.02 7.55998 3 7.77998 3 7.99998C3 8.21998 3.02 8.43998 3.04667 8.65331L1.64 9.75331C1.51333 9.85331 1.48 10.0333 1.56 10.18L2.89333 12.4866C2.97333 12.6333 3.15333 12.6866 3.3 12.6333L4.96 11.9666C5.30667 12.2333 5.68 12.4533 6.08667 12.62L6.34 14.3866C6.36 14.5466 6.5 14.6666 6.66667 14.6666H9.33333C9.5 14.6666 9.64 14.5466 9.66 14.3866L9.91333 12.62C10.32 12.4533 10.6933 12.2266 11.04 11.9666L12.7 12.6333C12.8533 12.6933 13.0267 12.6333 13.1067 12.4866L14.44 10.18C14.52 10.0333 14.4867 9.85331 14.36 9.75331L12.9533 8.65331V8.65331ZM8 10.3333C6.71333 10.3333 5.66667 9.28665 5.66667 7.99998C5.66667 6.71331 6.71333 5.66665 8 5.66665C9.28667 5.66665 10.3333 6.71331 10.3333 7.99998C10.3333 9.28665 9.28667 10.3333 8 10.3333Z"/></svg>')}.vuuTable-columnMenu{--vuu-icon-color: #606477;--vuu-icon-height: 20px;--vuu-icon-left: 0px;--vuu-icon-size: 16px;--vuu-icon-top: 0px;--vuu-icon-width: 20px;border-radius:4px;cursor:pointer;display:inline-block;flex:0 0 20px;padding:2px;margin:var(--vuuTable-columnMenu-margin, 0);width:auto}.vuuTable-columnMenu:hover{--vuu-icon-color: #15171B;background-color:#f37880}.vuuTable-columnMenu-open:hover,.vuuTable-columnMenu-open{background-color:#6d18bd;--vuu-icon-color: white}[data-icon=cog]{--vuu-icon-svg: var(--vuu-svg-cog);--vuu-icon-size: 14px}.vuuTableGroupHeaderCell,.vuuTableHeaderCell{--cell-align: "flex-start";--vuuColumnHeaderPill-margin: 0;--vuuColumnHeaderPill-flex: 0 0 24px;align-items:center;background-color:var(--vuuTableHeaderCell-background, inherit);border-bottom:1px solid #ccc;border-right-color:var(--cell-borderColor);border-right-style:solid;border-right-width:1px;box-sizing:border-box;cursor:default;display:inline-flex;gap:4px;height:var(--header-height);padding:0 12px 0 4px;position:relative;vertical-align:top}.vuuTableHeaderCell-right{--columnResizer-left: 0;--vuuTable-columnMenu-margin: 0;--vuuColumnHeaderPill-margin: 0 3px 0 0;--column-menu-left: 2px;justify-content:flex-end;padding:0 3px 0 12px}.vuuTableHeaderCell-label{flex:0 1 auto;line-height:calc(var(--header-height) - 1px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vuuTableHeaderCell-right .vuuTableHeaderCell-label{text-align:right}.vuuTableHeaderCell-resizing{--columnResizer-height: var(--table-height)}.vuuTableHeaderCell.vuuPinLeft{padding-left:2px}.vuuTableHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before{--height: calc(var(--table-height) - var(--horizontal-scrollbar-height));--inset-r: calc(var(--pin-width) - 2px);--inset-b: calc(var(--height) - 2px);--clip-path: polygon( 0% 0%, 0% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );background-color:transparent;border-color:var(--vuu-color-gray-40);border-width:1px;border-style:solid solid solid solid;border-radius:4px;box-shadow:2px 1px 4px #0000001a;clip-path:var(--clip-path);content:"";position:absolute;width:var(--pin-width);top:0;bottom:0;right:3px;height:var(--height);z-index:-5}.vuuTableHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before{--height: calc(var(--table-height) - var(--horizontal-scrollbar-height));--inset-r: calc(var(--pin-width) - 2px);--inset-b: calc(var(--height) - 2px);--clip-path: polygon( -20% 0%, -20% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );background-color:transparent;border-color:#a9aaad;border-width:1px;border-style:solid solid solid solid;border-radius:4px;box-shadow:-2px 1px 4px #0000001a;clip-path:var(--clip-path);content:"";position:absolute;width:var(--pin-width);top:0;bottom:0;right:0;height:var(--height);z-index:-5}.vuuTableHeaderCell.vuuDraggable-dragAway{display:none}.vuuTable-headingCell{background:var(--dataTable-background);border-color:var(--salt-separable-tertiary-borderColor);border-style:solid solid solid none;border-width:1px;color:var(--salt-text-secondary-foreground);display:inline-block;height:var(--header-height);padding:0!important}.vuuTableCell{border-right-color:var(--cell-borderColor);border-right-style:solid;border-right-width:1px;display:inline-block;height:100%;overflow:hidden;padding:var(--vuuTableCell-padding, 0 11px 0 12px);text-overflow:ellipsis;vertical-align:top}.vuuTableCell-right{text-align:right}.vuuTableCell-editable{display:inline-flex;line-height:18px;padding-bottom:1px;padding-top:1px;text-overflow:unset}.vuuTableCell:focus{outline:var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);outline-offset:-2px;box-shadow:inset 0 0 0 var(--cell-outline-width) #fff;border-bottom:none}.vuuTableRow-selected .vuuTableCell:not(.vuuTableCell-editable):focus{outline:var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);outline-offset:-1px}.vuuTableCell-editable:focus{outline:none}.vuuTableGroupCell{--group-cell-spacer-width: 20px;align-items:center;border-right-color:var(--vuuTableGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));border-right-style:solid;border-right-width:1px;cursor:pointer;display:inline-flex;height:var(--row-height);line-height:16px}.vuuTableGroupCell-toggle{--vuu-icon-height: 16px;--vuu-icon-size: 16px;--vuu-icon-width: 8px;margin-right:4px;transition:transform .25s;transform:var(--toggle-icon-transform)}.vuuTableGroupCell-spacer{width:var(--group-cell-spacer-width)}.vuuTableRow{background:var(--row-background,#fff);border-bottom:1px solid var(--row-borderColor);box-sizing:border-box;height:var(--row-height);line-height:calc(var(--row-height) - 1px);position:absolute;top:0;white-space:nowrap}.vuuTableRow-even{--row-background: var(--row-background-even)}.vuuTableRow-highlighted{background-color:var(--vuu-color-gray-10)}.vuuTableRow-selected,.vuuTableRow-selectedEnd{background-color:#ebebec}.vuuTableRow-selectedStart{--vuu-selection-decorator-left-radius: 5px 0 0 0;--vuu-selection-decorator-right-radius: 0 5px 0 0;border-radius:5px 5px 0 0}.vuuTableRow-selectedEnd{--vuu-selection-decorator-left-radius: 0 0 0 5px;--vuu-selection-decorator-right-radius: 0 0 5px 0;border-radius:0 0 5px 5px}.vuuTableRow-selectedStart.vuuTableRow-selectedEnd{--vuu-selection-decorator-left-radius: 5px 0 0 5px;--vuu-selection-decorator-right-radius: 0 5px 5px 0;border-radius:5px}.vuuTableRow-selectedStart:after{content:"";position:absolute;top:0;left:4px;height:1px;background-color:var(--vuu-color-purple-10);width:calc(var(--content-width) - 8px);z-index:1}.vuuTableRow-selectedEnd{border-bottom-color:var(--vuu-color-purple-10)}.vuuTableRow-selectionDecorator{background-color:var(--vuu-selection-decorator-bg, white);display:inline-block;position:relative;height:var(--row-height);width:4px;z-index:2}.vuuTableRow-selectionDecorator.vuuStickyLeft{left:0;position:sticky}.vuuTableRow-selectionDecorator.vuuStickyRight{right:0;position:sticky}.vuuTableRow-selected{--vuu-selection-decorator-bg: var(--vuu-color-purple-10)}.vuuTableRow-selectedStart,.vuuTableRow-selectedEnd{--vuu-selection-decorator-bg: white}.vuuTableRow-selectedStart .vuuTableRow-selectionDecorator:before,.vuuTableRow-selectedEnd .vuuTableRow-selectionDecorator:before{content:"";top:0;right:0;bottom:0;left:0;position:absolute;background-color:var(--vuu-color-purple-10)}.vuuTableRow-selectionDecorator.vuuStickyLeft:before{border-radius:var(--vuu-selection-decorator-left-radius, 0)}.vuuTableRow-selectionDecorator.vuuStickyRight:before{border-radius:var(--vuu-selection-decorator-right-radius, 0)}.vuuTableRow-expanded{--toggle-icon-transform: rotate(90deg)}.vuuDraggable .vuuTableRow{--cell-borderColor: transparent;--vuu-selection-decorator-bg: transparent;transform:none!important;z-index:1}.vuuTable{--vuu-table-cell-outlineWidth: 1px;--table-height: var(--measured-px-height);--table-width: var(--measured-px-width);--vuu-table-next-selection-bookend-width: 4px;--columnResizer-color: transparent;--row-background: white;--cell-borderColor: transparent;--row-borderColor: var(--row-background);--table-background: var(--salt-container-primary-background);font-family:var(--vuuTable-fontFamily,var(--salt-typography-fontFamily, sans-serif));font-size:var(--vuuTable-fontSize,var(--salt-text-fontSize, 12px));position:relative;user-select:none}.vuuTable-zebra{--row-background-even: var(--vuu-color-gray-25) }.vuuTable-colLines{--cell-borderColor: var(--vuu-color-gray-03)}.vuuTable-rowLines{--row-borderColor: var(--vuu-color-gray-03)}.vuuTable-highlight .vuuTableRow:hover{background-color:var(--vuu-color-pink-10-fade-20)}.vuuTable-scrollbarContainer{--scroll-content-width: 1100px;border-bottom:none!important;border-top:none!important;border-left:solid 1px var(--salt-container-primary-borderColor);height:var(--viewport-body-height);left:0;overflow:auto;position:absolute;top:var(--total-header-height);width:var(--table-width)}.vuuTable-scrollbarContainer::-webkit-scrollbar{border:none;width:10px}.vuuTable-scrollbarContainer::-webkit-scrollbar:horizontal{height:10px}.vuuTable-scrollbarContainer::-webkit-scrollbar-track{background-color:#fff}.vuuTable-scrollbarContainer::-webkit-scrollbar-thumb{background-clip:padding-box;border-radius:10px;border:2px solid rgba(0,0,0,0);background-color:var(--vuu-color-gray-30)}.vuuTable-scrollbarContent{height:calc(var(--content-height) + var(--horizontal-scrollbar-height));position:absolute;width:var(--content-width)}.vuuTable-contentContainer{background-color:var(--salt-container-primary-background);height:calc(var(--table-height) - var(--horizontal-scrollbar-height));position:relative;overflow:auto;overscroll-behavior:none;width:calc(var(--table-width) - var(--vertical-scrollbar-width))}.vuuTable-contentContainer::-webkit-scrollbar{display:none}.vuuTable-table{position:absolute;top:0;left:0;table-layout:fixed;width:var(--content-width);margin:0;border:none;background-color:#fff;border-collapse:separate;border-spacing:0}.vuuTable-body{height:var(--content-height)}.vuuPinLeft,.vuuPinRight{background-color:inherit;position:sticky;z-index:1}.vuuTable-col-headings{background-color:#fff;padding:0 var(--vuu-table-next-selection-bookend-width, 0);position:sticky;top:0;z-index:1}.vuuTable-col-headers{background-color:var(--table-background);white-space:nowrap}.sizer-cell{background-color:green!important;border:none!important;height:0px}.vuuDraggable-vuuTable{--header-height: 25px;--vuuTableHeaderCell-background: var(--vuu-color-gray-25)}.vuuDraggable-vuuTable{--row-height: 25px}.vuuTableInputCell.saltInput-primary{--salt-focused-outlineStyle: none;--saltInput-height: 17px;--saltInput-minHeight: 17px;border-radius:4px;font-weight:500}.vuuTableCell:focus .vuuTableInputCell.saltInput-primary,.vuuTableInputCell.saltInput-primary.saltInput-focused{border:solid 2px var(--vuu-color-purple-10);padding:0 3px}.vuuTableInputCell-icon{--vuu-icon-height: 13px;--vuu-icon-size: 15px;--vuu-icon-width: 12px;border-radius:10px}.vuuTableCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,.vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error{border:solid 2px var(--vuu-color-red-50)}.vuuTableInputCell-error.saltInput-primary{border:solid 1px var(--vuu-color-red-50)}.vuuTableToggleCell{--saltButton-borderRadius: 4px;--saltButton-height: 16px;font-weight:500;position:relative;top:1px}.vuuTableToggleCell-side{--saltButton-minWidth: 40px}.vuuTableToggleCell.vuuCycleStateButton-buy{background-color:var(--vuu-color-green-50)}.vuuTableToggleCell.vuuCycleStateButton-sell{background-color:var(--vuu-color-red-50)}.vuuTableCell .vuuTableToggleCell:focus{border:solid 2px var(--vuu-color-purple-10)!important;color:#fff!important;height:18px!important;top:0!important}.vuuInstrumentPicker{height:100%;padding:var(--vuuInstrumentPicker-padding, 12px);display:flex;flex-direction:column}.vuuInstrumentPicker-inputField{--vuu-icon-size: 16px;flex:0 0 40px}.vuuInstrumentPicker-list{background-color:var(--salt-container-primary-background);flex:1 1 auto}.vuuInstrumentPicker .vuuTableCell{padding:0}.vuuSearchCell{--vuu-icon-left: 0;--vuu-icon-size: 16px;--vuu-icon-top: 0px;align-items:center;color:var(--background-cell-color);display:flex;gap:4px;padding:0 8px;position:relative;z-index:-1}.vuuInstrumentSearch{height:100%;padding:var(--vuuInstrumentSearch-padding, 12px);display:flex;flex-direction:column}.vuuInstrumentSearch-inputField{--vuu-icon-size: 16px;flex:0 0 40px;padding:0 12px}.vuuInstrumentSearch-list{--vuuMeasuredContainer-flex: 1 1 1px;background-color:var(--salt-container-primary-background);flex:1 1 auto}.vuuInstrumentSearch .vuuTableCell{padding:0}@property --price-ticker-color{syntax: "<color>"; initial-value: #15171B; inherits: false;}.vuuPriceTicker{align-items:center;display:flex;font-size:var(--vuuPriceTicker-fontSize, var(--salt-text-fontSize));font-weight:var(--vuuPriceTicker-fontWeight, 700);transition-property:color;transition-duration:.3s}.vuuPriceTicker.up1,.vuuPriceTicker.up2{--vuu-icon-color: var(--vuu-color-green-50);color:var(--vuu-color-green-50);animation-duration:30s}.vuuPriceTicker.down1,.vuuPriceTicker.down2{--vuu-icon-transform: rotate(180deg);--vuu-icon-color: var(--vuu-color-red-50);color:var(--vuu-color-red-50);animation-duration:30s}.vuuTabstrip{--vuuOverflowContainer-background: transparent;--tabstrip-dragging-display: none;--tabstrip-display: inline-flex;--tabstrip-background: transparent;align-self:var(--saltTabs-tabstrip-alignSelf, stretch);display:flex;font-size:var(--salt-text-fontSize);font-weight:var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));min-width:28px;position:relative;overflow:visible;width:var(--tabstrip-width)}.vuuTabstrip-horizontal{--vuuOverflowContainer-borderColor: var(--salt-container-primary-borderColor);--vuuOverflowContainer-borderStyle: none none solid none;--vuuOverflowContainer-borderBottomWidth: 1px;--tabstrip-height: var(--vuuTabstrip-height, 28px);--tabstrip-width: var(--vuuTabstrip-width, 100%);--tab-height: var(--tabstrip-height);--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}.vuuTabstrip-vertical{--tabstrip-height: var(--vuuTabstrip-height, 100%);--tabstrip-width: var(--vuuTabstrip-width, 100px);--tab-height: 50px;--tab-width: 100%;--tab-thumb-height: 0;--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.vuuDropdown{--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{--overflow-item-height: var(--tabstrip-height);--tab-thumb-height: 2px;--tab-thumb-left: 0px;--tabstrip-display: inline-flex;--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:var(--vuuTabMenu-top, -2px)}.vuuTab{--saltEditableLabel-padding: 0;--saltEditableLabel-height: calc(var(--tabstrip-height) - 2px);--saltInputLegacy-minWidth: 4em;--saltEditableLabel-top: 2px;--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(--vuuTabHeight, var(--tab-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:calc(var(--tab-height) - var(--tab-thumb-height));margin-bottom:var(--tab-thumb-height);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:0;top:var(--tab-thumb-top, auto);transition:var(--tab-thumb-transition, none);width:var(--tab-thumb-width, 100%)}.vuuTab:hover:not(.vuuTab-closeHover,.vuuTab-selected){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:0;left:var(--tree-focus-offset, 0px);right:0;bottom:0;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}.vuuHeader{--saltButton-height: 24px;--saltButton-width: 24px}.salt-density-high .vuuHeader{--saltToolbarField-marginTop: 0}.vuuView{border-color:var(--vuuView-borderColor, var(--salt-container-primary-borderColor));border-width:var(--vuuView-borderWidth, 1px);border-style:var(--vuuView-borderStyle, none);display:flex;flex-direction:column;margin:var(--vuuView-margin, 0px);min-height:50px;min-width:50px;outline:none;overflow:hidden;position:relative}.vuuView.focus-visible:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dotted cornflowerblue 2px}.vuuView.dragging{box-shadow:0 6px 12px #0000002d}.vuuView-main{display:flex;flex-direction:var(--vuuView-flexDirection, column);flex-wrap:var(--vuuView-flex-wrap, nowrap);flex:1;justify-content:var(--vuuView-justify, flex-start);overflow:hidden;position:relative}.vuuView-main>*{flex-basis:auto;flex-grow:var(--vuuView-flex-grow, 1);flex-shrink:var(--vuuView-flex-shrink, 1)}.vuuView-collapsed .vuuView-main{display:none}.vuuView-collapsed+.Splitter{display:none}.vuuView-collapsed .Toolbar-vertical{border-right:solid 1px var(--grey40)}.vuuView-collapsed .Toolbar-vertical .toolbar-title{display:none}.vuuLayoutStartPanel{align-items:center;flex:0 0 auto!important;display:flex;flex-direction:column;font-weight:700;gap:12px}.vuuLayoutStartPanel-title{color:var(--vuu-color-gray-80);font-size:28px;line-height:1.5;text-align:center}.vuuLayoutStartPanel-text{color:var(--vuu-color-gray-50);font-size:18px;line-height:1.5;max-width:460px}.vuuLayoutStartPanel-addButton{--vuu-icon-size: 20px;--saltButton-borderRadius: 28px !important;--saltButton-height: 56px;--saltButton-width: 56px;box-shadow:0 4px 4px #00000040}.vuuPlaceholder{--vuuView-justify: center;align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:1}.vuuPlaceholder-nested{background-color:red}.vuuPlaceholder-shim{flex-grow:0;flex-shrink:0}.vuuSplitter{--splitter-background: var(--salt-separable-secondary-borderColor);--splitter-borderColor: var(--salt-separable-secondary-borderColor);--splitter-borderStyle: none;--splitter-borderWidth: 0;--splitter-size: 3px;align-items:center;background-color:var(--splitter-background);border-color:var(--splitter-borderColor);border-style:var(--splitter-borderStyle);border-width:var(--splitter-borderWidth);box-sizing:border-box;display:flex;justify-content:center;position:relative;outline:none;z-index:1}.vuuSplitter:hover,.vuuSplitter-active{--splitter-background: var(--salt-separable-primary-borderColor)}.vuuSplitter-column{cursor:ns-resize;height:var(--splitter-size)}.vuuSplitter:not(.vuuSplitter-column){cursor:ew-resize;width:var(--splitter-size)}.vuuSplitter:before{border:none;border-radius:0;content:"";display:block;padding:0}.vuuSplitter-grab-zone{position:absolute;background-color:#ff000003;cursor:inherit}.vuuSplitter-column .vuuSplitter-grab-zone{left:0;right:0;top:-5px;bottom:-5px}.vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone{left:-5px;right:-5px;top:0;bottom:0}.vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone{background-color:#ffffff0d;left:-150px;right:-150px}.vuuSplitter:not(.vuuSplitter-column):before{width:1px;height:10px;background:linear-gradient(to bottom,var(--grey900) 10%,transparent 10%,transparent 30%,var(--grey900) 30%,var(--grey900) 40%,transparent 40%,transparent 60%,var(--grey900) 60%,var(--grey900) 70%,transparent 70%,transparent 90%,var(--grey900) 90%)}.vuuSplitter-active.vuuSplitter-column:before{background:linear-gradient(to right,#ffffff 10%,transparent 10%,transparent 30%,#ffffff 30%,#ffffff 40%,transparent 40%,transparent 60%,#ffffff 60%,#ffffff 70%,transparent 70%,transparent 90%,#ffffff 90%)}.vuuSplitter-active:not(.vuuSplitter-column):before{background:linear-gradient(to bottom,#ffffff 10%,transparent 10%,transparent 30%,#ffffff 30%,#ffffff 40%,transparent 40%,transparent 60%,#ffffff 60%,#ffffff 70%,transparent 70%,transparent 90%,#ffffff 90%)}.vuuSplitter-column:before{width:10px;height:1px;background:linear-gradient(to right,var(--grey900) 10%,transparent 10%,transparent 30%,var(--grey900) 30%,var(--grey900) 40%,transparent 40%,transparent 60%,var(--grey900) 60%,var(--grey900) 70%,transparent 70%,transparent 90%,var(--grey900) 90%)}:root{--hw-space-unit: 4px;--hw-flex-gap: 3;--hw-fluid-grid-col-bg: rgba(200, 200, 200, .3)}.hwFlexbox{background-color:var(--container1-background);box-sizing:border-box;display:flex;gap:calc(var(--spacing) * var(--space));min-height:0;min-width:0;overflow:hidden}.hwFlexbox-column{flex-direction:column}.hwFlexbox-row{flex-direction:row}.hwFlexbox>.Splitter{flex-basis:auto;flex-grow:0;flex-shrink:0}.hwFlexbox.full-page{height:100vh;width:100vw}.flex-fill{border-color:red;flex:0;flex-grow:1;flex-shrink:1}.vuuView.flex-fill{border-color:red}:root{--hw-space-unit: 4px;--hw-fluid-grid-col-bg: rgba(252, 209, 232, .7)}.hwFluidGrid{--gap: var(--gutter-width);display:flex;gap:calc(var(--grid-gap) * var(--hw-space-unit));flex-wrap:wrap;padding:0}.hwFluidGrid>*{--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));--gutter-count: calc(var(--parent-col-count) - 1);--total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));--available-width: calc(100% - var(--total-gutter-width));flex-basis:0;flex-grow:1;flex-shrink:1;position:relative}.hwFluidGrid>*:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dashed 2px blue}.hwFluidGrid>[data-xs]{--internal-gutter-count: calc(var(--col-span) - 1);--percent-width: calc(var(--col-span) / var(--parent-col-count));--internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));flex-basis:calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));flex-grow:0}.hwFluidGrid>[data-xs="1"]{--col-span: 1}.hwFluidGrid>[data-xs="2"]{--col-span: 2}.hwFluidGrid>[data-xs="3"]{--col-span: 3}.hwFluidGrid>[data-xs="4"]{--col-span: 4}.hwFluidGrid>[data-xs="6"]{--col-span: 6}.hwFluidGrid>[data-xs="8"]{--col-span: 8}.hwFluidGrid>[data-xs="9"]{--col-span: 9}.hwFluidGrid>[data-xs="10"]{--col-span: 10}.hwFluidGrid>[data-xs="11"]{--col-span: 11}.hwFluidGrid>[data-xs="12"]{--col-span: 12}@media (min-width: 600px){.hwFluidGrid>[data-sm="1"]{--col-span: 1}.hwFluidGrid>[data-sm="2"]{--col-span: 2}.hwFluidGrid>[data-sm="3"]{--col-span: 3}.hwFluidGrid>[data-sm="4"]{--col-span: 4}.hwFluidGrid>[data-sm="6"]{--col-span: 6}.hwFluidGrid>[data-sm="8"]{--col-span: 8}.hwFluidGrid>[data-sm="9"]{--col-span: 9}.hwFluidGrid>[data-sm="10"]{--col-span: 10}.hwFluidGrid>[data-sm="11"]{--col-span: 11}.hwFluidGrid>[data-sm="12"]{--col-span: 12}}.hwFluidGrid-show-grid{--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));--grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);--grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));--grid-available-width: calc(100% - var(--grid-total-gutter-width));--grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));--column-width: calc(var(--grid-available-width) * var(--grid-percent-width));background:repeating-linear-gradient(to right,var(--hw-fluid-grid-col-bg) 0,var(--hw-fluid-grid-col-bg) var(--column-width),white var(--column-width),white calc(var(--column-width) + var(--gutter-width)))}.vuuMeasuredContainer{flex:var(--vuuMeasuredContainer-flex, none);height:var(--vuuMeasuredContainer-height, var(--measured-css-height));min-height:0;width:var(--measured-css-width)}.vuuOverflowContainer{--overflow-borderColor: var(--vuuOverflowContainer-borderColor, none);--overflow-borderStyle: var(--vuuOverflowContainer-borderStyle, none);--overflow-borderWidth: var(--vuuOverflowContainer-borderWidth, 0px);--overflow-border-topWidth: var(--vuuOverflowContainer-borderTopWidth, var(--overflow-borderWidth));--overflow-border-rightWidth: var(--vuuOverflowContainer-borderRightWidth, var(--overflow-borderWidth));--overflow-border-bottomWidth: var(--vuuOverflowContainer-borderBottomWidth, var(--overflow-borderWidth));--overflow-border-leftWidth: var(--vuuOverflowContainer-borderLeftWidth, var(--overflow-borderWidth));--overflow-item-gap: var(--vuuOverflowContainer-gap,2px);--overflow-direction: row;--overflow-height: var(--overflow-item-height);--overflow-top:top:0;--overflow-width: 0px;background-color:var(--vuuOverflowContainer-background);border-color:var(--overflow-borderColor);border-style:var(--overflow-borderStyle);border-top-width:var(--overflow-border-topWidth);border-right-width:var(--overflow-border-rightWidth);border-bottom-width:var(--overflow-border-bottomWidth);border-left-width:var(--overflow-border-leftWidth);height:var(--overflow-container-heightWidth)}.vuuOverflowContainer-horizontal{--item-align: center;--item-margin: 0 var(--overflow-item-gap) 0 var(--overflow-item-gap)}.vuuOverflowContainer-vertical{--item-align: stretch;--overflow-item-height: auto;--item-margin: var(--overflow-item-gap) 0 var(--overflow-item-gap) 0;--overflow-direction: column;--overflow-height: 0;--overflow-left: 0;--overflow-top: 100%;--overflow-width: auto}.vuuOverflowContainer-wrapContainer{--border: calc(var(--overflow-border-topWidth) + var(--overflow-border-bottomWidth));--overflow-item-height: calc(var(--overflow-container-height) - var(--border));align-items:var(--item-align);display:flex;flex-direction:var(--overflow-direction);flex-wrap:wrap;height:var(--overflow-item-height);justify-content:var(--vuuOverflowContainer-justifyContent, flex-start);min-width:var(--vuuOverflowContainer-minWidth, 44px);overflow:hidden;position:relative;width:100%}.vuuOverflowContainer-wrapContainer-overflowed{--overflow-order: 2;--overflow-left: auto;--overflow-position: relative;--overflow-width: auto}.vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed{--overflow-height: auto}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--overflow-item-height);margin:var(--item-margin)}.vuuOverflowContainer-item[data-align=right]{margin-left:auto}.vuuOverflowContainer-item.wrapped{--overflow-item-bg: #ccc;order:3}.vuuOverflowContainer-item.vuuDraggable-dragAway,.vuuOverflowContainer-item:has(.vuuDraggable-dragAway){display:none}.vuuOverflowContainer-item.vuuDropTarget-settling{visibility:hidden}.vuuOverflowContainer-OverflowIndicator{align-items:center;background-color:transparent;display:flex;height:var(--overflow-height);order:var(--overflow-order, 99);overflow:hidden;left:var(--overflow-left, 100%);top:var(--overflow-top, 100%);position:var(--overflow-position, absolute);width:var(--overflow-width)}.vuuDraggable-vuuOverflowContainer{align-items:center;display:flex;height:44px}.vuuPalette{--vuuList-borderStyle: none}.vuuPalette-horizontal{align-items:center;display:flex}.vuuPaletteItem{--vuu-icon-color: var(--salt-text-primary-foreground);--vuu-icon-left: 0;--vuu-icon-size: 16px;--vuu-icon-top: 11px;--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);border-bottom:solid 1px var(--salt-separable-tertiary-borderColor);padding-left:12px;font-size:12px;font-weight:600}.vuuSimpleDraggableWrapper>.vuuPaletteItem{--vuu-icon-color: var(--salt-selectable-foreground)}.salt-theme .vuuPaletteItem{font-size:11px;font-weight:400}.vuuTabs{display:flex;box-sizing:border-box;flex-direction:column}.vuuTabs-horizontal{--vuu-tabs-border-style: none solid none none;flex-direction:row}.vuuTabs .Toolbar:before{left:0;width:100%;bottom:0;height:1px;content:"";position:absolute;background:var(--grey60)}.vuuTabs-tabPanel{display:flex;flex:1;flex-direction:column}.vuuTabs-tabPanel>*{flex:1 1 auto}.vuuTabHeader{--saltTabs-activationIndicator-background: transparent;--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);border-color:var(--salt-container-primary-borderColor);border-style:var(--vuu-tabs-border-style, none none solid none);border-width:1px}.vuuTabHeader+.vuuView>.vuuHeader{height:0;overflow:hidden}.Layout-svg-button{--spacing-medium: 5px}.vuuToolbar{--toolbar-height: var(--vuuToolbar-height, 36px);--toolbar-item-height: var(--vuuToolbarItem-height, 100%);--vuuOverflowContainer-background: var(--vuuToolbar-background);--vuuOverflowContainer-borderColor: var(--vuuToolbar-borderColor);--vuuOverflowContainer-borderStyle: var(--vuuToolbar-borderStyle);--vuuOverflowContainer-borderWidth: var(--vuuToolbar-borderWidth);height:var(--toolbar-height)}.vuuToolbar-alignCenter{--vuuOverflowContainer-justifyContent: center}.vuuToolbar-alignEnd{--vuuOverflowContainer-justifyContent: flex-end}.vuuToolbarItem{height:var(--toolbar-item-height)}.vuuToolbar-withSeparators .vuuOverflowContainer-item:not(:first-child):before{content:"";position:absolute;left:calc(-1 * var(--overflow-item-gap));top:calc((var(--toolbar-height) - var(--toolbar-item-height)) /2);width:1px;height:var(--toolbar-item-height);background-color:var(--vuu-color-gray-05)}.vuuToolbarItem.vuuFocusVisible{outline-color:var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));outline-style:dashed;outline-width:1px;outline-offset:0px}.vuuPopupMenu:focus,.vuuToolbarItem:focus,.vuuToolbarItem:focus-visible{outline-color:var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));outline-style:dashed;outline-width:1px;outline-offset:0px}[data-design-mode=true] .Component{filter:grayscale(100%);opacity:.4}[data-design-mode=true] .Component:after{color:#000;content:"Component";height:12px;background-color:#ff0}.LayoutConfigurator{--margin-color: #f3cea5;--border-color: #fddda0;--padding-color: #c6d092;--content-color: #8cb6c0;display:flex;flex-direction:column;align-items:stretch;background-color:var(--margin-color)}.LayoutConfigurator .layout-outer{flex:1 1 auto;display:flex;flex-direction:column;align-items:stretch}.LayoutBox{--hw-control-font-size: 13px;--hw-text-input-bg: rgba(255, 255, 255, .3);--hwTextInput-padding: 3px;--hw-text-input-position: absolute;--hwTextInput-width: 30px;flex:1 1 auto}.LayoutBox>.layout-top{flex:0 0 40px;padding-left:12px;display:flex;flex-direction:row;align-items:center;position:relative}.LayoutBox>.layout-bottom{flex:0 0 40px;position:relative;display:flex;flex-direction:row;align-items:center}.LayoutBox>.layout-inner>.layout-right,.LayoutBox>.layout-inner>.layout-left{flex:0 0 40px;display:flex;flex-direction:column;justify-content:center;align-items:center}.layout-top,.layout-bottom{--hw-text-input-margin: 0 0 0 -15px}.layout-top>.layout-input,.layout-bottom>.layout-input{left:50%}.LayoutBox>.layout-inner{flex:1 1 auto;display:flex;flex-direction:row;align-items:stretch}.LayoutBox.layout-margin{background-color:var(--margin-color);border:dashed 2px black}.LayoutBox.layout-border{background-color:var(--border-color);border:solid 2px black}.LayoutBox.layout-padding{background-color:var(--padding-color);border:dashed 2px black}.LayoutBox .layout-content{flex:1 1 auto;background-color:var(--content-color);border:solid 2px #808080}.LayoutBox .layout-title{color:#161616;font-size:11px;left:4px;line-height:15px;position:absolute;top:1px}.hwLayoutTreeNode{cursor:default}.hwLayoutTreeNode:hover{background-color:#fff3}.hwLayoutTreeNode[aria-selected=true]{background-color:#6495ed;color:#fff}.vuuLoginPanel{--saltInput-paddingLeft: 8px;--login-width: 856px;--login-height: 550px;--hwTextInput-border: solid 1px #ccc;--hwTextInput-height: 28px;--hwTextInput-padding: 0 12px;--hwTextInput-width: 100%;--login-row-height: 60px;border-radius:16px;box-shadow:0 24px 44px #00000040;display:flex;height:var(--login-height);margin:0 auto;width:var(--login-width)}.vuuLoginPanel .saltInput-primary{--saltInput-height: 36px}.vuuLoginPanel-title{justify-content:center;font-size:28px;font-weight:400;display:flex}.vuuLoginPanel-branding{align-items:center;background-color:var(--vuu-color-purple-50);border-radius:16px 0 0 16px;display:flex;flex:0 0 368px;flex-direction:column;gap:40px;justify-content:center;padding:40px 100px}.vuuLoginPanel-form{background-color:#fff;border-radius:0 16px 16px 0;display:flex;flex:1 1 auto;flex-direction:column;gap:32px;justify-content:center;padding:0 40px}.vuuLoginPanel-password{--vuu-icon-size: 16px}.vuuLoginPanel-appName{color:#fff;font-size:18px;font-weight:700;text-transform:uppercase}.vuuLoginPanel-login{--saltButton-height: 36px;--saltButton-borderRadius: 6px;width:100%}.vuuAppHeader{--saltButton-borderRadius: 6px;--saltButton-text-color: var(--vuu-color-gray-50);--saltButton-padding: 12px;--vuuToolbarItem-height: 26px;--vuuOverflowContainer-gap: 8px;--vuu-icon-color: var(--vuu-color-gray-45);--vuu-icon-size: 16px;--vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));--vuuToolbar-borderWidth: 1px;--vuuToolbar-borderStyle: solid;--vuuToolbar-borderColor: var(--vuu-color-gray-30);align-items:center;display:flex;justify-content:flex-end}.vuu-theme .vuuAppHeader{border-radius:8px;margin-bottom:8px}.vuuStatus-container{display:flex}.vuuStatus-text{align-self:center}.vuuStatus{--vuu-icon-height: 18px;--vuu-icon-padding: var(--vuuStatus-padding, 6px);--vuu-icon-width: var(--vuuStatus-width, auto);--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);align-items:center;display:inline-flex;height:var(--vuu-icon-height);justify-content:center;min-width:var(--vuu-icon-min-width);padding:0 var(--vuu-icon-padding);width:var(--vuu-icon-width);position:relative}.vuuStatus[data-icon]:after{top:0;right:0;bottom:0;left:0;content:"";box-shadow:0 0 #000;position:absolute;mask:var(--vuu-icon-svg) center center/20px 20px no-repeat;-webkit-mask:var(--vuu-icon-svg) center center/20px 20px no-repeat}.vuuActiveStatus:after{--vuu-icon-svg: var(--svg-active-status);background-color:#0f0}.vuuConnectingStatus:after{--vuu-icon-svg: var(--svg-connecting-status);background-color:orange;transform:scale(1);animation:infinite pulse 1s}.vuuDisconnectedStatus:after{--vuu-icon-svg: var(--svg-disconnected-status);background-color:red;transform:scale(1);animation:infinite pulse .5s}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 #000000b3}70%{transform:scale(1);box-shadow:0 0 #0000}to{transform:scale(.95);box-shadow:0 0 #0000}}.saveLayoutPanel{--salt-selectable-foreground-hover: #6d18bdc3;--salt-selectable-foreground-selected: #6D18BD;--salt-selectable-borderColor-selected: #6D18BD;--saltInputLegacy-fontSize: 12px;--salt-text-label-fontSize: 10px;--saltFormFieldLegacy-label-paddingLeft: 0;--saltFormField-label-fontWeight: 400;--saltText-color: var(--text-secondary-foreground, #606477)}.spinner{width:100px;height:100px;background-image:var(--svg-spinner)}.saveLayoutPanel-panelContainer{display:flex;flex-direction:column;align-items:flex-start}.saveLayoutPanel-panelContent{display:flex;align-items:flex-start;gap:32px}.saveLayoutPanel-formContainer{display:flex;width:217px;flex-direction:column;align-items:flex-start;gap:16px}.saveLayoutPanel-formField{display:flex;flex-direction:column;gap:1px}.saveLayoutPanel-inputText{border:none;color:var(--light-text-primary, #15171B);font-family:Nunito Sans A-Variant,serif;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-weight:400;line-height:16px;padding-left:4px;width:100%;outline:none}.saveLayoutPanel-settingsGroup{display:flex;flex-wrap:wrap;align-items:flex-end;gap:10px;width:100%;line-height:16px}.saveLayoutPanel-screenshotContainer{display:flex;width:304px;height:208px;padding:11px 15.5px;justify-content:center;align-items:center;border:1px solid #E8E8E8;background:var(--dark-text-primary, #FFF)}.saveLayoutPanel-screenshot{background:#d3d3d3 50% / cover no-repeat;width:273px;height:186px}.saveLayoutPanel-buttonsContainer{display:flex;justify-content:flex-end;align-items:flex-start;align-self:stretch;padding-top:24px;gap:8px}.saveLayoutPanel-cancelButton,.saveLayoutPanel-saveButton{display:flex;height:fit-content;padding:4px 8px;align-items:flex-start;gap:8px;border-radius:6px;font-size:12px;font-style:normal;font-weight:700;line-height:133.333%;letter-spacing:.48px;text-transform:uppercase}.saveLayoutPanel-cancelButton{color:var(--actionable-primary-foreground-default, #606477);background:var(--actionable-primary-background-default, #FFF)}.saveLayoutPanel-saveButton{background:#6d18bd;border-color:#6d18bd;color:#fff}.saveLayoutPanel-saveButton.saltButton:disabled{background:#6d18bd;border-color:#6d18bd;color:#fff;opacity:.3}.saveLayoutPanel-saveButton.saltButton:hover{background:#f37880;border-color:#f37880;color:#fff}.vuuFilterBuilderMenu{margin:0}.vuuFilterBuilderMenu-trigger{display:inline-block;height:26px;width:0px}.vuuFilterBuilderMenuList{--vuuList-borderStyle: none}.vuuListItem:has(.vuuMenuButton){justify-content:center}.vuuMenuButton{background-color:#fff;border:solid 1px var(--salt-actionable-primary-foreground);border-radius:6px;color:var(--vuu-color-gray-50);font-size:9px;padding:1px 6px}.vuuExpandoCombobox{--expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);--expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);--saltInput-outline: none;--saltInput-fontSize: var(--expando-combobox-fontSize);--saltInput-height: var(--expando-combobox-height);--saltInput-minWidth: 4px;display:inline-flex;flex-direction:column;height:var(--expando-combobox-height);min-width:4px;padding:0}.vuuExpandoCombobox .saltInput{background-color:transparent;position:absolute}.vuuExpandoCombobox .vuuDropdown{height:100%}.vuuExpandoCombobox-Input.saltInput{border:none;left:0;margin:0;min-height:100%;padding:0;right:0;width:auto}.vuuExpandoCombobox .saltInput-input{border:none;box-sizing:content-box;display:block;flex:1;font:inherit;margin:0;min-width:0;outline:none;padding:0}.vuuExpandoCombobox:before{content:attr(data-text);display:block;font-size:var(--expando-combobox-fontSize);height:0px;overflow:hidden;white-space:pre-wrap}.vuuFilterClause{--vuuExpandoInput-top: 0;--vuuExpandoInput-height: 16px;--vuuExpandoCombobox-height: 16px;--saltButton-height: 16px;--saltButton-width: 16px;display:flex;flex-direction:row;width:fit-content;border-color:var(--vuu-color-gray-45);border-radius:6px;border-width:1px;border-style:solid;background:#fff;--salt-focused-outlineStyle: dotted}.vuuFilterClause:focus-within{border-color:var(--vuu-color-purple-10)}.vuu-density-high .vuuFilterClause{padding:4px 8px;gap:4px;--salt-text-lineHeight: 12px;--saltInputLegacy-fontSize: 12px;--saltInputLegacy-minWidth: 12px}.vuu-density-high .vuuFilterClause .saltInput{padding:0;min-height:16px;height:16px}.vuuFilterClause .vuuExpandoCombobox{flex-basis:auto;flex-shrink:0;flex-grow:0}.vuuFilterClauseOperator-hidden{display:none}.vuuFilterClause .saltInput-focused,.vuuFilterClause .saltTokenizedInput-focused{outline:none;color:var(--salt-text-primary-foreground)}.vuuFilterClause .saltInput-input::selection{color:#fff}.vuu-theme .saltList{--list-borderWidth: 1px;--list-borderStyle: solid;border-radius:4px;box-shadow:0 2px 3px #0006}.saltListItem[aria-selected=true]:not(.saltListItem-checkbox){--list-item-background: var(--list-item-background-active);color:var(--list-item-text-color-active)}.saltTokenizedInput{height:16px;min-height:16px}.saltTokenizedInput .saltInputPill{--pill-fontSize: 12px;--saltButton-borderStyle: none;--pill-background: none;height:16px;margin:0}.saltTokenizedInput-pillGroup{padding:0;height:16px}.vuuFilterPillMenu{top:-1px}.vuuFilterPill{align-items:center;background:var(--salt-taggable-background);border:solid 1px var(--salt-taggable-foreground);border-radius:24px;color:var(--vuu-color-gray-50);display:inline-flex;max-width:var(--vuuFilterPill-maxWidth, 200px);padding:0 8px;position:relative;user-select:none;outline:none}.vuuFilterPill.vuuToolbarItem{height:24px}.vuuFilterPill[aria-selected=true]{--vuuPopupMenu-iconColor: white;--salt-text-background-selected: var(--vuu-color-blue-40);--salt-text-color-selected: var(--salt-text-primary-foreground);--saltInput-background-hover: var(--salt-taggable-background-active);--saltInput-color: var(--salt-taggable-foreground-active);background:var(--salt-taggable-background-active);color:#fff}.vuuFilterPill:not([aria-selected=true]):hover{--vuuPopupMenu-iconColor: var(--vuu-color-gray-80);background-color:var(--salt-taggable-background-hover);border-color:var(--salt-taggable-background-hover);color:var(--vuu-color-gray-80)}.vuuFilterBar{--vuu-svg-tune: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18C3 18.55 3.45 19 4 19H9V17H4C3.45 17 3 17.45 3 18ZM3 6C3 6.55 3.45 7 4 7H13V5H4C3.45 5 3 5.45 3 6ZM13 20V19H20C20.55 19 21 18.55 21 18C21 17.45 20.55 17 20 17H13V16C13 15.45 12.55 15 12 15C11.45 15 11 15.45 11 16V20C11 20.55 11.45 21 12 21C12.55 21 13 20.55 13 20ZM7 10V11H4C3.45 11 3 11.45 3 12C3 12.55 3.45 13 4 13H7V14C7 14.55 7.45 15 8 15C8.55 15 9 14.55 9 14V10C9 9.45 8.55 9 8 9C7.45 9 7 9.45 7 10ZM21 12C21 11.45 20.55 11 20 11H11V13H20C20.55 13 21 12.55 21 12ZM16 9C16.55 9 17 8.55 17 8V7H20C20.55 7 21 6.55 21 6C21 5.45 20.55 5 20 5H17V4C17 3.45 16.55 3 16 3C15.45 3 15 3.45 15 4V8C15 8.55 15.45 9 16 9Z" /></svg>');--vuuToolbar-height: 28px;--salt-container-primary-borderColor: var(--vuu-color-purple-10);--vuuOverflowContainer-minWidth: 0;--saltButton-height: 26px;--saltButton-width: 26px;align-items:center;background-color:var(--salt-container-secondary-background);border-bottom:solid 1px #D6D7DA;display:flex;flex:var(--vuuFilterBar-flex);gap:4px;height:33px;padding:0 8px}.vuuFilterbar-icon{display:inline-block;height:16px;width:16px}.vuuFilterBar [data-icon=tune]{--vuu-icon-size: 16px;--vuu-icon-svg: var(--vuu-svg-tune)}.vuuFilterBar [data-icon=plus]{--vuu-icon-size: 16px}.vuuFilterBar .vuuToolbar{flex:0 1 auto}.salt-theme{--vuuFilterEditor-lineHeight: 28px}.salt-density-high{--vuuFilterEditor-buttonWidth: 20px;--vuuFilterEditor-height: 22px;--vuuFilterEditor-lineHeight: 20px}.vuuFilterInput{--vuuFilterEditor-background: var(--salt-container-primary-background);--vuuFilterEditor-color: var(--salt-text-primary-foreground);--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);--vuuFilterEditor-fontSize: var(--salt-text-fontSize);--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);--vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);--vuuFilterEditor-suggestion-height: 24px;--vuuFilterEditor-variableColor: var(--vuu-color_purple-10);align-items:center;border-color:var(--salt-container-secondary-borderColor);border-style:solid none;border-width:1px;box-sizing:border-box;display:flex;height:var(--vuuFilterEditor-height, 30px)}.vuuFilterInput-Editor{flex:1 1 auto;height:100%}.vuuFilterInput-FilterButton,.vuuFilterInput-ClearButton{--vuu-icon-size: 12px;--saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px)}.vuuIllustration{--vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);background:var(--salt-container-secondary-background);color:var(--salt-text-secondary-foreground)}.vuuLayoutTile-layoutTile{display:flex;align-items:center;gap:8px;padding:8px 0;flex:1 1 auto;cursor:pointer}.vuuLayoutTile-layoutName{color:var(--light-text-primary, #15171B);font-weight:600;line-height:133.333%;text-transform:capitalize}.vuuLayoutTile-screenshot{width:60px;height:45.6px;border:1px solid #D6D7DA}.vuuLayoutTile-layoutDetails{color:var(--light-text-secondary, #606477);font-size:10px;font-weight:600;line-height:150%}.vuuLayoutList{--vuuMeasuredContainer-flex: 1 1 1px;align-self:stretch;display:flex;flex-direction:column;height:100%;overflow:hidden}.vuuLayoutList-header{color:var(--light-text-primary, #15171B);flex:0 0 47px;font-weight:700;letter-spacing:.48px;text-transform:uppercase;display:flex;padding:16px 0;border-bottom:1px solid rgba(119,124,148,.1);line-height:200%}.vuuLayoutList-groupName{display:flex;padding-top:24px;color:var(--light-text-secondary, #606477);font-weight:700;letter-spacing:.48px;line-height:200%}.vuuLayoutList-layoutContainer{display:flex;align-items:center;gap:8px;padding:8px 0;flex:1 1 auto;cursor:pointer}.vuuLayoutList-layoutName{color:var(--light-text-primary, #15171B);font-weight:600;line-height:133.333%;text-transform:capitalize}.vuuLayoutList-screenshot{width:60px;height:45.6px;border:1px solid #D6D7DA}.vuuLayoutList-layoutDetails{color:var(--light-text-secondary, #606477);font-size:10px;font-weight:600;line-height:150%}.vuuFeatureList{background:var(--vuuFeatureList-background, var(--salt-container-primary-background));display:flex;flex-direction:column;height:100%;padding:195px 32px 16px 24px}.vuuFeatureList-header{flex:0 0 40px;font-size:12px;font-weight:700;line-height:2}.vuuFeatureList-content{flex:1 1 auto;font-size:12px;font-weight:700}.vuuLeftNav{--salt-navigable-fontWeight-active: 700;--vuuTab-background-selected: rgba(255, 255, 255, .1);--vuuTab-hover-background: rgba(255, 255, 255, .1);--vuuTab-before-content: none;--vuuTab-borderRadius: 6px;--vuuTab-height: 40px;--vuuTab-padding: 0 0 0 48px;--vuuTabstrip-fontWeight: 700;--vuuTabstrip-width: 100%;--svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');--svg-features: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');--svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');--svg-layouts: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 10H14V11.3333H15.3333V10ZM15.3333 12.6667H14V14H15.3333V12.6667ZM15.3333 7.33333H14V8.66667H15.3333V7.33333ZM10 2H8.66667V3.33333H10V2ZM15.3333 4.66667H14V6H15.3333V4.66667ZM0.666672 14H7.33334V10H0.666672V14ZM2.00001 4.66667H0.666672V6H2.00001V4.66667ZM10 12.6667H8.66667V14H10V12.6667ZM12.6667 2H11.3333V3.33333H12.6667V2ZM15.3333 2H14V3.33333H15.3333V2ZM12.6667 12.6667H11.3333V14H12.6667V12.6667ZM2.00001 7.33333H0.666672V8.66667H2.00001V7.33333ZM7.33334 2H6.00001V3.33333H7.33334V2ZM4.66667 2H3.33334V3.33333H4.66667V2ZM2.00001 2H0.666672V3.33333H2.00001V2Z"/></svg>');--vuu-light-text-primary: #15171b;--menu-level-2-width: 0px;box-shadow:3px 4px 4px #00000026;display:flex;height:calc(100% - 4px);margin-bottom:4px;overflow:hidden;position:relative;transition:width .2s ease-out;z-index:0}.vuuLeftNav-menu-full{--menu-width: var(--nav-menu-expanded-width)}.vuuLeftNav-menu-icons{--menu-width: var(--nav-menu-collapsed-width)}.vuuLeftNav-menu-icons-content{--menu-width: var(--nav-menu-collapsed-width);--menu-level-2-width: var(--nav-menu-content-width)}.vuuLeftNav-menu-full-content{--menu-width: var(--nav-menu-expanded-width);--menu-level-2-width: var(--nav-menu-content-width)}.vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,.vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary{display:flex}.vuuLeftNav-menu-primary{background-color:#2a015f;container-type:inline-size;display:flex;flex-direction:column;height:100%;padding:32px 16px;transition:flex-basis ease-out .2s;flex-grow:0;flex-shrink:0;flex-basis:var(--menu-width)}.vuuLeftNav-menu-secondary{flex:1 1 auto;display:none;top:0;right:0;flex-grow:0;flex-shrink:0;flex-basis:var(--nav-menu-content-width, 240px);z-index:-1}.vuuLeftNav .vuuTabstrip{margin-top:102px}.vuuLeftNav .vuuTab{--vuuTab-focusVisible-color: pink;--vuu-icon-color: white;--vuu-icon-left: 12px;--vuu-icon-size: 16px;border-left:solid 4px transparent}.vuuLeftNav .vuuTab-selected{--vuu-icon-color: var(--salt-navigable-indicator-active);border-left:solid 4px var(--salt-navigable-indicator-active)}.vuuLeftNav-logo{display:flex;flex:0 0 auto;justify-content:center}.vuuLeftNav-main{flex:1 1 auto}.vuuLeftNav-menu{color:#fff;margin-top:102px;padding:0}.vuuLeftNav [data-icon=demo]{--vuu-icon-svg: var(--svg-demo)}.vuuLeftNav [data-icon=tables]{--vuu-icon-svg: var(--svg-tables)}.vuuLeftNav [data-icon=features]{--vuu-icon-svg: var(--svg-features)}.vuuLeftNav [data-icon=layouts]{--vuu-icon-svg: var(--svg-layouts)}@container (max-width: 100px){.vuuTab{--vuuTab-padding: 0 0 0 42px}.vuuTab-main{display:none!important}}.vuuLeftNav-buttonBar{align-items:center;display:flex;flex:0 0 100px;justify-content:center}.vuuLeftNav-toggleButton{--vuu-icon-color: var(--vuu-light-text-primary);--vuu-icon-left: 11px;--vuu-icon-top: 10px;--vuu-icon-size: 16px;background-color:var(--salt-navigable-indicator-active);border-width:0;border-radius:18px;height:36px;position:relative;width:36px}.vuuLeftNav-toggleButton-open{--vuu-icon-left: 9px}.vuuLeftNav-drawer{display:flex;padding:40px 32px 0 24px;flex-direction:column;align-items:flex-start;flex-shrink:0;align-self:stretch;background:#fff;box-shadow:3px 4px 4px #00000026;height:100%}.vuuSessionEditingForm{display:flex;flex-direction:column;gap:3px;min-width:400px;padding:6px}.vuuSessionEditingForm-content{display:flex;flex-direction:column;flex:1 1 auto;gap:3px;overflow:auto}.vuuSessionEditingForm-field{align-items:center;display:flex;height:32px}.vuuSessionEditingForm-fieldLabel{flex:0 0 50%}.vuuSessionEditingForm-fieldValue{max-width:50%}.vuuSessionEditingForm-fieldValue.vuuReadOnly{font-weight:var(--salt-text-label-fontWeight-strong)}.vuuSessionEditingForm-buttonbar{align-items:center;border-top:solid 1px var(--salt-container-primary-borderColor);display:flex;justify-content:flex-end;flex:0 0 autox;gap:6px;padding-top:6px}.vuuSessionEditingForm-errorBanner{--vuu-icon-left: 3px;--vuu-icon-size: 18px;--vuu-icon-top: 3px;border:solid 1px var(--salt-status-error-borderColor);line-height:24px;padding:0 6px 0 26px;position:relative}.vuuContextPanel{position:relative;transition:width .3s ease-in-out;width:var(--vuu-side-panel-width, 0px)!important;z-index:1}.vuuContextPanel-expanded{--vuu-side-panel-width: 300px !important;--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, .1);--vuu-side-panel-padding: 24px}.vuuContextPanel-overlay{width:0px!important}.vuuContextPanel-inner{background-color:var(--salt-container-primary-background);box-shadow:var(--vuu-side-panel-shadow, none);display:flex;flex-direction:column;height:100%;min-width:0!important;overflow:auto;padding-bottom:24px;padding-top:24px;padding-left:var(--vuu-side-panel-padding, 0);padding-right:var(--vuu-side-panel-padding, 0);position:absolute!important;right:0;top:0;transition-property:padding-left,padding-right,width;transition-duration:.3s;transition-timing-function:ease-in-out;width:var(--vuu-side-panel-width, 0px)}.vuuContextPanel-header{align-items:center;display:flex;flex-wrap:nowrap;flex:0 0 27px!important;justify-content:space-between}.vuuContextPanel-title{font-size:20px;font-weight:700;white-space:nowrap}.vuuContextPanel-content{flex:1 1 auto;width:100%}.vuuShellSidePanel{transition:width .2s ease-out;width:var(--shell-left-nav-size)}.vuuShell{background-color:var(--vuu-color-gray-25);height:var(--vuuShell-height, 100vh);width:var(--vuuShell-width, 100vw)}.vuuShell-mainTabs{background:var(--salt-container-primary-background)}.vuuShell-palette{--vuuView-border: none;--vuuView-margin: 0}.vuuShell-warningPlaceholder{background-color:var(--salt-container-background-high);height:100%}.vuuToolbarProxy{background:var(--salt-container-primary-background)}.vuuShell-mainTabs>.vuuTabstrip>.vuuOverflowContainer-wrapContainer{background:var(--vuu-color-gray-25)}.vuuShell-mainTabs{--vuuTab-height: 28px;border:solid 1px #D6D7DA;border-top:none!important;border-radius:6px;height:100%;padding:36px 8px 8px;position:relative;width:100%}.vuuShell-mainTabs>.vuuTabstrip{--vuuTabstrip-height: 28px;--saltTabs-tabstrip-height: 29px;--tabstrip-height: 29px;left:-1px;padding-bottom:7px;position:absolute!important;right:1px;top:0;width:calc(100% + 2px)!important}.vuuShell-mainTabs>.vuuTabHeader{border-bottom:none}.vuuShell-mainTabs>.vuuTabstrip:before{background-color:transparent;border-radius:0 6px 0 0;border-left:solid 1px #D6D7DA;border-right:solid 1px #D6D7DA;border-top:solid 1px #D6D7DA;content:"";position:absolute;bottom:0;left:0;right:0;height:8px;z-index:1}.vuuTab.MainTab{--vuuTabMenu-top: -1px;background-color:#f1f2f4;border-color:#d6d7da;border-radius:6px 6px 0 0;border-width:1px;border-style:solid;position:relative}.MainTab.vuuTab-selected{background-color:#fff;border-bottom-color:#fff;z-index:1}.MainTab.vuuTab-selected:before{background-color:#6d188b;content:"";position:absolute;height:100%;left:0;top:0;border-radius:6px 0 0;width:6px}.MainTab.vuuTab:hover:before{background-color:#f37880;content:"";position:absolute;height:100%;left:0;top:0;border-radius:6px 0 0;width:6px}.vuuTab.MainTab .vuuTab-main{background-color:transparent;font-weight:700;height:29px;padding:0 24px}.vuuThemeSwitch{--saltButton-minWidth: 22px;--svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');--svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');padding:2px}.salt-density-high .vuuThemeSwitch{--saltButton-minWidth: 16px;--saltButton-width: 18px;--vuuThemeSwitch-iconSize: 16px}.vuuThemeSwitch [data-icon]{--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px)}.vuuThemeSwitch [data-icon=light]{--vuu-icon-svg: var(--svg-light)}.vuuThemeSwitch [data-icon=dark]{--vuu-icon-svg: var(--svg-dark)}.vuuThemeSwitch .saltToggleButton{height:20px;width:20px}
|
|
4169
2
|
/*# sourceMappingURL=index.css.map */
|