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