@vuu-ui/vuu-popups 0.7.6-debug → 0.8.0-debug

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,3 +1,1131 @@
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(--grey60);
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(--grey40);
373
+ }
374
+ .active.Splitter {
375
+ background-color: var(--blue500);
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
+
1
1129
  /* src/dialog/Dialog.css */
2
1130
  .vuuDialog {
3
1131
  background: var(--salt-container-primary-background);
@@ -24,13 +1152,12 @@
24
1152
 
25
1153
  /* src/menu/MenuList.css */
26
1154
  .vuuMenuList {
27
- --context-menu-color: #161616;
1155
+ --context-menu-color: var(--vuuMenuList-color,#161616);
28
1156
  --context-menu-padding: var(--hw-list-item-padding, 0 6px);
29
1157
  --context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
30
1158
  --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
31
1159
  --context-menu-highlight-bg: #a4d5f4;
32
1160
  --context-menu-blur-focus-bg: #e0e4e9;
33
- --menu-item-height: var(--hw-list-item-height, 24px);
34
1161
  --menu-item-icon-color: black;
35
1162
  --menu-item-twisty-color: black;
36
1163
  --menu-item-twisty-content: "";
@@ -41,22 +1168,26 @@
41
1168
  background-clip: padding-box;
42
1169
  background-color: white;
43
1170
  border-radius: 4px;
44
- border: solid 1px rgba(0, 0, 0, 0.15);
1171
+ border: solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, 0.15));
45
1172
  box-shadow: var(--context-menu-shadow);
46
- font-size: var(--salt-text-label-fontSize);
1173
+ font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
47
1174
  font-weight: var(--salt-typography-fontWeight-semiBold);
48
1175
  list-style: none;
49
1176
  margin: 2px 0 0;
50
1177
  outline: 0;
51
- padding: 0;
1178
+ overflow: hidden;
1179
+ padding: var(--vuuMenuList-padding, 0);
52
1180
  position: absolute;
53
1181
  }
54
1182
  .vuuMenuItem {
55
1183
  align-items: center;
1184
+ border-width: 1px;
1185
+ border-color: var(--vuuMenuItem-borderColor, transparent);
1186
+ border-style: var(--vuuMenuItem-borderStyle, none);
56
1187
  color: var(--context-menu-color);
57
1188
  display: flex;
58
1189
  gap: 6px;
59
- height: var(--menu-item-height);
1190
+ height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
60
1191
  padding: var(--context-menu-padding);
61
1192
  padding-right: 24px;
62
1193
  position: relative;
@@ -77,9 +1208,8 @@
77
1208
  }
78
1209
  .vuuMenuItem[aria-haspopup=true]:after {
79
1210
  content: var(--menu-item-twisty-content);
80
- -webkit-mask: var(--svg-chevron-right) center center/12px 12px;
81
- mask: var(--svg-chevron-down) center center/12px 12px;
82
- mask-repeat: no-repeat;
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;
83
1213
  background-color: var(--menu-item-twisty-color);
84
1214
  height: 16px;
85
1215
  left: var(--menu-item-twisty-left);