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