@vuu-ui/vuu-popups 0.8.8-debug → 0.8.9-debug

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.css CHANGED
@@ -289,7 +289,7 @@
289
289
  /* ../vuu-layout/src/drag-drop/DropTargetRenderer.css */
290
290
  #hw-drag-canvas {
291
291
  visibility: hidden;
292
- z-index: 1;
292
+ z-index: 10;
293
293
  position: absolute;
294
294
  top: 0px;
295
295
  left: 0;
@@ -352,15 +352,17 @@ path.drop-target.centre {
352
352
  }
353
353
 
354
354
  /* ../vuu-layout/src/flexbox/Splitter.css */
355
- .Splitter {
355
+ .vuuSplitter {
356
+ --splitter-background: var(--salt-separable-secondary-borderColor);
357
+ --splitter-borderColor: var(--salt-separable-secondary-borderColor);
358
+ --splitter-borderStyle: none;
359
+ --splitter-borderWidth: 0;
356
360
  --splitter-size: 3px;
357
- --splitter-border-width: 4px;
358
- --splitter-border-style: none;
359
- --splitter-border-color: white;
360
361
  align-items: center;
361
- background-color: var(--salt-palette-neutral-secondary-separator);
362
- border-color: var(--splitter-border-color);
363
- border-style: var(--splitter-border-style);
362
+ background-color: var(--splitter-background);
363
+ border-color: var(--splitter-borderColor);
364
+ border-style: var(--splitter-borderStyle);
365
+ border-width: var(--splitter-borderWidth);
364
366
  box-sizing: border-box;
365
367
  display: flex;
366
368
  justify-content: center;
@@ -368,63 +370,61 @@ path.drop-target.centre {
368
370
  outline: none;
369
371
  z-index: 1;
370
372
  }
371
- .Splitter:hover {
372
- background-color: var(--salt-palette-neutral-primary-separator);
373
+ .vuuSplitter:hover {
374
+ --splitter-background: var(--salt-separable-primary-borderColor);
373
375
  }
374
- .active.Splitter {
375
- background-color: var(--salt-palette-interact-outline);
376
+ .vuuSplitter-active {
377
+ --splitter-background: var(--salt-separable-primary-borderColor);
376
378
  }
377
- .Splitter.column {
379
+ .vuuSplitter-column {
378
380
  cursor: ns-resize;
379
381
  height: var(--splitter-size);
380
- border-width: var(--splitter-border-width) 0;
381
382
  }
382
- .Splitter:not(.column) {
383
+ .vuuSplitter:not(.vuuSplitter-column) {
383
384
  cursor: ew-resize;
384
385
  width: var(--splitter-size);
385
- border-width: 0 var(--splitter-border-width);
386
386
  }
387
- .Splitter:before {
387
+ .vuuSplitter:before {
388
388
  border: none;
389
389
  border-radius: 0;
390
390
  content: "";
391
391
  display: block;
392
392
  padding: 0;
393
393
  }
394
- .Splitter .grab-zone {
394
+ .vuuSplitter-grab-zone {
395
395
  position: absolute;
396
396
  background-color: rgba(255, 0, 0, 0.01);
397
397
  cursor: inherit;
398
398
  }
399
- .Splitter.column .grab-zone {
399
+ .vuuSplitter-column .vuuSplitter-grab-zone {
400
400
  left: 0;
401
401
  right: 0;
402
402
  top: -5px;
403
403
  bottom: -5px;
404
404
  }
405
- .Splitter:not(.column) .grab-zone {
405
+ .vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
406
406
  left: -5px;
407
407
  right: -5px;
408
408
  top: 0;
409
409
  bottom: 0;
410
410
  }
411
- .active.Splitter:not(.column) .grab-zone {
411
+ .vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
412
412
  background-color: rgba(255, 255, 255, .05);
413
413
  left: -150px;
414
414
  right: -150px;
415
415
  }
416
- .Splitter:not(.column):before {
416
+ .vuuSplitter:not(.vuuSplitter-column):before {
417
417
  width: 1px;
418
418
  height: 10px;
419
419
  background: linear-gradient(to bottom, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
420
420
  }
421
- .active.Splitter.column:before {
421
+ .vuuSplitter-active.vuuSplitter-column:before {
422
422
  background: linear-gradient(to right, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
423
423
  }
424
- .active.Splitter:not(.column):before {
424
+ .vuuSplitter-active:not(.vuuSplitter-column):before {
425
425
  background: linear-gradient(to bottom, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
426
426
  }
427
- .Splitter.column:before {
427
+ .vuuSplitter-column:before {
428
428
  width: 10px;
429
429
  height: 1px;
430
430
  background: linear-gradient(to right, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
@@ -580,104 +580,67 @@ path.drop-target.centre {
580
580
  background: repeating-linear-gradient(to right, var(--hw-fluid-grid-col-bg) 0, var(--hw-fluid-grid-col-bg) var(--column-width), white var(--column-width), white calc(var(--column-width) + var(--gutter-width)));
581
581
  }
582
582
 
583
- /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
584
- .vuuDraggable {
585
- background: transparent;
586
- box-shadow: var(--salt-overlayable-shadow-drag);
587
- cursor: var(--salt-draggable-grab-cursor-active);
588
- position: absolute;
589
- opacity: .95;
590
- z-index: 2000;
591
- }
592
- .vuuDraggable-spacer {
593
- display: var(--vuuDraggable-display, inline-block);
594
- height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
595
- transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
596
- width: var(--vuuDraggable-spacer-width, 0);
583
+ /* ../vuu-ui-controls/src/dropdown/Dropdown.css */
584
+ .vuuDropdown {
585
+ --saltIcon-margin: 2px 0 0 8px;
586
+ --saltButton-borderStyle: solid;
587
+ --saltButton-borderColor: var(--salt-editable-borderColor);
588
+ --saltButton-borderWidth: 1px;
589
+ --saltButton-borderRadius: 6px;
590
+ --saltButton-height: var(--vuuDropdown-height, auto);
591
+ display: inline-block;
592
+ line-height: 0;
593
+ position: relative;
594
+ width: var(--vuuDropdown-width, auto);
597
595
  }
598
- .vuuDraggable-dropIndicatorPosition {
599
- display: var(--saltDraggable-display, inline-block);
600
- height: 0px;
596
+ .vuuDropdown-fullWidth {
601
597
  width: 100%;
602
598
  }
603
- .vuuDraggable-dropIndicatorContainer {
604
- transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
599
+ .vuuDropdown-popup {
600
+ background: var(--salt-container-primary-background);
601
+ z-index: calc(var(--salt-zIndex-flyover) - 1);
605
602
  }
606
- .vuuDraggable-dropIndicator {
607
- background-color: var(--salt-palette-accent-background);
608
- height: 2px;
603
+ .vuuDropdown-popup-component {
604
+ --vuuList-borderStyle: none;
605
+ }
606
+ .vuuDropdownButton {
609
607
  width: 100%;
610
608
  }
611
- .vuuDraggable-dropIndicator:before {
612
- content: "";
613
- width: 6px;
614
- height: 6px;
615
- border-radius: 3px;
616
- background-color: var(--salt-palette-accent-background);
617
- position: absolute;
618
- top: -2px;
619
- left: -3px;
609
+
610
+ /* ../vuu-ui-controls/src/dropdown/DropdownButton.css */
611
+ .vuuDropdownButton {
612
+ --saltButton-background-hover: var(--salt-actionable-secondary-background);
613
+ --saltButton-background-active: var(--salt-actionable-secondary-background);
614
+ --saltButton-fontWeight: var(--salt-text-fontWeight-strong);
615
+ --saltButton-textAlign: left;
616
+ --saltButton-textTransform: none;
617
+ --saltButton-width: 100%;
618
+ --vuu-icon-size: 16px;
620
619
  }
621
- .vuuDraggable-settling {
622
- transition-property: left, top;
623
- transition-duration: .15s;
624
- transition-timing-function: ease-out;
620
+ .vuuDropdownButton:active {
621
+ --saltIcon-color: var(--salt-actionable-secondary-foreground);
622
+ --saltButton-text-color-active: var(--salt-actionable-secondary-foreground);
625
623
  }
626
- .vuuDraggable-spacer {
627
- order: 1;
624
+ .vuuDropdownButton-fullwidth {
625
+ width: 100%;
628
626
  }
629
-
630
- /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
631
- .vuuEditableLabel {
632
- --saltInput-background: transparent;
633
- --saltInput-minWidth: 14px;
634
- --saltInput-position: absolute;
635
- --editableLabel-padding: var(--saltEditableLabel-padding, 6px);
636
- --editableLabel-height: var(--saltEditableLabel-height, 26px);
637
- color: inherit;
638
- cursor: default;
627
+ .vuuDropdownButton-content {
628
+ align-items: center;
629
+ flex: 1;
630
+ width: 100%;
639
631
  display: flex;
640
- flex-direction: column;
641
- font-size: var(--salt-text-fontSize);
642
- height: var(--editableLabel-height);
643
- justify-content: center;
644
- outline: none;
645
- padding: 0 var(--editableLabel-padding);
646
- position: relative;
647
- z-index: var(--salt-zIndex-default);
648
- }
649
- .vuuEditableLabel:before {
650
- content: attr(data-text);
651
- display: block;
652
- height: 0px;
653
- visibility: hidden;
654
- white-space: pre-wrap;
655
- }
656
- .vuuEditableLabel .saltInput {
657
- font-weight: var(--salt-text-fontWeight);
658
- left: var(--editableLabel-padding, 0);
659
- padding: 0;
660
- outline-style: none;
661
- position: absolute;
662
- right: var(--editableLabel-padding, 0);
663
- top: var(--saltEditableLabel-top, 2px);
664
- width: auto;
632
+ white-space: nowrap;
665
633
  }
666
- .vuuEditableLabel .saltInput-activationIndicator {
667
- display: none;
634
+ .vuuDropdownButton-buttonLabel {
635
+ display: inline-block;
636
+ letter-spacing: 0;
637
+ overflow: hidden;
638
+ text-overflow: ellipsis;
639
+ width: 100%;
668
640
  }
669
- .vuuEditableLabel-input {
670
- background-color: transparent;
671
- border: none;
672
- box-sizing: content-box;
673
- display: block;
674
- flex: 1;
675
- font: inherit;
676
- height: 20px;
677
- margin: 0;
678
- min-width: 0;
641
+ .vuuDropdownButton-formField.saltButton:focus,
642
+ .vuuDropdownButton-formField.saltButton:focus-visible {
679
643
  outline: none;
680
- padding: 0;
681
644
  }
682
645
 
683
646
  /* ../vuu-ui-controls/src/list/Highlighter.css */
@@ -687,7 +650,7 @@ path.drop-target.centre {
687
650
 
688
651
  /* ../vuu-ui-controls/src/list/CheckboxIcon.css */
689
652
  .vuuCheckboxIcon {
690
- --vuu-icon-size: 14px;
653
+ --vuu-icon-size: 12px;
691
654
  --vuu-icon-left: -1px;
692
655
  --vuu-icon-top: -1px;
693
656
  --vuu-icon-svg: var(--vuu-svg-tick);
@@ -696,9 +659,9 @@ path.drop-target.centre {
696
659
  border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
697
660
  border-width: 1px;
698
661
  display: inline-block;
699
- height: var(--vuuCheckboxIcon-size, 14px);
662
+ height: var(--vuuCheckboxIcon-size, 12px);
700
663
  position: relative;
701
- width: var(--vuuCheckboxIcon-size, 14px);
664
+ width: var(--vuuCheckboxIcon-size, 12px);
702
665
  }
703
666
  .vuuCheckboxIcon-checked {
704
667
  background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
@@ -726,7 +689,7 @@ path.drop-target.centre {
726
689
  --list-item-background-active: var(--salt-selectable-background-selected);
727
690
  --list-item-alignItems: center;
728
691
  }
729
- .vuuListItem.saltHighlighted {
692
+ .vuuListItem.vuuHighlighted {
730
693
  --saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
731
694
  --list-item-background: var(--salt-selectable-background-hover);
732
695
  }
@@ -747,7 +710,7 @@ path.drop-target.centre {
747
710
  line-height: var(--salt-text-lineHeight);
748
711
  height: var(--vuuList-item-height, var(--list-item-height, auto));
749
712
  margin-bottom: var(--list-item-gap);
750
- padding: 0 var(--salt-size-unit);
713
+ padding: 0 var(--vuuListItem-padding, var(--salt-size-unit));
751
714
  left: 0;
752
715
  right: 0;
753
716
  display: flex;
@@ -767,7 +730,7 @@ path.drop-target.centre {
767
730
  --list-item-background: var(--list-item-background-active);
768
731
  color: var(--list-item-text-color-active);
769
732
  }
770
- .vuuListItem.saltDisabled {
733
+ .vuuListItem.vuuDisabled {
771
734
  --list-item-text-color: var(--salt-text-primary-foreground-disabled);
772
735
  cursor: var(--salt-selectable-cursor-disabled);
773
736
  }
@@ -802,10 +765,57 @@ path.drop-target.centre {
802
765
  display: none;
803
766
  }
804
767
 
768
+ /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
769
+ .vuuDraggable {
770
+ background: transparent;
771
+ box-shadow: var(--salt-overlayable-shadow-drag);
772
+ cursor: var(--salt-draggable-grab-cursor-active);
773
+ position: absolute;
774
+ opacity: .95;
775
+ z-index: 2000;
776
+ }
777
+ .vuuDraggable-spacer {
778
+ display: var(--vuuDraggable-display, inline-block);
779
+ height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
780
+ transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
781
+ width: var(--vuuDraggable-spacer-width, 0);
782
+ }
783
+ .vuuDraggable-dropIndicatorPosition {
784
+ display: var(--saltDraggable-display, inline-block);
785
+ height: 0px;
786
+ width: 100%;
787
+ }
788
+ .vuuDraggable-dropIndicatorContainer {
789
+ transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
790
+ }
791
+ .vuuDraggable-dropIndicator {
792
+ background-color: var(--salt-palette-accent-background);
793
+ height: 2px;
794
+ width: 100%;
795
+ }
796
+ .vuuDraggable-dropIndicator:before {
797
+ content: "";
798
+ width: 6px;
799
+ height: 6px;
800
+ border-radius: 3px;
801
+ background-color: var(--salt-palette-accent-background);
802
+ position: absolute;
803
+ top: -2px;
804
+ left: -3px;
805
+ }
806
+ .vuuDraggable-settling {
807
+ transition-property: left, top;
808
+ transition-duration: .15s;
809
+ transition-timing-function: ease-out;
810
+ }
811
+ .vuuDraggable-spacer {
812
+ order: 1;
813
+ }
814
+
805
815
  /* ../vuu-ui-controls/src/list/List.css */
806
816
  .vuuList {
807
817
  --list-background: var(--salt-container-primary-background);
808
- --list-borderStyle: var(--vuuList-borderStyle,--salt-container-borderStyle);
818
+ --list-borderStyle: var(--vuuList-borderStyle,var(--salt-container-borderStyle));
809
819
  --list-borderWidth: var(--salt-size-border);
810
820
  --list-height: auto;
811
821
  --list-item-height: var(--salt-size-stackable);
@@ -815,6 +825,7 @@ path.drop-target.centre {
815
825
  --vuuDraggable-spacer-height: 0;
816
826
  --vuuDraggable-spacer-width: 100%;
817
827
  --vuuDraggable-transitionProp: height;
828
+ --vuuMeasuredContainer-height: var(--computed-list-height);
818
829
  background: var(--list-background);
819
830
  border-color: var(--salt-container-primary-borderColor);
820
831
  border-style: var(--list-borderStyle);
@@ -822,18 +833,20 @@ path.drop-target.centre {
822
833
  height: var(--saltList-height, var(--list-height));
823
834
  max-height: var(--list-maxHeight);
824
835
  outline: none;
825
- overflow-y: auto;
826
836
  position: relative;
827
837
  user-select: none;
828
838
  width: var(--saltList-width, auto);
829
839
  }
840
+ .vuuList-contentSized {
841
+ box-sizing: content-box;
842
+ }
830
843
  .vuuList-borderless {
831
844
  --list-borderStyle: none;
832
845
  }
833
846
  .vuuList-viewport {
834
- --list-item-height: 30px;
835
- max-height: calc(var(--list-maxHeight) - 2 * var(--list-borderWidth));
847
+ height: var(--computed-list-height, var(--measured-px-height));
836
848
  overflow: auto;
849
+ width: var(--measured-px-width);
837
850
  }
838
851
  .vuuListItemHeader {
839
852
  --saltList-item-background: var(--list-item-header-background);
@@ -880,81 +893,2112 @@ path.drop-target.centre {
880
893
  inset: 2px;
881
894
  }
882
895
 
883
- /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
884
- .vuuTabstrip {
885
- --vuuOverflowContainer-background: transparent;
886
- --tabstrip-dragging-display: none;
887
- --tabstrip-display: inline-flex;
888
- --tabstrip-background: transparent;
889
- align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
890
- font-size: var(--salt-text-fontSize);
891
- font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
896
+ /* ../vuu-ui-controls/src/list/RadioIcon.css */
897
+ .vuuRadioIcon {
898
+ --vuu-icon-size: 12px;
899
+ --vuu-icon-left: -1px;
900
+ --vuu-icon-top: -1px;
901
+ --vuu-icon-svg: var(--vuu-svg-radio);
902
+ border-style: solid;
903
+ border-color: var(--vuuRadioIcon-borderColor, var(--salt-selectable-borderColor));
904
+ border-radius: 50%;
905
+ border-width: 1px;
906
+ display: inline-block;
907
+ height: var(--vuuRadioIcon-size, 12px);
892
908
  position: relative;
893
- overflow: visible;
894
- display: flex;
895
- min-width: 28px;
896
- width: var(--tabstrip-width);
909
+ width: var(--vuuRadioIcon-size, 12px);
897
910
  }
898
- .vuuTabstrip-horizontal {
899
- --tabstrip-height: var(--vuuTabstrip-height, 28px);
900
- --tabstrip-width: var(--vuuTabstrip-width, 100%);
901
- --tab-width: auto;
902
- --tab-thumb-height: 2px;
903
- --tab-thumb-left: var(--tab-thumb-offset, 0);
904
- --tab-thumb-top: auto;
905
- --tab-thumb-width: var(--tab-thumb-size, 100%);
906
- align-items: flex-start;
907
- border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
911
+ .vuuRadioIcon-checked {
912
+ background-image: var(--vuu-svg-radio);
913
+ border: none;
914
+ background-repeat: no-repeat;
908
915
  }
909
- .vuuTabstrip-vertical {
910
- --tabstrip-height: var(--vuuTabstrip-height, 100%);
911
- --tabstrip-width: var(--vuuTabstrip-width, 100px);
912
- --tab-width: 100%;
913
- --tab-thumb-height: var(--tab-thumb-size, 100%);
914
- --tab-thumb-left: 0;
915
- --tab-thumb-top: var(--tab-thumb-offset, 0);
916
- --tab-thumb-width: 2px;
917
- align-self: flex-start;
918
- display: inline-flex;
916
+ .vuuRadioIcon-checked:after {
917
+ content: "";
918
+ left: var(--vuu-icon-left, auto);
919
+ height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
920
+ -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
921
+ mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
922
+ mask-repeat: no-repeat;
923
+ -webkit-mask-repeat: no-repeat;
924
+ position: absolute;
925
+ top: var(--vuu-icon-top, auto);
926
+ width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
919
927
  }
920
- .vuuTabstrip-draggingTab .vuuTab {
921
- pointer-events: none;
928
+
929
+ /* ../vuu-ui-controls/src/list/ChevronIcon.css */
930
+ .vuuChevronIcon {
931
+ --vuu-icon-size: 14px;
932
+ --vuu-icon-left: -1px;
933
+ --vuu-icon-top: -1px;
934
+ height: var(--vuuChevronIcon-size, 14px);
935
+ position: relative;
936
+ width: var(--vuuChevronIcon-size, 14px);
937
+ cursor: pointer;
922
938
  }
923
- .vuuTabstrip-addTabButton {
924
- --saltButton-height: 20px;
925
- --saltButton-width: 20px;
939
+ .vuuChevronIcon:after {
940
+ content: "";
941
+ background-color: #777C94;
942
+ left: var(--vuu-icon-left, auto);
943
+ height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
944
+ -webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
945
+ mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
946
+ mask-repeat: no-repeat;
947
+ -webkit-mask-repeat: no-repeat;
948
+ position: absolute;
949
+ top: var(--vuu-icon-top, auto);
950
+ width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
926
951
  }
927
- .vuuTabstrip-overflowMenu.saltDropdown {
928
- --saltIcon-margin: 2px 0 0 0px;
952
+ .vuuChevronIcon.up {
953
+ --vuu-icon-svg: var(--vuu-svg-chevron-up);
929
954
  }
930
- .vuuTabstrip-overflowMenu-open {
931
- --saltButton-background: var(--salt-actionable-secondary-background-active);
932
- --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
955
+ .vuuChevronIcon.down {
956
+ --vuu-icon-svg: var(--vuu-svg-chevron-down);
933
957
  }
934
- .vuuTabstrip-overflowMenu-open .saltButton {
935
- --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
958
+ .vuuChevronIcon.left {
959
+ --vuu-icon-svg: var(--vuu-svg-chevron-left);
936
960
  }
937
- .vuuTabstrip-inner {
938
- width: 100%;
939
- align-items: center;
940
- display: flex;
941
- flex-basis: auto;
942
- flex-grow: 0;
943
- flex-shrink: 1;
944
- flex-wrap: wrap;
945
- justify-content: flex-start;
946
- line-height: var(--tabstrip-height);
961
+ .vuuChevronIcon.right {
962
+ --vuu-icon-svg: var(--vuu-svg-chevron-right);
947
963
  }
948
- .vuuTabstrip-vertical .vuuTabstrip-inner {
964
+
965
+ /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
966
+ .vuuEditableLabel {
967
+ --editableLabel-padding: var(--vuuEditableLabel-padding, 6px);
968
+ --editableLabel-height: var(--vuuEditableLabel-height, 26px);
969
+ --saltInput-background: transparent;
970
+ --saltInput-height: calc(var(--editableLabel-height) - 4px);
971
+ --saltInput-minWidth: 14px;
972
+ color: inherit;
973
+ cursor: default;
974
+ display: flex;
949
975
  flex-direction: column;
950
- height: auto;
951
- }
952
- .vuuTabstrip-centered .vuuTabstrip-inner {
976
+ font-size: var(--salt-text-fontSize);
977
+ height: var(--editableLabel-height);
953
978
  justify-content: center;
954
- }
955
- .vuuDraggable[class*=vuuTabstrip] {
956
- --tabstrip-display: flex;
957
- --tabstrip-height: 100%;
979
+ max-width: 170px;
980
+ outline: none;
981
+ overflow: hidden;
982
+ padding: 0 var(--editableLabel-padding);
983
+ position: relative;
984
+ text-overflow: ellipsis;
985
+ white-space: nowrap;
986
+ z-index: var(--salt-zIndex-default);
987
+ }
988
+ .vuuEditableLabel:before {
989
+ content: attr(data-text);
990
+ display: block;
991
+ height: 0px;
992
+ visibility: hidden;
993
+ white-space: pre-wrap;
994
+ }
995
+ .vuuEditableLabel .saltInput {
996
+ font-weight: var(--salt-text-fontWeight);
997
+ left: var(--editableLabel-padding, 0);
998
+ padding: 0;
999
+ outline-style: none;
1000
+ position: absolute;
1001
+ right: var(--editableLabel-padding, 0);
1002
+ top: var(--saltEditableLabel-top, 2px);
1003
+ width: auto;
1004
+ }
1005
+ .vuuEditableLabel .saltInput-activationIndicator {
1006
+ display: none;
1007
+ }
1008
+ .vuuEditableLabel-input {
1009
+ background-color: transparent;
1010
+ border: none;
1011
+ box-sizing: content-box;
1012
+ color: inherit;
1013
+ display: block;
1014
+ flex: 1;
1015
+ font: inherit;
1016
+ height: 20px;
1017
+ margin: 0;
1018
+ min-width: 0;
1019
+ outline: none;
1020
+ padding: 0;
1021
+ }
1022
+ .vuuEditableLabel-label {
1023
+ overflow: hidden;
1024
+ text-overflow: ellipsis;
1025
+ white-space: nowrap;
1026
+ }
1027
+
1028
+ /* ../vuu-ui-controls/src/expando-input/ExpandoInput.css */
1029
+ .vuuExpandoInput {
1030
+ --salt-editable-secondary-background: white;
1031
+ --expandoInput-height: var(--vuuExpandoInput-height, 26px);
1032
+ --expandoInput-padding: var(--vuuExpandoInput-padding, 6px);
1033
+ --saltInput-height: calc(var(--vuuExpandoInput-height) - 4px);
1034
+ --saltInput-minWidth: var(--vuuExpandoInput-minWidth, 8px);
1035
+ border: var(--vuuExpandoInput-border, none);
1036
+ border-radius: var(--vuuExpandoInput-borderRadius, 0);
1037
+ color: inherit;
1038
+ cursor: default;
1039
+ display: inline-block;
1040
+ font-size: var(--salt-text-fontSize);
1041
+ height: var(--expandoInput-height);
1042
+ min-width: calc(var(--saltInput-minWidth) + 2 * var(--expandoInput-padding));
1043
+ outline: none;
1044
+ padding: 0 var(--expandoInput-padding);
1045
+ position: relative;
1046
+ }
1047
+ .vuuExpandoInput:before {
1048
+ content: attr(data-text);
1049
+ display: block;
1050
+ height: 0px;
1051
+ visibility: hidden;
1052
+ white-space: pre-wrap;
1053
+ }
1054
+ .vuuExpandoInput .saltInput {
1055
+ font-weight: var(--salt-text-fontWeight);
1056
+ left: var(--expandoInput-padding, 0);
1057
+ padding: 0;
1058
+ outline-style: none;
1059
+ position: absolute;
1060
+ right: var(--expandoInput-padding, 0);
1061
+ top: var(--vuuExpandoInput-top, 2px);
1062
+ width: auto;
1063
+ }
1064
+ .vuuExpandoInput .saltInput-activationIndicator {
1065
+ display: none;
1066
+ }
1067
+ .vuuExpandoInput-input {
1068
+ background-color: transparent;
1069
+ border: none;
1070
+ box-sizing: content-box;
1071
+ display: block;
1072
+ flex: 1;
1073
+ font: inherit;
1074
+ height: 20px;
1075
+ margin: 0;
1076
+ min-width: 0;
1077
+ outline: none;
1078
+ padding: 0;
1079
+ }
1080
+
1081
+ /* ../vuu-ui-controls/src/inputs/Checkbox.css */
1082
+ .vuuCheckbox {
1083
+ display: flex;
1084
+ height: 24px;
1085
+ align-items: center;
1086
+ gap: 6px;
1087
+ color: var(--light-text-primary, #15171B);
1088
+ font-feature-settings:
1089
+ "ss02" on,
1090
+ "ss01" on,
1091
+ "salt" on,
1092
+ "liga" off;
1093
+ font-size: 12px;
1094
+ font-weight: 400;
1095
+ cursor: pointer;
1096
+ }
1097
+
1098
+ /* ../vuu-ui-controls/src/inputs/RadioButton.css */
1099
+ .vuuRadioButton {
1100
+ display: flex;
1101
+ height: 24px;
1102
+ align-items: center;
1103
+ gap: 6px;
1104
+ color: var(--light-text-primary, #15171B);
1105
+ font-feature-settings:
1106
+ "ss02" on,
1107
+ "ss01" on,
1108
+ "salt" on,
1109
+ "liga" off;
1110
+ font-size: 12px;
1111
+ font-weight: 400;
1112
+ cursor: pointer;
1113
+ }
1114
+ .radio {
1115
+ position: relative;
1116
+ height: 12px;
1117
+ }
1118
+ input[type=radio] {
1119
+ position: absolute;
1120
+ appearance: none;
1121
+ width: 100%;
1122
+ height: 100%;
1123
+ border-radius: 50%;
1124
+ margin: 0;
1125
+ top: 0;
1126
+ }
1127
+
1128
+ /* ../vuu-table/src/table/ColumnResizer.css */
1129
+ .vuuColumnResizer {
1130
+ background-color: var(--columnResizer-color);
1131
+ cursor: col-resize;
1132
+ height: var(--header-height);
1133
+ position: relative;
1134
+ width: 4px;
1135
+ }
1136
+ .vuuColumnResizer:hover {
1137
+ --columnResizer-color: var(--salt-color-blue-500);
1138
+ }
1139
+ .vuuColumnResizer:after {
1140
+ content: "";
1141
+ position: absolute;
1142
+ width: var(--columnResizer-width, 1px);
1143
+ top: 0;
1144
+ bottom: 0;
1145
+ right: -1px;
1146
+ background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
1147
+ height: var(--columnResizer-height, calc(100% + 1px));
1148
+ }
1149
+
1150
+ /* ../vuu-table/src/table/TableCell.css */
1151
+ .vuuTable {
1152
+ --cell-outline-width: 2px;
1153
+ user-select: none;
1154
+ }
1155
+ [role=cell] {
1156
+ display: inline-block;
1157
+ }
1158
+ [data-align=end] {
1159
+ margin-left: auto;
1160
+ }
1161
+ [data-align=end] + [data-align=end] {
1162
+ margin-left: 0;
1163
+ }
1164
+ .vuuTable-table [role=cell] {
1165
+ --saltEditableLabel-height: 17px;
1166
+ --saltInput-height: 17px;
1167
+ --saltInput-minHeight: 17px;
1168
+ border-right: 1px solid var(--vuuTableCell-border-rightColor);
1169
+ border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
1170
+ color: var(--salt-text-primary-foreground);
1171
+ cursor: default;
1172
+ height: var(--vuuTable-rowHeight);
1173
+ line-height: calc(var(--vuuTable-rowHeight) - 1px);
1174
+ overflow: hidden;
1175
+ padding: 0 5px;
1176
+ vertical-align: top;
1177
+ }
1178
+ .vuuTable-headerCell:focus,
1179
+ .vuuTable [role=cell]:focus {
1180
+ outline: var(--vuuTableCell-outline, dotted var(--salt-color-blue-400) var(--cell-outline-width));
1181
+ outline-offset: calc(var(--cell-outline-width) * -1);
1182
+ box-shadow: inset 0 0 0 var(--cell-outline-width) white;
1183
+ border-bottom: none;
1184
+ }
1185
+ .vuuTable-headerCell:focus .vuuTable-headerCell-inner {
1186
+ padding-bottom: var(--cell-outline-width);
1187
+ }
1188
+ .vuuTable-headerCell:not(.vuuTable-headerCell-resizing):focus .vuuTable-headerCell-inner {
1189
+ --columnResizer-color: transparent;
1190
+ }
1191
+ .vuuTable [role=cell]:focus {
1192
+ border-right: none;
1193
+ padding-bottom: 1px;
1194
+ }
1195
+ [role=cell][data-editable=true] {
1196
+ --salt-text-fontSize: 10px;
1197
+ --vuu-icon-size: 5px;
1198
+ position: relative;
1199
+ }
1200
+ [role=cell][data-editable=true]:after {
1201
+ top: 0;
1202
+ content: "";
1203
+ background-color: var(--salt-text-secondary-foreground, black);
1204
+ left: 0;
1205
+ height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
1206
+ -webkit-mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1207
+ mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
1208
+ mask-repeat: no-repeat;
1209
+ -webkit-mask-repeat: no-repeat;
1210
+ position: absolute;
1211
+ transform: rotate(180deg);
1212
+ width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
1213
+ }
1214
+ [role=cell]:focus[data-editable],
1215
+ [role=cell]:focus-within[data-editable],
1216
+ [role=cell]:has(.saltEditableLabel-editing) {
1217
+ outline: solid var(--salt-color-blue-400) 1px;
1218
+ background-color: white;
1219
+ outline-offset: -1px;
1220
+ }
1221
+ [role=cell]:focus[data-editable=true]:after,
1222
+ [role=cell]:has(.saltEditableLabel):after {
1223
+ background-color: var(--salt-color-blue-400);
1224
+ left: 1px;
1225
+ top: 1px;
1226
+ }
1227
+ .vuuAlignRight {
1228
+ text-align: right;
1229
+ }
1230
+
1231
+ /* ../vuu-table/src/table/TableGroupCell.css */
1232
+ .vuuTableGroupCell {
1233
+ --spacer-width: 20px;
1234
+ --toggle-icon-transform: var(--row-toggle-icon-transform, none);
1235
+ --vuu-icon-width: 18px;
1236
+ align-items: center;
1237
+ display: inline-flex;
1238
+ }
1239
+ .vuuTableGroupCell-spacer {
1240
+ height: 100%;
1241
+ position: relative;
1242
+ width: var(--spacer-width);
1243
+ }
1244
+ .vuuTableGroupCell-spacer:after {
1245
+ background: var(--salt-container-primary-borderColor);
1246
+ content: "";
1247
+ position: absolute;
1248
+ top: 0;
1249
+ bottom: -1px;
1250
+ left: 9px;
1251
+ width: 1px;
1252
+ }
1253
+ .vuuTableGroupCell-toggle {
1254
+ transition: transform 0.25s;
1255
+ transform: var(--toggle-icon-transform);
1256
+ }
1257
+
1258
+ /* ../vuu-table/src/table/TableRow.css */
1259
+ .vuuTableRow {
1260
+ --row-background: var(--table-background);
1261
+ position: absolute;
1262
+ top: 0;
1263
+ }
1264
+ .vuuTableRow-even {
1265
+ --row-background: var(--row-background-even);
1266
+ }
1267
+ .vuuTableRow {
1268
+ background-color: var(--row-background);
1269
+ }
1270
+ .vuuTableRow-expanded {
1271
+ --row-toggle-icon-transform: rotate(90deg);
1272
+ }
1273
+ .vuuTableRow[aria-selected] {
1274
+ background-color: var(--vuuTableRow-selected-background, var(--salt-selectable-background-selected));
1275
+ --vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
1276
+ }
1277
+ .vuuTableRow-preSelected {
1278
+ --vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
1279
+ }
1280
+
1281
+ /* ../vuu-table/src/table/TableGroupHeaderCell.css */
1282
+ .salt-theme {
1283
+ --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>');
1284
+ }
1285
+ .vuuTable-groupHeaderCell {
1286
+ --cell-align: "flex-start";
1287
+ text-align: left;
1288
+ background: var(--dataTable-background);
1289
+ cursor: default;
1290
+ height: var(--vuuTableHeaderHeight);
1291
+ }
1292
+ .vuuTable-groupHeaderCell-inner {
1293
+ align-items: center;
1294
+ display: flex;
1295
+ height: 100%;
1296
+ padding-left: 1px;
1297
+ }
1298
+ .vuuTable-groupHeaderCell-label {
1299
+ align-items: center;
1300
+ display: flex;
1301
+ flex: 0 0 auto;
1302
+ }
1303
+ .vuuTable-groupHeaderCell-col {
1304
+ align-items: center;
1305
+ background-color: inherit;
1306
+ display: inline-flex;
1307
+ flex: 0 1 auto;
1308
+ height: calc(var(--vuuTableHeaderHeight) - 2px);
1309
+ justify-content: space-between;
1310
+ padding-right: 8px;
1311
+ position: relative;
1312
+ }
1313
+ .vuuTable-groupHeaderCell-close {
1314
+ --vuu-icon-height: 18px;
1315
+ --vuu-icon-width: 18px;
1316
+ cursor: pointer;
1317
+ left: 3px;
1318
+ }
1319
+ .vuuTable-groupHeaderCell-col:nth-child(odd) {
1320
+ background-color: var(--salt-color-gray-50);
1321
+ }
1322
+ .vuuTable-groupHeaderCell-col:nth-child(even) {
1323
+ background-color: var(--salt-color-gray-40);
1324
+ }
1325
+ .vuuTable-groupHeaderCell-col:first-child {
1326
+ clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
1327
+ padding-left: 3px;
1328
+ z-index: 1;
1329
+ }
1330
+ .vuuTable-groupHeaderCell-col:not(:first-child) {
1331
+ margin-left: -6px;
1332
+ padding-left: 12px;
1333
+ clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
1334
+ }
1335
+ .vuuTable-groupHeaderCell-resizing {
1336
+ --columnResizer-color: var(--salt-color-blue-500);
1337
+ --columnResizer-height: var(--table-height);
1338
+ --columnResizer-width: 2px;
1339
+ }
1340
+ .vuuTable-groupHeaderCell-pending {
1341
+ --pending-content: "";
1342
+ }
1343
+ .vuuTable-groupHeaderCell-col:has(+ .vuuColumnResizer):after {
1344
+ content: var(--pending-content);
1345
+ width: 24px;
1346
+ height: 24px;
1347
+ background-image: var(--svg-spinner);
1348
+ background-repeat: no-repeat;
1349
+ background-size: cover;
1350
+ }
1351
+
1352
+ /* ../vuu-table/src/table/SortIndicator.css */
1353
+ .vuuSortIndicator {
1354
+ --menu-icon-size: 18px;
1355
+ --menu-item-icon-color: black;
1356
+ display: flex;
1357
+ flex-direction: column;
1358
+ position: relative;
1359
+ width: 18px;
1360
+ }
1361
+ .vuuSortPosition {
1362
+ font-size: 10px;
1363
+ line-height: 10px;
1364
+ text-align: center;
1365
+ }
1366
+
1367
+ /* ../vuu-table/src/table/TableHeaderCell.css */
1368
+ .vuuTable-heading:nth-child(2) {
1369
+ --heading-top: calc(var(--header-height));
1370
+ }
1371
+ .vuuTable-heading:nth-child(3) {
1372
+ --heading-top: calc(var(--header-height) * 2);
1373
+ }
1374
+ .vuuTable-heading:nth-child(3) {
1375
+ --heading-top: calc(var(--header-height) * 3);
1376
+ }
1377
+ .vuuTable-headingCell {
1378
+ background: var(--dataTable-background);
1379
+ border-color: var(--salt-separable-tertiary-borderColor);
1380
+ border-style: solid solid solid none;
1381
+ border-width: 1px;
1382
+ color: var(--salt-text-secondary-foreground);
1383
+ display: inline-block;
1384
+ height: var(--vuuTableHeaderHeight);
1385
+ padding: 0 !important;
1386
+ }
1387
+ .vuuTable-heading:has(+ .vuuTable-heading) > .vuuTable-headingCell {
1388
+ border-bottom-color: transparent;
1389
+ }
1390
+ [role=columnHeader] {
1391
+ --vuuTableCell-border-bottomColor: var(--salt-separable-tertiary-borderColor);
1392
+ --cell-align: "flex-start";
1393
+ display: inline-block;
1394
+ text-align: left;
1395
+ background: var(--dataTable-background);
1396
+ border-right: 1px solid var(--vuuTableCell-border-rightColor);
1397
+ border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
1398
+ color: var(--salt-text-secondary-foreground);
1399
+ cursor: default;
1400
+ height: var(--vuuTableHeaderHeight);
1401
+ padding: 0 !important;
1402
+ vertical-align: top;
1403
+ }
1404
+ .vuuTable-headerCell-right {
1405
+ --cell-align: flex-end;
1406
+ }
1407
+ .vuuTable-headerCell-inner {
1408
+ align-items: stretch;
1409
+ display: flex;
1410
+ height: 100%;
1411
+ padding: 0 0 0 3px;
1412
+ }
1413
+ .vuuTable-headerCell-inner:has(.vuuFilterIndicator) {
1414
+ padding-left: 0;
1415
+ }
1416
+ .vuuTable-headerCell-label {
1417
+ align-items: center;
1418
+ justify-content: var(--cell-align);
1419
+ display: flex;
1420
+ flex: 1 1 auto;
1421
+ }
1422
+ .vuuTable-headerCell-resizing {
1423
+ --columnResizer-color: var(--salt-color-blue-500);
1424
+ --columnResizer-height: var(--table-height);
1425
+ --columnResizer-width: 2px;
1426
+ }
1427
+ [role=headerCell].vuuPinLeft.vuuEndPin:after {
1428
+ box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4);
1429
+ content: "";
1430
+ position: absolute;
1431
+ width: 1px;
1432
+ background-color: transparent;
1433
+ height: var(--table-height);
1434
+ top: 0;
1435
+ right: 0px;
1436
+ }
1437
+ [role=headerCell].vuuPinRight.vuuEndPin:after {
1438
+ box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
1439
+ content: "";
1440
+ position: absolute;
1441
+ width: 1px;
1442
+ background-color: transparent;
1443
+ height: var(--table-height);
1444
+ top: 0;
1445
+ left: 0px;
1446
+ }
1447
+ [role=headerCell]:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
1448
+ top: 0;
1449
+ z-index: 20;
1450
+ }
1451
+ .saltDraggable-vuuTable-headerCell {
1452
+ --dataTable-background: ivory;
1453
+ --vuuTableHeaderHeight: 25px;
1454
+ }
1455
+
1456
+ /* ../vuu-table/src/table/filter-indicator.css */
1457
+ .vuuFilterIndicator {
1458
+ --menu-icon-size: 12px;
1459
+ --menu-item-icon-color: black;
1460
+ align-items: center;
1461
+ cursor: pointer;
1462
+ display: flex;
1463
+ flex: 0 0 18px;
1464
+ flex-direction: column;
1465
+ justify-content: center;
1466
+ position: relative;
1467
+ }
1468
+ .vuuFilterIndicator + .vuuTable-headerCell-inner {
1469
+ padding-left: 0;
1470
+ }
1471
+
1472
+ /* ../vuu-table/src/table/RowBasedTable.css */
1473
+ .vuuTable-table {
1474
+ --vuuTable-rowHeight: var(--row-height);
1475
+ --vuuTableCell-border-bottomColor: transparent;
1476
+ --vuuTableCell-border-rightColor: var(--salt-separable-tertiary-borderColor);
1477
+ border-collapse: separate;
1478
+ border-spacing: 0;
1479
+ border-left: 1px solid #ccc;
1480
+ border: none;
1481
+ font-size: var(--vuuTable-font-size, 10px);
1482
+ margin: 0;
1483
+ min-height: 100%;
1484
+ width: var(--content-width);
1485
+ }
1486
+ .vuuTable-headers {
1487
+ position: sticky;
1488
+ top: 0;
1489
+ z-index: 1;
1490
+ }
1491
+ .vuuTable-body {
1492
+ height: var(--content-height);
1493
+ position: relative;
1494
+ }
1495
+
1496
+ /* ../vuu-table/src/table/Table.css */
1497
+ .vuuTable {
1498
+ --dataTable-background: var(--salt-container-primary-background, inherit);
1499
+ --row-background-even: var(--dataTable-background);
1500
+ --row-background-odd: var(--dataTable-background);
1501
+ --table-background: var(--dataTable-background, none);
1502
+ background-color: var(--dataTable-background);
1503
+ position: relative;
1504
+ }
1505
+ .vuuTable-zebra {
1506
+ --row-background-even: var(--salt-container-secondary-background);
1507
+ }
1508
+ .vuuTable-scrollbarContainer {
1509
+ --scroll-content-width: calc(var(--content-width) - var(--pinned-width-left));
1510
+ border-bottom: none !important;
1511
+ border-top: none !important;
1512
+ border-left: solid 1px var(--salt-container-primary-borderColor);
1513
+ box-shadow: 0px -1px 0px 0px var(--salt-container-primary-borderColor);
1514
+ height: var(--viewport-body-height);
1515
+ left: var(--pinned-width-left);
1516
+ overflow: auto;
1517
+ position: absolute;
1518
+ top: var(--total-header-height);
1519
+ width: calc(var(--table-width) - var(--pinned-width-left) + 1px);
1520
+ }
1521
+ .vuuTable-scrollbarContent {
1522
+ height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
1523
+ position: absolute;
1524
+ width: var(--scroll-content-width, var(--content-width));
1525
+ }
1526
+ .vuuTable-contentContainer {
1527
+ --vuuTableHeaderHeight: var(--header-height, 30px);
1528
+ background-color: var(--salt-container-primary-background);
1529
+ height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
1530
+ position: relative;
1531
+ overflow: auto;
1532
+ overscroll-behavior: none;
1533
+ width: calc(var(--table-width) - var(--vertical-scrollbar-width));
1534
+ }
1535
+ .vuuTable-contentContainer::-webkit-scrollbar {
1536
+ display: none;
1537
+ }
1538
+ :is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
1539
+ background-color: inherit;
1540
+ position: sticky;
1541
+ z-index: 1;
1542
+ }
1543
+ .vuuTable-settings {
1544
+ --saltButton-height: var(--header-height);
1545
+ --saltButton-width: 15px;
1546
+ position: absolute !important;
1547
+ right: 0;
1548
+ top: 0;
1549
+ }
1550
+ .vuuTable:has(.vuuTable-headerCell-resizing) * {
1551
+ cursor: col-resize;
1552
+ }
1553
+
1554
+ /* ../vuu-table/src/table/Table-loading.css */
1555
+ .vuuTable-loading .vuuTable-table {
1556
+ --skeleton-height: 20px;
1557
+ --skeleton-width: calc(var(--content-width) - 8px);
1558
+ --skeleton-left: 4px;
1559
+ --skeleton-row-height: 16px;
1560
+ --skeleton-size: var(--skeleton-width) var(--skeleton-height);
1561
+ --skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
1562
+ --skeleton-background-image: var(--skeleton-row);
1563
+ background-image: var(--skeleton-background-image);
1564
+ background-repeat: repeat-y;
1565
+ background-size: var(--skeleton-size);
1566
+ background-position-x: var(--skeleton-left);
1567
+ background-position-y: 27px;
1568
+ }
1569
+ .vuuTable-loading .vuuTable-table {
1570
+ --skeleton-height: 20px;
1571
+ --skeleton-width: calc(var(--content-width) - 8px);
1572
+ --skeleton-left: 4px;
1573
+ --skeleton-row-height: 16px;
1574
+ --skeleton-size: var(--skeleton-width) var(--skeleton-height);
1575
+ --skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
1576
+ --skeleton-background-image: var(--skeleton-row);
1577
+ background-image: var(--skeleton-background-image);
1578
+ background-repeat: repeat-y;
1579
+ background-size: var(--skeleton-size);
1580
+ background-position-x: var(--skeleton-left);
1581
+ background-position-y: 27px;
1582
+ }
1583
+ .vuuTable-loading .vuuTable-table:after {
1584
+ animation: shimmer 2s infinite;
1585
+ background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, 0));
1586
+ content: "";
1587
+ height: var(--table-height);
1588
+ left: 0px;
1589
+ position: absolute;
1590
+ transform: translateX(-100%);
1591
+ top: var(--header-height);
1592
+ width: var(--content-width);
1593
+ }
1594
+ @keyframes shimmer {
1595
+ 100% {
1596
+ transform: translateX(100%);
1597
+ }
1598
+ }
1599
+
1600
+ /* ../vuu-table/src/table/cell-renderers/json-cell/JsonCell.css */
1601
+ .vuuJsonCell-group {
1602
+ align-items: center;
1603
+ display: inline-flex;
1604
+ height: calc(var(--vuuTable-rowHeight) - 1px);
1605
+ width: 100%;
1606
+ }
1607
+ .vuuJsonCell-toggle {
1608
+ --vuu-icon-color: var(--salt-text-primary-foreground);
1609
+ --vuu-icon-height: calc(var(--vuuTable-rowHeight) - 1px);
1610
+ --vuu-icon-width: 18px;
1611
+ flex-shrink: 0;
1612
+ margin-left: auto;
1613
+ }
1614
+ .vuuJsonCell-name {
1615
+ font-weight: var(--salt-typography-fontWeight-semiBold);
1616
+ }
1617
+ .vuuJsonCell-value {
1618
+ overflow: hidden;
1619
+ text-overflow: ellipsis;
1620
+ }
1621
+
1622
+ /* ../vuu-table/src/table-next/column-resizing/ColumnResizer.css */
1623
+ .vuuColumnResizerNext {
1624
+ background-color: var(--columnResizer-color);
1625
+ cursor: col-resize;
1626
+ height: var(--header-height);
1627
+ margin-left: var(--columnResizer-left, auto);
1628
+ position: relative;
1629
+ width: 2px;
1630
+ }
1631
+ .vuuColumnResizerNext:hover {
1632
+ --columnResizer-color: var(--salt-color-blue-500);
1633
+ }
1634
+ .vuuColumnResizerNext:after {
1635
+ background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
1636
+ bottom: 0;
1637
+ content: "";
1638
+ position: absolute;
1639
+ top: 0;
1640
+ right: 0px;
1641
+ height: var(--columnResizer-height, 0);
1642
+ width: 2px;
1643
+ }
1644
+
1645
+ /* ../vuu-table/src/table-next/column-header-pill/ColumnHeaderPill.css */
1646
+ .vuuColumnHeaderPill {
1647
+ --vuu-icon-size: 14px;
1648
+ --menu-item-icon-color: black;
1649
+ --vuu-icon-color: white;
1650
+ --vuu-icon-height: 12px;
1651
+ --vuu-icon-width: 13px;
1652
+ align-items: center;
1653
+ background: var(--salt-taggable-background-active);
1654
+ color: white;
1655
+ border-radius: 4px;
1656
+ font-size: 11px;
1657
+ gap: 4px;
1658
+ height: 16px;
1659
+ display: flex;
1660
+ margin: var(--vuuColumnHeaderPill-margin, 0);
1661
+ padding: 0 6px;
1662
+ position: relative;
1663
+ }
1664
+ .vuuColumnHeaderPill:hover {
1665
+ --vuu-icon-color: var(--vuu-color-gray-80);
1666
+ background-color: var(--salt-taggable-background-hover);
1667
+ color: var(--vuu-color-gray-80);
1668
+ }
1669
+ .vuuColumnHeaderPill-removeButton {
1670
+ cursor: pointer;
1671
+ }
1672
+
1673
+ /* ../vuu-table/src/table-next/column-header-pill/GroupColumnPill.css */
1674
+ .vuuSortPosition {
1675
+ font-size: 11px;
1676
+ font-weight: 700;
1677
+ padding-top: 1px;
1678
+ }
1679
+
1680
+ /* ../vuu-table/src/table-next/column-header-pill/SortIndicator.css */
1681
+ .vuuSortPosition {
1682
+ font-size: 11px;
1683
+ font-weight: 700;
1684
+ padding-top: 1px;
1685
+ }
1686
+
1687
+ /* ../vuu-table/src/table-next/header-cell/GroupHeaderCell.css */
1688
+ .vuu-theme {
1689
+ --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>');
1690
+ }
1691
+ .vuuTableNextGroupHeaderCell.vuuTableNextHeaderCell {
1692
+ --vuuColumnHeaderPill-margin: 0;
1693
+ --cell-align: "flex-start";
1694
+ text-align: left;
1695
+ background: var(--dataTable-background);
1696
+ cursor: default;
1697
+ height: var(--vuuTableHeaderHeight);
1698
+ }
1699
+ .vuuTableNextGroupHeaderCell-inner {
1700
+ align-items: center;
1701
+ display: flex;
1702
+ gap: 4px;
1703
+ height: 100%;
1704
+ padding-left: 1px;
1705
+ }
1706
+ .vuuTableNextGroupHeaderCell-col {
1707
+ align-items: center;
1708
+ background-color: inherit;
1709
+ display: inline-flex;
1710
+ flex: 0 1 auto;
1711
+ height: calc(var(--vuuTableHeaderHeight) - 2px);
1712
+ justify-content: space-between;
1713
+ padding-right: 8px;
1714
+ position: relative;
1715
+ }
1716
+ .vuuTableNextGroupHeaderCell-label {
1717
+ align-items: center;
1718
+ display: flex;
1719
+ flex: 0 0 auto;
1720
+ }
1721
+ .vuuTableNextGroupHeaderCell-close {
1722
+ --vuu-icon-height: 18px;
1723
+ --vuu-icon-width: 18px;
1724
+ cursor: pointer;
1725
+ left: 3px;
1726
+ }
1727
+ .vuuTableNextGroupHeaderCell-resizing {
1728
+ --columnResizer-color: var(--salt-color-blue-500);
1729
+ --columnResizer-height: var(--table-height);
1730
+ --columnResizer-width: 2px;
1731
+ }
1732
+ .vuuTableNextGroupHeaderCell-pending {
1733
+ --pending-content: "";
1734
+ }
1735
+ .vuuTableNextGroupHeaderCell-col:has(+ .vuuColumnResizer):after {
1736
+ content: var(--pending-content);
1737
+ width: 24px;
1738
+ height: 24px;
1739
+ background-image: var(--svg-spinner);
1740
+ background-repeat: no-repeat;
1741
+ background-size: cover;
1742
+ }
1743
+
1744
+ /* ../vuu-table/src/table-next/column-menu/ColumnMenu.css */
1745
+ .vuuMenuItem {
1746
+ --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>');
1747
+ }
1748
+ .vuuTable-columnMenu {
1749
+ --vuu-icon-color: #606477;
1750
+ --vuu-icon-height: 20px;
1751
+ --vuu-icon-left: 0px;
1752
+ --vuu-icon-size: 16px;
1753
+ --vuu-icon-top: 0px;
1754
+ --vuu-icon-width: 20px;
1755
+ border-radius: 4px;
1756
+ cursor: pointer;
1757
+ display: inline-block;
1758
+ padding: 2px;
1759
+ left: var(--column-menu-left, 0);
1760
+ margin: var(--vuuTable-columnMenu-margin, 0);
1761
+ }
1762
+ .vuuTable-columnMenu:hover {
1763
+ --vuu-icon-color: #15171B;
1764
+ background-color: #F37880;
1765
+ }
1766
+ .vuuTable-columnMenu-open:hover,
1767
+ .vuuTable-columnMenu-open {
1768
+ background-color: #6D18BD;
1769
+ --vuu-icon-color: white;
1770
+ }
1771
+ [data-icon=cog] {
1772
+ --vuu-icon-svg: var(--vuu-svg-cog);
1773
+ --vuu-icon-size: 14px;
1774
+ }
1775
+ .vuuColumnMenuList {
1776
+ --vuuMenuList-borderStyle: solid;
1777
+ border-radius: 4px;
1778
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1779
+ border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
1780
+ border-style: solid;
1781
+ border-width: 1px;
1782
+ }
1783
+
1784
+ /* ../vuu-table/src/table-next/header-cell/HeaderCell.css */
1785
+ .vuuTableNextHeaderCell {
1786
+ --cell-align: "flex-start";
1787
+ --vuuColumnHeaderPill-margin: 0 0 0 3px;
1788
+ align-items: center;
1789
+ background-color: var(--vuuTableNextHeaderCell-background, inherit);
1790
+ border-bottom: 1px solid #ccc;
1791
+ border-right-color: var(--cell-borderColor);
1792
+ border-right-style: solid;
1793
+ border-right-width: 1px;
1794
+ box-sizing: border-box;
1795
+ cursor: default;
1796
+ display: inline-flex;
1797
+ height: var(--header-height);
1798
+ vertical-align: top;
1799
+ }
1800
+ .vuuTableNextHeaderCell-right {
1801
+ --columnResizer-left: 0;
1802
+ --vuuTable-columnMenu-margin: 0;
1803
+ --vuuColumnHeaderPill-margin: 0 3px 0 0;
1804
+ --column-menu-left: 2px;
1805
+ justify-content: flex-end;
1806
+ }
1807
+ .vuuTableNextHeaderCell .vuuColumnResizerNext:hover {
1808
+ --columnResizer-color: var(--vuu-color-purple-10);
1809
+ }
1810
+ .vuuTableNextHeaderCell-label {
1811
+ line-height: calc(var(--header-height) - 1px);
1812
+ }
1813
+ .vuuTableNextHeaderCell-resizing {
1814
+ --columnResizer-height: var(--table-height);
1815
+ }
1816
+ .vuuTableNextHeaderCell.vuuPinLeft {
1817
+ padding-left: 2px;
1818
+ }
1819
+ .vuuTableNextHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before {
1820
+ --height: calc(var(--table-height) - 15px);
1821
+ --inset-r: calc(var(--pin-width) - 2px);
1822
+ --inset-b: calc(var(--height) - 2px);
1823
+ --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% );
1824
+ background-color: transparent;
1825
+ border-color: var(--vuu-color-gray-40);
1826
+ border-width: 1px;
1827
+ border-style: solid solid solid solid;
1828
+ border-radius: 4px;
1829
+ box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
1830
+ clip-path: var(--clip-path);
1831
+ content: "";
1832
+ position: absolute;
1833
+ width: var(--pin-width);
1834
+ top: 0;
1835
+ bottom: 0;
1836
+ right: -1px;
1837
+ height: var(--height);
1838
+ z-index: -5;
1839
+ }
1840
+ .vuuTableNextHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before {
1841
+ --height: calc(var(--table-height) - 15px);
1842
+ --inset-r: calc(var(--pin-width) - 2px);
1843
+ --inset-b: calc(var(--height) - 2px);
1844
+ --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% );
1845
+ background-color: transparent;
1846
+ border-color: #A9AAAD;
1847
+ border-width: 1px;
1848
+ border-style: solid solid solid solid;
1849
+ border-radius: 4px;
1850
+ box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
1851
+ clip-path: var(--clip-path);
1852
+ content: "";
1853
+ position: absolute;
1854
+ width: var(--pin-width);
1855
+ top: 0;
1856
+ bottom: 0;
1857
+ right: 0px;
1858
+ height: var(--height);
1859
+ z-index: -5;
1860
+ }
1861
+ .vuuTableNextHeaderCell.vuuDraggable-dragAway {
1862
+ display: none;
1863
+ }
1864
+
1865
+ /* ../vuu-table/src/table-next/table-cell/TableCell.css */
1866
+ .vuuTableNextCell {
1867
+ border-right-color: var(--cell-borderColor);
1868
+ border-right-style: solid;
1869
+ border-right-width: 1px;
1870
+ display: inline-block;
1871
+ height: 100%;
1872
+ overflow: hidden;
1873
+ padding: 0 8px;
1874
+ text-overflow: ellipsis;
1875
+ vertical-align: top;
1876
+ }
1877
+ .vuuTableNextCell-right {
1878
+ text-align: right;
1879
+ }
1880
+ .vuuTableNextCell-editable {
1881
+ display: inline-flex;
1882
+ line-height: 18px;
1883
+ padding-bottom: 1px;
1884
+ padding-top: 1px;
1885
+ text-overflow: unset;
1886
+ }
1887
+ .vuuTableNextCell:focus {
1888
+ outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
1889
+ outline-offset: -2px;
1890
+ box-shadow: inset 0 0 0 var(--cell-outline-width) white;
1891
+ border-bottom: none;
1892
+ }
1893
+ .vuuTableNextRow-selected .vuuTableNextCell:not(.vuuTableNextCell-editable):focus {
1894
+ outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
1895
+ outline-offset: -1px;
1896
+ }
1897
+ .vuuTableNextCell-editable:focus {
1898
+ outline: none;
1899
+ }
1900
+
1901
+ /* ../vuu-table/src/table-next/table-cell/TableGroupCell.css */
1902
+ .vuuTableNextGroupCell {
1903
+ --group-cell-spacer-width: 20px;
1904
+ align-items: center;
1905
+ border-right-color: var(--vuuTableNextGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));
1906
+ border-right-style: solid;
1907
+ border-right-width: 1px;
1908
+ cursor: pointer;
1909
+ display: inline-flex;
1910
+ height: var(--row-height);
1911
+ line-height: 16px;
1912
+ }
1913
+ .vuuTableNextGroupCell-toggle {
1914
+ --vuu-icon-height: 16px;
1915
+ --vuu-icon-size: 16px;
1916
+ --vuu-icon-width: 8px;
1917
+ margin-right: 4px;
1918
+ transition: transform 0.25s;
1919
+ transform: var(--toggle-icon-transform);
1920
+ }
1921
+ .vuuTableNextGroupCell-spacer {
1922
+ width: var(--group-cell-spacer-width);
1923
+ }
1924
+
1925
+ /* ../vuu-table/src/table-next/Row.css */
1926
+ .vuuTableNextRow {
1927
+ background: var(--row-background,#fff);
1928
+ border-bottom: 1px solid var(--row-borderColor);
1929
+ box-sizing: border-box;
1930
+ height: var(--row-height);
1931
+ line-height: calc(var(--row-height) - 1px);
1932
+ position: absolute;
1933
+ top: 0;
1934
+ white-space: nowrap;
1935
+ }
1936
+ .vuuTableNextRow-even {
1937
+ --row-background: var(--row-background-even);
1938
+ }
1939
+ .vuuTableNextRow-selected,
1940
+ .vuuTableNextRow-selectedEnd {
1941
+ background-color: rgb(235, 235, 236);
1942
+ }
1943
+ .vuuTableNextRow-selectedStart {
1944
+ --vuu-selection-decorator-left-radius: 5px 0 0 0;
1945
+ --vuu-selection-decorator-right-radius: 0 5px 0 0;
1946
+ border-radius: 5px 5px 0 0;
1947
+ }
1948
+ .vuuTableNextRow-selectedEnd {
1949
+ --vuu-selection-decorator-left-radius: 0 0 0 5px;
1950
+ --vuu-selection-decorator-right-radius: 0 0 5px 0;
1951
+ border-radius: 0 0 5px 5px;
1952
+ }
1953
+ .vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
1954
+ --vuu-selection-decorator-left-radius: 5px 0 0 5px;
1955
+ --vuu-selection-decorator-right-radius: 0 5px 5px 0;
1956
+ border-radius: 5px 5px 5px 5px;
1957
+ }
1958
+ .vuuTableNextRow-selectedStart:after {
1959
+ content: "";
1960
+ position: absolute;
1961
+ top: 0;
1962
+ left: 4px;
1963
+ height: 1px;
1964
+ background-color: var(--vuu-color-purple-10);
1965
+ width: calc(var(--content-width) - 8px);
1966
+ z-index: 1;
1967
+ }
1968
+ .vuuTableNextRow-selectedEnd {
1969
+ border-bottom-color: var(--vuu-color-purple-10);
1970
+ }
1971
+ .vuuTableNextRow-selectionDecorator {
1972
+ background-color: var(--vuu-selection-decorator-bg, inherit);
1973
+ display: inline-block;
1974
+ position: relative;
1975
+ height: var(--row-height);
1976
+ width: 4px;
1977
+ z-index: 2;
1978
+ }
1979
+ .vuuTableNextRow-selectionDecorator.vuuStickyLeft {
1980
+ left: 0;
1981
+ position: sticky;
1982
+ }
1983
+ .vuuTableNextRow-selectionDecorator.vuuStickyRight {
1984
+ right: 0;
1985
+ position: sticky;
1986
+ }
1987
+ .vuuTableNextRow-selected {
1988
+ --vuu-selection-decorator-bg: var(--vuu-color-purple-10);
1989
+ }
1990
+ .vuuTableNextRow-selectedStart {
1991
+ --vuu-selection-decorator-bg: white;
1992
+ }
1993
+ .vuuTableNextRow-selectedEnd {
1994
+ --vuu-selection-decorator-bg: white;
1995
+ }
1996
+ .vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
1997
+ }
1998
+ .vuuTableNextRow-selectedStart .vuuTableNextRow-selectionDecorator:before,
1999
+ .vuuTableNextRow-selectedEnd .vuuTableNextRow-selectionDecorator:before {
2000
+ content: "";
2001
+ inset: 0;
2002
+ position: absolute;
2003
+ background-color: var(--vuu-color-purple-10);
2004
+ }
2005
+ .vuuTableNextRow-selectionDecorator.vuuStickyLeft:before {
2006
+ border-radius: var(--vuu-selection-decorator-left-radius, 0);
2007
+ }
2008
+ .vuuTableNextRow-selectionDecorator.vuuStickyRight:before {
2009
+ border-radius: var(--vuu-selection-decorator-right-radius, 0);
2010
+ }
2011
+ .vuuTableNextRow-expanded {
2012
+ --toggle-icon-transform: rotate(90deg);
2013
+ }
2014
+
2015
+ /* ../vuu-table-extras/src/cell-renderers/background-cell/BackgroundCell.css */
2016
+ .vuuTable td:has(> .vuuBackgroundCellDeprecated) {
2017
+ padding: 0;
2018
+ text-align: right;
2019
+ }
2020
+ .vuuBackgroundCellDeprecated {
2021
+ padding-right: var(--salt-size-unit);
2022
+ position: relative;
2023
+ z-index: -1;
2024
+ }
2025
+ .vuuBackgroundCellDeprecated-flasher {
2026
+ color: transparent;
2027
+ position: absolute;
2028
+ left: 0;
2029
+ right: 0;
2030
+ top: 0;
2031
+ bottom: 0;
2032
+ z-index: -1;
2033
+ }
2034
+ .vuuBackgroundCellDeprecated-flasher {
2035
+ text-align: left;
2036
+ }
2037
+ .vuuBackgroundCellDeprecated-flasher + .num {
2038
+ padding-left: 8px;
2039
+ }
2040
+ .right .vuuBackgroundCellDeprecated-flasher {
2041
+ text-align: right;
2042
+ }
2043
+ .right .vuuBackgroundCellDeprecated-flasher + .num {
2044
+ padding-right: 8px;
2045
+ }
2046
+ .up1 > .vuuBackgroundCellDeprecated-flasher {
2047
+ animation-duration: 30s;
2048
+ animation-name: reactbgup1;
2049
+ }
2050
+ .up2 > .vuuBackgroundCellDeprecated-flasher {
2051
+ animation-duration: 30s;
2052
+ animation-name: reactbgup2;
2053
+ }
2054
+ .down1 > .vuuBackgroundCellDeprecated-flasher {
2055
+ animation-duration: 30s;
2056
+ animation-name: reactbgdown1;
2057
+ }
2058
+ .down2 > .vuuBackgroundCellDeprecated-flasher {
2059
+ animation-duration: 30s;
2060
+ animation-name: reactbgdown2;
2061
+ }
2062
+ .up1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2063
+ animation-duration: 30s;
2064
+ animation-name: reactarrowup1;
2065
+ }
2066
+ .up2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2067
+ animation-duration: 30s;
2068
+ animation-name: reactarrowup2;
2069
+ }
2070
+ .down1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2071
+ animation-duration: 30s;
2072
+ animation-name: reactarrowdown1;
2073
+ }
2074
+ .down2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
2075
+ animation-duration: 30s;
2076
+ animation-name: reactarrowdown2;
2077
+ }
2078
+ .up1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2079
+ animation-duration: 30s;
2080
+ animation-name: reactbgarrowup1;
2081
+ }
2082
+ .up2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2083
+ animation-duration: 30s;
2084
+ animation-name: reactbgarrowup2;
2085
+ }
2086
+ .down1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2087
+ animation-duration: 30s;
2088
+ animation-name: reactbgarrowdown1;
2089
+ }
2090
+ .down2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
2091
+ animation-duration: 30s;
2092
+ animation-name: reactbgarrowdown2;
2093
+ }
2094
+
2095
+ /* ../vuu-table-extras/src/cell-renderers/background-cell/FlashingBackground.css */
2096
+ @keyframes reactbgup1 {
2097
+ from {
2098
+ background-color: green;
2099
+ }
2100
+ to {
2101
+ background-color: transparent;
2102
+ }
2103
+ }
2104
+ @keyframes reactbgup2 {
2105
+ from {
2106
+ background-color: green;
2107
+ }
2108
+ to {
2109
+ background-color: transparent;
2110
+ }
2111
+ }
2112
+ @keyframes reactbgdown1 {
2113
+ from {
2114
+ background-color: red;
2115
+ }
2116
+ to {
2117
+ background-color: transparent;
2118
+ }
2119
+ }
2120
+ @keyframes reactbgdown2 {
2121
+ from {
2122
+ background-color: red;
2123
+ }
2124
+ to {
2125
+ background-color: transparent;
2126
+ }
2127
+ }
2128
+ @keyframes reactarrowup1 {
2129
+ from {
2130
+ color: white;
2131
+ }
2132
+ to {
2133
+ color: transparent;
2134
+ }
2135
+ }
2136
+ @keyframes reactarrowup2 {
2137
+ from {
2138
+ color: white;
2139
+ }
2140
+ to {
2141
+ color: transparent;
2142
+ }
2143
+ }
2144
+ @keyframes reactarrowdown1 {
2145
+ from {
2146
+ color: white;
2147
+ }
2148
+ to {
2149
+ color: transparent;
2150
+ }
2151
+ }
2152
+ @keyframes reactarrowdown2 {
2153
+ from {
2154
+ color: white;
2155
+ }
2156
+ to {
2157
+ color: transparent;
2158
+ }
2159
+ }
2160
+ @keyframes reactbgarrowup1 {
2161
+ 0% {
2162
+ color: green;
2163
+ background-color: green;
2164
+ }
2165
+ 20% {
2166
+ color: green;
2167
+ background-color: transparent;
2168
+ }
2169
+ 100% {
2170
+ color: transparent;
2171
+ background-color: transparent;
2172
+ }
2173
+ }
2174
+ @keyframes reactbgarrowup2 {
2175
+ 0% {
2176
+ color: green;
2177
+ background-color: green;
2178
+ }
2179
+ 20% {
2180
+ color: green;
2181
+ background-color: transparent;
2182
+ }
2183
+ 100% {
2184
+ color: transparent;
2185
+ background-color: transparent;
2186
+ }
2187
+ }
2188
+ @keyframes reactbgarrowdown1 {
2189
+ 0% {
2190
+ color: red;
2191
+ background-color: red;
2192
+ }
2193
+ 20% {
2194
+ color: red;
2195
+ background-color: transparent;
2196
+ }
2197
+ 100% {
2198
+ color: transparent;
2199
+ background-color: transparent;
2200
+ }
2201
+ }
2202
+ @keyframes reactbgarrowdown2 {
2203
+ 0% {
2204
+ color: red;
2205
+ background-color: red;
2206
+ }
2207
+ 20% {
2208
+ color: red;
2209
+ background-color: transparent;
2210
+ }
2211
+ 100% {
2212
+ color: transparent;
2213
+ background-color: transparent;
2214
+ }
2215
+ }
2216
+
2217
+ /* ../vuu-table-extras/src/cell-renderers/progress-cell/ProgressCell.css */
2218
+ .vuuProgressCell {
2219
+ align-items: center;
2220
+ display: flex;
2221
+ }
2222
+ .vuuProgressCell-track {
2223
+ display: inline-block;
2224
+ flex: auto 1 1;
2225
+ height: 4px;
2226
+ overflow: hidden;
2227
+ position: relative;
2228
+ }
2229
+ .vuuProgressCell-bg {
2230
+ background-color: var(--salt-measured-background);
2231
+ display: inline-block;
2232
+ height: 2px;
2233
+ left: 0;
2234
+ position: absolute;
2235
+ top: 1px;
2236
+ width: 100%;
2237
+ }
2238
+ .vuuProgressCell-bar {
2239
+ background-color: var(--salt-measured-fill);
2240
+ display: inline-block;
2241
+ height: 100%;
2242
+ left: 0;
2243
+ position: absolute;
2244
+ top: 0;
2245
+ transform: translateX(var(--progress-bar-pct, -100%));
2246
+ width: 100%;
2247
+ }
2248
+ .vuuProgressCell-text {
2249
+ flex: 35px 0 0;
2250
+ text-align: right;
2251
+ }
2252
+
2253
+ /* ../vuu-table-extras/src/cell-renderers-next/background-cell/BackgroundCell.css */
2254
+ .vuuTableNext td:has(> .vuuBackgroundCell) {
2255
+ padding: 0;
2256
+ text-align: right;
2257
+ }
2258
+ .vuuBackgroundCell {
2259
+ color: var(--background-cell-color);
2260
+ padding-right: var(--salt-size-unit);
2261
+ position: relative;
2262
+ z-index: -1;
2263
+ }
2264
+ .vuuBackgroundCell-flasher {
2265
+ background-color: var(--background-cell-background);
2266
+ position: absolute;
2267
+ left: 0;
2268
+ right: 0;
2269
+ top: 0;
2270
+ bottom: 0;
2271
+ z-index: -1;
2272
+ }
2273
+ .vuuBackgroundCell-flasher {
2274
+ text-align: left;
2275
+ }
2276
+ .vuuBackgroundCell-flasher + .num {
2277
+ padding-left: 8px;
2278
+ }
2279
+ .right .vuuBackgroundCell-flasher {
2280
+ text-align: right;
2281
+ }
2282
+ .right .vuuBackgroundCell-flasher + .num {
2283
+ padding-right: 8px;
2284
+ }
2285
+ .vuuBackgroundCell.up1 {
2286
+ animation-duration: 30s;
2287
+ animation-name: reactbgup1;
2288
+ }
2289
+ .vuuBackgroundCell.up2 {
2290
+ animation-duration: 30s;
2291
+ animation-name: reactbgup2;
2292
+ }
2293
+ .vuuBackgroundCell.down1 {
2294
+ animation-duration: 30s;
2295
+ animation-name: reactbgdown1;
2296
+ }
2297
+ .vuuBackgroundCell.down2 {
2298
+ animation-duration: 30s;
2299
+ animation-name: reactbgdown2;
2300
+ }
2301
+ .up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2302
+ animation-duration: 30s;
2303
+ animation-name: reactarrowup1;
2304
+ }
2305
+ .up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2306
+ animation-duration: 30s;
2307
+ animation-name: reactarrowup2;
2308
+ }
2309
+ .down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2310
+ animation-duration: 30s;
2311
+ animation-name: reactarrowdown1;
2312
+ }
2313
+ .down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
2314
+ animation-duration: 30s;
2315
+ animation-name: reactarrowdown2;
2316
+ }
2317
+ .up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2318
+ animation-duration: 30s;
2319
+ animation-name: reactbgarrowup1;
2320
+ }
2321
+ .up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2322
+ animation-duration: 30s;
2323
+ animation-name: reactbgarrowup2;
2324
+ }
2325
+ .down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2326
+ animation-duration: 30s;
2327
+ animation-name: reactbgarrowdown1;
2328
+ }
2329
+ .down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
2330
+ animation-duration: 30s;
2331
+ animation-name: reactbgarrowdown2;
2332
+ }
2333
+
2334
+ /* ../vuu-table-extras/src/cell-renderers-next/background-cell/FlashingBackground.css */
2335
+ @property --background-cell-background { syntax: "<color>"; initial-value: transparent; inherits: false; }
2336
+ @property --background-cell-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
2337
+ @keyframes reactbgup1 {
2338
+ from {
2339
+ --background-cell-background: var(--vuu-color-green-50);
2340
+ --background-cell-color: white;
2341
+ }
2342
+ to {
2343
+ --background-cell-background: transparent;
2344
+ --background-cell-color: var(--vuu-color-gray-80);
2345
+ }
2346
+ }
2347
+ @keyframes reactbgup2 {
2348
+ from {
2349
+ --background-cell-background: var(--vuu-color-green-50);
2350
+ --background-cell-color: #ffffff;
2351
+ }
2352
+ to {
2353
+ --background-cell-background: transparent;
2354
+ --background-cell-color: var(--vuu-color-gray-80);
2355
+ }
2356
+ }
2357
+ @keyframes reactbgdown1 {
2358
+ from {
2359
+ --background-cell-background: var(--vuu-color-red-50);
2360
+ --background-cell-color: white;
2361
+ }
2362
+ to {
2363
+ --background-cell-background: transparent;
2364
+ --background-cell-color: var(--vuu-color-gray-80);
2365
+ }
2366
+ }
2367
+ @keyframes reactbgdown2 {
2368
+ from {
2369
+ --background-cell-background: var(--vuu-color-red-50);
2370
+ --background-cell-color: white;
2371
+ }
2372
+ to {
2373
+ --background-cell-background: transparent;
2374
+ --background-cell-color: var(--vuu-color-gray-80);
2375
+ }
2376
+ }
2377
+ @keyframes reactarrowup1 {
2378
+ from {
2379
+ color: var(--salt-differential-positive-foreground);
2380
+ }
2381
+ to {
2382
+ color: transparent;
2383
+ }
2384
+ }
2385
+ @keyframes reactarrowup2 {
2386
+ from {
2387
+ color: var(--salt-differential-positive-foreground);
2388
+ }
2389
+ to {
2390
+ color: transparent;
2391
+ }
2392
+ }
2393
+ @keyframes reactarrowdown1 {
2394
+ from {
2395
+ color: var(--salt-differential-negative-foreground);
2396
+ }
2397
+ to {
2398
+ color: transparent;
2399
+ }
2400
+ }
2401
+ @keyframes reactarrowdown2 {
2402
+ from {
2403
+ color: var(--salt-differential-negative-foreground);
2404
+ }
2405
+ to {
2406
+ color: transparent;
2407
+ }
2408
+ }
2409
+ @keyframes reactbgarrowup1 {
2410
+ 0% {
2411
+ color: var(--salt-differential-positive-foreground);
2412
+ background-color: var(--vuu-color-green-50);
2413
+ }
2414
+ 20% {
2415
+ color: var(--salt-differential-positive-foreground);
2416
+ background-color: transparent;
2417
+ }
2418
+ 100% {
2419
+ color: transparent;
2420
+ background-color: transparent;
2421
+ }
2422
+ }
2423
+ @keyframes reactbgarrowup2 {
2424
+ 0% {
2425
+ color: var(--salt-differential-positive-foreground);
2426
+ background-color: var(--vuu-color-green-50);
2427
+ }
2428
+ 20% {
2429
+ color: var(--salt-differential-positive-foreground);
2430
+ background-color: transparent;
2431
+ }
2432
+ 100% {
2433
+ color: transparent;
2434
+ background-color: transparent;
2435
+ }
2436
+ }
2437
+ @keyframes reactbgarrowdown1 {
2438
+ 0% {
2439
+ color: var(--salt-differential-negative-foreground);
2440
+ background-color: var(--vuu-color-red-50);
2441
+ }
2442
+ 20% {
2443
+ color: var(--salt-differential-negative-foreground);
2444
+ background-color: transparent;
2445
+ }
2446
+ 100% {
2447
+ color: transparent;
2448
+ background-color: transparent;
2449
+ }
2450
+ }
2451
+ @keyframes reactbgarrowdown2 {
2452
+ 0% {
2453
+ color: var(--salt-differential-negative-foreground);
2454
+ background-color: var(--vuu-color-red-50);
2455
+ }
2456
+ 20% {
2457
+ color: var(--salt-differential-negative-foreground);
2458
+ background-color: transparent;
2459
+ }
2460
+ 100% {
2461
+ color: transparent;
2462
+ background-color: transparent;
2463
+ }
2464
+ }
2465
+
2466
+ /* ../vuu-table-extras/src/column-list/ColumnList.css */
2467
+ .vuuColumnList {
2468
+ --vuu-svg-function: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.8625 10.5V9.625H6.72291L8.4875 7.59792L6.72291 5.54167H5.64375L4.60833 10.8792C4.53055 11.3167 4.36527 11.6545 4.1125 11.8927C3.85972 12.1309 3.53402 12.25 3.13541 12.25C2.7368 12.25 2.40382 12.1333 2.13645 11.9C1.86909 11.6667 1.73541 11.375 1.73541 11.025C1.73541 10.7625 1.80833 10.551 1.95416 10.3906C2.1 10.2302 2.28958 10.15 2.52291 10.15C2.72708 10.15 2.89479 10.2083 3.02604 10.325C3.15729 10.4417 3.22291 10.5972 3.22291 10.7917C3.22291 10.8986 3.20104 10.9983 3.15729 11.0906C3.11354 11.183 3.05277 11.2583 2.975 11.3167C3.01388 11.3361 3.0552 11.3507 3.09895 11.3604C3.1427 11.3701 3.18888 11.375 3.2375 11.375C3.36388 11.375 3.47083 11.3142 3.55833 11.1927C3.64583 11.0712 3.70902 10.9132 3.74791 10.7188L4.75416 5.54167H2.91666V4.66667H4.91458L5.22083 3.12083C5.30833 2.68333 5.48333 2.34549 5.74583 2.10729C6.00833 1.8691 6.33402 1.75 6.72291 1.75C7.12152 1.75 7.44965 1.86667 7.70729 2.1C7.96493 2.33333 8.09375 2.625 8.09375 2.975C8.09375 3.2375 8.02083 3.44896 7.875 3.60938C7.72916 3.76979 7.53958 3.85 7.30625 3.85C7.1118 3.85 6.94652 3.7941 6.81041 3.68229C6.6743 3.57049 6.60625 3.42222 6.60625 3.2375C6.60625 3.14028 6.62569 3.04549 6.66458 2.95312C6.70347 2.86076 6.75208 2.78542 6.81041 2.72708C6.79097 2.70764 6.7618 2.69063 6.72291 2.67604C6.68402 2.66146 6.64513 2.65417 6.60625 2.65417C6.47986 2.65417 6.37048 2.7125 6.27812 2.82917C6.18576 2.94583 6.12013 3.09653 6.08125 3.28125L5.81875 4.66667H8.575V5.54167H7.88958L9.1 6.94167L10.2375 5.54167H9.5375V4.66667H12.25V5.54167H11.4042L9.65416 7.59792L11.4042 9.625H12.25V10.5H9.5375V9.625H10.2375L9.07083 8.26875L7.875 9.625H8.575V10.5H5.8625Z"/></svg>');
2469
+ --vuuList-borderStyle: none;
2470
+ --vuuListItem-padding: 0;
2471
+ display: flex;
2472
+ flex-direction: column;
2473
+ width: 252px;
2474
+ }
2475
+ [data-icon=function] {
2476
+ --vuu-icon-svg: var(--vuu-svg-function);
2477
+ }
2478
+ .vuuColumnListItem {
2479
+ border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
2480
+ padding: 0 6px 0 0;
2481
+ }
2482
+ .vuuColumnList-switch {
2483
+ flex: 0 0 32px;
2484
+ }
2485
+ .vuuColumnList-text {
2486
+ flex: 1 1 auto;
2487
+ }
2488
+ .vuuColumnList-checkBox {
2489
+ flex: 0 0 20px;
2490
+ }
2491
+ .vuuColumnList-icon {
2492
+ --vuu-icon-color: var(--vuu-color-gray-45);
2493
+ --vuu-icon-size: 16px;
2494
+ --vuu-icon-width: 32px;
2495
+ }
2496
+ .vuuColumnList-header {
2497
+ border-top: solid 2px var(--vuu-color-gray-30);
2498
+ flex: 0 0 40px;
2499
+ font-size: 14px;
2500
+ font-weight: 600;
2501
+ padding-top: 24px;
2502
+ }
2503
+ .vuuColumnList-colHeadings {
2504
+ border-bottom: solid 2px var(--vuu-color-gray-30);
2505
+ color: var(--vuu-color-gray-50);
2506
+ display: flex;
2507
+ flex: 0 0 24px;
2508
+ font-size: 10px;
2509
+ justify-content: space-between;
2510
+ margin-top: 16px;
2511
+ padding-bottom: 8px;
2512
+ }
2513
+
2514
+ /* ../vuu-table-extras/src/column-expression-input/ColumnExpressionInput.css */
2515
+ .vuuColumnExpressionInput {
2516
+ --vuuFilterEditor-background: var(--salt-container-primary-background);
2517
+ --vuuFilterEditor-color: var(--salt-text-primary-foreground);
2518
+ --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
2519
+ --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
2520
+ --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
2521
+ --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
2522
+ --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
2523
+ --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
2524
+ --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
2525
+ --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
2526
+ --vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
2527
+ --vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
2528
+ --vuuFilterEditor-suggestion-height: 24px;
2529
+ --vuuFilterEditor-variableColor: blue;
2530
+ align-items: center;
2531
+ box-sizing: border-box;
2532
+ height: 30px;
2533
+ }
2534
+ .vuuColumnExpressionInput-FilterButton,
2535
+ .vuuColumnExpressionInput-ClearButton {
2536
+ --vuu-icon-size: 12px;
2537
+ --saltButton-width: 28px;
2538
+ }
2539
+ .expression-type-container {
2540
+ margin: 0 3px 0 auto;
2541
+ color: var(--salt-text-secondary-foreground);
2542
+ }
2543
+ .expression-kind {
2544
+ display: inline-block;
2545
+ width: 50px;
2546
+ }
2547
+ .expression-type {
2548
+ display: inline-block;
2549
+ text-align: right;
2550
+ width: 50px;
2551
+ }
2552
+ .vuuSuggestion {
2553
+ display: flex;
2554
+ align-items: center;
2555
+ }
2556
+ .vuuFunctionDoc .function-heading {
2557
+ display: flex;
2558
+ gap: 3px;
2559
+ }
2560
+ .vuuFunctionDoc .function-name {
2561
+ font-style: italic;
2562
+ }
2563
+ .vuuFunctionDoc .param-list {
2564
+ font-style: italic;
2565
+ color: blue;
2566
+ white-space: pre;
2567
+ }
2568
+ .vuuFunctionDoc .function-type {
2569
+ margin-left: auto;
2570
+ }
2571
+ .vuuFunctionDoc .example-container {
2572
+ background-color: var(--salt-container-secondary-background);
2573
+ margin: 6px 0;
2574
+ padding: 3px;
2575
+ }
2576
+ .vuuFunctionDoc .example-expression {
2577
+ font-family: var(--salt-typography-fontFamily-code);
2578
+ margin-left: 8px;
2579
+ margin-top: 6px;
2580
+ }
2581
+ .vuuFunctionDoc .example-result {
2582
+ margin-left: 8px;
2583
+ margin-top: 6px;
2584
+ }
2585
+
2586
+ /* ../vuu-table-extras/src/column-settings/ColumnSettingsPanel.css */
2587
+ .vuuColumnSettingsPanel {
2588
+ --vuu-svg-align-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.33333 10H2.66667C2.3 10 2 10.3 2 10.6667C2 11.0333 2.3 11.3333 2.66667 11.3333H9.33333C9.7 11.3333 10 11.0333 10 10.6667C10 10.3 9.7 10 9.33333 10ZM9.33333 4.66667H2.66667C2.3 4.66667 2 4.96667 2 5.33333C2 5.7 2.3 6 2.66667 6H9.33333C9.7 6 10 5.7 10 5.33333C10 4.96667 9.7 4.66667 9.33333 4.66667ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
2589
+ --vuu-svg-align-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM6.66667 11.3333H13.3333C13.7 11.3333 14 11.0333 14 10.6667C14 10.3 13.7 10 13.3333 10H6.66667C6.3 10 6 10.3 6 10.6667C6 11.0333 6.3 11.3333 6.66667 11.3333ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM6.66667 6H13.3333C13.7 6 14 5.7 14 5.33333C14 4.96667 13.7 4.66667 13.3333 4.66667H6.66667C6.3 4.66667 6 4.96667 6 5.33333C6 5.7 6.3 6 6.66667 6ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
2590
+ --vuu-svg-pin-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.33333 9.86V8.66666H13.3333C13.7 8.66666 14 8.36666 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333L7.33333 7.33333V6.14C7.33333 5.84 6.97333 5.69333 6.76667 5.90666L4.90667 7.76666C4.77333 7.89999 4.77333 8.10666 4.90667 8.24L6.76667 10.1C6.97333 10.3067 7.33333 10.16 7.33333 9.86ZM2.66667 13.3333C3.03333 13.3333 3.33333 13.0333 3.33333 12.6667L3.33333 3.33333C3.33333 2.96666 3.03333 2.66666 2.66667 2.66666C2.3 2.66666 2 2.96666 2 3.33333L2 12.6667C2 13.0333 2.3 13.3333 2.66667 13.3333Z" /></svg>');
2591
+ --vuu-svg-pin-float: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 4.66667H4.66667V6H6V4.66667ZM6 7.33333H4.66667V8.66667H6V7.33333ZM6 2C5.26 2 4.66667 2.6 4.66667 3.33333H6V2ZM8.66667 10H7.33333V11.3333H8.66667V10ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM8.66667 2H7.33333V3.33333H8.66667V2ZM6 11.3333V10H4.66667C4.66667 10.7333 5.26 11.3333 6 11.3333ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333C13.4 11.3333 14 10.7333 14 10H12.6667V11.3333ZM2.66667 4.66667C2.3 4.66667 2 4.96667 2 5.33333V12.6667C2 13.4 2.6 14 3.33333 14H10.6667C11.0333 14 11.3333 13.7 11.3333 13.3333C11.3333 12.9667 11.0333 12.6667 10.6667 12.6667H4C3.63333 12.6667 3.33333 12.3667 3.33333 12V5.33333C3.33333 4.96667 3.03333 4.66667 2.66667 4.66667ZM10 3.33333H11.3333V2H10V3.33333ZM10 11.3333H11.3333V10H10V11.3333Z" /></svg>');
2592
+ --vuu-svg-pin-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.66667 6.14V7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36666 2.3 8.66666 2.66667 8.66666H8.66667V9.86C8.66667 10.16 9.02667 10.3067 9.23333 10.0933L11.0933 8.23333C11.2267 8.1 11.2267 7.89333 11.0933 7.76L9.23333 5.9C9.02667 5.69333 8.66667 5.84 8.66667 6.14ZM13.3333 13.3333C13.7 13.3333 14 13.0333 14 12.6667V3.33333C14 2.96666 13.7 2.66666 13.3333 2.66666C12.9667 2.66666 12.6667 2.96666 12.6667 3.33333V12.6667C12.6667 13.0333 12.9667 13.3333 13.3333 13.3333Z"/></svg>');
2593
+ --vuuDropdown-height: 24px;
2594
+ --vuuDropdown-width: 100%;
2595
+ --vuuIconToggleButton-iconSize: 16px;
2596
+ display: flex;
2597
+ flex-direction: column;
2598
+ gap: 24px;
2599
+ height: 100%;
2600
+ padding-top: 24px;
2601
+ }
2602
+ .vuuColumnSettingsPanel-header {
2603
+ border-top: solid 2px var(--vuu-color-gray-30);
2604
+ font-size: 14px;
2605
+ font-weight: 600;
2606
+ padding-top: 24px;
2607
+ }
2608
+ .vuuColumnSettingsPanel-buttonBar {
2609
+ align-items: center;
2610
+ display: flex;
2611
+ justify-content: space-between;
2612
+ margin-top: auto;
2613
+ }
2614
+ .vuuColumnSettingsPanel-buttonBar[data-align=right] {
2615
+ gap: 6px;
2616
+ justify-content: flex-end;
2617
+ }
2618
+ .vuuColumnSettingsPanel-buttonNavPrev {
2619
+ --vuu-icon-left: 6px;
2620
+ padding-left: 24px;
2621
+ }
2622
+ .vuuColumnSettingsPanel-buttonNavNext {
2623
+ --vuu-icon-left: calc(100% - 18px);
2624
+ padding-right: 24px;
2625
+ }
2626
+ [data-icon=align-left] {
2627
+ --vuu-icon-svg: var(--vuu-svg-align-left);
2628
+ }
2629
+ [data-icon=align-right] {
2630
+ --vuu-icon-svg: var(--vuu-svg-align-right);
2631
+ }
2632
+ [data-icon=pin-left] {
2633
+ --vuu-icon-svg: var(--vuu-svg-pin-left);
2634
+ }
2635
+ [data-icon=pin-float] {
2636
+ --vuu-icon-svg: var(--vuu-svg-pin-float);
2637
+ }
2638
+ [data-icon=pin-right] {
2639
+ --vuu-icon-svg: var(--vuu-svg-pin-right);
2640
+ }
2641
+
2642
+ /* ../vuu-table-extras/src/datasource-stats/DatasourceStats.css */
2643
+ .vuuDatasourceStats {
2644
+ color: black;
2645
+ display: flex;
2646
+ font-size: 10px;
2647
+ gap: var(--salt-size-unit);
2648
+ padding: 4px 0 0 12px;
2649
+ }
2650
+ .vuuDatasourceStats-label {
2651
+ color: var(--vuu-color-gray-50);
2652
+ }
2653
+
2654
+ /* ../vuu-table-extras/src/table-settings/TableSettingsPanel.css */
2655
+ .vuuTableSettingsPanel {
2656
+ --vuu-svg-text-strikethrough: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M28.3333 9.33334C28.8867 9.33334 29.3333 8.88668 29.3333 8.33334C29.3333 7.78001 28.8867 7.33334 28.3333 7.33334H20.26L22.26 9.33334H23.48L23.1133 10.1867L24.5067 11.58L25.4733 9.33334H28.3333ZM27.6267 16.5867L18.7467 7.70668C18.4867 7.44668 18.0667 7.44668 17.8067 7.70668C17.5467 7.96668 17.5467 8.38668 17.8067 8.64668L21.98 12.82L20.88 15.38C20.62 15.9933 21.0667 16.6667 21.7267 16.6667C22.0933 16.6667 22.4267 16.4467 22.5733 16.1067L23.38 14.22L26.68 17.52C26.94 17.78 27.36 17.78 27.62 17.52C27.8867 17.2667 27.8867 16.8467 27.6267 16.5867Z"/></svg>');
2657
+ --vuu-svg-text-Tt: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M17.6667 7.66666C17.6667 8.21999 18.1133 8.66666 18.6667 8.66666H21V15.6667C21 16.22 21.4467 16.6667 22 16.6667C22.5533 16.6667 23 16.22 23 15.6667V8.66666H25.3333C25.8867 8.66666 26.3333 8.21999 26.3333 7.66666C26.3333 7.11332 25.8867 6.66666 25.3333 6.66666H18.6667C18.1133 6.66666 17.6667 7.11332 17.6667 7.66666ZM29.3333 9.99999H25.3333C24.78 9.99999 24.3333 10.4467 24.3333 11C24.3333 11.5533 24.78 12 25.3333 12H26.3333V15.6667C26.3333 16.22 26.78 16.6667 27.3333 16.6667C27.8867 16.6667 28.3333 16.22 28.3333 15.6667V12H29.3333C29.8867 12 30.3333 11.5533 30.3333 11C30.3333 10.4467 29.8867 9.99999 29.3333 9.99999Z" /></svg>');
2658
+ --vuu-svg-text-T: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M19.3333 7.66666C19.3333 8.21999 19.78 8.66666 20.3333 8.66666H23V15.6667C23 16.22 23.4467 16.6667 24 16.6667C24.5533 16.6667 25 16.22 25 15.6667V8.66666H27.6667C28.22 8.66666 28.6667 8.21999 28.6667 7.66666C28.6667 7.11332 28.22 6.66666 27.6667 6.66666H20.3333C19.78 6.66666 19.3333 7.11332 19.3333 7.66666Z"/></svg>');
2659
+ --vuu-svg-stripes: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="2" rx="0.3"/><rect x="2" y="5" width="12" height="2" rx="0.3"/><rect x="2" y="8" width="12" height="2" rx="0.3"/><rect x="2" y="11" width="12" height="2" rx="0.3"/></svg>');
2660
+ --vuu-svg-row-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="1" rx="0.3" /><rect x="2" y="6" width="12" height="1" rx="0.3" /><rect x="2" y="9" width="12" height="1" rx="0.3" /><rect x="2" y="12" width="12" height="1" rx="0.3"/></svg>');
2661
+ --vuu-svg-col-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 3 14)"/><rect x="6" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 6 14)"/><rect x="9" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 9 14)"/><rect x="12" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 12 14)"/></svg>');
2662
+ display: flex;
2663
+ flex-direction: column;
2664
+ gap: 24px;
2665
+ height: 100%;
2666
+ padding-top: 24px;
2667
+ }
2668
+ .vuuTableSettingsPanel [data-icon=text-strikethrough] {
2669
+ --vuu-icon-svg: var(--vuu-svg-text-strikethrough);
2670
+ }
2671
+ .vuuTableSettingsPanel [data-icon=text-Tt] {
2672
+ --vuu-icon-svg: var(--vuu-svg-text-Tt);
2673
+ }
2674
+ .vuuTableSettingsPanel [data-icon=text-T] {
2675
+ --vuu-icon-svg: var(--vuu-svg-text-T);
2676
+ }
2677
+ .vuuTableSettingsPanel [data-icon=col-lines] {
2678
+ --vuu-icon-svg: var(--vuu-svg-col-lines);
2679
+ }
2680
+ .vuuTableSettingsPanel [data-icon=row-lines] {
2681
+ --vuu-icon-svg: var(--vuu-svg-row-lines);
2682
+ }
2683
+ .vuuTableSettingsPanel [data-icon=row-striping] {
2684
+ --vuu-icon-svg: var(--vuu-svg-stripes);
2685
+ }
2686
+ .vuuTableSettingsPanel-header {
2687
+ border-top: solid 2px var(--vuu-color-gray-30);
2688
+ font-size: 14px;
2689
+ font-weight: 600;
2690
+ padding-top: 24px;
2691
+ }
2692
+ .vuuTableSettingsPanel .vuuColumnList {
2693
+ flex-grow: 1;
2694
+ flex-shrink: 1;
2695
+ flex-basis: 0;
2696
+ }
2697
+ .vuuTableSettingsPanel-calculatedButtonbar {
2698
+ --vuu-icon-size: 16px;
2699
+ --saltButton-height: 24px;
2700
+ --saltButton-width: 24px;
2701
+ align-items: center;
2702
+ display: flex;
2703
+ flex: 0 0 32px;
2704
+ gap: 12px;
2705
+ }
2706
+ .vuuGridSeparators {
2707
+ --vuuIconToggleButton-iconSize: 16px;
2708
+ }
2709
+
2710
+ /* ../vuu-table/src/table-next/TableNext.css */
2711
+ .vuuTableNext {
2712
+ --vuu-table-cell-outlineWidth: 1px;
2713
+ --table-height: var(--measured-px-height);
2714
+ --table-width: var(--measured-px-width);
2715
+ --vuu-table-next-selection-bookend-width: 4px;
2716
+ --columnResizer-color: transparent;
2717
+ --row-background: white;
2718
+ --cell-borderColor: transparent;
2719
+ --row-borderColor: var(--row-background);
2720
+ --table-background: var(--salt-container-primary-background);
2721
+ position: relative;
2722
+ user-select: none;
2723
+ }
2724
+ .vuuTableNext-zebra {
2725
+ --row-background-even: var(--vuu-color-gray-25) ;
2726
+ }
2727
+ .vuuTableNext-colLines {
2728
+ --cell-borderColor: var(--salt-separable-tertiary-borderColor);
2729
+ }
2730
+ .vuuTableNext-rowLines {
2731
+ --row-borderColor: var(--salt-separable-tertiary-borderColor);
2732
+ }
2733
+ .vuuTableNext-scrollbarContainer {
2734
+ --scroll-content-width: 1100px;
2735
+ border-bottom: none !important;
2736
+ border-top: none !important;
2737
+ border-left: solid 1px var(--salt-container-primary-borderColor);
2738
+ height: var(--viewport-body-height);
2739
+ left: 0px;
2740
+ overflow: auto;
2741
+ position: absolute;
2742
+ top: var(--total-header-height);
2743
+ width: var(--table-width);
2744
+ }
2745
+ .vuuTableNext-scrollbarContainer::-webkit-scrollbar {
2746
+ border: none;
2747
+ width: 10px;
2748
+ }
2749
+ .vuuTableNext-scrollbarContainer::-webkit-scrollbar:horizontal {
2750
+ height: 10px;
2751
+ }
2752
+ .vuuTableNext-scrollbarContainer::-webkit-scrollbar-track {
2753
+ background-color: white;
2754
+ }
2755
+ .vuuTableNext-scrollbarContainer::-webkit-scrollbar-thumb {
2756
+ background-clip: padding-box;
2757
+ border-radius: 10px;
2758
+ border: 2px solid rgba(0, 0, 0, 0);
2759
+ background-color: var(--vuu-color-gray-30);
2760
+ }
2761
+ .vuuTableNext-scrollbarContent {
2762
+ height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
2763
+ position: absolute;
2764
+ width: var(--content-width);
2765
+ }
2766
+ .vuuTableNext-contentContainer {
2767
+ background-color: var(--salt-container-primary-background);
2768
+ height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
2769
+ position: relative;
2770
+ overflow: auto;
2771
+ overscroll-behavior: none;
2772
+ width: calc(var(--table-width) - var(--vertical-scrollbar-width));
2773
+ }
2774
+ .vuuTableNext-contentContainer::-webkit-scrollbar {
2775
+ display: none;
2776
+ }
2777
+ .vuuTableNext-table {
2778
+ position: absolute;
2779
+ top: 0;
2780
+ left: 0;
2781
+ table-layout: fixed;
2782
+ width: var(--content-width);
2783
+ margin: 0;
2784
+ border: none;
2785
+ background-color: #fff;
2786
+ border-collapse: separate;
2787
+ border-spacing: 0;
2788
+ }
2789
+ .vuuTableNext-body {
2790
+ height: var(--content-height);
2791
+ }
2792
+ .vuuPinLeft,
2793
+ .vuuPinRight {
2794
+ background-color: inherit;
2795
+ position: sticky;
2796
+ z-index: 1;
2797
+ }
2798
+ .vuuTableNext-col-headings {
2799
+ background-color: white;
2800
+ padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
2801
+ position: sticky;
2802
+ top: 0;
2803
+ z-index: 1;
2804
+ }
2805
+ .vuuTableNext-col-headers {
2806
+ background-color: var(--table-background);
2807
+ white-space: nowrap;
2808
+ }
2809
+ .sizer-cell {
2810
+ background-color: green !important;
2811
+ border: none !important;
2812
+ height: 0px;
2813
+ }
2814
+ .vuuDraggable-vuuTableNext {
2815
+ --header-height: 25px;
2816
+ --vuuTableNextHeaderCell-background: var(--vuu-color-gray-25);
2817
+ }
2818
+
2819
+ /* ../vuu-table/src/table-next/cell-renderers/dropdown-cell/DropdownCell.css */
2820
+ .vuuTableDropdownCell {
2821
+ --vuu-icon-height: 15px;
2822
+ --salt-focused-outlineStyle: none;
2823
+ --saltButton-borderRadius: 4px;
2824
+ font-weight: 500;
2825
+ }
2826
+ .vuuTableDropdownCell button:focus-visible {
2827
+ --saltButton-borderColor: var(--vuu-color-purple-10);
2828
+ --saltButton-borderWidth: 2px;
2829
+ padding-left: 3px;
2830
+ }
2831
+
2832
+ /* ../vuu-table/src/table-next/cell-renderers/input-cell/InputCell.css */
2833
+ .vuuTableInputCell.saltInput-primary {
2834
+ --salt-focused-outlineStyle: none;
2835
+ --saltInput-height: 17px;
2836
+ --saltInput-minHeight: 17px;
2837
+ border-radius: 4px;
2838
+ font-weight: 500;
2839
+ }
2840
+ .vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary,
2841
+ .vuuTableInputCell.saltInput-primary.saltInput-focused {
2842
+ border: solid 2px var(--vuu-color-purple-10);
2843
+ padding: 0 3px;
2844
+ }
2845
+ .vuuTableInputCell-icon {
2846
+ --vuu-icon-height: 13px;
2847
+ --vuu-icon-size: 15px;
2848
+ --vuu-icon-width: 12px;
2849
+ border-radius: 10px;
2850
+ }
2851
+ .vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,
2852
+ .vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error {
2853
+ border: solid 2px var(--vuu-color-red-50);
2854
+ }
2855
+ .vuuTableInputCell-error.saltInput-primary {
2856
+ border: solid 1px var(--vuu-color-red-50);
2857
+ }
2858
+
2859
+ /* ../vuu-ui-controls/src/instrument-search/SearchCell.css */
2860
+ .vuuSearchCell {
2861
+ --vuu-icon-left: 0;
2862
+ --vuu-icon-size: 16px;
2863
+ --vuu-icon-top: 0px;
2864
+ align-items: center;
2865
+ color: var(--background-cell-color);
2866
+ display: flex;
2867
+ gap: 4px;
2868
+ padding: 0 8px 0 8px;
2869
+ position: relative;
2870
+ z-index: -1;
2871
+ }
2872
+
2873
+ /* ../vuu-ui-controls/src/instrument-search/InstrumentSearch.css */
2874
+ .vuuInstrumentSearch {
2875
+ height: 100%;
2876
+ padding: var(--vuuInstrumentSearch-padding, 12px);
2877
+ display: flex;
2878
+ flex-direction: column;
2879
+ }
2880
+ .vuuInstrumentSearch-inputField {
2881
+ --vuu-icon-size: 16px;
2882
+ flex: 0 0 40px;
2883
+ }
2884
+ .vuuInstrumentSearch-list {
2885
+ background-color: var(--salt-container-primary-background);
2886
+ flex: 1 1 auto;
2887
+ }
2888
+ .vuuInstrumentSearch .vuuTableNextCell {
2889
+ padding: 0;
2890
+ }
2891
+
2892
+ /* ../vuu-ui-controls/src/price-ticker/PriceTicker.css */
2893
+ @property --price-ticker-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
2894
+ .vuuPriceTicker {
2895
+ align-items: center;
2896
+ display: flex;
2897
+ font-size: var(--vuuPriceTicker-fontSize, var(--salt-text-fontSize));
2898
+ font-weight: var(--vuuPriceTicker-fontWeight, 700);
2899
+ transition-property: color;
2900
+ transition-duration: .3s;
2901
+ }
2902
+ .vuuPriceTicker.up1 {
2903
+ --vuu-icon-color: var(--vuu-color-green-50);
2904
+ color: var(--vuu-color-green-50);
2905
+ animation-duration: 30s;
2906
+ }
2907
+ .vuuPriceTicker.up2 {
2908
+ --vuu-icon-color: var(--vuu-color-green-50);
2909
+ color: var(--vuu-color-green-50);
2910
+ animation-duration: 30s;
2911
+ }
2912
+ .vuuPriceTicker.down1 {
2913
+ --vuu-icon-transform: rotate(180deg);
2914
+ --vuu-icon-color: var(--vuu-color-red-50);
2915
+ color: var(--vuu-color-red-50);
2916
+ animation-duration: 30s;
2917
+ }
2918
+ .vuuPriceTicker.down2 {
2919
+ --vuu-icon-transform: rotate(180deg);
2920
+ --vuu-icon-color: var(--vuu-color-red-50);
2921
+ color: var(--vuu-color-red-50);
2922
+ animation-duration: 30s;
2923
+ }
2924
+
2925
+ /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
2926
+ .vuuTabstrip {
2927
+ --vuuOverflowContainer-background: transparent;
2928
+ --tabstrip-dragging-display: none;
2929
+ --tabstrip-display: inline-flex;
2930
+ --tabstrip-background: transparent;
2931
+ align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
2932
+ display: flex;
2933
+ font-size: var(--salt-text-fontSize);
2934
+ font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
2935
+ min-width: 28px;
2936
+ position: relative;
2937
+ overflow: visible;
2938
+ width: var(--tabstrip-width);
2939
+ }
2940
+ .vuuTabstrip-horizontal {
2941
+ --tabstrip-height: var(--vuuTabstrip-height, 28px);
2942
+ --tabstrip-width: var(--vuuTabstrip-width, 100%);
2943
+ --tab-height: var(--tabstrip-height);
2944
+ --tab-width: auto;
2945
+ --tab-thumb-height: 2px;
2946
+ --tab-thumb-left: var(--tab-thumb-offset, 0);
2947
+ --tab-thumb-top: auto;
2948
+ --tab-thumb-width: var(--tab-thumb-size, 100%);
2949
+ align-items: flex-start;
2950
+ border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
2951
+ }
2952
+ .vuuTabstrip-vertical {
2953
+ --tabstrip-height: var(--vuuTabstrip-height, 100%);
2954
+ --tabstrip-width: var(--vuuTabstrip-width, 100px);
2955
+ --tab-height: 50px;
2956
+ --tab-width: 100%;
2957
+ --tab-thumb-height: 0;
2958
+ --tab-thumb-left: 0;
2959
+ --tab-thumb-top: var(--tab-thumb-offset, 0);
2960
+ --tab-thumb-width: 2px;
2961
+ align-self: flex-start;
2962
+ display: inline-flex;
2963
+ }
2964
+ .vuuTabstrip-draggingTab .vuuTab {
2965
+ pointer-events: none;
2966
+ }
2967
+ .vuuTabstrip-addTabButton {
2968
+ --saltButton-height: 20px;
2969
+ --saltButton-width: 20px;
2970
+ }
2971
+ .vuuTabstrip-overflowMenu.vuuDropdown {
2972
+ --saltIcon-margin: 2px 0 0 0px;
2973
+ }
2974
+ .vuuTabstrip-overflowMenu-open {
2975
+ --saltButton-background: var(--salt-actionable-secondary-background-active);
2976
+ --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
2977
+ }
2978
+ .vuuTabstrip-overflowMenu-open .saltButton {
2979
+ --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
2980
+ }
2981
+ .vuuTabstrip-inner {
2982
+ width: 100%;
2983
+ align-items: center;
2984
+ display: flex;
2985
+ flex-basis: auto;
2986
+ flex-grow: 0;
2987
+ flex-shrink: 1;
2988
+ flex-wrap: wrap;
2989
+ justify-content: flex-start;
2990
+ line-height: var(--tabstrip-height);
2991
+ }
2992
+ .vuuTabstrip-vertical .vuuTabstrip-inner {
2993
+ flex-direction: column;
2994
+ height: auto;
2995
+ }
2996
+ .vuuTabstrip-centered .vuuTabstrip-inner {
2997
+ justify-content: center;
2998
+ }
2999
+ .vuuDraggable[class*=vuuTabstrip] {
3000
+ --tabstrip-display: flex;
3001
+ --tabstrip-height: 100%;
958
3002
  --tabstrip-dragging-display: block;
959
3003
  --tabs-tab-background: var(--salt-navigable-primary-background-hover);
960
3004
  --tabs-tab-before-content: "";
@@ -993,9 +3037,9 @@ path.drop-target.centre {
993
3037
  /* ../vuu-ui-controls/src/tabstrip/Tab.css */
994
3038
  .vuuTab {
995
3039
  --saltEditableLabel-padding: 0;
996
- --saltEditableLabel-height: var(--tabstrip-height);
3040
+ --saltEditableLabel-height: calc(var(--tabstrip-height) - 2px);
997
3041
  --saltInputLegacy-minWidth: 4em;
998
- --saltEditableLabel-top: 3px;
3042
+ --saltEditableLabel-top: 2px;
999
3043
  --tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
1000
3044
  --tab-cursor: pointer;
1001
3045
  --tab-position: relative;
@@ -1010,7 +3054,7 @@ path.drop-target.centre {
1010
3054
  cursor: var(--vuuTab-cursor, var(--tab-cursor));
1011
3055
  display: var(--tabstrip-display);
1012
3056
  gap: 8px;
1013
- height: var(--vuuTab-height, var(--tabstrip-height));
3057
+ height: var(--vuuTabHeight, var(--tab-height));
1014
3058
  letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
1015
3059
  min-width: var(--vuuTab-minWidth, 40px);
1016
3060
  outline: none;
@@ -1036,7 +3080,8 @@ path.drop-target.centre {
1036
3080
  font-family: inherit;
1037
3081
  font-size: inherit;
1038
3082
  font-weight: inherit;
1039
- height: var(--vuuTabstrip-height, var(--salt-size-stackable));
3083
+ height: calc(var(--tab-height) - var(--tab-thumb-height));
3084
+ margin-bottom: var(--tab-thumb-height);
1040
3085
  outline: none;
1041
3086
  position: relative;
1042
3087
  }
@@ -1319,321 +3364,807 @@ path.drop-target.centre {
1319
3364
  border-style: var(--vuuView-borderStyle, none);
1320
3365
  display: flex;
1321
3366
  flex-direction: column;
1322
- margin: var(--vuuView-margin, 0px);
1323
- min-height: 50px;
1324
- min-width: 50px;
1325
- outline: none;
1326
- overflow: hidden;
1327
- position: relative;
3367
+ margin: var(--vuuView-margin, 0px);
3368
+ min-height: 50px;
3369
+ min-width: 50px;
3370
+ outline: none;
3371
+ overflow: hidden;
3372
+ position: relative;
3373
+ }
3374
+ .vuuView.focus-visible:after {
3375
+ content: "";
3376
+ position: absolute;
3377
+ top: 0;
3378
+ left: 0;
3379
+ right: 0;
3380
+ bottom: 0;
3381
+ border: dotted cornflowerblue 2px;
3382
+ }
3383
+ .vuuView.dragging {
3384
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3385
+ }
3386
+ .vuuView-main {
3387
+ display: flex;
3388
+ flex-direction: var(--vuuView-flexDirection, column);
3389
+ flex-wrap: var(--vuuView-flex-wrap, nowrap);
3390
+ flex: 1;
3391
+ overflow: hidden;
3392
+ position: relative;
3393
+ }
3394
+ .vuuView-main > * {
3395
+ flex-basis: auto;
3396
+ flex-grow: var(--vuuView-flex-grow, 1);
3397
+ flex-shrink: var(--vuuView-flex-shrink, 1);
3398
+ }
3399
+ .vuuView-collapsed .vuuView-main {
3400
+ display: none;
3401
+ }
3402
+ .vuuView-collapsed + .Splitter {
3403
+ display: none;
3404
+ }
3405
+ .vuuView-collapsed .Toolbar-vertical {
3406
+ border-right: solid 1px var(--grey40);
3407
+ }
3408
+ .vuuView-collapsed .Toolbar-vertical .toolbar-title {
3409
+ display: none;
3410
+ }
3411
+
3412
+ /* ../vuu-layout/src/layout-header/Header.css */
3413
+ .vuuHeader {
3414
+ --saltButton-height: 24px;
3415
+ --saltButton-width: 24px;
3416
+ }
3417
+ .salt-density-high .vuuHeader {
3418
+ --saltToolbarField-marginTop: 0;
3419
+ }
3420
+
3421
+ /* ../vuu-layout/src/measured-container/MeasuredContainer.css */
3422
+ .vuuMeasuredContainer {
3423
+ height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
3424
+ width: var(--measured-css-width);
3425
+ }
3426
+
3427
+ /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
3428
+ .vuuOverflowContainer {
3429
+ --item-gap: 2px;
3430
+ --overflow-direction: row;
3431
+ --overflow-width: 0px;
3432
+ --border-size: calc((var(--overflow-container-height) - 24px) / 2);
3433
+ background-color: var(--vuuOverflowContainer-background);
3434
+ height: var(--overflow-container-height);
3435
+ }
3436
+ .vuuOverflowContainer-horizontal {
3437
+ --item-align: center;
3438
+ --item-margin: 0 var(--item-gap) 0 var(--item-gap);
3439
+ }
3440
+ .vuuOverflowContainer-vertical {
3441
+ --item-align: stretch;
3442
+ --item-margin: var(--item-gap) 0 var(--item-gap) 0;
3443
+ --overflow-direction: column;
3444
+ }
3445
+ .vuuOverflowContainer-wrapContainer {
3446
+ align-items: var(--item-align);
3447
+ display: flex;
3448
+ flex-direction: var(--overflow-direction);
3449
+ flex-wrap: wrap;
3450
+ height: var(--overflow-container-height);
3451
+ min-width: 44px;
3452
+ overflow: hidden;
3453
+ position: relative;
3454
+ width: 100%;
3455
+ }
3456
+ .vuuOverflowContainer-wrapContainer.overflowed {
3457
+ --overflow-order: 2;
3458
+ --overflow-left: auto;
3459
+ --overflow-position: relative;
3460
+ --overflow-width: auto;
3461
+ }
3462
+ .vuuOverflowContainer-item {
3463
+ align-items: inherit;
3464
+ display: flex;
3465
+ order: 1;
3466
+ position: relative;
3467
+ height: var(--overflow-container-height);
3468
+ margin: var(--item-margin);
3469
+ }
3470
+ .vuuOverflowContainer-item[data-align=right] {
3471
+ margin-left: auto;
3472
+ }
3473
+ .vuuOverflowContainer-item.wrapped {
3474
+ --overflow-item-bg: #ccc;
3475
+ order: 3;
3476
+ }
3477
+ .vuuOverflowContainer-item.vuuDraggable-dragAway,
3478
+ .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
3479
+ display: none;
3480
+ }
3481
+ .vuuOverflowContainer-item.vuuDropTarget-settling {
3482
+ visibility: hidden;
3483
+ }
3484
+ .vuuOverflowContainer-OverflowIndicator {
3485
+ align-items: center;
3486
+ background-color: transparent;
3487
+ display: flex;
3488
+ height: var(--overflow-container-height);
3489
+ height: var(--overflow-container-height);
3490
+ order: var(--overflow-order, 99);
3491
+ overflow: hidden;
3492
+ left: var(--overflow-left, 100%);
3493
+ position: var(--overflow-position, absolute);
3494
+ width: var(--overflow-width);
3495
+ }
3496
+ .vuuDraggable-vuuOverflowContainer {
3497
+ align-items: center;
3498
+ display: flex;
3499
+ height: 44px;
3500
+ }
3501
+
3502
+ /* ../vuu-layout/src/palette/Palette.css */
3503
+ .vuuPalette {
3504
+ --vuuList-borderStyle: none;
3505
+ }
3506
+ .vuuPalette-horizontal {
3507
+ align-items: center;
3508
+ display: flex;
3509
+ }
3510
+ .vuuPaletteItem {
3511
+ --vuu-icon-color: var(--salt-text-primary-foreground);
3512
+ --vuu-icon-left: 0;
3513
+ --vuu-icon-size: 16px;
3514
+ --vuu-icon-top: 11px;
3515
+ --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
3516
+ border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
3517
+ padding-left: 12px;
3518
+ font-size: 12px;
3519
+ font-weight: 600;
3520
+ }
3521
+ .vuuSimpleDraggableWrapper > .vuuPaletteItem {
3522
+ --vuu-icon-color: var(--salt-selectable-foreground);
3523
+ }
3524
+ .salt-theme .vuuPaletteItem {
3525
+ font-size: 11px;
3526
+ font-weight: normal;
3527
+ }
3528
+
3529
+ /* ../vuu-layout/src/stack/Stack.css */
3530
+ .Tabs {
3531
+ display: flex;
3532
+ box-sizing: border-box;
3533
+ flex-direction: column;
3534
+ }
3535
+ .Tabs-horizontal {
3536
+ --vuu-tabs-border-style: none solid none none;
3537
+ flex-direction: row;
3538
+ }
3539
+ .Tabs .Toolbar:before {
3540
+ left: 0;
3541
+ width: 100%;
3542
+ bottom: 0;
3543
+ height: 1px;
3544
+ content: "";
3545
+ position: absolute;
3546
+ background: var(--grey60);
3547
+ }
3548
+ .vuuTabHeader {
3549
+ --saltTabs-activationIndicator-background: transparent;
3550
+ --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
3551
+ border-color: var(--salt-container-primary-borderColor);
3552
+ border-style: var(--vuu-tabs-border-style, none none solid none);
3553
+ border-width: 1px;
3554
+ }
3555
+ .vuuTabHeader + .hwFlexbox,
3556
+ .vuuTabHeader + * {
3557
+ flex: 1;
3558
+ }
3559
+ .vuuTabHeader + .vuuView > .vuuHeader {
3560
+ height: 0;
3561
+ overflow: hidden;
3562
+ }
3563
+ .Layout-svg-button {
3564
+ --spacing-medium: 5px;
3565
+ }
3566
+
3567
+ /* ../vuu-layout/src/toolbar/Toolbar.css */
3568
+ .vuuToolbar {
3569
+ background: var(--vuuToolbar-background, inherit);
3570
+ height: var(--vuuToolbar-height, 36px);
3571
+ }
3572
+ .vuuToolbarItem {
3573
+ height: 100%;
3574
+ }
3575
+ .vuuToolbarItem.vuuFocusVisible {
3576
+ outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
3577
+ outline-style: dashed;
3578
+ outline-width: 1px;
3579
+ outline-offset: -1px;
3580
+ }
3581
+
3582
+ /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
3583
+ [data-design-mode=true] .Component {
3584
+ filter: grayscale(100%);
3585
+ opacity: 0.4;
3586
+ }
3587
+ [data-design-mode=true] .Component:after {
3588
+ color: black;
3589
+ content: "Component";
3590
+ height: 12px;
3591
+ background-color: yellow;
3592
+ }
3593
+ .LayoutConfigurator {
3594
+ --margin-color: #f3cea5;
3595
+ --border-color: #fddda0;
3596
+ --padding-color: #c6d092;
3597
+ --content-color: #8cb6c0;
3598
+ display: flex;
3599
+ flex-direction: column;
3600
+ align-items: stretch;
3601
+ background-color: var(--margin-color);
3602
+ }
3603
+ .LayoutConfigurator .layout-outer {
3604
+ flex: 1 1 auto;
3605
+ display: flex;
3606
+ flex-direction: column;
3607
+ align-items: stretch;
3608
+ }
3609
+ .LayoutBox {
3610
+ --hw-control-font-size: 13px;
3611
+ --hw-text-input-bg: rgba(255, 255, 255, 0.3);
3612
+ --hwTextInput-padding: 3px;
3613
+ --hw-text-input-position: absolute;
3614
+ --hwTextInput-width: 30px;
3615
+ flex: 1 1 auto;
3616
+ }
3617
+ .LayoutBox > .layout-top {
3618
+ flex: 0 0 40px;
3619
+ padding-left: 12px;
3620
+ display: flex;
3621
+ flex-direction: row;
3622
+ align-items: center;
3623
+ position: relative;
3624
+ }
3625
+ .LayoutBox > .layout-bottom {
3626
+ flex: 0 0 40px;
3627
+ position: relative;
3628
+ display: flex;
3629
+ flex-direction: row;
3630
+ align-items: center;
3631
+ }
3632
+ .LayoutBox > .layout-inner > .layout-right,
3633
+ .LayoutBox > .layout-inner > .layout-left {
3634
+ flex: 0 0 40px;
3635
+ display: flex;
3636
+ flex-direction: column;
3637
+ justify-content: center;
3638
+ align-items: center;
1328
3639
  }
1329
- .vuuView.focus-visible:after {
1330
- content: "";
1331
- position: absolute;
1332
- top: 0;
1333
- left: 0;
1334
- right: 0;
1335
- bottom: 0;
1336
- border: dotted cornflowerblue 2px;
3640
+ .layout-top,
3641
+ .layout-bottom {
3642
+ --hw-text-input-margin: 0 0 0 -15px;
1337
3643
  }
1338
- .vuuView.dragging {
1339
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3644
+ .layout-top > .layout-input,
3645
+ .layout-bottom > .layout-input {
3646
+ left: 50%;
1340
3647
  }
1341
- .vuuView-main {
3648
+ .LayoutBox > .layout-inner {
3649
+ flex: 1 1 auto;
1342
3650
  display: flex;
1343
- flex-direction: var(--vuuView-flexDirection, column);
1344
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
1345
- flex: 1;
1346
- overflow: hidden;
1347
- position: relative;
3651
+ flex-direction: row;
3652
+ align-items: stretch;
1348
3653
  }
1349
- .vuuView-main > * {
1350
- flex-basis: auto;
1351
- flex-grow: var(--vuuView-flex-grow, 1);
1352
- flex-shrink: var(--vuuView-flex-shrink, 1);
3654
+ .LayoutBox.layout-margin {
3655
+ background-color: var(--margin-color);
3656
+ border: dashed 2px black;
1353
3657
  }
1354
- .vuuView-collapsed .vuuView-main {
1355
- display: none;
3658
+ .LayoutBox.layout-border {
3659
+ background-color: var(--border-color);
3660
+ border: solid 2px black;
1356
3661
  }
1357
- .vuuView-collapsed + .Splitter {
1358
- display: none;
3662
+ .LayoutBox.layout-padding {
3663
+ background-color: var(--padding-color);
3664
+ border: dashed 2px black;
1359
3665
  }
1360
- .vuuView-collapsed .Toolbar-vertical {
1361
- border-right: solid 1px var(--grey40);
3666
+ .LayoutBox .layout-content {
3667
+ flex: 1 1 auto;
3668
+ background-color: var(--content-color);
3669
+ border: solid 2px #808080;
1362
3670
  }
1363
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
1364
- display: none;
3671
+ .LayoutBox .layout-title {
3672
+ color: #161616;
3673
+ font-size: 11px;
3674
+ left: 4px;
3675
+ line-height: 15px;
3676
+ position: absolute;
3677
+ top: 1px;
1365
3678
  }
1366
3679
 
1367
- /* ../vuu-layout/src/layout-header/Header.css */
1368
- .vuuHeader {
1369
- --saltButton-height: 24px;
1370
- --saltButton-width: 24px;
3680
+ /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
3681
+ .hwLayoutTreeViewer {
1371
3682
  }
1372
- .salt-density-high .vuuHeader {
1373
- --saltToolbarField-marginTop: 0;
3683
+ .hwLayoutTreeNode {
3684
+ cursor: default;
3685
+ }
3686
+ .hwLayoutTreeNode:hover {
3687
+ background-color: rgba(255, 255, 255, 0.2);
3688
+ }
3689
+ .hwLayoutTreeNode[aria-selected=true] {
3690
+ background-color: cornflowerblue;
3691
+ color: white;
1374
3692
  }
1375
3693
 
1376
- /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
1377
- .vuuOverflowContainer {
1378
- --item-gap: 4px;
1379
- --overflow-direction: row;
1380
- --overflow-width: 0px;
1381
- --overflow-order: 99;
1382
- --border-size: calc((var(--overflow-container-height) - 24px) / 2);
1383
- background-color: var(--vuuOverflowContainer-background, black);
1384
- height: var(--overflow-container-height);
3694
+ /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
3695
+ .saveLayoutPanel {
3696
+ --salt-selectable-foreground-hover: #6d18bdc3;
3697
+ --salt-selectable-foreground-selected: #6D18BD;
3698
+ --salt-selectable-borderColor-selected: #6D18BD;
3699
+ --saltInputLegacy-fontSize: 12px;
3700
+ --salt-text-label-fontSize: 10px;
3701
+ --saltFormFieldLegacy-label-paddingLeft: 0;
3702
+ --saltFormField-label-fontWeight: 400;
3703
+ }
3704
+ .saveLayoutPanel-panelContainer {
3705
+ display: flex;
3706
+ padding: 16px;
3707
+ flex-direction: column;
3708
+ align-items: flex-start;
3709
+ gap: 16px;
1385
3710
  }
1386
- .vuuOverflowContainer-horizontal {
1387
- --item-align: center;
1388
- --item-margin: 0 0 0 var(--item-gap);
3711
+ .saveLayoutPanel-panelContent {
3712
+ display: flex;
3713
+ align-items: flex-start;
3714
+ gap: 32px;
1389
3715
  }
1390
- .vuuOverflowContainer-vertical {
1391
- --item-align: stretch;
1392
- --item-margin: var(--item-gap) 0 0 0;
1393
- --overflow-direction: column;
3716
+ .saveLayoutPanel-formContainer {
3717
+ display: flex;
3718
+ width: 217px;
3719
+ flex-direction: column;
3720
+ align-items: flex-start;
3721
+ gap: 16px;
1394
3722
  }
1395
- .vuuOverflowContainer-wrapContainer {
1396
- align-items: var(--item-align);
3723
+ .saveLayoutPanel-formField {
3724
+ display: flex;
3725
+ flex-direction: column;
3726
+ gap: 1px;
3727
+ }
3728
+ .saveLayoutPanel-inputText {
3729
+ color: var(--light-text-secondary, #606477);
3730
+ font-feature-settings:
3731
+ "ss02" on,
3732
+ "ss01" on,
3733
+ "salt" on,
3734
+ "liga" off;
3735
+ font-size: 12px;
3736
+ font-weight: 400;
3737
+ line-height: 16px;
3738
+ border: none;
3739
+ padding-left: 4px;
3740
+ width: 100%;
3741
+ outline: none;
3742
+ }
3743
+ .saveLayoutPanel-settingsGroup {
1397
3744
  display: flex;
1398
- flex-direction: var(--overflow-direction);
1399
3745
  flex-wrap: wrap;
1400
- height: var(--overflow-container-height);
1401
- min-width: 44px;
1402
- overflow: hidden;
1403
- position: relative;
3746
+ align-items: flex-end;
3747
+ gap: 10px;
1404
3748
  width: 100%;
3749
+ line-height: 16px;
1405
3750
  }
1406
- .vuuOverflowContainer-wrapContainer.overflowed {
1407
- --overflow-order: 2;
1408
- --overflow-left: auto;
1409
- --overflow-position: relative;
1410
- --overflow-width: auto;
3751
+ .saveLayoutPanel-screenshotContainer {
3752
+ display: flex;
3753
+ width: 304px;
3754
+ height: 208px;
3755
+ padding: 11px 15.5px;
3756
+ justify-content: center;
3757
+ align-items: center;
3758
+ border: 1px solid #E8E8E8;
3759
+ background: var(--dark-text-primary, #FFF);
1411
3760
  }
1412
- .vuuOverflowContainer-item:first-child {
1413
- --item-gap: 0;
3761
+ .saveLayoutPanel-screenshot {
3762
+ display: flex;
3763
+ justify-content: center;
3764
+ align-items: center;
3765
+ background: lightgray 50% / cover no-repeat;
3766
+ width: 273px;
3767
+ height: 186px;
3768
+ flex-shrink: 0;
1414
3769
  }
1415
- .vuuOverflowContainer-item:first-child {
1416
- --item-margin: 0;
3770
+ .saveLayoutPanel-buttonsContainer {
3771
+ display: flex;
3772
+ padding-top: 8px;
3773
+ justify-content: flex-end;
3774
+ align-items: flex-start;
3775
+ gap: 8px;
3776
+ align-self: stretch;
1417
3777
  }
1418
- .vuuOverflowContainer-item {
1419
- align-items: inherit;
3778
+ .saveLayoutPanel-cancelButton,
3779
+ .saveLayoutPanel-saveButton {
1420
3780
  display: flex;
1421
- order: 1;
1422
- position: relative;
1423
- height: var(--overflow-container-height);
1424
- margin: var(--item-margin);
3781
+ height: fit-content;
3782
+ padding: 4px 8px;
3783
+ align-items: flex-start;
3784
+ gap: 8px;
3785
+ border-radius: 6px;
3786
+ font-feature-settings:
3787
+ "ss02" on,
3788
+ "ss01" on,
3789
+ "salt" on,
3790
+ "liga" off;
3791
+ font-size: 12px;
3792
+ font-style: normal;
3793
+ font-weight: 700;
3794
+ line-height: 133.333%;
3795
+ letter-spacing: 0.48px;
3796
+ text-transform: uppercase;
1425
3797
  }
1426
- .vuuOverflowContainer-item.wrapped {
1427
- --overflow-item-bg: #ccc;
1428
- order: 3;
3798
+ .saveLayoutPanel-cancelButton {
3799
+ color: var(--actionable-primary-foreground-default, #606477);
3800
+ background: var(--actionable-primary-background-default, #FFF);
1429
3801
  }
1430
- .vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
1431
- display: none;
3802
+ .saveLayoutPanel-saveButton {
3803
+ background: #6D18BD;
3804
+ border-color: #6D18BD;
3805
+ color: white;
1432
3806
  }
1433
- .vuuOverflowContainer-item.vuuDropTarget-settling {
1434
- visibility: hidden;
3807
+ .saveLayoutPanel-saveButton.saltButton:disabled {
3808
+ background: #6D18BD;
3809
+ border-color: #6D18BD;
3810
+ color: white;
3811
+ opacity: 0.3;
1435
3812
  }
1436
- .vuuOverflowContainer-OverflowIndicator {
1437
- align-items: center;
1438
- background-color: transparent;
1439
- display: flex;
1440
- height: var(--overflow-container-height);
1441
- height: var(--overflow-container-height);
1442
- order: var(--overflow-order);
1443
- overflow: hidden;
1444
- left: var(--overflow-left, 100%);
1445
- position: var(--overflow-position, absolute);
1446
- width: var(--overflow-width);
3813
+ .saveLayoutPanel-saveButton.saltButton:hover {
3814
+ background: #F37880;
3815
+ border-color: #F37880;
3816
+ color: white;
1447
3817
  }
1448
3818
 
1449
- /* ../vuu-layout/src/palette/Palette.css */
1450
- .vuuPalette-horizontal {
1451
- align-items: center;
1452
- display: flex;
3819
+ /* ../vuu-filters/src/filter-builder-menu/FilterBuilderMenu.css */
3820
+ .vuuFilterBuilderMenu {
3821
+ margin: 0;
1453
3822
  }
1454
- .vuuPaletteItem {
1455
- --vuu-icon-color: var(--salt-separable-primary-borderColor);
1456
- --vuu-icon-inset: calc(50% - 12px) auto auto -3px;
1457
- --vuu-icon-height: 24px;
1458
- --vuu-icon-width: 24px;
1459
- --list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
3823
+ .vuuFilterBuilderMenu-trigger {
3824
+ display: inline-block;
3825
+ height: 26px;
3826
+ width: 0px;
1460
3827
  }
1461
- .vuuPaletteItem[data-draggable]:after {
1462
- height: 22px;
1463
- width: 6px;
3828
+ .vuuFilterBuilderMenuList {
3829
+ --vuuList-borderStyle: none;
3830
+ }
3831
+ .vuuListItem.vuuMenuButton {
3832
+ color: var(--vuu-color-gray-50);
3833
+ font-size: 9px;
3834
+ padding: 0 8px;
3835
+ }
3836
+ .vuuListItem.vuuMenuButton:after {
3837
+ border-radius: 6px;
1464
3838
  content: "";
1465
3839
  position: absolute;
1466
- background-image:
1467
- linear-gradient(45deg, rgb(180, 183, 190) 25%, transparent 25%),
1468
- linear-gradient(-45deg, rgb(180, 183, 190) 25%, transparent 25%),
1469
- linear-gradient(45deg, transparent 75%, rgb(180, 183, 190) 25%),
1470
- linear-gradient(-45deg, transparent 75%, rgb(180, 183, 190) 25%);
1471
- background-size: 4px 4px;
1472
- background-position:
1473
- 0 0,
1474
- 2px 0,
1475
- 2px -2px,
1476
- 0 2px;
1477
- }
1478
- .vuuSimpleDraggableWrapper > .vuuPaletteItem {
1479
- --vuu-icon-color: var(--salt-selectable-foreground);
3840
+ height: 16px;
3841
+ background-color: transparent;
3842
+ left: 4px;
3843
+ right: 4px;
3844
+ border: solid 1px var(--salt-actionable-primary-foreground);
1480
3845
  }
1481
3846
 
1482
- /* ../vuu-layout/src/stack/Stack.css */
1483
- .Tabs {
1484
- display: flex;
1485
- box-sizing: border-box;
3847
+ /* ../vuu-filters/src/filter-clause/ExpandoCombobox.css */
3848
+ .vuuExpandoCombobox {
3849
+ --expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
3850
+ --expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
3851
+ --saltInput-outline: none;
3852
+ --saltInput-fontSize: var(--expando-combobox-fontSize);
3853
+ --saltInput-height: var(--expando-combobox-height);
3854
+ --saltInput-minWidth: 4px;
3855
+ display: inline-flex;
1486
3856
  flex-direction: column;
3857
+ height: var(--expando-combobox-height);
3858
+ min-width: 4px;
3859
+ padding: 0;
1487
3860
  }
1488
- .Tabs-horizontal {
1489
- --vuu-tabs-border-style: none solid none none;
1490
- flex-direction: row;
1491
- }
1492
- .Tabs .Toolbar:before {
1493
- left: 0;
1494
- width: 100%;
1495
- bottom: 0;
1496
- height: 1px;
1497
- content: "";
3861
+ .vuuExpandoCombobox .saltInput {
3862
+ background-color: transparent;
1498
3863
  position: absolute;
1499
- background: var(--grey60);
1500
3864
  }
1501
- .vuuTabHeader {
1502
- --saltTabs-activationIndicator-background: transparent;
1503
- --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
1504
- border-color: var(--salt-container-primary-borderColor);
1505
- border-style: var(--vuu-tabs-border-style, none none solid none);
3865
+ .vuuExpandoCombobox .vuuDropdown {
3866
+ height: 100%;
3867
+ }
3868
+ .vuuExpandoCombobox-Input.saltInput {
3869
+ border: none;
3870
+ left: 0px;
3871
+ margin: 0;
3872
+ min-height: 100%;
3873
+ padding: 0;
3874
+ right: 0px;
3875
+ width: auto;
3876
+ }
3877
+ .vuuExpandoCombobox .saltInput-input {
3878
+ border: none;
3879
+ box-sizing: content-box;
3880
+ display: block;
3881
+ flex: 1;
3882
+ font: inherit;
3883
+ margin: 0;
3884
+ min-width: 0;
3885
+ outline: none;
3886
+ padding: 0;
3887
+ }
3888
+ .vuuExpandoCombobox:before {
3889
+ content: attr(data-text);
3890
+ display: block;
3891
+ font-size: var(--expando-combobox-fontSize);
3892
+ height: 0px;
3893
+ overflow: hidden;
3894
+ white-space: pre-wrap;
3895
+ }
3896
+
3897
+ /* ../vuu-filters/src/filter-clause/CloseButton.css */
3898
+ .vuu-theme {
3899
+ --salt-actionable-secondary-background: #ffffff;
3900
+ --salt-actionable-secondary-background-hover: #f37880;
3901
+ --salt-actionable-secondary-background-disabled: #ffffff;
3902
+ --salt-actionable-secondary-foreground: #606477;
3903
+ --salt-actionable-secondary-foreground-hover: #15171b;
3904
+ --salt-actionable-secondary-foreground-active: #ffffff;
3905
+ --salt-actionable-secondary-foreground-disabled: #9b9ea8;
3906
+ }
3907
+ .vuuFilterClause-closeButton {
3908
+ height: 16px;
3909
+ width: 16px;
3910
+ border-radius: 6px;
3911
+ padding: 0;
3912
+ }
3913
+ .vuuFilterClause-closeButton:focus-visible {
3914
+ }
3915
+ .vuuFilterClause-closeButton:not(:hover) {
3916
+ background: var(--salt-actionable-secondary-background);
3917
+ }
3918
+
3919
+ /* ../vuu-filters/src/filter-clause/FilterClauseEditor.css */
3920
+ .vuuFilterClause {
3921
+ --vuuExpandoInput-top: 0;
3922
+ --vuuExpandoInput-height: 16px;
3923
+ --vuuExpandoCombobox-height: 16px;
3924
+ --saltButton-height: 16px;
3925
+ --saltButton-width: 16px;
3926
+ display: flex;
3927
+ flex-direction: row;
3928
+ width: fit-content;
3929
+ border-color: var(--vuu-color-gray-45);
3930
+ border-radius: 6px;
1506
3931
  border-width: 1px;
3932
+ border-style: solid;
3933
+ background: #ffffff;
3934
+ --salt-focused-outlineStyle: dotted;
3935
+ }
3936
+ .vuuFilterClause:focus-within {
3937
+ border-color: var(--vuu-color-purple-10);
3938
+ }
3939
+ .vuu-density-high .vuuFilterClause {
3940
+ padding: 4px 8px;
3941
+ gap: 4px;
3942
+ --salt-text-lineHeight: 12px;
3943
+ --saltInputLegacy-fontSize: 12px;
3944
+ --saltInputLegacy-minWidth: 12px;
3945
+ }
3946
+ .vuu-density-high .vuuFilterClause .saltInput {
3947
+ padding: 0;
3948
+ min-height: 16px;
3949
+ height: 16px;
3950
+ }
3951
+ .vuuFilterClause .vuuExpandoCombobox {
3952
+ flex-basis: auto;
3953
+ flex-shrink: 0;
3954
+ flex-grow: 0;
3955
+ }
3956
+ .vuuFilterClauseOperator-hidden {
3957
+ display: none;
3958
+ }
3959
+ .vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
1507
3960
  }
1508
- .vuuTabHeader + .hwFlexbox,
1509
- .vuuTabHeader + * {
1510
- flex: 1;
3961
+ .vuuFilterClause .saltInput-focused,
3962
+ .vuuFilterClause .saltTokenizedInput-focused {
3963
+ outline: none;
3964
+ color: var(--salt-text-primary-foreground);
1511
3965
  }
1512
- .vuuTabHeader + .vuuView > .vuuHeader {
1513
- height: 0;
1514
- overflow: hidden;
3966
+ .vuuFilterClause .saltInput-input::selection {
3967
+ color: #ffffff;
1515
3968
  }
1516
- .Layout-svg-button {
1517
- --spacing-medium: 5px;
3969
+ .vuu-theme .saltList {
3970
+ --list-borderWidth: 1px;
3971
+ --list-borderStyle: solid;
3972
+ border-radius: 4px;
3973
+ box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
1518
3974
  }
1519
-
1520
- /* ../vuu-layout/src/tools/devtools-box/layout-configurator.css */
1521
- [data-design-mode=true] .Component {
1522
- filter: grayscale(100%);
1523
- opacity: 0.4;
3975
+ .saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
3976
+ --list-item-background: var(--list-item-background-active);
3977
+ color: var(--list-item-text-color-active);
1524
3978
  }
1525
- [data-design-mode=true] .Component:after {
1526
- color: black;
1527
- content: "Component";
1528
- height: 12px;
1529
- background-color: yellow;
3979
+ .saltTokenizedInput {
3980
+ height: 16px;
3981
+ min-height: 16px;
1530
3982
  }
1531
- .LayoutConfigurator {
1532
- --margin-color: #f3cea5;
1533
- --border-color: #fddda0;
1534
- --padding-color: #c6d092;
1535
- --content-color: #8cb6c0;
1536
- display: flex;
1537
- flex-direction: column;
1538
- align-items: stretch;
1539
- background-color: var(--margin-color);
3983
+ .saltTokenizedInput .saltInputPill {
3984
+ --pill-fontSize: 12px;
3985
+ --saltButton-borderStyle: none;
3986
+ --pill-background: none;
3987
+ height: 16px;
3988
+ margin: 0;
1540
3989
  }
1541
- .LayoutConfigurator .layout-outer {
1542
- flex: 1 1 auto;
1543
- display: flex;
1544
- flex-direction: column;
1545
- align-items: stretch;
3990
+ .saltTokenizedInput-pillGroup {
3991
+ padding: 0;
3992
+ height: 16px;
1546
3993
  }
1547
- .LayoutBox {
1548
- --hw-control-font-size: 13px;
1549
- --hw-text-input-bg: rgba(255, 255, 255, 0.3);
1550
- --hwTextInput-padding: 3px;
1551
- --hw-text-input-position: absolute;
1552
- --hwTextInput-width: 30px;
1553
- flex: 1 1 auto;
3994
+
3995
+ /* ../vuu-filters/src/filter-pill-menu/FilterPillMenu.css */
3996
+ .vuuFilterPillMenu {
3997
+ top: -1px;
1554
3998
  }
1555
- .LayoutBox > .layout-top {
1556
- flex: 0 0 40px;
1557
- padding-left: 12px;
1558
- display: flex;
1559
- flex-direction: row;
3999
+
4000
+ /* ../vuu-filters/src/filter-pill/FilterPill.css */
4001
+ .vuuFilterPill {
4002
+ --vuuToolbarItem-outlineColor: white;
1560
4003
  align-items: center;
4004
+ background: var(--salt-taggable-background);
4005
+ border: solid 1px var(--salt-taggable-foreground);
4006
+ border-radius: 26px;
4007
+ color: var(--vuu-color-gray-50);
4008
+ display: inline-flex;
4009
+ height: 26px;
4010
+ max-width: var(--vuuFilterPill-maxWidth, 200px);
4011
+ padding: 0 8px;
1561
4012
  position: relative;
4013
+ user-select: none;
4014
+ outline: none;
1562
4015
  }
1563
- .LayoutBox > .layout-bottom {
1564
- flex: 0 0 40px;
1565
- position: relative;
1566
- display: flex;
1567
- flex-direction: row;
1568
- align-items: center;
4016
+ .vuuFilterPill[aria-selected=true] {
4017
+ --vuuPopupMenu-iconColor: white;
4018
+ --salt-text-background-selected: var(--vuu-color-blue-40);
4019
+ --salt-text-color-selected: var(--salt-text-primary-foreground);
4020
+ --saltInput-background-hover: var(--salt-taggable-background-active);
4021
+ --saltInput-color: var(--salt-taggable-foreground-active);
4022
+ background: var(--salt-taggable-background-active);
4023
+ color: white;
1569
4024
  }
1570
- .LayoutBox > .layout-inner > .layout-right,
1571
- .LayoutBox > .layout-inner > .layout-left {
1572
- flex: 0 0 40px;
1573
- display: flex;
1574
- flex-direction: column;
1575
- justify-content: center;
4025
+ .vuuFilterPill:not([aria-selected="true"]):hover {
4026
+ --vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
4027
+ background-color: var(--salt-taggable-background-hover);
4028
+ border-color: var(--salt-taggable-background-hover);
4029
+ color: var(--vuu-color-gray-80);
4030
+ }
4031
+
4032
+ /* ../vuu-filters/src/filter-bar/FilterBar.css */
4033
+ .vuuFilterBar {
4034
+ --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>');
4035
+ --vuuToolbar-height: 26px;
4036
+ --salt-container-primary-borderColor: var(--vuu-color-purple-10);
4037
+ --saltButton-height: 26px;
4038
+ --saltButton-width: 26px;
1576
4039
  align-items: center;
4040
+ background-color: var(--salt-container-secondary-background);
4041
+ border-bottom: solid 1px #D6D7DA;
4042
+ display: flex;
4043
+ gap: 4px;
4044
+ height: 33px;
4045
+ padding: 3px 8px;
1577
4046
  }
1578
- .layout-top,
1579
- .layout-bottom {
1580
- --hw-text-input-margin: 0 0 0 -15px;
4047
+ .vuuFilterbar-icon {
4048
+ display: inline-block;
4049
+ height: 16px;
4050
+ width: 16px;
1581
4051
  }
1582
- .layout-top > .layout-input,
1583
- .layout-bottom > .layout-input {
1584
- left: 50%;
4052
+ .vuuFilterBar [data-icon=tune] {
4053
+ --vuu-icon-size: 16px;
4054
+ --vuu-icon-svg: var(--vuu-svg-tune);
1585
4055
  }
1586
- .LayoutBox > .layout-inner {
4056
+ .vuuFilterBar [data-icon=plus] {
4057
+ --vuu-icon-size: 16px;
4058
+ }
4059
+ .vuuFilterBar .vuuToolbar {
1587
4060
  flex: 1 1 auto;
4061
+ }
4062
+
4063
+ /* ../vuu-filters/src/filter-input/FilterInput.css */
4064
+ .salt-theme {
4065
+ --vuuFilterEditor-lineHeight: 28px;
4066
+ }
4067
+ .salt-density-high {
4068
+ --vuuFilterEditor-buttonWidth: 20px;
4069
+ --vuuFilterEditor-height: 22px;
4070
+ --vuuFilterEditor-lineHeight: 20px;
4071
+ }
4072
+ .vuuFilterInput {
4073
+ --vuuFilterEditor-background: var(--salt-container-primary-background);
4074
+ --vuuFilterEditor-color: var(--salt-text-primary-foreground);
4075
+ --vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
4076
+ --vuuFilterEditor-fontSize: var(--salt-text-fontSize);
4077
+ --vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
4078
+ --vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
4079
+ --vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
4080
+ --vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
4081
+ --vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
4082
+ --vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
4083
+ --vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
4084
+ --vuuFilterEditor-suggestion-height: 24px;
4085
+ --vuuFilterEditor-variableColor: blue;
4086
+ align-items: center;
4087
+ border-color: var(--salt-container-secondary-borderColor);
4088
+ border-style: solid none;
4089
+ border-width: 1px;
4090
+ box-sizing: border-box;
1588
4091
  display: flex;
1589
- flex-direction: row;
1590
- align-items: stretch;
4092
+ height: var(--vuuFilterEditor-height, 30px);
1591
4093
  }
1592
- .LayoutBox.layout-margin {
1593
- background-color: var(--margin-color);
1594
- border: dashed 2px black;
4094
+ .vuuFilterInput-Editor {
4095
+ flex: 1 1 auto;
4096
+ height: 100%;
1595
4097
  }
1596
- .LayoutBox.layout-border {
1597
- background-color: var(--border-color);
1598
- border: solid 2px black;
4098
+ .vuuFilterInput-FilterButton,
4099
+ .vuuFilterInput-ClearButton {
4100
+ --vuu-icon-size: 12px;
4101
+ --saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
1599
4102
  }
1600
- .LayoutBox.layout-padding {
1601
- background-color: var(--padding-color);
1602
- border: dashed 2px black;
4103
+ .vuuIllustration {
4104
+ --vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
4105
+ background: var(--salt-container-secondary-background);
4106
+ color: var(--salt-text-secondary-foreground);
1603
4107
  }
1604
- .LayoutBox .layout-content {
1605
- flex: 1 1 auto;
1606
- background-color: var(--content-color);
1607
- border: solid 2px #808080;
4108
+
4109
+ /* ../vuu-shell/src/layout-management/LayoutList.css */
4110
+ .vuuLayoutList-header {
4111
+ color: var(--light-text-primary, #15171B);
4112
+ font-weight: 700;
4113
+ letter-spacing: 0.48px;
4114
+ text-transform: uppercase;
4115
+ display: flex;
4116
+ padding: 16px 0px;
4117
+ align-items: center;
4118
+ align-self: stretch;
4119
+ border-bottom: 1px solid rgba(119, 124, 148, 0.10);
4120
+ line-height: 200%;
1608
4121
  }
1609
- .LayoutBox .layout-title {
1610
- color: #161616;
1611
- font-size: 11px;
1612
- left: 4px;
1613
- line-height: 15px;
1614
- position: absolute;
1615
- top: 1px;
4122
+ .vuuLayoutList-groupName {
4123
+ display: flex;
4124
+ padding-top: 24px;
4125
+ align-items: center;
4126
+ align-self: stretch;
4127
+ color: var(--light-text-secondary, #606477);
4128
+ font-weight: 700;
4129
+ letter-spacing: 0.48px;
4130
+ line-height: 200%;
1616
4131
  }
1617
-
1618
- /* ../vuu-layout/src/tools/devtools-tree/layout-tree-viewer.css */
1619
- .hwLayoutTreeViewer {
4132
+ .vuuLayoutList-layoutContainer {
4133
+ display: flex;
4134
+ align-items: center;
4135
+ gap: 8px;
4136
+ padding: 8px 0px;
4137
+ align-self: stretch;
4138
+ flex: 1 1 auto;
4139
+ cursor: pointer;
1620
4140
  }
1621
- .hwLayoutTreeNode {
1622
- cursor: default;
4141
+ .vuuLayoutList-layoutName {
4142
+ color: var(--light-text-primary, #15171B);
4143
+ font-weight: 600;
4144
+ line-height: 133.333%;
4145
+ text-transform: capitalize;
1623
4146
  }
1624
- .hwLayoutTreeNode:hover {
1625
- background-color: rgba(255, 255, 255, 0.2);
4147
+ .vuuLayoutList-screenshot {
4148
+ width: 60px;
4149
+ height: 45.6px;
4150
+ border: 1px solid #D6D7DA;
1626
4151
  }
1627
- .hwLayoutTreeNode[aria-selected=true] {
1628
- background-color: cornflowerblue;
1629
- color: white;
4152
+ .vuuLayoutList-layoutDetails {
4153
+ color: var(--light-text-secondary, #606477);
4154
+ font-size: 10px;
4155
+ font-weight: 600;
4156
+ line-height: 150%;
1630
4157
  }
1631
4158
 
1632
- /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
1633
- .vuuSaveLayoutPanel {
1634
- background-color: aqua;
1635
- height: 400px;
1636
- width: 600px;
4159
+ /* ../vuu-shell/src/feature-list/FeatureList.css */
4160
+ .vuuFeatureList {
4161
+ background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
4162
+ height: 100%;
4163
+ padding: 180px 32px 0 24px;
4164
+ }
4165
+ .vuuFeatureList-header {
4166
+ font-size: 12px;
4167
+ font-weight: 700;
1637
4168
  }
1638
4169
 
1639
4170
  /* ../vuu-shell/src/left-nav/LeftNav.css */
@@ -1652,8 +4183,11 @@ path.drop-target.centre {
1652
4183
  --svg-templates: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');
1653
4184
  --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>');
1654
4185
  --vuu-light-text-primary: #15171b;
1655
- display: flex;
4186
+ box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
4187
+ margin-bottom: 4px;
4188
+ position: relative;
1656
4189
  transition: width .3s ease-in-out;
4190
+ z-index: 0;
1657
4191
  }
1658
4192
  .vuuLeftNav-menu-full {
1659
4193
  --menu-width: var(--nav-menu-expanded-width);
@@ -1661,10 +4195,14 @@ path.drop-target.centre {
1661
4195
  .vuuLeftNav-menu-icons {
1662
4196
  --menu-width: var(--nav-menu-collapsed-width);
1663
4197
  }
1664
- .vuuLeftNav-menu-content {
4198
+ .vuuLeftNav-menu-icons-content {
1665
4199
  --menu-width: var(--nav-menu-collapsed-width);
1666
4200
  }
1667
- .vuuLeftNav-menu-content .vuuLeftNav-menu-secondary {
4201
+ .vuuLeftNav-menu-full-content {
4202
+ --menu-width: var(--nav-menu-expanded-width);
4203
+ }
4204
+ .vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
4205
+ .vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
1668
4206
  display: block;
1669
4207
  }
1670
4208
  .vuuLeftNav-menu-primary {
@@ -1681,6 +4219,11 @@ path.drop-target.centre {
1681
4219
  flex: 1 1 auto;
1682
4220
  height: 100%;
1683
4221
  display: none;
4222
+ position: absolute;
4223
+ top: 0;
4224
+ right: 0;
4225
+ width: 240px;
4226
+ z-index: -1;
1684
4227
  }
1685
4228
  .vuuLeftNav .vuuTabstrip {
1686
4229
  margin-top: 102px;
@@ -1750,6 +4293,17 @@ path.drop-target.centre {
1750
4293
  .vuuLeftNav-toggleButton-open {
1751
4294
  --vuu-icon-left: 9px;
1752
4295
  }
4296
+ .vuuLeftNav-drawer {
4297
+ display: flex;
4298
+ padding: 40px 32px 0px 24px;
4299
+ flex-direction: column;
4300
+ align-items: flex-start;
4301
+ flex-shrink: 0;
4302
+ align-self: stretch;
4303
+ background: #FFF;
4304
+ box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
4305
+ height: 100%;
4306
+ }
1753
4307
 
1754
4308
  /* ../vuu-shell/src/login/LoginPanel.css */
1755
4309
  .vuuLoginPanel {
@@ -1883,6 +4437,7 @@ vuuUserPanel-history {
1883
4437
  /* ../vuu-shell/src/app-header/AppHeader.css */
1884
4438
  .vuuAppHeader {
1885
4439
  align-items: center;
4440
+ background: var(--vuuAppHeader-background, var(--salt-container-primary-background));
1886
4441
  border-bottom: solid 1px var(--salt-container-secondary-borderColor);
1887
4442
  display: flex;
1888
4443
  height: 40px;
@@ -1916,6 +4471,7 @@ vuuUserPanel-history {
1916
4471
  display: flex;
1917
4472
  flex-direction: column;
1918
4473
  height: 100%;
4474
+ overflow: auto;
1919
4475
  padding-bottom: 24px;
1920
4476
  padding-top: 24px;
1921
4477
  padding-left: var(--vuu-side-panel-padding, 0);
@@ -1950,10 +4506,13 @@ vuuUserPanel-history {
1950
4506
 
1951
4507
  /* ../vuu-shell/src/shell.css */
1952
4508
  .vuuShell {
1953
- background-color: var(--salt-container-primary-background, ivory);
4509
+ background-color: var(--vuu-color-gray-25);
1954
4510
  height: var(--vuuShell-height, 100vh);
1955
4511
  width: var(--vuuShell-width, 100vw);
1956
4512
  }
4513
+ .vuuShell-mainTabs {
4514
+ background: var(--salt-container-primary-background);
4515
+ }
1957
4516
  .vuuShell-palette {
1958
4517
  --vuuView-border: none;
1959
4518
  --vuuView-margin: 0;
@@ -1962,6 +4521,9 @@ vuuUserPanel-history {
1962
4521
  background-color: var(--salt-container-background-high);
1963
4522
  height: 100%;
1964
4523
  }
4524
+ .vuuToolbarProxy {
4525
+ background: var(--salt-container-primary-background);
4526
+ }
1965
4527
 
1966
4528
  /* src/dialog/Dialog.css */
1967
4529
  .vuuDialog {
@@ -1978,7 +4540,6 @@ vuuUserPanel-history {
1978
4540
  --saltButton-width: 28px;
1979
4541
  --saltToolbar-background: transparent;
1980
4542
  --saltToolbar-height: calc(var(--salt-size-base) + 5px);
1981
- border-bottom: solid 1px var(--salt-container-primary-borderColor);
1982
4543
  }
1983
4544
  .vuuDialog-header > .Responsive-inner {
1984
4545
  align-items: center;
@@ -1986,14 +4547,34 @@ vuuUserPanel-history {
1986
4547
  .vuuDialog-header > .Responsive-inner > :last-child {
1987
4548
  right: 2px;
1988
4549
  }
4550
+ .dialogHeader {
4551
+ display: flex;
4552
+ padding-bottom: 0px;
4553
+ padding-top: 16px;
4554
+ padding-left: 16px;
4555
+ flex-direction: column;
4556
+ align-items: flex-start;
4557
+ align-self: stretch;
4558
+ color: var(--light-text-primary, #15171B);
4559
+ font-feature-settings:
4560
+ "ss02" on,
4561
+ "ss01" on,
4562
+ "salt" on,
4563
+ "liga" off;
4564
+ font-size: 16px;
4565
+ font-weight: 600;
4566
+ }
1989
4567
 
1990
4568
  /* src/menu/MenuList.css */
1991
4569
  .vuuMenuList {
4570
+ --salt-focused-outlineStyle: dashed !important;
4571
+ --salt-focused-outlineWidth: 1px !important;
4572
+ --vuuListItem-padding: 8px;
1992
4573
  --context-menu-color: var(--vuuMenuList-color,#161616);
1993
4574
  --context-menu-padding: var(--hw-list-item-padding, 0 6px);
1994
4575
  --context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
1995
4576
  --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
1996
- --context-menu-highlight-bg: #a4d5f4;
4577
+ --context-menu-highlight-bg: var(--vuu-color-gray-10);
1997
4578
  --context-menu-blur-focus-bg: #e0e4e9;
1998
4579
  --menu-item-icon-color: black;
1999
4580
  --menu-item-twisty-color: black;
@@ -2004,18 +4585,18 @@ vuuUserPanel-history {
2004
4585
  --menu-icon-size: 12px;
2005
4586
  background-clip: padding-box;
2006
4587
  background-color: white;
2007
- border-radius: 4px;
2008
- border: solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, 0.15));
2009
- box-shadow: var(--context-menu-shadow);
4588
+ border-style: var(--vuuMenuList-borderStyle, none);
2010
4589
  font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
2011
- font-weight: var(--salt-typography-fontWeight-semiBold);
4590
+ font-weight: var(--salt-typography-fontWeight-medium);
2012
4591
  list-style: none;
2013
- margin: 2px 0 0;
2014
4592
  outline: 0;
2015
4593
  overflow: hidden;
2016
4594
  padding: var(--vuuMenuList-padding, 0);
2017
4595
  position: absolute;
2018
4596
  }
4597
+ .vuuPortal > .vuuMenuList {
4598
+ position: relative;
4599
+ }
2019
4600
  .vuuMenuItem {
2020
4601
  align-items: center;
2021
4602
  border-width: 1px;
@@ -2100,6 +4681,22 @@ vuuUserPanel-history {
2100
4681
  text-decoration: none;
2101
4682
  cursor: default;
2102
4683
  }
4684
+ .vuuMenuList.salt-theme {
4685
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4686
+ position: absolute;
4687
+ border-color: var(--salt-container-primary-borderColor);
4688
+ border-style: solid !important;
4689
+ border-width: 1px;
4690
+ }
4691
+
4692
+ /* src/menu/ContextMenu.css */
4693
+ .vuuContextMenu {
4694
+ border-radius: 4px;
4695
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4696
+ border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
4697
+ border-style: solid;
4698
+ border-width: 1px;
4699
+ }
2103
4700
 
2104
4701
  /* src/popup/popup-service.css */
2105
4702
  .vuuPopup {
@@ -2116,18 +4713,21 @@ vuuUserPanel-history {
2116
4713
  position: absolute;
2117
4714
  }
2118
4715
 
4716
+ /* src/popup/Popup.css */
4717
+
2119
4718
  /* src/popup-menu/PopupMenu.css */
2120
4719
  .vuuPopupMenu {
2121
4720
  --saltButton-height: 24px;
2122
4721
  --saltButton-width: 24px;
2123
- --vuu-icon-color: #606477;
4722
+ --vuu-icon-color: var(--vuuPopupMenu-iconColor,#606477);
2124
4723
  --vuu-icon-height: 20px;
2125
4724
  --vuu-icon-left: 2px;
2126
4725
  --vuu-icon-size: 16px;
2127
4726
  --vuu-icon-top: 2px;
2128
4727
  --vuu-icon-width: 20px;
2129
4728
  background: var(--vuuPopupMenu-background, transparent);
2130
- border-radius: 4px;
4729
+ border: var(--vuuPopupMenu-border, none);
4730
+ border-radius: var(--vuuPopupMenu-borderRadius, 4px);
2131
4731
  cursor: pointer;
2132
4732
  display: inline-block;
2133
4733
  margin-top: 2px;
@@ -2146,4 +4746,153 @@ vuuUserPanel-history {
2146
4746
  .vuu-theme .vuuPopupMenu-open {
2147
4747
  --saltButton-background: #6D18BD;
2148
4748
  }
4749
+ .vuuPopupMenu-withCaption {
4750
+ --vuu-icon-left: calc(100% - 24px);
4751
+ --vuu-icon-size: 20px;
4752
+ --saltButton-width: auto;
4753
+ padding: 0 28px 0 8px;
4754
+ }
4755
+
4756
+ /* src/portal/Portal.css */
4757
+ .vuuPortal {
4758
+ background-color: var(--salt-container-primary-background);
4759
+ border-radius: 4px;
4760
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4761
+ position: absolute;
4762
+ border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
4763
+ border-style: solid;
4764
+ border-width: 1px;
4765
+ padding: 4px 0;
4766
+ z-index: var(--salt-zIndex-modal);
4767
+ }
4768
+ .vuuPopupMenuList {
4769
+ border-radius: 4px;
4770
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4771
+ position: absolute;
4772
+ border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
4773
+ border-style: solid !important;
4774
+ border-width: 1px;
4775
+ padding: 4px 0;
4776
+ }
4777
+
4778
+ /* src/prompt/Prompt.css */
4779
+ .vuuPrompt {
4780
+ --saltButton-padding: var(--prompt-padding);
4781
+ --saltButton-width: auto;
4782
+ --border-width: var(--vuuPrompt-borderWidth, 1px);
4783
+ --border-color: var(--vuuPrompt-borderColor, var(--vuu-color-purple-10));
4784
+ --prompt-padding: 16px;
4785
+ --variant-color: inherit;
4786
+ --vuu-icon-color: var(--vuu-color-gray-80);
4787
+ --vuu-icon-left: 6px;
4788
+ --vuu-icon-size: 24px;
4789
+ background-color: var(--salt-container-primary-background);
4790
+ border-color: var(--border-color);
4791
+ border-radius: 4px;
4792
+ border-style: solid;
4793
+ border-width: var(--border-width);
4794
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4795
+ margin: 0;
4796
+ padding: 0;
4797
+ position: absolute;
4798
+ }
4799
+ .vuuPrompt-warn {
4800
+ --border-color: var(--vuu-color-yellow-20);
4801
+ --variant-color: var(--vuu-color-yellow-20);
4802
+ }
4803
+ .vuuPrompt-form {
4804
+ display: flex;
4805
+ flex-direction: column;
4806
+ }
4807
+ .vuuPrompt-header {
4808
+ align-items: center;
4809
+ background-color: var(--variant-color);
4810
+ display: flex;
4811
+ flex: 0 0 32px;
4812
+ font-size: 16px;
4813
+ font-weight: 700;
4814
+ padding: 0 var(--prompt-padding);
4815
+ }
4816
+ .vuuPrompt-header[data-icon] {
4817
+ padding-left: 36px;
4818
+ }
4819
+ .vuuPrompt-text {
4820
+ flex: 1 1 auto;
4821
+ padding: var(--prompt-padding);
4822
+ }
4823
+ .vuuPrompt-buttonBar {
4824
+ align-items: flex-end;
4825
+ display: flex;
4826
+ flex: 0 0 32px;
4827
+ gap: 6px;
4828
+ justify-content: flex-end;
4829
+ padding: 0 var(--prompt-padding) var(--prompt-padding) var(--prompt-padding);
4830
+ }
4831
+
4832
+ /* src/tooltip/Tooltip.css */
4833
+ .vuuTooltip {
4834
+ --tooltip-align: flex-start;
4835
+ --tooltip-justify: flex-start;
4836
+ --tooltip-top: auto;
4837
+ --tooltip-right: auto;
4838
+ --tooltip-bottom: auto;
4839
+ --tooltip-left: auto;
4840
+ align-items: var(--tooltip-align);
4841
+ justify-content: var(--tooltip-justify);
4842
+ display: flex;
4843
+ position: absolute;
4844
+ }
4845
+ .vuuTooltip[data-align=right] {
4846
+ --tooltip-align: center;
4847
+ --tooltip-left: 9px;
4848
+ }
4849
+ .vuuTooltip[data-align=left] {
4850
+ --tooltip-align: center;
4851
+ --tooltip-left: auto;
4852
+ --tooltip-right: 10px;
4853
+ }
4854
+ .vuuTooltip[data-align=above] {
4855
+ --tooltip-justify: center;
4856
+ --tooltip-bottom: 9px;
4857
+ --tooltip-left: auto;
4858
+ }
4859
+ .vuuTooltip[data-align=below] {
4860
+ --tooltip-justify: center;
4861
+ --tooltip-top: 9px;
4862
+ --tooltip-left: auto;
4863
+ }
4864
+ .vuuTooltip-content {
4865
+ background-color: var(--salt-color-blue-500);
4866
+ border-radius: 4px;
4867
+ color: white;
4868
+ line-height: 24px;
4869
+ padding: 2px 6px;
4870
+ position: absolute;
4871
+ white-space: nowrap;
4872
+ top: var(--tooltip-top);
4873
+ right: var(--tooltip-right);
4874
+ bottom: var(--tooltip-bottom);
4875
+ left: var(--tooltip-left);
4876
+ }
4877
+ .vuuTooltip::before {
4878
+ background-color: var(--salt-color-blue-500);
4879
+ content: " ";
4880
+ display: block;
4881
+ position: absolute;
4882
+ width: 12px;
4883
+ height: 12px;
4884
+ z-index: -1;
4885
+ }
4886
+ .vuuTooltip[data-align=above]::before {
4887
+ transform: translate(0, -18px) rotate(45deg);
4888
+ }
4889
+ .vuuTooltip[data-align=below]::before {
4890
+ transform: translate(0, 6px) rotate(45deg);
4891
+ }
4892
+ .vuuTooltip[data-align=right]::before {
4893
+ transform: translate(7px, 0px) rotate(45deg);
4894
+ }
4895
+ .vuuTooltip[data-align=left]::before {
4896
+ transform: translate(-19px, 0) rotate(45deg);
4897
+ }
2149
4898
  /*# sourceMappingURL=index.css.map */