@vuu-ui/vuu-popups 0.8.2-debug → 0.8.2

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/index.css CHANGED
@@ -1,1306 +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-layout/src/layout-header/Header.css */
636
- .vuuHeader {
637
- --saltToolbar-background: var(--salt-container-tertiary-background);
638
- }
639
- .salt-density-high .vuuHeader {
640
- --saltToolbarField-marginTop: 0;
641
- }
642
-
643
- /* ../vuu-layout/src/palette/Palette.css */
644
- .vuuPalette-horizontal {
645
- align-items: center;
646
- display: flex;
647
- }
648
- .vuuPaletteItem {
649
- --vuu-icon-color: var(--salt-separable-primary-borderColor);
650
- --vuu-icon-inset: calc(50% - 12px) auto auto -3px;
651
- --vuu-icon-height: 24px;
652
- --vuu-icon-width: 24px;
653
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
654
- }
655
- .vuuPaletteItem[data-draggable]:after {
656
- height: 22px;
657
- width: 6px;
658
- content: "";
659
- position: absolute;
660
- background-image:
661
- linear-gradient(45deg, rgb(180, 183, 190) 25%, transparent 25%),
662
- linear-gradient(-45deg, rgb(180, 183, 190) 25%, transparent 25%),
663
- linear-gradient(45deg, transparent 75%, rgb(180, 183, 190) 25%),
664
- linear-gradient(-45deg, transparent 75%, rgb(180, 183, 190) 25%);
665
- background-size: 4px 4px;
666
- background-position:
667
- 0 0,
668
- 2px 0,
669
- 2px -2px,
670
- 0 2px;
671
- }
672
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
673
- --vuu-icon-color: var(--salt-selectable-foreground);
674
- }
675
-
676
- /* ../vuu-layout/src/palette/PaletteSalt.css */
677
- .vuuPalette {
678
- --list-item-header-bg: inherit;
679
- --list-item-header-color: inherit;
680
- --list-item-padding: 0 6px 0 24px;
681
- --list-item-header-twisty-color: black;
682
- --list-item-header-twisty-left: 3px;
683
- --list-item-header-twisty-right: auto;
684
- }
685
-
686
- /* ../vuu-layout/src/stack/Stack.css */
687
- .Tabs {
688
- display: flex;
689
- box-sizing: border-box;
690
- flex-direction: column;
691
- }
692
- .Tabs-horizontal {
693
- flex-direction: row;
694
- }
695
- .Tabs .Toolbar:before {
696
- left: 0;
697
- width: 100%;
698
- bottom: 0;
699
- height: 1px;
700
- content: "";
701
- position: absolute;
702
- background: var(--grey60);
703
- }
704
- .vuuTabHeader {
705
- --saltTabs-activationIndicator-background: transparent;
706
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
707
- border-bottom: solid 1px var(--salt-container-primary-borderColor);
708
- }
709
- .vuuTabHeader + .hwFlexbox,
710
- .vuuTabHeader + * {
711
- flex: 1;
712
- }
713
- .vuuTabHeader + .vuuView > .vuuHeader {
714
- height: 0;
715
- overflow: hidden;
716
- }
717
- .Layout-svg-button {
718
- --spacing-medium: 5px;
719
- }
720
-
721
- /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
722
- [data-design-mode=true] .Component {
723
- filter: grayscale(100%);
724
- opacity: 0.4;
725
- }
726
- [data-design-mode=true] .Component:after {
727
- color: black;
728
- content: "Component";
729
- height: 12px;
730
- background-color: yellow;
731
- }
732
- .LayoutConfigurator {
733
- --margin-color: #f3cea5;
734
- --border-color: #fddda0;
735
- --padding-color: #c6d092;
736
- --content-color: #8cb6c0;
737
- display: flex;
738
- flex-direction: column;
739
- align-items: stretch;
740
- background-color: var(--margin-color);
741
- }
742
- .LayoutConfigurator .layout-outer {
743
- flex: 1 1 auto;
744
- display: flex;
745
- flex-direction: column;
746
- align-items: stretch;
747
- }
748
- .LayoutBox {
749
- --hw-control-font-size: 13px;
750
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
751
- --hwTextInput-padding: 3px;
752
- --hw-text-input-position: absolute;
753
- --hwTextInput-width: 30px;
754
- flex: 1 1 auto;
755
- }
756
- .LayoutBox > .layout-top {
757
- flex: 0 0 40px;
758
- padding-left: 12px;
759
- display: flex;
760
- flex-direction: row;
761
- align-items: center;
762
- position: relative;
763
- }
764
- .LayoutBox > .layout-bottom {
765
- flex: 0 0 40px;
766
- position: relative;
767
- display: flex;
768
- flex-direction: row;
769
- align-items: center;
770
- }
771
- .LayoutBox > .layout-inner > .layout-right,
772
- .LayoutBox > .layout-inner > .layout-left {
773
- flex: 0 0 40px;
774
- display: flex;
775
- flex-direction: column;
776
- justify-content: center;
777
- align-items: center;
778
- }
779
- .layout-top,
780
- .layout-bottom {
781
- --hw-text-input-margin: 0 0 0 -15px;
782
- }
783
- .layout-top > .layout-input,
784
- .layout-bottom > .layout-input {
785
- left: 50%;
786
- }
787
- .LayoutBox > .layout-inner {
788
- flex: 1 1 auto;
789
- display: flex;
790
- flex-direction: row;
791
- align-items: stretch;
792
- }
793
- .LayoutBox.layout-margin {
794
- background-color: var(--margin-color);
795
- border: dashed 2px black;
796
- }
797
- .LayoutBox.layout-border {
798
- background-color: var(--border-color);
799
- border: solid 2px black;
800
- }
801
- .LayoutBox.layout-padding {
802
- background-color: var(--padding-color);
803
- border: dashed 2px black;
804
- }
805
- .LayoutBox .layout-content {
806
- flex: 1 1 auto;
807
- background-color: var(--content-color);
808
- border: solid 2px #808080;
809
- }
810
- .LayoutBox .layout-title {
811
- color: #161616;
812
- font-size: 11px;
813
- left: 4px;
814
- line-height: 15px;
815
- position: absolute;
816
- top: 1px;
817
- }
818
-
819
- /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
820
- .hwLayoutTreeViewer {
821
- }
822
- .hwLayoutTreeNode {
823
- cursor: default;
824
- }
825
- .hwLayoutTreeNode:hover {
826
- background-color: rgba(255, 255, 255, 0.2);
827
- }
828
- .hwLayoutTreeNode[aria-selected=true] {
829
- background-color: cornflowerblue;
830
- color: white;
831
- }
832
-
833
- /* ../vuu-shell/src/login/LoginPanel.css */
834
- .vuuLoginPanel {
835
- --hwTextInput-border: solid 1px #ccc;
836
- --hwTextInput-height: 28px;
837
- --hwTextInput-padding: 0 12px;
838
- --hwTextInput-width: 100%;
839
- --login-row-height: 60px;
840
- align-content: center;
841
- align-items: center;
842
- border: solid 1px lightgray;
843
- display: flex;
844
- flex-direction: column;
845
- gap: 24px;
846
- justify-content: center;
847
- justify-items: center;
848
- margin: 0 auto;
849
- padding: 48px 48px 24px 48px;
850
- width: fit-content;
851
- }
852
- .vuuLoginPanel-login {
853
- grid-column: 2/3;
854
- align-self: end;
855
- justify-self: end;
856
- }
857
-
858
- /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
859
- .vuuSessionEditingForm {
860
- display: flex;
861
- flex-direction: column;
862
- gap: 3px;
863
- min-width: 400px;
864
- padding: 6px;
865
- }
866
- .vuuSessionEditingForm-content {
867
- display: flex;
868
- flex-direction: column;
869
- flex: 1 1 auto;
870
- gap: 3px;
871
- overflow: auto;
872
- }
873
- .vuuSessionEditingForm-field {
874
- align-items: center;
875
- display: flex;
876
- height: 32px;
877
- }
878
- .vuuSessionEditingForm-fieldLabel {
879
- flex: 0 0 50%;
880
- }
881
- .vuuSessionEditingForm-fieldValue {
882
- max-width: 50%;
883
- }
884
- .vuuSessionEditingForm-fieldValue.vuuReadOnly {
885
- font-weight: var(--salt-text-label-fontWeight-strong);
886
- }
887
- .vuuSessionEditingForm-buttonbar {
888
- align-items: center;
889
- border-top: solid 1px var(--salt-container-primary-borderColor);
890
- display: flex;
891
- justify-content: flex-end;
892
- flex: 0 0 autox;
893
- gap: 6px;
894
- padding-top: 6px;
895
- }
896
- .vuuSessionEditingForm-errorBanner {
897
- --vuu-icon-left: 3px;
898
- --vuu-icon-size: 18px;
899
- --vuu-icon-top: 3px;
900
- border: solid 1px var(--salt-status-error-borderColor);
901
- line-height: 24px;
902
- padding: 0 6px 0 26px;
903
- position: relative;
904
- }
905
-
906
- /* ../vuu-shell/src/user-profile/UserPanel.css */
907
- .vuuUserPanel {
908
- background-color: white;
909
- display: flex;
910
- flex-direction: column;
911
- max-height: 400px;
912
- padding: 12px;
913
- }
914
- vuuUserPanel-history {
915
- flex: 1 1 auto;
916
- }
917
- .vuuUserPanel-buttonBar {
918
- --saltButton-width: 100%;
919
- align-items: flex-end;
920
- border-top: 1px solid var(--surface3);
921
- display: flex;
922
- flex: 0 0 32px;
923
- justify-content: flex-start;
924
- }
925
- .btn-logout {
926
- --hwButton-icon-left: 12px;
927
- --hwButton-padding: 0 6px 0 24px;
928
- padding-left: 24px;
929
- }
930
-
931
- /* ../vuu-shell/src/user-profile/UserProfile.css */
932
- .vuuUserProfile {
933
- --svg-icon: var(--svg-user);
934
- }
935
-
936
- /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
937
- .vuuThemeSwitch {
938
- --saltButton-minWidth: 22px;
939
- }
940
- .vuuThemeSwitch {
941
- --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>');
942
- --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>');
943
- }
944
- .salt-density-high .vuuThemeSwitch {
945
- --saltButton-minWidth: 16px;
946
- --saltButton-width: 18px;
947
- --vuuThemeSwitch-iconSize: 16px;
948
- }
949
- .vuuThemeSwitch [data-icon] {
950
- --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
951
- }
952
- .vuuThemeSwitch [data-icon=light] {
953
- --vuu-icon-svg: var(--svg-light);
954
- }
955
- .vuuThemeSwitch [data-icon=dark] {
956
- --vuu-icon-svg: var(--svg-dark);
957
- }
958
-
959
- /* ../vuu-shell/src/app-header/AppHeader.css */
960
- .vuuAppHeader {
961
- align-items: center;
962
- border-bottom: solid 1px var(--salt-container-secondary-borderColor);
963
- display: flex;
964
- height: 40px;
965
- justify-content: flex-end;
966
- }
967
- .vuu-purple-theme .vuuAppHeader {
968
- border-radius: 8px;
969
- border: 1px solid #D6D7DA;
970
- height: 44px;
971
- margin-bottom: 8px;
972
- }
973
-
974
- /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
975
- .vuuContextPanel {
976
- position: relative;
977
- transition: width .3s ease-in-out;
978
- width: var(--vuu-side-panel-width, 0px) !important;
979
- z-index: 1;
980
- }
981
- .vuuContextPanel-expanded {
982
- --vuu-side-panel-width: 300px !important;
983
- --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
984
- --vuu-side-panel-padding: 24px;
985
- }
986
- .vuuContextPanel-overlay {
987
- width: 0px !important;
988
- }
989
- .vuuContextPanel-inner {
990
- background-color: var(--salt-container-primary-background);
991
- box-shadow: var(--vuu-side-panel-shadow, none);
992
- height: 100%;
993
- padding-bottom: 24px;
994
- padding-top: 24px;
995
- padding-left: var(--vuu-side-panel-padding, 0);
996
- padding-right: var(--vuu-side-panel-padding, 0);
997
- position: absolute;
998
- right: 0;
999
- top: 0;
1000
- transition-property:
1001
- padding-left,
1002
- padding-right,
1003
- width;
1004
- transition-duration: .3s;
1005
- transition-timing-function: ease-in-out;
1006
- width: var(--vuu-side-panel-width, 0px);
1007
- }
1008
- .vuuContextPanel-header {
1009
- align-items: center;
1010
- display: flex;
1011
- flex-wrap: nowrap;
1012
- height: 27px;
1013
- justify-content: space-between;
1014
- }
1015
- .vuuContextPanel-title {
1016
- font-size: 20px;
1017
- font-weight: 700;
1018
- white-space: nowrap;
1019
- }
1020
-
1021
- /* ../vuu-shell/src/left-nav/LeftNav.css */
1022
- .vuuLeftNav {
1023
- --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>');
1024
- --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>');
1025
- --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>');
1026
- --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>');
1027
- --vuu-accent-color: #f37880;
1028
- --vuu-light-text-primary: #15171b;
1029
- background-color: #2A015F;
1030
- container-type: inline-size;
1031
- display: flex;
1032
- flex-direction: column;
1033
- padding: 32px 16px;
1034
- transition: width .3s ease-in-out;
1035
- }
1036
- .vuuLeftNav-logo {
1037
- display: flex;
1038
- flex: 0 0 auto;
1039
- justify-content: center;
1040
- }
1041
- .vuuLeftNav-main {
1042
- flex: 1 1 auto;
1043
- }
1044
- .vuuLeftNav-menu {
1045
- color: white;
1046
- margin-top: 102px;
1047
- padding: 0;
1048
- }
1049
- .vuuLeftNav-menuitem {
1050
- --vuu-icon-color: white;
1051
- align-items: center;
1052
- border-radius: 6px;
1053
- display: flex;
1054
- font-weight: 700;
1055
- height: 40px;
1056
- line-height: 24px;
1057
- list-style: none;
1058
- padding: 8px 16px 8px 48px;
1059
- }
1060
- .vuuLeftNav-menuitem[data-icon] {
1061
- --vuu-icon-left: 32px;
1062
- --vuu-icon-size: 16px;
1063
- }
1064
- .vuuLeftNav-menuitem[data-icon=demo] {
1065
- --vuu-icon-svg: var(--svg-demo);
1066
- }
1067
- .vuuLeftNav-menuitem[data-icon=tables] {
1068
- --vuu-icon-svg: var(--svg-tables);
1069
- }
1070
- .vuuLeftNav-menuitem[data-icon=templates] {
1071
- --vuu-icon-svg: var(--svg-templates);
1072
- }
1073
- .vuuLeftNav-menuitem[data-icon=layouts] {
1074
- --vuu-icon-svg: var(--svg-layouts);
1075
- }
1076
- .vuuLeftNav-menuitem-label {
1077
- white-space: nowrap;
1078
- }
1079
- .vuuLeftNav-menuitem-active {
1080
- --vuu-icon-color: var(--vuu-accent-color);
1081
- background: rgba(255, 255, 255, 0.10);
1082
- border-left: solid 4px var(--vuu-accent-color);
1083
- }
1084
- @container (max-width: 100px) {
1085
- .vuuLeftNav-menuitem {
1086
- padding-left: 28px;
1087
- }
1088
- .vuuLeftNav-menuitem-label {
1089
- display: none;
1090
- }
1091
- }
1092
- .vuuLeftNav-buttonBar {
1093
- align-items: center;
1094
- display: flex;
1095
- flex: 0 0 100px;
1096
- justify-content: center;
1097
- }
1098
- .vuuLeftNav-toggleButton {
1099
- --vuu-icon-color: var(--vuu-light-text-primary);
1100
- --vuu-icon-left: 11px;
1101
- --vuu-icon-top: 10px;
1102
- --vuu-icon-size: 16px;
1103
- background-color: var(--vuu-accent-color);
1104
- border-width: 0;
1105
- border-radius: 18px;
1106
- height: 36px;
1107
- position: relative;
1108
- width: 36px;
1109
- }
1110
- .vuuLeftNav-toggleButton-open {
1111
- --vuu-icon-left: 9px;
1112
- }
1113
-
1114
- /* ../vuu-shell/src/shell.css */
1115
- .vuuShell {
1116
- background-color: var(--salt-container-primary-background, ivory);
1117
- height: var(--vuuShell-height, 100vh);
1118
- width: var(--vuuShell-width, 100vw);
1119
- }
1120
- .vuuShell-palette {
1121
- --vuuView-border: none;
1122
- --vuuView-margin: 0;
1123
- }
1124
- .vuuShell-warningPlaceholder {
1125
- background-color: var(--salt-container-background-high);
1126
- height: 100%;
1127
- }
1128
-
1129
- /* src/dialog/Dialog.css */
1130
- .vuuDialog {
1131
- background: var(--salt-container-primary-background);
1132
- border: var(--vuuDialog-border, solid 1px #ccc);
1133
- border-radius: 5px;
1134
- padding: var(--vuuDialog-padding, 0);
1135
- box-shadow: var(--salt-overlayable-shadow, none);
1136
- height: var(--vuuDialog-height, fit-content);
1137
- width: var(--vuuDialog-width, fit-content);
1138
- }
1139
- .vuuDialog-header {
1140
- --saltButton-height: 28px;
1141
- --saltButton-width: 28px;
1142
- --saltToolbar-background: transparent;
1143
- --saltToolbar-height: calc(var(--salt-size-base) + 5px);
1144
- border-bottom: solid 1px var(--salt-container-primary-borderColor);
1145
- }
1146
- .vuuDialog-header > .Responsive-inner {
1147
- align-items: center;
1148
- }
1149
- .vuuDialog-header > .Responsive-inner > :last-child {
1150
- right: 2px;
1151
- }
1152
-
1153
- /* src/menu/MenuList.css */
1154
- .vuuMenuList {
1155
- --context-menu-color: var(--vuuMenuList-color,#161616);
1156
- --context-menu-padding: var(--hw-list-item-padding, 0 6px);
1157
- --context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
1158
- --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
1159
- --context-menu-highlight-bg: #a4d5f4;
1160
- --context-menu-blur-focus-bg: #e0e4e9;
1161
- --menu-item-icon-color: black;
1162
- --menu-item-twisty-color: black;
1163
- --menu-item-twisty-content: "";
1164
- --menu-item-twisty-top: 50%;
1165
- --menu-item-twisty-left: auto;
1166
- --menu-item-twisty-right: 0px;
1167
- --menu-icon-size: 12px;
1168
- background-clip: padding-box;
1169
- background-color: white;
1170
- border-radius: 4px;
1171
- border: solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, 0.15));
1172
- box-shadow: var(--context-menu-shadow);
1173
- font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
1174
- font-weight: var(--salt-typography-fontWeight-semiBold);
1175
- list-style: none;
1176
- margin: 2px 0 0;
1177
- outline: 0;
1178
- overflow: hidden;
1179
- padding: var(--vuuMenuList-padding, 0);
1180
- position: absolute;
1181
- }
1182
- .vuuMenuItem {
1183
- align-items: center;
1184
- border-width: 1px;
1185
- border-color: var(--vuuMenuItem-borderColor, transparent);
1186
- border-style: var(--vuuMenuItem-borderStyle, none);
1187
- color: var(--context-menu-color);
1188
- display: flex;
1189
- gap: 6px;
1190
- height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
1191
- padding: var(--context-menu-padding);
1192
- padding-right: 24px;
1193
- position: relative;
1194
- white-space: nowrap;
1195
- }
1196
- .vuuIconContainer {
1197
- display: inline-block;
1198
- flex: 12px 0 0;
1199
- height: var(--menu-icon-size);
1200
- mask-repeat: no-repeat;
1201
- width: var(--menu-icon-size);
1202
- }
1203
- .vuuMenuItem[aria-expanded=true] {
1204
- background-color: var(--context-menu-blur-focus-bg);
1205
- }
1206
- .vuuMenuItem-separator {
1207
- border-top: solid 1px var(--context-menu-blur-focus-bg);
1208
- }
1209
- .vuuMenuItem[aria-haspopup=true]:after {
1210
- content: var(--menu-item-twisty-content);
1211
- -webkit-mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
1212
- mask: var(---vuu-svg-chevron-right) center center/8px 8px no-repeat;
1213
- background-color: var(--menu-item-twisty-color);
1214
- height: 16px;
1215
- left: var(--menu-item-twisty-left);
1216
- right: var(--menu-item-twisty-right);
1217
- margin-top: -8px;
1218
- position: absolute;
1219
- top: var(--menu-item-twisty-top);
1220
- transition: transform 0.3s;
1221
- width: 16px;
1222
- }
1223
- .vuuMenuItem[data-highlighted] {
1224
- background-color: var(--context-menu-highlight-bg);
1225
- }
1226
- .vuuMenuItem:hover {
1227
- background-color: var(--context-menu-highlight-bg);
1228
- cursor: default;
1229
- }
1230
- .vuuMenuList-childMenuShowing .hwMenuItem[data-highlighted] {
1231
- background-color: var(--context-menu-blur-focus-bg);
1232
- }
1233
- .vuuMenuItem.focusVisible:before {
1234
- content: "";
1235
- position: absolute;
1236
- top: 0;
1237
- left: 0;
1238
- right: 0;
1239
- bottom: 0px;
1240
- border: dotted var(--focus-visible-border-color) 2px;
1241
- }
1242
- .vuuPopupContainer.top-bottom-right-right .popup-menu {
1243
- left: auto;
1244
- right: 0;
1245
- }
1246
- .popup-menu .menu-item.showing > button,
1247
- .popup-menu .menu-item > button:focus,
1248
- .popup-menu .menu-item > button:hover {
1249
- text-decoration: none;
1250
- color: rgb(0, 0, 0);
1251
- background-color: rgb(220, 220, 220);
1252
- }
1253
- .vuuMenuItem-button:active,
1254
- .hwMenuItem-button:hover {
1255
- outline: 0;
1256
- }
1257
- .popup-menu .menu-item.disabled > button {
1258
- clear: both;
1259
- font-weight: normal;
1260
- line-height: 1.5;
1261
- color: rgb(120, 120, 120);
1262
- white-space: nowrap;
1263
- text-decoration: none;
1264
- cursor: default;
1265
- }
1266
-
1267
- /* src/popup/popup-service.css */
1268
- .vuuPopup {
1269
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1270
- position: absolute;
1271
- top: 0;
1272
- left: 0;
1273
- width: 0;
1274
- height: 0;
1275
- overflow: visible;
1276
- z-index: 1000;
1277
- }
1278
- .vuuPopup {
1279
- position: absolute;
1280
- }
1281
-
1282
- /* src/popup-menu/PopupMenu.css */
1283
- .vuuPopupMenu {
1284
- --vuu-icon-color: #606477;
1285
- --vuu-icon-height: 20px;
1286
- --vuu-icon-left: 0px;
1287
- --vuu-icon-size: 16px;
1288
- --vuu-icon-top: 0px;
1289
- --vuu-icon-width: 20px;
1290
- background: var(--vuuPopupMenu-background, transparent);
1291
- border-radius: 4px;
1292
- cursor: pointer;
1293
- display: inline-block;
1294
- margin-top: 2px;
1295
- padding: 2px;
1296
- }
1297
- .vuuPopupMenu:hover {
1298
- --vuu-icon-color: #15171B;
1299
- background-color: #F37880;
1300
- }
1301
- .vuuPopupMenu-open:hover,
1302
- .vuuPopupMenu-open {
1303
- background-color: #6D18BD;
1304
- --vuu-icon-color: white;
1305
- }
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}.vuuHeader{--saltToolbar-background: var(--salt-container-tertiary-background)}.salt-density-high .vuuHeader{--saltToolbarField-marginTop: 0}.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 .hwMenuItem[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,.hwMenuItem-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{--vuu-icon-color: #606477;--vuu-icon-height: 20px;--vuu-icon-left: 0px;--vuu-icon-size: 16px;--vuu-icon-top: 0px;--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: #15171B;background-color:#f37880}.vuuPopupMenu-open:hover,.vuuPopupMenu-open{background-color:#6d18bd;--vuu-icon-color: white}
1306
2
  /*# sourceMappingURL=index.css.map */