@vuu-ui/vuu-popups 0.8.5-debug → 0.8.5
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/cjs/index.js +3 -14551
- package/cjs/index.js.map +3 -3
- package/esm/index.js +3 -14688
- package/esm/index.js.map +3 -3
- package/index.css +1 -1729
- package/index.css.map +1 -1
- package/package.json +3 -3
package/index.css
CHANGED
|
@@ -1,1730 +1,2 @@
|
|
|
1
|
-
/* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
|
|
2
|
-
.vuuStatus-container {
|
|
3
|
-
display: flex;
|
|
4
|
-
}
|
|
5
|
-
.vuuStatus-text {
|
|
6
|
-
align-self: center;
|
|
7
|
-
}
|
|
8
|
-
.vuuStatus {
|
|
9
|
-
--vuu-icon-height: 18px;
|
|
10
|
-
--vuu-icon-padding: var(--vuuStatus-padding, 6px);
|
|
11
|
-
--vuu-icon-width: var(--vuuStatus-width, auto);
|
|
12
|
-
--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
|
|
13
|
-
align-items: center;
|
|
14
|
-
display: inline-flex;
|
|
15
|
-
height: var(--vuu-icon-height);
|
|
16
|
-
justify-content: center;
|
|
17
|
-
min-width: var(--vuu-icon-min-width);
|
|
18
|
-
padding: 0 var(--vuu-icon-padding);
|
|
19
|
-
width: var(--vuu-icon-width);
|
|
20
|
-
position: relative;
|
|
21
|
-
}
|
|
22
|
-
.vuuStatus[data-icon]::after {
|
|
23
|
-
inset: 0 0 0 0;
|
|
24
|
-
content: "";
|
|
25
|
-
box-shadow: 0 0 0 0 black;
|
|
26
|
-
position: absolute;
|
|
27
|
-
mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
|
|
28
|
-
-webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
|
|
29
|
-
}
|
|
30
|
-
.vuuActiveStatus::after {
|
|
31
|
-
--vuu-icon-svg: var(--svg-active-status);
|
|
32
|
-
background-color: rgb(0, 255, 0);
|
|
33
|
-
}
|
|
34
|
-
.vuuConnectingStatus::after {
|
|
35
|
-
--vuu-icon-svg: var(--svg-connecting-status);
|
|
36
|
-
background-color: orange;
|
|
37
|
-
transform: scale(1);
|
|
38
|
-
animation: infinite pulse 1s;
|
|
39
|
-
}
|
|
40
|
-
.vuuDisconnectedStatus::after {
|
|
41
|
-
--vuu-icon-svg: var(--svg-disconnected-status);
|
|
42
|
-
background-color: red;
|
|
43
|
-
transform: scale(1);
|
|
44
|
-
animation: infinite pulse 0.5s;
|
|
45
|
-
}
|
|
46
|
-
@keyframes pulse {
|
|
47
|
-
0% {
|
|
48
|
-
transform: scale(0.95);
|
|
49
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
|
|
50
|
-
}
|
|
51
|
-
70% {
|
|
52
|
-
transform: scale(1);
|
|
53
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
54
|
-
}
|
|
55
|
-
100% {
|
|
56
|
-
transform: scale(0.95);
|
|
57
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/* ../vuu-layout/src/dock-layout/Drawer.css */
|
|
62
|
-
.vuuDrawer {
|
|
63
|
-
--drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
|
|
64
|
-
--vuu-close-icon-svg: var(--svg-chevron-double-right);
|
|
65
|
-
transition: flex-basis;
|
|
66
|
-
transition-duration: var(--drawer-transition-duration);
|
|
67
|
-
position: relative;
|
|
68
|
-
z-index: 1;
|
|
69
|
-
flex-basis: 0;
|
|
70
|
-
flex-grow: 1;
|
|
71
|
-
flex-shrink: 1;
|
|
72
|
-
min-width: 0;
|
|
73
|
-
min-height: 0;
|
|
74
|
-
display: flex;
|
|
75
|
-
}
|
|
76
|
-
.vuuDrawer-peekaboo {
|
|
77
|
-
flex-basis: var(--drawer-peek-size);
|
|
78
|
-
flex-grow: 0;
|
|
79
|
-
flex-shrink: 0;
|
|
80
|
-
}
|
|
81
|
-
.vuuDrawer-inline.vuuDrawer-open {
|
|
82
|
-
flex-basis: var(--drawer-size);
|
|
83
|
-
flex-grow: 0;
|
|
84
|
-
flex-shrink: 0;
|
|
85
|
-
}
|
|
86
|
-
.vuuDrawer-liner {
|
|
87
|
-
background-color: var(--drawer-bg);
|
|
88
|
-
overflow: hidden;
|
|
89
|
-
position: relative;
|
|
90
|
-
}
|
|
91
|
-
.vuuDrawer-content {
|
|
92
|
-
height: 100%;
|
|
93
|
-
overflow: hidden;
|
|
94
|
-
position: absolute;
|
|
95
|
-
top: 0;
|
|
96
|
-
right: var(--drawer-peek-size);
|
|
97
|
-
transition: right;
|
|
98
|
-
transition-duration: var(--drawer-transition-duration);
|
|
99
|
-
width: 100%;
|
|
100
|
-
flex: 1 1 100%;
|
|
101
|
-
}
|
|
102
|
-
.vuuDrawer-open .vuuDrawer-content {
|
|
103
|
-
right: 0;
|
|
104
|
-
}
|
|
105
|
-
.vuuDrawer-left {
|
|
106
|
-
border-right: var(--drawer-leading-edge-border);
|
|
107
|
-
}
|
|
108
|
-
.vuuDrawer-right {
|
|
109
|
-
border-left: var(--drawer-leading-edge-border);
|
|
110
|
-
}
|
|
111
|
-
.vuuDrawer-top {
|
|
112
|
-
border-bottom: var(--drawer-leading-edge-border);
|
|
113
|
-
}
|
|
114
|
-
.vuuDrawer-bottom {
|
|
115
|
-
border-top: var(--drawer-leading-edge-border);
|
|
116
|
-
}
|
|
117
|
-
.vuuDrawer-left .vuuDrawer-liner,
|
|
118
|
-
.vuuDrawer-right .vuuDrawer-liner {
|
|
119
|
-
height: 100%;
|
|
120
|
-
transition: width;
|
|
121
|
-
}
|
|
122
|
-
.vuuDrawer-top .vuuDrawer-liner,
|
|
123
|
-
.vuuDrawer-bottom .vuuDrawer-liner {
|
|
124
|
-
width: 100%;
|
|
125
|
-
transition: height;
|
|
126
|
-
}
|
|
127
|
-
.vuuDrawer-inline .vuuDrawer-liner {
|
|
128
|
-
width: 100%;
|
|
129
|
-
height: 100%;
|
|
130
|
-
}
|
|
131
|
-
.vuuDrawer-over .vuuDrawer-liner {
|
|
132
|
-
position: absolute;
|
|
133
|
-
transition-duration: 0.4s;
|
|
134
|
-
}
|
|
135
|
-
.vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
|
|
136
|
-
top: 0;
|
|
137
|
-
left: 0;
|
|
138
|
-
width: 0;
|
|
139
|
-
}
|
|
140
|
-
.vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
|
|
141
|
-
top: 0;
|
|
142
|
-
right: 0;
|
|
143
|
-
width: 0;
|
|
144
|
-
}
|
|
145
|
-
.vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
|
|
146
|
-
height: 0;
|
|
147
|
-
top: 0;
|
|
148
|
-
left: 0;
|
|
149
|
-
}
|
|
150
|
-
.vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
|
|
151
|
-
bottom: 0;
|
|
152
|
-
height: 0;
|
|
153
|
-
left: 0;
|
|
154
|
-
}
|
|
155
|
-
.vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
|
|
156
|
-
.vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
|
|
157
|
-
width: var(--drawer-peek-size);
|
|
158
|
-
}
|
|
159
|
-
.vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
|
|
160
|
-
.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
|
|
161
|
-
height: var(--drawer-peek-size);
|
|
162
|
-
}
|
|
163
|
-
.vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
|
|
164
|
-
.vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
|
|
165
|
-
width: var(--drawer-size);
|
|
166
|
-
}
|
|
167
|
-
.vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
|
|
168
|
-
.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
|
|
169
|
-
height: var(--drawer-size);
|
|
170
|
-
}
|
|
171
|
-
.vuuDrawer-top,
|
|
172
|
-
.vuuDrawer-left {
|
|
173
|
-
order: 0;
|
|
174
|
-
}
|
|
175
|
-
.vuuDrawer-bottom,
|
|
176
|
-
.vuuDrawer-right {
|
|
177
|
-
order: 99;
|
|
178
|
-
}
|
|
179
|
-
.vuuDrawer-left,
|
|
180
|
-
.vuuDrawer-right {
|
|
181
|
-
flex-direction: column;
|
|
182
|
-
}
|
|
183
|
-
.vuuToggleButton-container {
|
|
184
|
-
--saltButton-height: 28px;
|
|
185
|
-
--saltButton-width: 28px;
|
|
186
|
-
--vuu-icon-size: 12px;
|
|
187
|
-
flex: 0 0 28px;
|
|
188
|
-
}
|
|
189
|
-
.vuuDrawer-open {
|
|
190
|
-
--vuu-close-icon-svg: var(--svg-chevron-double-left);
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
/* ../vuu-layout/src/dock-layout/DockLayout.css */
|
|
194
|
-
.vuuDockLayout {
|
|
195
|
-
--chest-bg: var(--hw-chest-bg, inherit);
|
|
196
|
-
--drawer-bg: var(--hw-drawer-bg, inherit);
|
|
197
|
-
--drawer-size: var(--hw-drawer-size, 200px);
|
|
198
|
-
--drawer-peek-size: var(--hw-drawer-peek-size, 32px);
|
|
199
|
-
--drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
|
|
200
|
-
background-color: var(--chest-bg);
|
|
201
|
-
display: flex;
|
|
202
|
-
}
|
|
203
|
-
.vuuDockLayout-horizontal {
|
|
204
|
-
flex-direction: row;
|
|
205
|
-
}
|
|
206
|
-
.vuuDockLayout-vertical {
|
|
207
|
-
flex-direction: column;
|
|
208
|
-
}
|
|
209
|
-
.vuuDockLayout-content {
|
|
210
|
-
background-color: var(--chest-bg);
|
|
211
|
-
flex-grow: 1;
|
|
212
|
-
flex-shrink: 1;
|
|
213
|
-
overflow: hidden;
|
|
214
|
-
display: flex;
|
|
215
|
-
align-items: center;
|
|
216
|
-
justify-content: center;
|
|
217
|
-
}
|
|
218
|
-
.vuuDockLayout-horizontal .vuuDockLayout-content {
|
|
219
|
-
flex-basis: 100%;
|
|
220
|
-
}
|
|
221
|
-
.vuuDockLayout-vertical .vuuDockLayout-content {
|
|
222
|
-
flex-basis: 100%;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
/* ../vuu-layout/src/Component.css */
|
|
226
|
-
|
|
227
|
-
/* ../vuu-layout/src/drag-drop/DropMenu.css */
|
|
228
|
-
.vuuDropMenu {
|
|
229
|
-
margin-left: -50%;
|
|
230
|
-
margin-bottom: -50%;
|
|
231
|
-
background-color: white;
|
|
232
|
-
border: solid 1px var(--grey40);
|
|
233
|
-
display: inline-flex;
|
|
234
|
-
justify-content: center;
|
|
235
|
-
align-items: center;
|
|
236
|
-
padding: 3px;
|
|
237
|
-
border-radius: 3px;
|
|
238
|
-
}
|
|
239
|
-
.vuuDropMenu-left,
|
|
240
|
-
.vuuDropMenu-right {
|
|
241
|
-
flex-direction: column;
|
|
242
|
-
}
|
|
243
|
-
.vuuDropMenu-bottom {
|
|
244
|
-
transform: translate(0, -30px);
|
|
245
|
-
}
|
|
246
|
-
.vuuDropMenu-right {
|
|
247
|
-
transform: translate(-20px, 0);
|
|
248
|
-
}
|
|
249
|
-
.vuuDropMenu-item {
|
|
250
|
-
--vuu-icon-size: 20px;
|
|
251
|
-
width: 32px;
|
|
252
|
-
height: 32px;
|
|
253
|
-
background-color: var(--grey20);
|
|
254
|
-
border-bottom: solid 1px var(--grey40);
|
|
255
|
-
cursor: pointer;
|
|
256
|
-
display: flex;
|
|
257
|
-
align-items: center;
|
|
258
|
-
justify-content: center;
|
|
259
|
-
}
|
|
260
|
-
.vuuDropMenu-item .Icon {
|
|
261
|
-
transform: scale(1.25);
|
|
262
|
-
transform-origin: center center;
|
|
263
|
-
}
|
|
264
|
-
.vuuDropMenu-left .vuuDropMenu-item .hwIcon {
|
|
265
|
-
transform: scale(1.25) rotate(180deg);
|
|
266
|
-
transform-origin: center center;
|
|
267
|
-
}
|
|
268
|
-
.vuuDropMenu-top .vuuDropMenu-item .hwIcon {
|
|
269
|
-
transform: scale(1.25) rotate(270deg);
|
|
270
|
-
transform-origin: center center;
|
|
271
|
-
}
|
|
272
|
-
.vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
|
|
273
|
-
transform: scale(1.25) rotate(90deg);
|
|
274
|
-
transform-origin: center center;
|
|
275
|
-
}
|
|
276
|
-
.vuuDropMenu-item .hwIcon-path {
|
|
277
|
-
fill: grey;
|
|
278
|
-
}
|
|
279
|
-
.vuuDropMenu-item:hover {
|
|
280
|
-
background-color: rgba(200, 200, 200, 0.5);
|
|
281
|
-
}
|
|
282
|
-
.vuuDropMenu-item:hover .hwIcon-path-2 {
|
|
283
|
-
fill: blue;
|
|
284
|
-
}
|
|
285
|
-
.vuuDropMenu-item:last-child {
|
|
286
|
-
border-bottom: none;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
|
|
290
|
-
#hw-drag-canvas {
|
|
291
|
-
visibility: hidden;
|
|
292
|
-
z-index: 1;
|
|
293
|
-
position: absolute;
|
|
294
|
-
top: 0px;
|
|
295
|
-
left: 0;
|
|
296
|
-
right: 0;
|
|
297
|
-
bottom: 0;
|
|
298
|
-
background-color: transparent;
|
|
299
|
-
}
|
|
300
|
-
#hw-drag-canvas > svg {
|
|
301
|
-
position: absolute;
|
|
302
|
-
}
|
|
303
|
-
.drawing #hw-drag-canvas {
|
|
304
|
-
visibility: visible;
|
|
305
|
-
}
|
|
306
|
-
path.drop-target {
|
|
307
|
-
stroke: blue;
|
|
308
|
-
stroke-width: 4px;
|
|
309
|
-
fill: transparent;
|
|
310
|
-
}
|
|
311
|
-
path.drop-target.centre {
|
|
312
|
-
stroke: red;
|
|
313
|
-
}
|
|
314
|
-
#vuu-drop-outline {
|
|
315
|
-
fill: rgba(0, 0, 255, .3);
|
|
316
|
-
stroke: none;
|
|
317
|
-
stroke-dasharray: 4 2;
|
|
318
|
-
}
|
|
319
|
-
#hw-drop-guides {
|
|
320
|
-
fill: none;
|
|
321
|
-
stroke: rgba(0, 0, 0, 0.3);
|
|
322
|
-
stroke-dasharray: 2 3;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
/* ../vuu-layout/src/DraggableLayout.css */
|
|
326
|
-
.DraggableLayout {
|
|
327
|
-
display: inline-block;
|
|
328
|
-
outline: none;
|
|
329
|
-
}
|
|
330
|
-
[data-dragging=true] {
|
|
331
|
-
position: absolute !important;
|
|
332
|
-
z-index: 100;
|
|
333
|
-
}
|
|
334
|
-
.vuuSimpleDraggableWrapper {
|
|
335
|
-
background-color: white;
|
|
336
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
|
|
337
|
-
}
|
|
338
|
-
.vuuSimpleDraggableWrapper > * {
|
|
339
|
-
height: 100%;
|
|
340
|
-
width: 100%;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
/* ../vuu-layout/src/placeholder/Placeholder.css */
|
|
344
|
-
.vuuPlaceholder {
|
|
345
|
-
flex-basis: 0;
|
|
346
|
-
flex-grow: 1;
|
|
347
|
-
flex-shrink: 1;
|
|
348
|
-
}
|
|
349
|
-
.vuuPlaceholder-shim {
|
|
350
|
-
flex-grow: 0;
|
|
351
|
-
flex-shrink: 0;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
/* ../vuu-layout/src/flexbox/Splitter.css */
|
|
355
|
-
.Splitter {
|
|
356
|
-
--splitter-size: 3px;
|
|
357
|
-
--splitter-border-width: 4px;
|
|
358
|
-
--splitter-border-style: none;
|
|
359
|
-
--splitter-border-color: white;
|
|
360
|
-
align-items: center;
|
|
361
|
-
background-color: var(--salt-palette-neutral-secondary-separator);
|
|
362
|
-
border-color: var(--splitter-border-color);
|
|
363
|
-
border-style: var(--splitter-border-style);
|
|
364
|
-
box-sizing: border-box;
|
|
365
|
-
display: flex;
|
|
366
|
-
justify-content: center;
|
|
367
|
-
position: relative;
|
|
368
|
-
outline: none;
|
|
369
|
-
z-index: 1;
|
|
370
|
-
}
|
|
371
|
-
.Splitter:hover {
|
|
372
|
-
background-color: var(--salt-palette-neutral-primary-separator);
|
|
373
|
-
}
|
|
374
|
-
.active.Splitter {
|
|
375
|
-
background-color: var(--salt-palette-interact-outline);
|
|
376
|
-
}
|
|
377
|
-
.Splitter.column {
|
|
378
|
-
cursor: ns-resize;
|
|
379
|
-
height: var(--splitter-size);
|
|
380
|
-
border-width: var(--splitter-border-width) 0;
|
|
381
|
-
}
|
|
382
|
-
.Splitter:not(.column) {
|
|
383
|
-
cursor: ew-resize;
|
|
384
|
-
width: var(--splitter-size);
|
|
385
|
-
border-width: 0 var(--splitter-border-width);
|
|
386
|
-
}
|
|
387
|
-
.Splitter:before {
|
|
388
|
-
border: none;
|
|
389
|
-
border-radius: 0;
|
|
390
|
-
content: "";
|
|
391
|
-
display: block;
|
|
392
|
-
padding: 0;
|
|
393
|
-
}
|
|
394
|
-
.Splitter .grab-zone {
|
|
395
|
-
position: absolute;
|
|
396
|
-
background-color: rgba(255, 0, 0, 0.01);
|
|
397
|
-
cursor: inherit;
|
|
398
|
-
}
|
|
399
|
-
.Splitter.column .grab-zone {
|
|
400
|
-
left: 0;
|
|
401
|
-
right: 0;
|
|
402
|
-
top: -5px;
|
|
403
|
-
bottom: -5px;
|
|
404
|
-
}
|
|
405
|
-
.Splitter:not(.column) .grab-zone {
|
|
406
|
-
left: -5px;
|
|
407
|
-
right: -5px;
|
|
408
|
-
top: 0;
|
|
409
|
-
bottom: 0;
|
|
410
|
-
}
|
|
411
|
-
.active.Splitter:not(.column) .grab-zone {
|
|
412
|
-
background-color: rgba(255, 255, 255, .05);
|
|
413
|
-
left: -150px;
|
|
414
|
-
right: -150px;
|
|
415
|
-
}
|
|
416
|
-
.Splitter:not(.column):before {
|
|
417
|
-
width: 1px;
|
|
418
|
-
height: 10px;
|
|
419
|
-
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%);
|
|
420
|
-
}
|
|
421
|
-
.active.Splitter.column:before {
|
|
422
|
-
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%);
|
|
423
|
-
}
|
|
424
|
-
.active.Splitter:not(.column):before {
|
|
425
|
-
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%);
|
|
426
|
-
}
|
|
427
|
-
.Splitter.column:before {
|
|
428
|
-
width: 10px;
|
|
429
|
-
height: 1px;
|
|
430
|
-
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%);
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
/* ../vuu-layout/src/flexbox/Flexbox.css */
|
|
434
|
-
:root {
|
|
435
|
-
--hw-space-unit: 4px;
|
|
436
|
-
--hw-flex-gap: 3;
|
|
437
|
-
--hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
|
|
438
|
-
}
|
|
439
|
-
.hwFlexbox {
|
|
440
|
-
background-color: var(--container1-background);
|
|
441
|
-
box-sizing: border-box;
|
|
442
|
-
display: flex;
|
|
443
|
-
gap: calc(var(--spacing) * var(--space));
|
|
444
|
-
min-height: 0;
|
|
445
|
-
min-width: 0;
|
|
446
|
-
overflow: hidden;
|
|
447
|
-
}
|
|
448
|
-
.hwFlexbox-column {
|
|
449
|
-
flex-direction: column;
|
|
450
|
-
}
|
|
451
|
-
.hwFlexbox-row {
|
|
452
|
-
flex-direction: row;
|
|
453
|
-
}
|
|
454
|
-
.hwFlexbox > .Splitter {
|
|
455
|
-
flex-basis: auto;
|
|
456
|
-
flex-grow: 0;
|
|
457
|
-
flex-shrink: 0;
|
|
458
|
-
}
|
|
459
|
-
.hwFlexbox.full-page {
|
|
460
|
-
height: 100vh;
|
|
461
|
-
width: 100vw;
|
|
462
|
-
}
|
|
463
|
-
.flex-fill {
|
|
464
|
-
border-color: red;
|
|
465
|
-
flex: 0;
|
|
466
|
-
flex-grow: 1;
|
|
467
|
-
flex-shrink: 1;
|
|
468
|
-
}
|
|
469
|
-
.vuuView.flex-fill {
|
|
470
|
-
border-color: red;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
/* ../vuu-layout/src/flexbox/FluidGrid.css */
|
|
474
|
-
:root {
|
|
475
|
-
--hw-space-unit: 4px;
|
|
476
|
-
--hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
|
|
477
|
-
}
|
|
478
|
-
.hwFluidGrid {
|
|
479
|
-
--gap: var(--gutter-width);
|
|
480
|
-
display: flex;
|
|
481
|
-
gap: calc(var(--grid-gap) * var(--hw-space-unit));
|
|
482
|
-
flex-wrap: wrap;
|
|
483
|
-
padding: 0;
|
|
484
|
-
}
|
|
485
|
-
.hwFluidGrid > * {
|
|
486
|
-
--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
|
|
487
|
-
--gutter-count: calc(var(--parent-col-count) - 1);
|
|
488
|
-
--total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
|
|
489
|
-
--available-width: calc(100% - var(--total-gutter-width));
|
|
490
|
-
flex-basis: 0;
|
|
491
|
-
flex-grow: 1;
|
|
492
|
-
flex-shrink: 1;
|
|
493
|
-
position: relative;
|
|
494
|
-
}
|
|
495
|
-
.hwFluidGrid > *:after {
|
|
496
|
-
content: "";
|
|
497
|
-
position: absolute;
|
|
498
|
-
top: 0;
|
|
499
|
-
left: 0;
|
|
500
|
-
right: 0;
|
|
501
|
-
bottom: 0;
|
|
502
|
-
border: dashed 2px blue;
|
|
503
|
-
}
|
|
504
|
-
.hwFluidGrid > [data-xs] {
|
|
505
|
-
--internal-gutter-count: calc(var(--col-span) - 1);
|
|
506
|
-
--percent-width: calc(var(--col-span) / var(--parent-col-count));
|
|
507
|
-
--internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
|
|
508
|
-
flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
|
|
509
|
-
flex-grow: 0;
|
|
510
|
-
}
|
|
511
|
-
.hwFluidGrid > [data-xs="1"] {
|
|
512
|
-
--col-span: 1;
|
|
513
|
-
}
|
|
514
|
-
.hwFluidGrid > [data-xs="2"] {
|
|
515
|
-
--col-span: 2;
|
|
516
|
-
}
|
|
517
|
-
.hwFluidGrid > [data-xs="3"] {
|
|
518
|
-
--col-span: 3;
|
|
519
|
-
}
|
|
520
|
-
.hwFluidGrid > [data-xs="4"] {
|
|
521
|
-
--col-span: 4;
|
|
522
|
-
}
|
|
523
|
-
.hwFluidGrid > [data-xs="6"] {
|
|
524
|
-
--col-span: 6;
|
|
525
|
-
}
|
|
526
|
-
.hwFluidGrid > [data-xs="8"] {
|
|
527
|
-
--col-span: 8;
|
|
528
|
-
}
|
|
529
|
-
.hwFluidGrid > [data-xs="9"] {
|
|
530
|
-
--col-span: 9;
|
|
531
|
-
}
|
|
532
|
-
.hwFluidGrid > [data-xs="10"] {
|
|
533
|
-
--col-span: 10;
|
|
534
|
-
}
|
|
535
|
-
.hwFluidGrid > [data-xs="11"] {
|
|
536
|
-
--col-span: 11;
|
|
537
|
-
}
|
|
538
|
-
.hwFluidGrid > [data-xs="12"] {
|
|
539
|
-
--col-span: 12;
|
|
540
|
-
}
|
|
541
|
-
@media (min-width: 600px) {
|
|
542
|
-
.hwFluidGrid > [data-sm="1"] {
|
|
543
|
-
--col-span: 1;
|
|
544
|
-
}
|
|
545
|
-
.hwFluidGrid > [data-sm="2"] {
|
|
546
|
-
--col-span: 2;
|
|
547
|
-
}
|
|
548
|
-
.hwFluidGrid > [data-sm="3"] {
|
|
549
|
-
--col-span: 3;
|
|
550
|
-
}
|
|
551
|
-
.hwFluidGrid > [data-sm="4"] {
|
|
552
|
-
--col-span: 4;
|
|
553
|
-
}
|
|
554
|
-
.hwFluidGrid > [data-sm="6"] {
|
|
555
|
-
--col-span: 6;
|
|
556
|
-
}
|
|
557
|
-
.hwFluidGrid > [data-sm="8"] {
|
|
558
|
-
--col-span: 8;
|
|
559
|
-
}
|
|
560
|
-
.hwFluidGrid > [data-sm="9"] {
|
|
561
|
-
--col-span: 9;
|
|
562
|
-
}
|
|
563
|
-
.hwFluidGrid > [data-sm="10"] {
|
|
564
|
-
--col-span: 10;
|
|
565
|
-
}
|
|
566
|
-
.hwFluidGrid > [data-sm="11"] {
|
|
567
|
-
--col-span: 11;
|
|
568
|
-
}
|
|
569
|
-
.hwFluidGrid > [data-sm="12"] {
|
|
570
|
-
--col-span: 12;
|
|
571
|
-
}
|
|
572
|
-
}
|
|
573
|
-
.hwFluidGrid-show-grid {
|
|
574
|
-
--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
|
|
575
|
-
--grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
|
|
576
|
-
--grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
|
|
577
|
-
--grid-available-width: calc(100% - var(--grid-total-gutter-width));
|
|
578
|
-
--grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
|
|
579
|
-
--column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
|
|
580
|
-
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)));
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
/* ../vuu-layout/src/layout-view/View.css */
|
|
584
|
-
.vuuView {
|
|
585
|
-
border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
|
|
586
|
-
border-width: var(--vuuView-borderWidth, 1px);
|
|
587
|
-
border-style: var(--vuuView-borderStyle, none);
|
|
588
|
-
display: flex;
|
|
589
|
-
flex-direction: column;
|
|
590
|
-
margin: var(--vuuView-margin, 0px);
|
|
591
|
-
min-height: 50px;
|
|
592
|
-
min-width: 50px;
|
|
593
|
-
outline: none;
|
|
594
|
-
overflow: hidden;
|
|
595
|
-
position: relative;
|
|
596
|
-
}
|
|
597
|
-
.vuuView.focus-visible:after {
|
|
598
|
-
content: "";
|
|
599
|
-
position: absolute;
|
|
600
|
-
top: 0;
|
|
601
|
-
left: 0;
|
|
602
|
-
right: 0;
|
|
603
|
-
bottom: 0;
|
|
604
|
-
border: dotted cornflowerblue 2px;
|
|
605
|
-
}
|
|
606
|
-
.vuuView.dragging {
|
|
607
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
608
|
-
}
|
|
609
|
-
.vuuView-main {
|
|
610
|
-
display: flex;
|
|
611
|
-
flex-direction: var(--vuuView-flexDirection, column);
|
|
612
|
-
flex-wrap: var(--vuuView-flex-wrap, nowrap);
|
|
613
|
-
flex: 1;
|
|
614
|
-
overflow: hidden;
|
|
615
|
-
position: relative;
|
|
616
|
-
}
|
|
617
|
-
.vuuView-main > * {
|
|
618
|
-
flex-basis: auto;
|
|
619
|
-
flex-grow: var(--vuuView-flex-grow, 1);
|
|
620
|
-
flex-shrink: var(--vuuView-flex-shrink, 1);
|
|
621
|
-
}
|
|
622
|
-
.vuuView-collapsed .vuuView-main {
|
|
623
|
-
display: none;
|
|
624
|
-
}
|
|
625
|
-
.vuuView-collapsed + .Splitter {
|
|
626
|
-
display: none;
|
|
627
|
-
}
|
|
628
|
-
.vuuView-collapsed .Toolbar-vertical {
|
|
629
|
-
border-right: solid 1px var(--grey40);
|
|
630
|
-
}
|
|
631
|
-
.vuuView-collapsed .Toolbar-vertical .toolbar-title {
|
|
632
|
-
display: none;
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
/* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
|
|
636
|
-
.vuuEditableLabel {
|
|
637
|
-
--saltInput-minWidth: 14px;
|
|
638
|
-
--saltInput-position: absolute;
|
|
639
|
-
--editableLabel-padding: var(--saltEditableLabel-padding, 6px);
|
|
640
|
-
--editableLabel-height: var(--saltEditableLabel-height, 26px);
|
|
641
|
-
color: inherit;
|
|
642
|
-
cursor: default;
|
|
643
|
-
display: flex;
|
|
644
|
-
flex-direction: column;
|
|
645
|
-
font-size: var(--salt-text-fontSize);
|
|
646
|
-
height: var(--editableLabel-height);
|
|
647
|
-
justify-content: center;
|
|
648
|
-
outline: none;
|
|
649
|
-
padding: 0 var(--editableLabel-padding);
|
|
650
|
-
position: relative;
|
|
651
|
-
z-index: var(--salt-zIndex-default);
|
|
652
|
-
}
|
|
653
|
-
.vuuEditableLabel:before {
|
|
654
|
-
content: attr(data-text);
|
|
655
|
-
display: block;
|
|
656
|
-
height: 0px;
|
|
657
|
-
visibility: hidden;
|
|
658
|
-
white-space: pre-wrap;
|
|
659
|
-
}
|
|
660
|
-
.vuuEditableLabel .saltInput {
|
|
661
|
-
font-weight: var(--salt-text-fontWeight);
|
|
662
|
-
left: var(--editableLabel-padding, 0);
|
|
663
|
-
padding: 0;
|
|
664
|
-
outline-style: none;
|
|
665
|
-
right: var(--editableLabel-padding, 0);
|
|
666
|
-
}
|
|
667
|
-
.vuuEditableLabel-input {
|
|
668
|
-
outline: none;
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
/* ../vuu-ui-controls/src/drag-drop/Draggable.css */
|
|
672
|
-
.vuuDraggable {
|
|
673
|
-
background: transparent;
|
|
674
|
-
box-shadow: var(--salt-overlayable-shadow-drag);
|
|
675
|
-
cursor: var(--salt-draggable-grab-cursor-active);
|
|
676
|
-
position: absolute;
|
|
677
|
-
opacity: .95;
|
|
678
|
-
z-index: 2000;
|
|
679
|
-
}
|
|
680
|
-
.vuuDraggable-spacer {
|
|
681
|
-
display: var(--saltDraggable-display, inline-block);
|
|
682
|
-
height: var(--saltDraggable-spacer-height, var(--tabs-tabstrip-height));
|
|
683
|
-
transition: var(--saltDraggable-transitionProp, width) 0.3s ease;
|
|
684
|
-
width: var(--saltDraggable-spacer-width, 0);
|
|
685
|
-
}
|
|
686
|
-
.vuuDraggable-dropIndicatorPosition {
|
|
687
|
-
display: var(--saltDraggable-display, inline-block);
|
|
688
|
-
height: 0px;
|
|
689
|
-
width: 100%;
|
|
690
|
-
}
|
|
691
|
-
.vuuDraggable-dropIndicatorContainer {
|
|
692
|
-
transition: var(--saltDraggable-transitionProp, top) 0.2s ease;
|
|
693
|
-
}
|
|
694
|
-
.vuuDraggable-dropIndicator {
|
|
695
|
-
background-color: var(--salt-palette-accent-background);
|
|
696
|
-
height: 2px;
|
|
697
|
-
width: 100%;
|
|
698
|
-
}
|
|
699
|
-
.vuuDraggable-dropIndicator:before {
|
|
700
|
-
content: "";
|
|
701
|
-
width: 6px;
|
|
702
|
-
height: 6px;
|
|
703
|
-
border-radius: 3px;
|
|
704
|
-
background-color: var(--salt-palette-accent-background);
|
|
705
|
-
position: absolute;
|
|
706
|
-
top: -2px;
|
|
707
|
-
left: -3px;
|
|
708
|
-
}
|
|
709
|
-
.vuuDraggable-settling {
|
|
710
|
-
transition-property: left, top;
|
|
711
|
-
transition-duration: .15s;
|
|
712
|
-
transition-timing-function: ease-out;
|
|
713
|
-
}
|
|
714
|
-
.vuuDraggable-spacer {
|
|
715
|
-
order: 1;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
/* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
|
|
719
|
-
.vuuTabstrip {
|
|
720
|
-
--vuuOverflowContainer-background: transparent;
|
|
721
|
-
--tabs-tabstrip-height: var(--vuuTabstrip-height, 28px);
|
|
722
|
-
--tabs-tabstrip-dragging-display: none;
|
|
723
|
-
--tabs-tabstrip-display: inline-flex;
|
|
724
|
-
--tabs-tabstrip-background: transparent;
|
|
725
|
-
align-items: flex-start;
|
|
726
|
-
align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
|
|
727
|
-
border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
|
|
728
|
-
font-size: var(--salt-text-fontSize);
|
|
729
|
-
font-weight: var(--salt-text-fontWeight);
|
|
730
|
-
position: relative;
|
|
731
|
-
overflow: visible;
|
|
732
|
-
display: flex;
|
|
733
|
-
min-width: 28px;
|
|
734
|
-
width: 100%;
|
|
735
|
-
}
|
|
736
|
-
.vuuTabstrip-horizontal {
|
|
737
|
-
--vuuTabActivationIndicator-height: 1px;
|
|
738
|
-
--vuuTabActivationIndicator-thumb-inset: -1px 0 0 0;
|
|
739
|
-
--tab-activationIndicator-borderStyle: none none solid none;
|
|
740
|
-
--tab-activationIndicator-inset: auto 0px 0px 0px;
|
|
741
|
-
--tab-activationIndicator-transitionProperty: left;
|
|
742
|
-
--tab-activationIndicator-thumb-height: 0px;
|
|
743
|
-
--tab-thumb-height: 2px;
|
|
744
|
-
}
|
|
745
|
-
.vuuTabstrip-vertical {
|
|
746
|
-
--vuuTabActivationIndicator-thumb-inset: 0 0 0 -1px;
|
|
747
|
-
--tab-activationIndicator-transition: top 0.3s ease;
|
|
748
|
-
--tab-activationIndicator-borderStyle: none solid none none;
|
|
749
|
-
--tab-activationIndicator-inset: 0px 0px 0px auto;
|
|
750
|
-
--tab-activationIndicator-transitionProperty: top;
|
|
751
|
-
--tab-activationIndicator-width: 1px;
|
|
752
|
-
--tab-activationIndicator-thumb-width: 2px;
|
|
753
|
-
align-self: flex-start;
|
|
754
|
-
display: inline-flex;
|
|
755
|
-
}
|
|
756
|
-
.vuuTabstrip-draggingTab {
|
|
757
|
-
--vuuTabs-activationIndicator-transition: none;
|
|
758
|
-
}
|
|
759
|
-
.vuuTabstrip-draggingTab .vuuTab {
|
|
760
|
-
pointer-events: none;
|
|
761
|
-
}
|
|
762
|
-
.vuuTabstrip-horizontal {
|
|
763
|
-
height: var(--tabs-tabstrip-height);
|
|
764
|
-
}
|
|
765
|
-
.vuuTabstrip-addTabButton {
|
|
766
|
-
--saltButton-height: 20px;
|
|
767
|
-
--saltButton-width: 20px;
|
|
768
|
-
}
|
|
769
|
-
.vuuTabstrip-overflowMenu.saltDropdown {
|
|
770
|
-
--saltIcon-margin: 2px 0 0 0px;
|
|
771
|
-
}
|
|
772
|
-
.vuuTabstrip-overflowMenu-open {
|
|
773
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
774
|
-
--saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
|
|
775
|
-
}
|
|
776
|
-
.vuuTabstrip-overflowMenu-open .saltButton {
|
|
777
|
-
--saltIcon-color: var(--salt-actionable-secondary-foreground-active);
|
|
778
|
-
}
|
|
779
|
-
.vuuTabstrip-inner {
|
|
780
|
-
width: 100%;
|
|
781
|
-
align-items: center;
|
|
782
|
-
display: flex;
|
|
783
|
-
flex-basis: auto;
|
|
784
|
-
flex-grow: 0;
|
|
785
|
-
flex-shrink: 1;
|
|
786
|
-
flex-wrap: wrap;
|
|
787
|
-
justify-content: flex-start;
|
|
788
|
-
line-height: var(--tabs-tabstrip-height);
|
|
789
|
-
}
|
|
790
|
-
.vuuTabstrip-vertical .vuuTabstrip-inner {
|
|
791
|
-
flex-direction: column;
|
|
792
|
-
height: auto;
|
|
793
|
-
}
|
|
794
|
-
.vuuTabstrip-centered .vuuTabstrip-inner {
|
|
795
|
-
justify-content: center;
|
|
796
|
-
}
|
|
797
|
-
.vuuDraggable[class*=vuuTabstrip] {
|
|
798
|
-
--tabs-tabstrip-display: flex;
|
|
799
|
-
--tabs-tabstrip-height: 100%;
|
|
800
|
-
--tabs-tabstrip-dragging-display: block;
|
|
801
|
-
--tabs-tab-background: var(--salt-navigable-primary-background-hover);
|
|
802
|
-
--tabs-tab-before-content: "";
|
|
803
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-hover);
|
|
804
|
-
--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
|
|
805
|
-
--tabs-tab-before-inset: var(--tab-activationIndicator-inset);
|
|
806
|
-
--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
807
|
-
--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
|
|
808
|
-
--tabs-tab-position: static;
|
|
809
|
-
font-size: 12px;
|
|
810
|
-
}
|
|
811
|
-
.vuuDraggable-tabstrip-horizontal {
|
|
812
|
-
--tab-thumb-height: 2px;
|
|
813
|
-
--tabs-tabstrip-height: 28px;
|
|
814
|
-
--tab-activationIndicator-thumb-height: 2px;
|
|
815
|
-
--tab-activationIndicator-inset: auto 0px 0px 0px;
|
|
816
|
-
line-height: var(--tabs-tabstrip-height);
|
|
817
|
-
}
|
|
818
|
-
.vuuDraggable-tabstrip-vertical {
|
|
819
|
-
--tab-activationIndicator-inset: 0px 0px 0px auto;
|
|
820
|
-
--tab-activationIndicator-thumb-width: 2px;
|
|
821
|
-
}
|
|
822
|
-
.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
|
|
823
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-active);
|
|
824
|
-
}
|
|
825
|
-
.vuuTabstrip-overflowMenu-dropTarget:after {
|
|
826
|
-
background: var(--salt-selectable-background-selected);
|
|
827
|
-
content: "";
|
|
828
|
-
position: absolute;
|
|
829
|
-
height: 2px;
|
|
830
|
-
left: 0;
|
|
831
|
-
right: 0;
|
|
832
|
-
bottom: 0;
|
|
833
|
-
}
|
|
834
|
-
|
|
835
|
-
/* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
|
|
836
|
-
.vuuTabMenu {
|
|
837
|
-
top: -2px;
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
/* ../vuu-ui-controls/src/tabstrip/Tab.css */
|
|
841
|
-
.vuuTab {
|
|
842
|
-
--saltEditableLabel-padding: 0;
|
|
843
|
-
--saltEditableLabel-height: var(--tabs-tabstrip-height);
|
|
844
|
-
--saltInputLegacy-minWidth: 4em;
|
|
845
|
-
--tab-background: var(--salt-navigable-primary-background);
|
|
846
|
-
--tab-cursor: pointer;
|
|
847
|
-
--tab-position: relative;
|
|
848
|
-
}
|
|
849
|
-
.vuuTab {
|
|
850
|
-
align-items: center;
|
|
851
|
-
align-self: stretch;
|
|
852
|
-
background: var(--vuuTab-background, var(--tab-background));
|
|
853
|
-
border: none;
|
|
854
|
-
border-radius: 0;
|
|
855
|
-
color: var(--salt-text-primary-foreground);
|
|
856
|
-
cursor: var(--vuuTab-cursor, var(--tab-cursor));
|
|
857
|
-
display: var(--tabs-tabstrip-display);
|
|
858
|
-
gap: 8px;
|
|
859
|
-
height: var(--vuuTab-height, var(--tabs-tabstrip-height));
|
|
860
|
-
letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
|
|
861
|
-
min-width: var(--vuuTab-minWidth, 40px);
|
|
862
|
-
outline: none;
|
|
863
|
-
padding: 0 24px;
|
|
864
|
-
position: var(--vuuTab-position, var(--tab-position));
|
|
865
|
-
user-select: none;
|
|
866
|
-
}
|
|
867
|
-
.vuuTab.saltFocusVisible:after {
|
|
868
|
-
inset: 2px 2px 4px 2px;
|
|
869
|
-
}
|
|
870
|
-
.vuuTab:not(.vuuTab-vertical) {
|
|
871
|
-
margin: 0 var(--tab-spacing) 0 0;
|
|
872
|
-
}
|
|
873
|
-
.vuuTab-selected {
|
|
874
|
-
color: var(--salt-text-primary-foreground);
|
|
875
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
876
|
-
}
|
|
877
|
-
.vuuTab-main {
|
|
878
|
-
align-items: center;
|
|
879
|
-
background: inherit;
|
|
880
|
-
border: none;
|
|
881
|
-
color: inherit;
|
|
882
|
-
cursor: inherit;
|
|
883
|
-
display: flex;
|
|
884
|
-
font-family: inherit;
|
|
885
|
-
font-size: inherit;
|
|
886
|
-
font-weight: inherit;
|
|
887
|
-
height: var(--vuuTabstrip-height, var(--salt-size-stackable));
|
|
888
|
-
outline: none;
|
|
889
|
-
position: relative;
|
|
890
|
-
}
|
|
891
|
-
.vuuTab-closeable .vuuTab-main {
|
|
892
|
-
border-right: solid transparent var(--salt-size-unit);
|
|
893
|
-
}
|
|
894
|
-
.vuuTab .vuuTab-closeButton {
|
|
895
|
-
display: flex;
|
|
896
|
-
align-items: center;
|
|
897
|
-
justify-content: center;
|
|
898
|
-
}
|
|
899
|
-
.vuuTab-close-icon {
|
|
900
|
-
display: none;
|
|
901
|
-
}
|
|
902
|
-
.salt-density-touch .vuuTab-close-icon,
|
|
903
|
-
.salt-density-low .vuuTab-close-icon {
|
|
904
|
-
display: block;
|
|
905
|
-
}
|
|
906
|
-
.salt-density-touch .vuuTab-close-icon-small,
|
|
907
|
-
.salt-density-low .vuuTab-close-icon-small {
|
|
908
|
-
display: none;
|
|
909
|
-
}
|
|
910
|
-
.vuuTab .vuuTab-text {
|
|
911
|
-
display: inline-block;
|
|
912
|
-
position: relative;
|
|
913
|
-
overflow: hidden;
|
|
914
|
-
text-align: var(--salt-text-textAlign-embedded);
|
|
915
|
-
text-overflow: ellipsis;
|
|
916
|
-
top: var(--vuuTab-top, var(--tab-top, auto));
|
|
917
|
-
white-space: nowrap;
|
|
918
|
-
z-index: var(--salt-zIndex-default);
|
|
919
|
-
}
|
|
920
|
-
.vuuTab-vertical .vuuTab-text {
|
|
921
|
-
text-align: var(--salt-text-textAlign);
|
|
922
|
-
}
|
|
923
|
-
.vuuTab .vuuTab-text:before {
|
|
924
|
-
height: 0;
|
|
925
|
-
content: attr(data-text);
|
|
926
|
-
display: block;
|
|
927
|
-
visibility: hidden;
|
|
928
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
929
|
-
}
|
|
930
|
-
.vuuTab-editing:after {
|
|
931
|
-
content: "";
|
|
932
|
-
position: absolute;
|
|
933
|
-
top: 0;
|
|
934
|
-
left: 0;
|
|
935
|
-
right: 0;
|
|
936
|
-
bottom: 2px;
|
|
937
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
938
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
939
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
940
|
-
outline-offset: -2px;
|
|
941
|
-
}
|
|
942
|
-
.vuuTab-vertical.vuuTab-editing:after {
|
|
943
|
-
right: 2px;
|
|
944
|
-
bottom: 0;
|
|
945
|
-
}
|
|
946
|
-
.vuuTab-vertical .saltFocusVisible:not(.vuuTab-selected):before {
|
|
947
|
-
left: auto;
|
|
948
|
-
height: auto;
|
|
949
|
-
top: 0;
|
|
950
|
-
width: 2px;
|
|
951
|
-
}
|
|
952
|
-
.vuuTab.saltFocusVisible {
|
|
953
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
954
|
-
}
|
|
955
|
-
.vuuTab:before {
|
|
956
|
-
content: var(--tab-before-content, none);
|
|
957
|
-
background: var(--tab-before-background);
|
|
958
|
-
height: var(--tab-before-height);
|
|
959
|
-
inset: var(--tab-before-inset);
|
|
960
|
-
position: absolute;
|
|
961
|
-
width: var(--tab-before-width);
|
|
962
|
-
z-index: 1;
|
|
963
|
-
}
|
|
964
|
-
.vuuTabstrip-draggingTab .vuuTab-selected:before {
|
|
965
|
-
--tab-before-content: "";
|
|
966
|
-
--tab-before-background: var(--salt-navigable-indicator-color-active);
|
|
967
|
-
--tab-before-height: var(--tab-thumb-height);
|
|
968
|
-
--tab-before-inset: var(--tab-activationIndicator-inset);
|
|
969
|
-
--tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
970
|
-
}
|
|
971
|
-
.vuuDraggable .vuuTab:before,
|
|
972
|
-
.vuuTab:not(.vuuTab-selected).saltFocusVisible:before,
|
|
973
|
-
.vuuTab:hover:not(.vuuTab-selected):before {
|
|
974
|
-
--tab-before-content: "";
|
|
975
|
-
--tab-before-background: var(--salt-navigable-indicator-hover);
|
|
976
|
-
--tab-before-height: var(--tab-thumb-height);
|
|
977
|
-
--tab-before-inset: var(--tab-activationIndicator-inset);
|
|
978
|
-
--tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
979
|
-
}
|
|
980
|
-
.vuuTab-selected:before {
|
|
981
|
-
--tab-before-content: "";
|
|
982
|
-
background: var(--salt-navigable-indicator-active);
|
|
983
|
-
height: var(--tab-thumb-height);
|
|
984
|
-
position: absolute;
|
|
985
|
-
left: var(--tab-thumb-offset,0);
|
|
986
|
-
bottom: 0px;
|
|
987
|
-
transition: var(--tab-thumb-transition, none);
|
|
988
|
-
width: var(--tab-thumb-width, 100%);
|
|
989
|
-
}
|
|
990
|
-
.vuuTab:hover:not(.vuuTab-closeHover) {
|
|
991
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
/* ../vuu-layout/src/layout-header/Header.css */
|
|
995
|
-
.vuuHeader {
|
|
996
|
-
--saltToolbar-background: var(--salt-container-tertiary-background);
|
|
997
|
-
}
|
|
998
|
-
.salt-density-high .vuuHeader {
|
|
999
|
-
--saltToolbarField-marginTop: 0;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
/* ../vuu-layout/src/overflow-container/OverflowContainer.css */
|
|
1003
|
-
.vuuOverflowContainer {
|
|
1004
|
-
--item-gap: 4px;
|
|
1005
|
-
--overflow-width: 0px;
|
|
1006
|
-
--overflow-order: 99;
|
|
1007
|
-
--border-size: calc((var(--overflow-container-height) - 24px) / 2);
|
|
1008
|
-
background-color: var(--vuuOverflowContainer-background, black);
|
|
1009
|
-
height: var(--overflow-container-height);
|
|
1010
|
-
}
|
|
1011
|
-
.vuuOverflowContainer-wrapContainer {
|
|
1012
|
-
align-items: center;
|
|
1013
|
-
display: flex;
|
|
1014
|
-
flex-wrap: wrap;
|
|
1015
|
-
height: var(--overflow-container-height);
|
|
1016
|
-
min-width: 44px;
|
|
1017
|
-
overflow: hidden;
|
|
1018
|
-
position: relative;
|
|
1019
|
-
width: 100%;
|
|
1020
|
-
}
|
|
1021
|
-
.vuuOverflowContainer-wrapContainer.overflowed {
|
|
1022
|
-
--overflow-order: 2;
|
|
1023
|
-
--overflow-left: auto;
|
|
1024
|
-
--overflow-position: relative;
|
|
1025
|
-
--overflow-width: auto;
|
|
1026
|
-
}
|
|
1027
|
-
.vuuOverflowContainer-item:first-child {
|
|
1028
|
-
--item-gap: 0;
|
|
1029
|
-
}
|
|
1030
|
-
.vuuOverflowContainer-item {
|
|
1031
|
-
align-items: inherit;
|
|
1032
|
-
display: flex;
|
|
1033
|
-
order: 1;
|
|
1034
|
-
position: relative;
|
|
1035
|
-
height: var(--overflow-container-height);
|
|
1036
|
-
margin-left: var(--item-gap);
|
|
1037
|
-
}
|
|
1038
|
-
.vuuOverflowContainer-item.wrapped {
|
|
1039
|
-
--overflow-item-bg: #ccc;
|
|
1040
|
-
order: 3;
|
|
1041
|
-
}
|
|
1042
|
-
.vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
|
|
1043
|
-
display: none;
|
|
1044
|
-
}
|
|
1045
|
-
.vuuOverflowContainer-item.vuuDropTarget-settling {
|
|
1046
|
-
visibility: hidden;
|
|
1047
|
-
}
|
|
1048
|
-
.vuuOverflowContainer-OverflowIndicator {
|
|
1049
|
-
align-items: center;
|
|
1050
|
-
background-color: transparent;
|
|
1051
|
-
display: flex;
|
|
1052
|
-
height: var(--overflow-container-height);
|
|
1053
|
-
height: var(--overflow-container-height);
|
|
1054
|
-
order: var(--overflow-order);
|
|
1055
|
-
overflow: hidden;
|
|
1056
|
-
left: var(--overflow-left, 100%);
|
|
1057
|
-
position: var(--overflow-position, absolute);
|
|
1058
|
-
width: var(--overflow-width);
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
/* ../vuu-layout/src/palette/Palette.css */
|
|
1062
|
-
.vuuPalette-horizontal {
|
|
1063
|
-
align-items: center;
|
|
1064
|
-
display: flex;
|
|
1065
|
-
}
|
|
1066
|
-
.vuuPaletteItem {
|
|
1067
|
-
--vuu-icon-color: var(--salt-separable-primary-borderColor);
|
|
1068
|
-
--vuu-icon-inset: calc(50% - 12px) auto auto -3px;
|
|
1069
|
-
--vuu-icon-height: 24px;
|
|
1070
|
-
--vuu-icon-width: 24px;
|
|
1071
|
-
--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
|
|
1072
|
-
}
|
|
1073
|
-
.vuuPaletteItem[data-draggable]:after {
|
|
1074
|
-
height: 22px;
|
|
1075
|
-
width: 6px;
|
|
1076
|
-
content: "";
|
|
1077
|
-
position: absolute;
|
|
1078
|
-
background-image:
|
|
1079
|
-
linear-gradient(45deg, rgb(180, 183, 190) 25%, transparent 25%),
|
|
1080
|
-
linear-gradient(-45deg, rgb(180, 183, 190) 25%, transparent 25%),
|
|
1081
|
-
linear-gradient(45deg, transparent 75%, rgb(180, 183, 190) 25%),
|
|
1082
|
-
linear-gradient(-45deg, transparent 75%, rgb(180, 183, 190) 25%);
|
|
1083
|
-
background-size: 4px 4px;
|
|
1084
|
-
background-position:
|
|
1085
|
-
0 0,
|
|
1086
|
-
2px 0,
|
|
1087
|
-
2px -2px,
|
|
1088
|
-
0 2px;
|
|
1089
|
-
}
|
|
1090
|
-
.vuuSimpleDraggableWrapper > .vuuPaletteItem {
|
|
1091
|
-
--vuu-icon-color: var(--salt-selectable-foreground);
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
/* ../vuu-layout/src/palette/PaletteSalt.css */
|
|
1095
|
-
.vuuPalette {
|
|
1096
|
-
--list-item-header-bg: inherit;
|
|
1097
|
-
--list-item-header-color: inherit;
|
|
1098
|
-
--list-item-padding: 0 6px 0 24px;
|
|
1099
|
-
--list-item-header-twisty-color: black;
|
|
1100
|
-
--list-item-header-twisty-left: 3px;
|
|
1101
|
-
--list-item-header-twisty-right: auto;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
/* ../vuu-layout/src/stack/Stack.css */
|
|
1105
|
-
.Tabs {
|
|
1106
|
-
display: flex;
|
|
1107
|
-
box-sizing: border-box;
|
|
1108
|
-
flex-direction: column;
|
|
1109
|
-
}
|
|
1110
|
-
.Tabs-horizontal {
|
|
1111
|
-
flex-direction: row;
|
|
1112
|
-
}
|
|
1113
|
-
.Tabs .Toolbar:before {
|
|
1114
|
-
left: 0;
|
|
1115
|
-
width: 100%;
|
|
1116
|
-
bottom: 0;
|
|
1117
|
-
height: 1px;
|
|
1118
|
-
content: "";
|
|
1119
|
-
position: absolute;
|
|
1120
|
-
background: var(--grey60);
|
|
1121
|
-
}
|
|
1122
|
-
.vuuTabHeader {
|
|
1123
|
-
--saltTabs-activationIndicator-background: transparent;
|
|
1124
|
-
--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
|
|
1125
|
-
border-bottom: solid 1px var(--salt-container-primary-borderColor);
|
|
1126
|
-
}
|
|
1127
|
-
.vuuTabHeader + .hwFlexbox,
|
|
1128
|
-
.vuuTabHeader + * {
|
|
1129
|
-
flex: 1;
|
|
1130
|
-
}
|
|
1131
|
-
.vuuTabHeader + .vuuView > .vuuHeader {
|
|
1132
|
-
height: 0;
|
|
1133
|
-
overflow: hidden;
|
|
1134
|
-
}
|
|
1135
|
-
.Layout-svg-button {
|
|
1136
|
-
--spacing-medium: 5px;
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
/* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
|
|
1140
|
-
[data-design-mode=true] .Component {
|
|
1141
|
-
filter: grayscale(100%);
|
|
1142
|
-
opacity: 0.4;
|
|
1143
|
-
}
|
|
1144
|
-
[data-design-mode=true] .Component:after {
|
|
1145
|
-
color: black;
|
|
1146
|
-
content: "Component";
|
|
1147
|
-
height: 12px;
|
|
1148
|
-
background-color: yellow;
|
|
1149
|
-
}
|
|
1150
|
-
.LayoutConfigurator {
|
|
1151
|
-
--margin-color: #f3cea5;
|
|
1152
|
-
--border-color: #fddda0;
|
|
1153
|
-
--padding-color: #c6d092;
|
|
1154
|
-
--content-color: #8cb6c0;
|
|
1155
|
-
display: flex;
|
|
1156
|
-
flex-direction: column;
|
|
1157
|
-
align-items: stretch;
|
|
1158
|
-
background-color: var(--margin-color);
|
|
1159
|
-
}
|
|
1160
|
-
.LayoutConfigurator .layout-outer {
|
|
1161
|
-
flex: 1 1 auto;
|
|
1162
|
-
display: flex;
|
|
1163
|
-
flex-direction: column;
|
|
1164
|
-
align-items: stretch;
|
|
1165
|
-
}
|
|
1166
|
-
.LayoutBox {
|
|
1167
|
-
--hw-control-font-size: 13px;
|
|
1168
|
-
--hw-text-input-bg: rgba(255, 255, 255, 0.3);
|
|
1169
|
-
--hwTextInput-padding: 3px;
|
|
1170
|
-
--hw-text-input-position: absolute;
|
|
1171
|
-
--hwTextInput-width: 30px;
|
|
1172
|
-
flex: 1 1 auto;
|
|
1173
|
-
}
|
|
1174
|
-
.LayoutBox > .layout-top {
|
|
1175
|
-
flex: 0 0 40px;
|
|
1176
|
-
padding-left: 12px;
|
|
1177
|
-
display: flex;
|
|
1178
|
-
flex-direction: row;
|
|
1179
|
-
align-items: center;
|
|
1180
|
-
position: relative;
|
|
1181
|
-
}
|
|
1182
|
-
.LayoutBox > .layout-bottom {
|
|
1183
|
-
flex: 0 0 40px;
|
|
1184
|
-
position: relative;
|
|
1185
|
-
display: flex;
|
|
1186
|
-
flex-direction: row;
|
|
1187
|
-
align-items: center;
|
|
1188
|
-
}
|
|
1189
|
-
.LayoutBox > .layout-inner > .layout-right,
|
|
1190
|
-
.LayoutBox > .layout-inner > .layout-left {
|
|
1191
|
-
flex: 0 0 40px;
|
|
1192
|
-
display: flex;
|
|
1193
|
-
flex-direction: column;
|
|
1194
|
-
justify-content: center;
|
|
1195
|
-
align-items: center;
|
|
1196
|
-
}
|
|
1197
|
-
.layout-top,
|
|
1198
|
-
.layout-bottom {
|
|
1199
|
-
--hw-text-input-margin: 0 0 0 -15px;
|
|
1200
|
-
}
|
|
1201
|
-
.layout-top > .layout-input,
|
|
1202
|
-
.layout-bottom > .layout-input {
|
|
1203
|
-
left: 50%;
|
|
1204
|
-
}
|
|
1205
|
-
.LayoutBox > .layout-inner {
|
|
1206
|
-
flex: 1 1 auto;
|
|
1207
|
-
display: flex;
|
|
1208
|
-
flex-direction: row;
|
|
1209
|
-
align-items: stretch;
|
|
1210
|
-
}
|
|
1211
|
-
.LayoutBox.layout-margin {
|
|
1212
|
-
background-color: var(--margin-color);
|
|
1213
|
-
border: dashed 2px black;
|
|
1214
|
-
}
|
|
1215
|
-
.LayoutBox.layout-border {
|
|
1216
|
-
background-color: var(--border-color);
|
|
1217
|
-
border: solid 2px black;
|
|
1218
|
-
}
|
|
1219
|
-
.LayoutBox.layout-padding {
|
|
1220
|
-
background-color: var(--padding-color);
|
|
1221
|
-
border: dashed 2px black;
|
|
1222
|
-
}
|
|
1223
|
-
.LayoutBox .layout-content {
|
|
1224
|
-
flex: 1 1 auto;
|
|
1225
|
-
background-color: var(--content-color);
|
|
1226
|
-
border: solid 2px #808080;
|
|
1227
|
-
}
|
|
1228
|
-
.LayoutBox .layout-title {
|
|
1229
|
-
color: #161616;
|
|
1230
|
-
font-size: 11px;
|
|
1231
|
-
left: 4px;
|
|
1232
|
-
line-height: 15px;
|
|
1233
|
-
position: absolute;
|
|
1234
|
-
top: 1px;
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
/* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
|
|
1238
|
-
.hwLayoutTreeViewer {
|
|
1239
|
-
}
|
|
1240
|
-
.hwLayoutTreeNode {
|
|
1241
|
-
cursor: default;
|
|
1242
|
-
}
|
|
1243
|
-
.hwLayoutTreeNode:hover {
|
|
1244
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
1245
|
-
}
|
|
1246
|
-
.hwLayoutTreeNode[aria-selected=true] {
|
|
1247
|
-
background-color: cornflowerblue;
|
|
1248
|
-
color: white;
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
/* ../vuu-shell/src/login/LoginPanel.css */
|
|
1252
|
-
.vuuLoginPanel {
|
|
1253
|
-
--hwTextInput-border: solid 1px #ccc;
|
|
1254
|
-
--hwTextInput-height: 28px;
|
|
1255
|
-
--hwTextInput-padding: 0 12px;
|
|
1256
|
-
--hwTextInput-width: 100%;
|
|
1257
|
-
--login-row-height: 60px;
|
|
1258
|
-
align-content: center;
|
|
1259
|
-
align-items: center;
|
|
1260
|
-
border: solid 1px lightgray;
|
|
1261
|
-
display: flex;
|
|
1262
|
-
flex-direction: column;
|
|
1263
|
-
gap: 24px;
|
|
1264
|
-
justify-content: center;
|
|
1265
|
-
justify-items: center;
|
|
1266
|
-
margin: 0 auto;
|
|
1267
|
-
padding: 48px 48px 24px 48px;
|
|
1268
|
-
width: fit-content;
|
|
1269
|
-
}
|
|
1270
|
-
.vuuLoginPanel-login {
|
|
1271
|
-
grid-column: 2/3;
|
|
1272
|
-
align-self: end;
|
|
1273
|
-
justify-self: end;
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
/* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
|
|
1277
|
-
.vuuSessionEditingForm {
|
|
1278
|
-
display: flex;
|
|
1279
|
-
flex-direction: column;
|
|
1280
|
-
gap: 3px;
|
|
1281
|
-
min-width: 400px;
|
|
1282
|
-
padding: 6px;
|
|
1283
|
-
}
|
|
1284
|
-
.vuuSessionEditingForm-content {
|
|
1285
|
-
display: flex;
|
|
1286
|
-
flex-direction: column;
|
|
1287
|
-
flex: 1 1 auto;
|
|
1288
|
-
gap: 3px;
|
|
1289
|
-
overflow: auto;
|
|
1290
|
-
}
|
|
1291
|
-
.vuuSessionEditingForm-field {
|
|
1292
|
-
align-items: center;
|
|
1293
|
-
display: flex;
|
|
1294
|
-
height: 32px;
|
|
1295
|
-
}
|
|
1296
|
-
.vuuSessionEditingForm-fieldLabel {
|
|
1297
|
-
flex: 0 0 50%;
|
|
1298
|
-
}
|
|
1299
|
-
.vuuSessionEditingForm-fieldValue {
|
|
1300
|
-
max-width: 50%;
|
|
1301
|
-
}
|
|
1302
|
-
.vuuSessionEditingForm-fieldValue.vuuReadOnly {
|
|
1303
|
-
font-weight: var(--salt-text-label-fontWeight-strong);
|
|
1304
|
-
}
|
|
1305
|
-
.vuuSessionEditingForm-buttonbar {
|
|
1306
|
-
align-items: center;
|
|
1307
|
-
border-top: solid 1px var(--salt-container-primary-borderColor);
|
|
1308
|
-
display: flex;
|
|
1309
|
-
justify-content: flex-end;
|
|
1310
|
-
flex: 0 0 autox;
|
|
1311
|
-
gap: 6px;
|
|
1312
|
-
padding-top: 6px;
|
|
1313
|
-
}
|
|
1314
|
-
.vuuSessionEditingForm-errorBanner {
|
|
1315
|
-
--vuu-icon-left: 3px;
|
|
1316
|
-
--vuu-icon-size: 18px;
|
|
1317
|
-
--vuu-icon-top: 3px;
|
|
1318
|
-
border: solid 1px var(--salt-status-error-borderColor);
|
|
1319
|
-
line-height: 24px;
|
|
1320
|
-
padding: 0 6px 0 26px;
|
|
1321
|
-
position: relative;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
/* ../vuu-shell/src/user-profile/UserPanel.css */
|
|
1325
|
-
.vuuUserPanel {
|
|
1326
|
-
background-color: white;
|
|
1327
|
-
display: flex;
|
|
1328
|
-
flex-direction: column;
|
|
1329
|
-
max-height: 400px;
|
|
1330
|
-
padding: 12px;
|
|
1331
|
-
}
|
|
1332
|
-
vuuUserPanel-history {
|
|
1333
|
-
flex: 1 1 auto;
|
|
1334
|
-
}
|
|
1335
|
-
.vuuUserPanel-buttonBar {
|
|
1336
|
-
--saltButton-width: 100%;
|
|
1337
|
-
align-items: flex-end;
|
|
1338
|
-
border-top: 1px solid var(--surface3);
|
|
1339
|
-
display: flex;
|
|
1340
|
-
flex: 0 0 32px;
|
|
1341
|
-
justify-content: flex-start;
|
|
1342
|
-
}
|
|
1343
|
-
.btn-logout {
|
|
1344
|
-
--hwButton-icon-left: 12px;
|
|
1345
|
-
--hwButton-padding: 0 6px 0 24px;
|
|
1346
|
-
padding-left: 24px;
|
|
1347
|
-
}
|
|
1348
|
-
|
|
1349
|
-
/* ../vuu-shell/src/user-profile/UserProfile.css */
|
|
1350
|
-
.vuuUserProfile {
|
|
1351
|
-
--svg-icon: var(--svg-user);
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
/* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
|
|
1355
|
-
.vuuThemeSwitch {
|
|
1356
|
-
--saltButton-minWidth: 22px;
|
|
1357
|
-
}
|
|
1358
|
-
.vuuThemeSwitch {
|
|
1359
|
-
--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>');
|
|
1360
|
-
--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>');
|
|
1361
|
-
}
|
|
1362
|
-
.salt-density-high .vuuThemeSwitch {
|
|
1363
|
-
--saltButton-minWidth: 16px;
|
|
1364
|
-
--saltButton-width: 18px;
|
|
1365
|
-
--vuuThemeSwitch-iconSize: 16px;
|
|
1366
|
-
}
|
|
1367
|
-
.vuuThemeSwitch [data-icon] {
|
|
1368
|
-
--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
|
|
1369
|
-
}
|
|
1370
|
-
.vuuThemeSwitch [data-icon=light] {
|
|
1371
|
-
--vuu-icon-svg: var(--svg-light);
|
|
1372
|
-
}
|
|
1373
|
-
.vuuThemeSwitch [data-icon=dark] {
|
|
1374
|
-
--vuu-icon-svg: var(--svg-dark);
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
|
-
/* ../vuu-shell/src/app-header/AppHeader.css */
|
|
1378
|
-
.vuuAppHeader {
|
|
1379
|
-
align-items: center;
|
|
1380
|
-
border-bottom: solid 1px var(--salt-container-secondary-borderColor);
|
|
1381
|
-
display: flex;
|
|
1382
|
-
height: 40px;
|
|
1383
|
-
justify-content: flex-end;
|
|
1384
|
-
}
|
|
1385
|
-
.vuu-purple-theme .vuuAppHeader {
|
|
1386
|
-
border-radius: 8px;
|
|
1387
|
-
border: 1px solid #D6D7DA;
|
|
1388
|
-
height: 44px;
|
|
1389
|
-
margin-bottom: 8px;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
/* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
|
|
1393
|
-
.vuuContextPanel {
|
|
1394
|
-
position: relative;
|
|
1395
|
-
transition: width .3s ease-in-out;
|
|
1396
|
-
width: var(--vuu-side-panel-width, 0px) !important;
|
|
1397
|
-
z-index: 1;
|
|
1398
|
-
}
|
|
1399
|
-
.vuuContextPanel-expanded {
|
|
1400
|
-
--vuu-side-panel-width: 300px !important;
|
|
1401
|
-
--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
|
|
1402
|
-
--vuu-side-panel-padding: 24px;
|
|
1403
|
-
}
|
|
1404
|
-
.vuuContextPanel-overlay {
|
|
1405
|
-
width: 0px !important;
|
|
1406
|
-
}
|
|
1407
|
-
.vuuContextPanel-inner {
|
|
1408
|
-
background-color: var(--salt-container-primary-background);
|
|
1409
|
-
box-shadow: var(--vuu-side-panel-shadow, none);
|
|
1410
|
-
height: 100%;
|
|
1411
|
-
padding-bottom: 24px;
|
|
1412
|
-
padding-top: 24px;
|
|
1413
|
-
padding-left: var(--vuu-side-panel-padding, 0);
|
|
1414
|
-
padding-right: var(--vuu-side-panel-padding, 0);
|
|
1415
|
-
position: absolute;
|
|
1416
|
-
right: 0;
|
|
1417
|
-
top: 0;
|
|
1418
|
-
transition-property:
|
|
1419
|
-
padding-left,
|
|
1420
|
-
padding-right,
|
|
1421
|
-
width;
|
|
1422
|
-
transition-duration: .3s;
|
|
1423
|
-
transition-timing-function: ease-in-out;
|
|
1424
|
-
width: var(--vuu-side-panel-width, 0px);
|
|
1425
|
-
}
|
|
1426
|
-
.vuuContextPanel-header {
|
|
1427
|
-
align-items: center;
|
|
1428
|
-
display: flex;
|
|
1429
|
-
flex-wrap: nowrap;
|
|
1430
|
-
height: 27px;
|
|
1431
|
-
justify-content: space-between;
|
|
1432
|
-
}
|
|
1433
|
-
.vuuContextPanel-title {
|
|
1434
|
-
font-size: 20px;
|
|
1435
|
-
font-weight: 700;
|
|
1436
|
-
white-space: nowrap;
|
|
1437
|
-
}
|
|
1438
|
-
|
|
1439
|
-
/* ../vuu-shell/src/left-nav/LeftNav.css */
|
|
1440
|
-
.vuuLeftNav {
|
|
1441
|
-
--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>');
|
|
1442
|
-
--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>');
|
|
1443
|
-
--svg-templates: 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>');
|
|
1444
|
-
--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>');
|
|
1445
|
-
--vuu-accent-color: #f37880;
|
|
1446
|
-
--vuu-light-text-primary: #15171b;
|
|
1447
|
-
background-color: #2A015F;
|
|
1448
|
-
container-type: inline-size;
|
|
1449
|
-
display: flex;
|
|
1450
|
-
flex-direction: column;
|
|
1451
|
-
padding: 32px 16px;
|
|
1452
|
-
transition: width .3s ease-in-out;
|
|
1453
|
-
}
|
|
1454
|
-
.vuuLeftNav-logo {
|
|
1455
|
-
display: flex;
|
|
1456
|
-
flex: 0 0 auto;
|
|
1457
|
-
justify-content: center;
|
|
1458
|
-
}
|
|
1459
|
-
.vuuLeftNav-main {
|
|
1460
|
-
flex: 1 1 auto;
|
|
1461
|
-
}
|
|
1462
|
-
.vuuLeftNav-menu {
|
|
1463
|
-
color: white;
|
|
1464
|
-
margin-top: 102px;
|
|
1465
|
-
padding: 0;
|
|
1466
|
-
}
|
|
1467
|
-
.vuuLeftNav-menuitem {
|
|
1468
|
-
--vuu-icon-color: white;
|
|
1469
|
-
align-items: center;
|
|
1470
|
-
border-radius: 6px;
|
|
1471
|
-
display: flex;
|
|
1472
|
-
font-weight: 700;
|
|
1473
|
-
height: 40px;
|
|
1474
|
-
line-height: 24px;
|
|
1475
|
-
list-style: none;
|
|
1476
|
-
padding: 8px 16px 8px 48px;
|
|
1477
|
-
}
|
|
1478
|
-
.vuuLeftNav-menuitem[data-icon] {
|
|
1479
|
-
--vuu-icon-left: 32px;
|
|
1480
|
-
--vuu-icon-size: 16px;
|
|
1481
|
-
}
|
|
1482
|
-
.vuuLeftNav-menuitem[data-icon=demo] {
|
|
1483
|
-
--vuu-icon-svg: var(--svg-demo);
|
|
1484
|
-
}
|
|
1485
|
-
.vuuLeftNav-menuitem[data-icon=tables] {
|
|
1486
|
-
--vuu-icon-svg: var(--svg-tables);
|
|
1487
|
-
}
|
|
1488
|
-
.vuuLeftNav-menuitem[data-icon=templates] {
|
|
1489
|
-
--vuu-icon-svg: var(--svg-templates);
|
|
1490
|
-
}
|
|
1491
|
-
.vuuLeftNav-menuitem[data-icon=layouts] {
|
|
1492
|
-
--vuu-icon-svg: var(--svg-layouts);
|
|
1493
|
-
}
|
|
1494
|
-
.vuuLeftNav-menuitem-label {
|
|
1495
|
-
white-space: nowrap;
|
|
1496
|
-
}
|
|
1497
|
-
.vuuLeftNav-menuitem-active {
|
|
1498
|
-
--vuu-icon-color: var(--vuu-accent-color);
|
|
1499
|
-
background: rgba(255, 255, 255, 0.10);
|
|
1500
|
-
border-left: solid 4px var(--vuu-accent-color);
|
|
1501
|
-
}
|
|
1502
|
-
@container (max-width: 100px) {
|
|
1503
|
-
.vuuLeftNav-menuitem {
|
|
1504
|
-
padding-left: 28px;
|
|
1505
|
-
}
|
|
1506
|
-
.vuuLeftNav-menuitem-label {
|
|
1507
|
-
display: none;
|
|
1508
|
-
}
|
|
1509
|
-
}
|
|
1510
|
-
.vuuLeftNav-buttonBar {
|
|
1511
|
-
align-items: center;
|
|
1512
|
-
display: flex;
|
|
1513
|
-
flex: 0 0 100px;
|
|
1514
|
-
justify-content: center;
|
|
1515
|
-
}
|
|
1516
|
-
.vuuLeftNav-toggleButton {
|
|
1517
|
-
--vuu-icon-color: var(--vuu-light-text-primary);
|
|
1518
|
-
--vuu-icon-left: 11px;
|
|
1519
|
-
--vuu-icon-top: 10px;
|
|
1520
|
-
--vuu-icon-size: 16px;
|
|
1521
|
-
background-color: var(--vuu-accent-color);
|
|
1522
|
-
border-width: 0;
|
|
1523
|
-
border-radius: 18px;
|
|
1524
|
-
height: 36px;
|
|
1525
|
-
position: relative;
|
|
1526
|
-
width: 36px;
|
|
1527
|
-
}
|
|
1528
|
-
.vuuLeftNav-toggleButton-open {
|
|
1529
|
-
--vuu-icon-left: 9px;
|
|
1530
|
-
}
|
|
1531
|
-
|
|
1532
|
-
/* ../vuu-shell/src/shell.css */
|
|
1533
|
-
.vuuShell {
|
|
1534
|
-
background-color: var(--salt-container-primary-background, ivory);
|
|
1535
|
-
height: var(--vuuShell-height, 100vh);
|
|
1536
|
-
width: var(--vuuShell-width, 100vw);
|
|
1537
|
-
}
|
|
1538
|
-
.vuuShell-palette {
|
|
1539
|
-
--vuuView-border: none;
|
|
1540
|
-
--vuuView-margin: 0;
|
|
1541
|
-
}
|
|
1542
|
-
.vuuShell-warningPlaceholder {
|
|
1543
|
-
background-color: var(--salt-container-background-high);
|
|
1544
|
-
height: 100%;
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
|
-
/* src/dialog/Dialog.css */
|
|
1548
|
-
.vuuDialog {
|
|
1549
|
-
background: var(--salt-container-primary-background);
|
|
1550
|
-
border: var(--vuuDialog-border, solid 1px #ccc);
|
|
1551
|
-
border-radius: 5px;
|
|
1552
|
-
padding: var(--vuuDialog-padding, 0);
|
|
1553
|
-
box-shadow: var(--salt-overlayable-shadow, none);
|
|
1554
|
-
height: var(--vuuDialog-height, fit-content);
|
|
1555
|
-
width: var(--vuuDialog-width, fit-content);
|
|
1556
|
-
}
|
|
1557
|
-
.vuuDialog-header {
|
|
1558
|
-
--saltButton-height: 28px;
|
|
1559
|
-
--saltButton-width: 28px;
|
|
1560
|
-
--saltToolbar-background: transparent;
|
|
1561
|
-
--saltToolbar-height: calc(var(--salt-size-base) + 5px);
|
|
1562
|
-
border-bottom: solid 1px var(--salt-container-primary-borderColor);
|
|
1563
|
-
}
|
|
1564
|
-
.vuuDialog-header > .Responsive-inner {
|
|
1565
|
-
align-items: center;
|
|
1566
|
-
}
|
|
1567
|
-
.vuuDialog-header > .Responsive-inner > :last-child {
|
|
1568
|
-
right: 2px;
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
/* src/menu/MenuList.css */
|
|
1572
|
-
.vuuMenuList {
|
|
1573
|
-
--context-menu-color: var(--vuuMenuList-color,#161616);
|
|
1574
|
-
--context-menu-padding: var(--hw-list-item-padding, 0 6px);
|
|
1575
|
-
--context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
|
|
1576
|
-
--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
|
|
1577
|
-
--context-menu-highlight-bg: #a4d5f4;
|
|
1578
|
-
--context-menu-blur-focus-bg: #e0e4e9;
|
|
1579
|
-
--menu-item-icon-color: black;
|
|
1580
|
-
--menu-item-twisty-color: black;
|
|
1581
|
-
--menu-item-twisty-content: "";
|
|
1582
|
-
--menu-item-twisty-top: 50%;
|
|
1583
|
-
--menu-item-twisty-left: auto;
|
|
1584
|
-
--menu-item-twisty-right: 0px;
|
|
1585
|
-
--menu-icon-size: 12px;
|
|
1586
|
-
background-clip: padding-box;
|
|
1587
|
-
background-color: white;
|
|
1588
|
-
border-radius: 4px;
|
|
1589
|
-
border: solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, 0.15));
|
|
1590
|
-
box-shadow: var(--context-menu-shadow);
|
|
1591
|
-
font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
|
|
1592
|
-
font-weight: var(--salt-typography-fontWeight-semiBold);
|
|
1593
|
-
list-style: none;
|
|
1594
|
-
margin: 2px 0 0;
|
|
1595
|
-
outline: 0;
|
|
1596
|
-
overflow: hidden;
|
|
1597
|
-
padding: var(--vuuMenuList-padding, 0);
|
|
1598
|
-
position: absolute;
|
|
1599
|
-
}
|
|
1600
|
-
.vuuMenuItem {
|
|
1601
|
-
align-items: center;
|
|
1602
|
-
border-width: 1px;
|
|
1603
|
-
border-color: var(--vuuMenuItem-borderColor, transparent);
|
|
1604
|
-
border-style: var(--vuuMenuItem-borderStyle, none);
|
|
1605
|
-
color: var(--context-menu-color);
|
|
1606
|
-
display: flex;
|
|
1607
|
-
gap: 6px;
|
|
1608
|
-
height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
|
|
1609
|
-
padding: var(--context-menu-padding);
|
|
1610
|
-
padding-right: 24px;
|
|
1611
|
-
position: relative;
|
|
1612
|
-
white-space: nowrap;
|
|
1613
|
-
}
|
|
1614
|
-
.vuuIconContainer {
|
|
1615
|
-
display: inline-block;
|
|
1616
|
-
flex: 12px 0 0;
|
|
1617
|
-
height: var(--menu-icon-size);
|
|
1618
|
-
mask-repeat: no-repeat;
|
|
1619
|
-
width: var(--menu-icon-size);
|
|
1620
|
-
}
|
|
1621
|
-
.vuuMenuItem[aria-expanded=true] {
|
|
1622
|
-
background-color: var(--context-menu-blur-focus-bg);
|
|
1623
|
-
}
|
|
1624
|
-
.vuuMenuItem-separator {
|
|
1625
|
-
border-top: solid 1px var(--context-menu-blur-focus-bg);
|
|
1626
|
-
}
|
|
1627
|
-
.vuuMenuItem[aria-haspopup=true]:after {
|
|
1628
|
-
content: var(--menu-item-twisty-content);
|
|
1629
|
-
-webkit-mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
|
|
1630
|
-
mask: var(---vuu-svg-chevron-right) center center/8px 8px no-repeat;
|
|
1631
|
-
background-color: var(--menu-item-twisty-color);
|
|
1632
|
-
height: 16px;
|
|
1633
|
-
left: var(--menu-item-twisty-left);
|
|
1634
|
-
right: var(--menu-item-twisty-right);
|
|
1635
|
-
margin-top: -8px;
|
|
1636
|
-
position: absolute;
|
|
1637
|
-
top: var(--menu-item-twisty-top);
|
|
1638
|
-
transition: transform 0.3s;
|
|
1639
|
-
width: 16px;
|
|
1640
|
-
}
|
|
1641
|
-
.vuuMenuItem[data-highlighted] {
|
|
1642
|
-
background-color: var(--context-menu-highlight-bg);
|
|
1643
|
-
}
|
|
1644
|
-
.vuuMenuItem:hover {
|
|
1645
|
-
background-color: var(--context-menu-highlight-bg);
|
|
1646
|
-
cursor: default;
|
|
1647
|
-
}
|
|
1648
|
-
.vuuMenuList-childMenuShowing .vuuMenuItem[data-highlighted] {
|
|
1649
|
-
background-color: var(--context-menu-blur-focus-bg);
|
|
1650
|
-
}
|
|
1651
|
-
.vuuMenuItem.focusVisible:before {
|
|
1652
|
-
content: "";
|
|
1653
|
-
position: absolute;
|
|
1654
|
-
top: 0;
|
|
1655
|
-
left: 0;
|
|
1656
|
-
right: 0;
|
|
1657
|
-
bottom: 0px;
|
|
1658
|
-
border: dotted var(--focus-visible-border-color) 2px;
|
|
1659
|
-
}
|
|
1660
|
-
.vuuPopupContainer.top-bottom-right-right .popup-menu {
|
|
1661
|
-
left: auto;
|
|
1662
|
-
right: 0;
|
|
1663
|
-
}
|
|
1664
|
-
.popup-menu .menu-item.showing > button,
|
|
1665
|
-
.popup-menu .menu-item > button:focus,
|
|
1666
|
-
.popup-menu .menu-item > button:hover {
|
|
1667
|
-
text-decoration: none;
|
|
1668
|
-
color: rgb(0, 0, 0);
|
|
1669
|
-
background-color: rgb(220, 220, 220);
|
|
1670
|
-
}
|
|
1671
|
-
.vuuMenuItem-button:active,
|
|
1672
|
-
.vuuMenuItem-button:hover {
|
|
1673
|
-
outline: 0;
|
|
1674
|
-
}
|
|
1675
|
-
.popup-menu .menu-item.disabled > button {
|
|
1676
|
-
clear: both;
|
|
1677
|
-
font-weight: normal;
|
|
1678
|
-
line-height: 1.5;
|
|
1679
|
-
color: rgb(120, 120, 120);
|
|
1680
|
-
white-space: nowrap;
|
|
1681
|
-
text-decoration: none;
|
|
1682
|
-
cursor: default;
|
|
1683
|
-
}
|
|
1684
|
-
|
|
1685
|
-
/* src/popup/popup-service.css */
|
|
1686
|
-
.vuuPopup {
|
|
1687
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1688
|
-
position: absolute;
|
|
1689
|
-
top: 0;
|
|
1690
|
-
left: 0;
|
|
1691
|
-
width: 0;
|
|
1692
|
-
height: 0;
|
|
1693
|
-
overflow: visible;
|
|
1694
|
-
z-index: 1000;
|
|
1695
|
-
}
|
|
1696
|
-
.vuuPopup {
|
|
1697
|
-
position: absolute;
|
|
1698
|
-
}
|
|
1699
|
-
|
|
1700
|
-
/* src/popup-menu/PopupMenu.css */
|
|
1701
|
-
.vuuPopupMenu {
|
|
1702
|
-
--saltButton-height: 24px;
|
|
1703
|
-
--saltButton-width: 24px;
|
|
1704
|
-
--vuu-icon-color: #606477;
|
|
1705
|
-
--vuu-icon-height: 20px;
|
|
1706
|
-
--vuu-icon-left: 2px;
|
|
1707
|
-
--vuu-icon-size: 16px;
|
|
1708
|
-
--vuu-icon-top: 2px;
|
|
1709
|
-
--vuu-icon-width: 20px;
|
|
1710
|
-
background: var(--vuuPopupMenu-background, transparent);
|
|
1711
|
-
border-radius: 4px;
|
|
1712
|
-
cursor: pointer;
|
|
1713
|
-
display: inline-block;
|
|
1714
|
-
margin-top: 2px;
|
|
1715
|
-
padding: 2px;
|
|
1716
|
-
}
|
|
1717
|
-
.vuuPopupMenu:hover {
|
|
1718
|
-
--vuu-icon-color: var(--saltButton-text-color-hover);
|
|
1719
|
-
}
|
|
1720
|
-
.vuuPopupMenu-open {
|
|
1721
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
1722
|
-
--vuu-icon-color: white;
|
|
1723
|
-
}
|
|
1724
|
-
.vuu-theme-purple .vuuPopupMenu:hover {
|
|
1725
|
-
--saltButton-background-hover: #F37880;
|
|
1726
|
-
}
|
|
1727
|
-
.vuu-theme-purple .vuuPopupMenu-open {
|
|
1728
|
-
--saltButton-background: #6D18BD;
|
|
1729
|
-
}
|
|
1
|
+
.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{inset:0 0 0 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}}.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%}.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:1;position:absolute;top:0px;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%}.vuuPlaceholder{flex-basis:0;flex-grow:1;flex-shrink:1}.vuuPlaceholder-shim{flex-grow:0;flex-shrink:0}.Splitter{--splitter-size: 3px;--splitter-border-width: 4px;--splitter-border-style: none;--splitter-border-color: white;align-items:center;background-color:var(--salt-palette-neutral-secondary-separator);border-color:var(--splitter-border-color);border-style:var(--splitter-border-style);box-sizing:border-box;display:flex;justify-content:center;position:relative;outline:none;z-index:1}.Splitter:hover{background-color:var(--salt-palette-neutral-primary-separator)}.active.Splitter{background-color:var(--salt-palette-interact-outline)}.Splitter.column{cursor:ns-resize;height:var(--splitter-size);border-width:var(--splitter-border-width) 0}.Splitter:not(.column){cursor:ew-resize;width:var(--splitter-size);border-width:0 var(--splitter-border-width)}.Splitter:before{border:none;border-radius:0;content:"";display:block;padding:0}.Splitter .grab-zone{position:absolute;background-color:#ff000003;cursor:inherit}.Splitter.column .grab-zone{left:0;right:0;top:-5px;bottom:-5px}.Splitter:not(.column) .grab-zone{left:-5px;right:-5px;top:0;bottom:0}.active.Splitter:not(.column) .grab-zone{background-color:#ffffff0d;left:-150px;right:-150px}.Splitter:not(.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%)}.active.Splitter.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%)}.active.Splitter:not(.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%)}.Splitter.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)))}.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;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}.vuuEditableLabel{--saltInput-minWidth: 14px;--saltInput-position: absolute;--editableLabel-padding: var(--saltEditableLabel-padding, 6px);--editableLabel-height: var(--saltEditableLabel-height, 26px);color:inherit;cursor:default;display:flex;flex-direction:column;font-size:var(--salt-text-fontSize);height:var(--editableLabel-height);justify-content:center;outline:none;padding:0 var(--editableLabel-padding);position:relative;z-index:var(--salt-zIndex-default)}.vuuEditableLabel:before{content:attr(data-text);display:block;height:0px;visibility:hidden;white-space:pre-wrap}.vuuEditableLabel .saltInput{font-weight:var(--salt-text-fontWeight);left:var(--editableLabel-padding, 0);padding:0;outline-style:none;right:var(--editableLabel-padding, 0)}.vuuEditableLabel-input{outline: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(--saltDraggable-display, inline-block);height:var(--saltDraggable-spacer-height, var(--tabs-tabstrip-height));transition:var(--saltDraggable-transitionProp, width) .3s ease;width:var(--saltDraggable-spacer-width, 0)}.vuuDraggable-dropIndicatorPosition{display:var(--saltDraggable-display, inline-block);height:0px;width:100%}.vuuDraggable-dropIndicatorContainer{transition:var(--saltDraggable-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}.vuuTabstrip{--vuuOverflowContainer-background: transparent;--tabs-tabstrip-height: var(--vuuTabstrip-height, 28px);--tabs-tabstrip-dragging-display: none;--tabs-tabstrip-display: inline-flex;--tabs-tabstrip-background: transparent;align-items:flex-start;align-self:var(--saltTabs-tabstrip-alignSelf, stretch);border-bottom:var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));font-size:var(--salt-text-fontSize);font-weight:var(--salt-text-fontWeight);position:relative;overflow:visible;display:flex;min-width:28px;width:100%}.vuuTabstrip-horizontal{--vuuTabActivationIndicator-height: 1px;--vuuTabActivationIndicator-thumb-inset: -1px 0 0 0;--tab-activationIndicator-borderStyle: none none solid none;--tab-activationIndicator-inset: auto 0px 0px 0px;--tab-activationIndicator-transitionProperty: left;--tab-activationIndicator-thumb-height: 0px;--tab-thumb-height: 2px}.vuuTabstrip-vertical{--vuuTabActivationIndicator-thumb-inset: 0 0 0 -1px;--tab-activationIndicator-transition: top .3s ease;--tab-activationIndicator-borderStyle: none solid none none;--tab-activationIndicator-inset: 0px 0px 0px auto;--tab-activationIndicator-transitionProperty: top;--tab-activationIndicator-width: 1px;--tab-activationIndicator-thumb-width: 2px;align-self:flex-start;display:inline-flex}.vuuTabstrip-draggingTab{--vuuTabs-activationIndicator-transition: none}.vuuTabstrip-draggingTab .vuuTab{pointer-events:none}.vuuTabstrip-horizontal{height:var(--tabs-tabstrip-height)}.vuuTabstrip-addTabButton{--saltButton-height: 20px;--saltButton-width: 20px}.vuuTabstrip-overflowMenu.saltDropdown{--saltIcon-margin: 2px 0 0 0px}.vuuTabstrip-overflowMenu-open{--saltButton-background: var(--salt-actionable-secondary-background-active);--saltButton-text-color: var(--salt-actionable-secondary-text-color-active)}.vuuTabstrip-overflowMenu-open .saltButton{--saltIcon-color: var(--salt-actionable-secondary-foreground-active)}.vuuTabstrip-inner{width:100%;align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:1;flex-wrap:wrap;justify-content:flex-start;line-height:var(--tabs-tabstrip-height)}.vuuTabstrip-vertical .vuuTabstrip-inner{flex-direction:column;height:auto}.vuuTabstrip-centered .vuuTabstrip-inner{justify-content:center}.vuuDraggable[class*=vuuTabstrip]{--tabs-tabstrip-display: flex;--tabs-tabstrip-height: 100%;--tabs-tabstrip-dragging-display: block;--tabs-tab-background: var(--salt-navigable-primary-background-hover);--tabs-tab-before-content: "";--tabs-tab-before-background: var(--salt-navigable-indicator-hover);--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);--tabs-tab-before-inset: var(--tab-activationIndicator-inset);--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);--tabs-tab-position: static;font-size:12px}.vuuDraggable-tabstrip-horizontal{--tab-thumb-height: 2px;--tabs-tabstrip-height: 28px;--tab-activationIndicator-thumb-height: 2px;--tab-activationIndicator-inset: auto 0px 0px 0px;line-height:var(--tabs-tabstrip-height)}.vuuDraggable-tabstrip-vertical{--tab-activationIndicator-inset: 0px 0px 0px auto;--tab-activationIndicator-thumb-width: 2px}.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before{--tabs-tab-before-background: var(--salt-navigable-indicator-active)}.vuuTabstrip-overflowMenu-dropTarget:after{background:var(--salt-selectable-background-selected);content:"";position:absolute;height:2px;left:0;right:0;bottom:0}.vuuTabMenu{top:-2px}.vuuTab{--saltEditableLabel-padding: 0;--saltEditableLabel-height: var(--tabs-tabstrip-height);--saltInputLegacy-minWidth: 4em;--tab-background: var(--salt-navigable-primary-background);--tab-cursor: pointer;--tab-position: relative}.vuuTab{align-items:center;align-self:stretch;background:var(--vuuTab-background, var(--tab-background));border:none;border-radius:0;color:var(--salt-text-primary-foreground);cursor:var(--vuuTab-cursor, var(--tab-cursor));display:var(--tabs-tabstrip-display);gap:8px;height:var(--vuuTab-height, var(--tabs-tabstrip-height));letter-spacing:var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));min-width:var(--vuuTab-minWidth, 40px);outline:none;padding:0 24px;position:var(--vuuTab-position, var(--tab-position));user-select:none}.vuuTab.saltFocusVisible:after{inset:2px 2px 4px 2px}.vuuTab:not(.vuuTab-vertical){margin:0 var(--tab-spacing) 0 0}.vuuTab-selected{color:var(--salt-text-primary-foreground);font-weight:var(--salt-navigable-fontWeight-active)}.vuuTab-main{align-items:center;background:inherit;border:none;color:inherit;cursor:inherit;display:flex;font-family:inherit;font-size:inherit;font-weight:inherit;height:var(--vuuTabstrip-height, var(--salt-size-stackable));outline:none;position:relative}.vuuTab-closeable .vuuTab-main{border-right:solid transparent var(--salt-size-unit)}.vuuTab .vuuTab-closeButton{display:flex;align-items:center;justify-content:center}.vuuTab-close-icon{display:none}.salt-density-touch .vuuTab-close-icon,.salt-density-low .vuuTab-close-icon{display:block}.salt-density-touch .vuuTab-close-icon-small,.salt-density-low .vuuTab-close-icon-small{display:none}.vuuTab .vuuTab-text{display:inline-block;position:relative;overflow:hidden;text-align:var(--salt-text-textAlign-embedded);text-overflow:ellipsis;top:var(--vuuTab-top, var(--tab-top, auto));white-space:nowrap;z-index:var(--salt-zIndex-default)}.vuuTab-vertical .vuuTab-text{text-align:var(--salt-text-textAlign)}.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-vertical.vuuTab-editing:after{right:2px;bottom:0}.vuuTab-vertical .saltFocusVisible:not(.vuuTab-selected):before{left:auto;height:auto;top:0;width:2px}.vuuTab.saltFocusVisible{background:var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover))}.vuuTab:before{content:var(--tab-before-content, none);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)}.vuuDraggable .vuuTab:before,.vuuTab:not(.vuuTab-selected).saltFocusVisible:before,.vuuTab:hover:not(.vuuTab-selected):before{--tab-before-content: "";--tab-before-background: var(--salt-navigable-indicator-hover);--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-offset,0);bottom:0px;transition:var(--tab-thumb-transition, none);width:var(--tab-thumb-width, 100%)}.vuuTab:hover:not(.vuuTab-closeHover){background:var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover))}.vuuHeader{--saltToolbar-background: var(--salt-container-tertiary-background)}.salt-density-high .vuuHeader{--saltToolbarField-marginTop: 0}.vuuOverflowContainer{--item-gap: 4px;--overflow-width: 0px;--overflow-order: 99;--border-size: calc((var(--overflow-container-height) - 24px) / 2);background-color:var(--vuuOverflowContainer-background, black);height:var(--overflow-container-height)}.vuuOverflowContainer-wrapContainer{align-items:center;display:flex;flex-wrap:wrap;height:var(--overflow-container-height);min-width:44px;overflow:hidden;position:relative;width:100%}.vuuOverflowContainer-wrapContainer.overflowed{--overflow-order: 2;--overflow-left: auto;--overflow-position: relative;--overflow-width: auto}.vuuOverflowContainer-item:first-child{--item-gap: 0}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--overflow-container-height);margin-left:var(--item-gap)}.vuuOverflowContainer-item.wrapped{--overflow-item-bg: #ccc;order:3}.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-container-height);order:var(--overflow-order);overflow:hidden;left:var(--overflow-left, 100%);position:var(--overflow-position, absolute);width:var(--overflow-width)}.vuuPalette-horizontal{align-items:center;display:flex}.vuuPaletteItem{--vuu-icon-color: var(--salt-separable-primary-borderColor);--vuu-icon-inset:calc(50% - 12px) auto auto -3px;--vuu-icon-height: 24px;--vuu-icon-width: 24px;--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3)}.vuuPaletteItem[data-draggable]:after{height:22px;width:6px;content:"";position:absolute;background-image:linear-gradient(45deg,rgb(180,183,190) 25%,transparent 25%),linear-gradient(-45deg,rgb(180,183,190) 25%,transparent 25%),linear-gradient(45deg,transparent 75%,rgb(180,183,190) 25%),linear-gradient(-45deg,transparent 75%,rgb(180,183,190) 25%);background-size:4px 4px;background-position:0 0,2px 0,2px -2px,0 2px}.vuuSimpleDraggableWrapper>.vuuPaletteItem{--vuu-icon-color: var(--salt-selectable-foreground)}.vuuPalette{--list-item-header-bg: inherit;--list-item-header-color: inherit;--list-item-padding: 0 6px 0 24px;--list-item-header-twisty-color: black;--list-item-header-twisty-left: 3px;--list-item-header-twisty-right: auto}.Tabs{display:flex;box-sizing:border-box;flex-direction:column}.Tabs-horizontal{flex-direction:row}.Tabs .Toolbar:before{left:0;width:100%;bottom:0;height:1px;content:"";position:absolute;background:var(--grey60)}.vuuTabHeader{--saltTabs-activationIndicator-background: transparent;--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);border-bottom:solid 1px var(--salt-container-primary-borderColor)}.vuuTabHeader+.hwFlexbox,.vuuTabHeader+*{flex:1}.vuuTabHeader+.vuuView>.vuuHeader{height:0;overflow:hidden}.Layout-svg-button{--spacing-medium: 5px}[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{--hwTextInput-border: solid 1px #ccc;--hwTextInput-height: 28px;--hwTextInput-padding: 0 12px;--hwTextInput-width: 100%;--login-row-height: 60px;align-content:center;align-items:center;border:solid 1px lightgray;display:flex;flex-direction:column;gap:24px;justify-content:center;justify-items:center;margin:0 auto;padding:48px 48px 24px;width:fit-content}.vuuLoginPanel-login{grid-column:2/3;align-self:end;justify-self:end}.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}.vuuUserPanel{background-color:#fff;display:flex;flex-direction:column;max-height:400px;padding:12px}vuuUserPanel-history{flex:1 1 auto}.vuuUserPanel-buttonBar{--saltButton-width: 100%;align-items:flex-end;border-top:1px solid var(--surface3);display:flex;flex:0 0 32px;justify-content:flex-start}.btn-logout{--hwButton-icon-left: 12px;--hwButton-padding: 0 6px 0 24px;padding-left:24px}.vuuUserProfile{--svg-icon: var(--svg-user)}.vuuThemeSwitch{--saltButton-minWidth: 22px}.vuuThemeSwitch{--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>')}.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)}.vuuAppHeader{align-items:center;border-bottom:solid 1px var(--salt-container-secondary-borderColor);display:flex;height:40px;justify-content:flex-end}.vuu-purple-theme .vuuAppHeader{border-radius:8px;border:1px solid #D6D7DA;height:44px;margin-bottom:8px}.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);height:100%;padding-bottom:24px;padding-top:24px;padding-left:var(--vuu-side-panel-padding, 0);padding-right:var(--vuu-side-panel-padding, 0);position:absolute;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;height:27px;justify-content:space-between}.vuuContextPanel-title{font-size:20px;font-weight:700;white-space:nowrap}.vuuLeftNav{--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-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-templates: 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-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-accent-color: #f37880;--vuu-light-text-primary: #15171b;background-color:#2a015f;container-type:inline-size;display:flex;flex-direction:column;padding:32px 16px;transition:width .3s ease-in-out}.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-menuitem{--vuu-icon-color: white;align-items:center;border-radius:6px;display:flex;font-weight:700;height:40px;line-height:24px;list-style:none;padding:8px 16px 8px 48px}.vuuLeftNav-menuitem[data-icon]{--vuu-icon-left: 32px;--vuu-icon-size: 16px}.vuuLeftNav-menuitem[data-icon=demo]{--vuu-icon-svg: var(--svg-demo)}.vuuLeftNav-menuitem[data-icon=tables]{--vuu-icon-svg: var(--svg-tables)}.vuuLeftNav-menuitem[data-icon=templates]{--vuu-icon-svg: var(--svg-templates)}.vuuLeftNav-menuitem[data-icon=layouts]{--vuu-icon-svg: var(--svg-layouts)}.vuuLeftNav-menuitem-label{white-space:nowrap}.vuuLeftNav-menuitem-active{--vuu-icon-color: var(--vuu-accent-color);background:rgba(255,255,255,.1);border-left:solid 4px var(--vuu-accent-color)}@container (max-width: 100px){.vuuLeftNav-menuitem{padding-left:28px}.vuuLeftNav-menuitem-label{display:none}}.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(--vuu-accent-color);border-width:0;border-radius:18px;height:36px;position:relative;width:36px}.vuuLeftNav-toggleButton-open{--vuu-icon-left: 9px}.vuuShell{background-color:var(--salt-container-primary-background, ivory);height:var(--vuuShell-height, 100vh);width:var(--vuuShell-width, 100vw)}.vuuShell-palette{--vuuView-border: none;--vuuView-margin: 0}.vuuShell-warningPlaceholder{background-color:var(--salt-container-background-high);height:100%}.vuuDialog{background:var(--salt-container-primary-background);border:var(--vuuDialog-border, solid 1px #ccc);border-radius:5px;padding:var(--vuuDialog-padding, 0);box-shadow:var(--salt-overlayable-shadow, none);height:var(--vuuDialog-height, fit-content);width:var(--vuuDialog-width, fit-content)}.vuuDialog-header{--saltButton-height: 28px;--saltButton-width: 28px;--saltToolbar-background: transparent;--saltToolbar-height: calc(var(--salt-size-base) + 5px);border-bottom:solid 1px var(--salt-container-primary-borderColor)}.vuuDialog-header>.Responsive-inner{align-items:center}.vuuDialog-header>.Responsive-inner>:last-child{right:2px}.vuuMenuList{--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: #a4d5f4;--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;border-radius:4px;border:solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, .15));box-shadow:var(--context-menu-shadow);font-size:var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));font-weight:var(--salt-typography-fontWeight-semiBold);list-style:none;margin:2px 0 0;outline:0;overflow:hidden;padding:var(--vuuMenuList-padding, 0);position:absolute}.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);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);-webkit-mask:var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;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:0px;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}.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}.vuuPopupMenu{--saltButton-height: 24px;--saltButton-width: 24px;--vuu-icon-color: #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-radius: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-purple .vuuPopupMenu:hover{--saltButton-background-hover: #F37880}.vuu-theme-purple .vuuPopupMenu-open{--saltButton-background: #6D18BD}
|
|
1730
2
|
/*# sourceMappingURL=index.css.map */
|