@vuu-ui/vuu-popups 0.8.5-debug → 0.8.6-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
@@ -580,94 +580,6 @@ 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-layout/src/layout-view/View.css */
584
- .vuuView {
585
- border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
586
- border-width: var(--vuuView-borderWidth, 1px);
587
- border-style: var(--vuuView-borderStyle, none);
588
- display: flex;
589
- flex-direction: column;
590
- margin: var(--vuuView-margin, 0px);
591
- min-height: 50px;
592
- min-width: 50px;
593
- outline: none;
594
- overflow: hidden;
595
- position: relative;
596
- }
597
- .vuuView.focus-visible:after {
598
- content: "";
599
- position: absolute;
600
- top: 0;
601
- left: 0;
602
- right: 0;
603
- bottom: 0;
604
- border: dotted cornflowerblue 2px;
605
- }
606
- .vuuView.dragging {
607
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
608
- }
609
- .vuuView-main {
610
- display: flex;
611
- flex-direction: var(--vuuView-flexDirection, column);
612
- flex-wrap: var(--vuuView-flex-wrap, nowrap);
613
- flex: 1;
614
- overflow: hidden;
615
- position: relative;
616
- }
617
- .vuuView-main > * {
618
- flex-basis: auto;
619
- flex-grow: var(--vuuView-flex-grow, 1);
620
- flex-shrink: var(--vuuView-flex-shrink, 1);
621
- }
622
- .vuuView-collapsed .vuuView-main {
623
- display: none;
624
- }
625
- .vuuView-collapsed + .Splitter {
626
- display: none;
627
- }
628
- .vuuView-collapsed .Toolbar-vertical {
629
- border-right: solid 1px var(--grey40);
630
- }
631
- .vuuView-collapsed .Toolbar-vertical .toolbar-title {
632
- display: none;
633
- }
634
-
635
- /* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
636
- .vuuEditableLabel {
637
- --saltInput-minWidth: 14px;
638
- --saltInput-position: absolute;
639
- --editableLabel-padding: var(--saltEditableLabel-padding, 6px);
640
- --editableLabel-height: var(--saltEditableLabel-height, 26px);
641
- color: inherit;
642
- cursor: default;
643
- display: flex;
644
- flex-direction: column;
645
- font-size: var(--salt-text-fontSize);
646
- height: var(--editableLabel-height);
647
- justify-content: center;
648
- outline: none;
649
- padding: 0 var(--editableLabel-padding);
650
- position: relative;
651
- z-index: var(--salt-zIndex-default);
652
- }
653
- .vuuEditableLabel:before {
654
- content: attr(data-text);
655
- display: block;
656
- height: 0px;
657
- visibility: hidden;
658
- white-space: pre-wrap;
659
- }
660
- .vuuEditableLabel .saltInput {
661
- font-weight: var(--salt-text-fontWeight);
662
- left: var(--editableLabel-padding, 0);
663
- padding: 0;
664
- outline-style: none;
665
- right: var(--editableLabel-padding, 0);
666
- }
667
- .vuuEditableLabel-input {
668
- outline: none;
669
- }
670
-
671
583
  /* ../vuu-ui-controls/src/drag-drop/Draggable.css */
672
584
  .vuuDraggable {
673
585
  background: transparent;
@@ -679,7 +591,7 @@ path.drop-target.centre {
679
591
  }
680
592
  .vuuDraggable-spacer {
681
593
  display: var(--saltDraggable-display, inline-block);
682
- height: var(--saltDraggable-spacer-height, var(--tabs-tabstrip-height));
594
+ height: var(--saltDraggable-spacer-height, var(--tabstrip-height));
683
595
  transition: var(--saltDraggable-transitionProp, width) 0.3s ease;
684
596
  width: var(--saltDraggable-spacer-width, 0);
685
597
  }
@@ -715,53 +627,99 @@ path.drop-target.centre {
715
627
  order: 1;
716
628
  }
717
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;
639
+ 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;
665
+ }
666
+ .vuuEditableLabel .saltInput-activationIndicator {
667
+ display: none;
668
+ }
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;
679
+ outline: none;
680
+ padding: 0;
681
+ }
682
+
718
683
  /* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
719
684
  .vuuTabstrip {
720
685
  --vuuOverflowContainer-background: transparent;
721
- --tabs-tabstrip-height: var(--vuuTabstrip-height, 28px);
722
- --tabs-tabstrip-dragging-display: none;
723
- --tabs-tabstrip-display: inline-flex;
724
- --tabs-tabstrip-background: transparent;
725
- align-items: flex-start;
686
+ --tabstrip-dragging-display: none;
687
+ --tabstrip-display: inline-flex;
688
+ --tabstrip-background: transparent;
726
689
  align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
727
- border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
728
690
  font-size: var(--salt-text-fontSize);
729
- font-weight: var(--salt-text-fontWeight);
691
+ font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
730
692
  position: relative;
731
693
  overflow: visible;
732
694
  display: flex;
733
695
  min-width: 28px;
734
- width: 100%;
696
+ width: var(--tabstrip-width);
735
697
  }
736
698
  .vuuTabstrip-horizontal {
737
- --vuuTabActivationIndicator-height: 1px;
738
- --vuuTabActivationIndicator-thumb-inset: -1px 0 0 0;
739
- --tab-activationIndicator-borderStyle: none none solid none;
740
- --tab-activationIndicator-inset: auto 0px 0px 0px;
741
- --tab-activationIndicator-transitionProperty: left;
742
- --tab-activationIndicator-thumb-height: 0px;
699
+ --tabstrip-height: var(--vuuTabstrip-height, 28px);
700
+ --tabstrip-width: var(--vuuTabstrip-width, 100%);
701
+ --tab-width: auto;
743
702
  --tab-thumb-height: 2px;
703
+ --tab-thumb-left: var(--tab-thumb-offset, 0);
704
+ --tab-thumb-top: auto;
705
+ --tab-thumb-width: var(--tab-thumb-size, 100%);
706
+ align-items: flex-start;
707
+ border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
744
708
  }
745
709
  .vuuTabstrip-vertical {
746
- --vuuTabActivationIndicator-thumb-inset: 0 0 0 -1px;
747
- --tab-activationIndicator-transition: top 0.3s ease;
748
- --tab-activationIndicator-borderStyle: none solid none none;
749
- --tab-activationIndicator-inset: 0px 0px 0px auto;
750
- --tab-activationIndicator-transitionProperty: top;
751
- --tab-activationIndicator-width: 1px;
752
- --tab-activationIndicator-thumb-width: 2px;
710
+ --tabstrip-height: var(--vuuTabstrip-height, 100%);
711
+ --tabstrip-width: var(--vuuTabstrip-width, 100px);
712
+ --tab-width: 100%;
713
+ --tab-thumb-height: var(--tab-thumb-size, 100%);
714
+ --tab-thumb-left: 0;
715
+ --tab-thumb-top: var(--tab-thumb-offset, 0);
716
+ --tab-thumb-width: 2px;
753
717
  align-self: flex-start;
754
718
  display: inline-flex;
755
719
  }
756
- .vuuTabstrip-draggingTab {
757
- --vuuTabs-activationIndicator-transition: none;
758
- }
759
720
  .vuuTabstrip-draggingTab .vuuTab {
760
721
  pointer-events: none;
761
722
  }
762
- .vuuTabstrip-horizontal {
763
- height: var(--tabs-tabstrip-height);
764
- }
765
723
  .vuuTabstrip-addTabButton {
766
724
  --saltButton-height: 20px;
767
725
  --saltButton-width: 20px;
@@ -785,7 +743,7 @@ path.drop-target.centre {
785
743
  flex-shrink: 1;
786
744
  flex-wrap: wrap;
787
745
  justify-content: flex-start;
788
- line-height: var(--tabs-tabstrip-height);
746
+ line-height: var(--tabstrip-height);
789
747
  }
790
748
  .vuuTabstrip-vertical .vuuTabstrip-inner {
791
749
  flex-direction: column;
@@ -795,9 +753,9 @@ path.drop-target.centre {
795
753
  justify-content: center;
796
754
  }
797
755
  .vuuDraggable[class*=vuuTabstrip] {
798
- --tabs-tabstrip-display: flex;
799
- --tabs-tabstrip-height: 100%;
800
- --tabs-tabstrip-dragging-display: block;
756
+ --tabstrip-display: flex;
757
+ --tabstrip-height: 100%;
758
+ --tabstrip-dragging-display: block;
801
759
  --tabs-tab-background: var(--salt-navigable-primary-background-hover);
802
760
  --tabs-tab-before-content: "";
803
761
  --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
@@ -810,14 +768,8 @@ path.drop-target.centre {
810
768
  }
811
769
  .vuuDraggable-tabstrip-horizontal {
812
770
  --tab-thumb-height: 2px;
813
- --tabs-tabstrip-height: 28px;
814
- --tab-activationIndicator-thumb-height: 2px;
815
- --tab-activationIndicator-inset: auto 0px 0px 0px;
816
- line-height: var(--tabs-tabstrip-height);
817
- }
818
- .vuuDraggable-tabstrip-vertical {
819
- --tab-activationIndicator-inset: 0px 0px 0px auto;
820
- --tab-activationIndicator-thumb-width: 2px;
771
+ --tabstrip-height: 28px;
772
+ line-height: var(--tabstrip-height);
821
773
  }
822
774
  .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
823
775
  --tabs-tab-before-background: var(--salt-navigable-indicator-active);
@@ -840,43 +792,42 @@ path.drop-target.centre {
840
792
  /* ../vuu-ui-controls/src/tabstrip/Tab.css */
841
793
  .vuuTab {
842
794
  --saltEditableLabel-padding: 0;
843
- --saltEditableLabel-height: var(--tabs-tabstrip-height);
795
+ --saltEditableLabel-height: var(--tabstrip-height);
844
796
  --saltInputLegacy-minWidth: 4em;
845
- --tab-background: var(--salt-navigable-primary-background);
797
+ --saltEditableLabel-top: 3px;
798
+ --tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
846
799
  --tab-cursor: pointer;
847
800
  --tab-position: relative;
848
801
  }
849
802
  .vuuTab {
850
803
  align-items: center;
851
804
  align-self: stretch;
852
- background: var(--vuuTab-background, var(--tab-background));
805
+ background: var(--tab-background);
853
806
  border: none;
854
- border-radius: 0;
807
+ border-radius: var(--vuuTab-borderRadius, 0);
855
808
  color: var(--salt-text-primary-foreground);
856
809
  cursor: var(--vuuTab-cursor, var(--tab-cursor));
857
- display: var(--tabs-tabstrip-display);
810
+ display: var(--tabstrip-display);
858
811
  gap: 8px;
859
- height: var(--vuuTab-height, var(--tabs-tabstrip-height));
812
+ height: var(--vuuTab-height, var(--tabstrip-height));
860
813
  letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
861
814
  min-width: var(--vuuTab-minWidth, 40px);
862
815
  outline: none;
863
- padding: 0 24px;
816
+ padding: var(--vuuTab-padding, 0 24px);
864
817
  position: var(--vuuTab-position, var(--tab-position));
865
818
  user-select: none;
819
+ width: var(--tab-width);
866
820
  }
867
- .vuuTab.saltFocusVisible:after {
868
- inset: 2px 2px 4px 2px;
869
- }
870
- .vuuTab:not(.vuuTab-vertical) {
821
+ .vuuTab {
871
822
  margin: 0 var(--tab-spacing) 0 0;
872
823
  }
873
824
  .vuuTab-selected {
825
+ background: var(--vuuTab-background-selected, var(--tab-background));
874
826
  color: var(--salt-text-primary-foreground);
875
827
  font-weight: var(--salt-navigable-fontWeight-active);
876
828
  }
877
829
  .vuuTab-main {
878
830
  align-items: center;
879
- background: inherit;
880
831
  border: none;
881
832
  color: inherit;
882
833
  cursor: inherit;
@@ -917,9 +868,6 @@ path.drop-target.centre {
917
868
  white-space: nowrap;
918
869
  z-index: var(--salt-zIndex-default);
919
870
  }
920
- .vuuTab-vertical .vuuTab-text {
921
- text-align: var(--salt-text-textAlign);
922
- }
923
871
  .vuuTab .vuuTab-text:before {
924
872
  height: 0;
925
873
  content: attr(data-text);
@@ -939,21 +887,16 @@ path.drop-target.centre {
939
887
  outline-width: var(--salt-focused-outlineWidth);
940
888
  outline-offset: -2px;
941
889
  }
942
- .vuuTab-vertical.vuuTab-editing:after {
943
- right: 2px;
944
- bottom: 0;
945
- }
946
- .vuuTab-vertical .saltFocusVisible:not(.vuuTab-selected):before {
947
- left: auto;
948
- height: auto;
949
- top: 0;
950
- width: 2px;
951
- }
952
- .vuuTab.saltFocusVisible {
890
+ .vuuTab.vuuFocusVisible {
953
891
  background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
892
+ outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
893
+ outline-style: dashed;
894
+ outline-width: 1px;
895
+ outline-offset: -1px;
954
896
  }
955
897
  .vuuTab:before {
956
898
  content: var(--tab-before-content, none);
899
+ content: "";
957
900
  background: var(--tab-before-background);
958
901
  height: var(--tab-before-height);
959
902
  inset: var(--tab-before-inset);
@@ -968,22 +911,14 @@ path.drop-target.centre {
968
911
  --tab-before-inset: var(--tab-activationIndicator-inset);
969
912
  --tab-before-width: var(--tab-activationIndicator-thumb-width);
970
913
  }
971
- .vuuDraggable .vuuTab:before,
972
- .vuuTab:not(.vuuTab-selected).saltFocusVisible:before,
973
- .vuuTab:hover:not(.vuuTab-selected):before {
974
- --tab-before-content: "";
975
- --tab-before-background: var(--salt-navigable-indicator-hover);
976
- --tab-before-height: var(--tab-thumb-height);
977
- --tab-before-inset: var(--tab-activationIndicator-inset);
978
- --tab-before-width: var(--tab-activationIndicator-thumb-width);
979
- }
980
914
  .vuuTab-selected:before {
981
915
  --tab-before-content: "";
982
916
  background: var(--salt-navigable-indicator-active);
983
917
  height: var(--tab-thumb-height);
984
918
  position: absolute;
985
- left: var(--tab-thumb-offset,0);
919
+ left: var(--tab-thumb-left);
986
920
  bottom: 0px;
921
+ top: var(--tab-thumb-top, auto);
987
922
  transition: var(--tab-thumb-transition, none);
988
923
  width: var(--tab-thumb-width, 100%);
989
924
  }
@@ -991,9 +926,247 @@ path.drop-target.centre {
991
926
  background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
992
927
  }
993
928
 
929
+ /* ../vuu-ui-controls/src/tree/Tree.css */
930
+ .vuuTree {
931
+ --tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
932
+ --tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
933
+ --tree-toggle-width: 12px;
934
+ --tree-icon-color: var(--vuuTree-icon-color, #4c505b);
935
+ --tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
936
+ --tree-node-indent: 0px;
937
+ --list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
938
+ --list-item-height: var(--hw-list-item-height, 30px);
939
+ --list-item-padding: var(--hw-list-item-padding, 0 6px);
940
+ --list-item-header-bg: var(--hw-list-item-header-bg, black);
941
+ --list-item-header-color: var(--hw-list-item-header-color, white);
942
+ --list-item-header-font-weight: bold;
943
+ --list-item-header-twisty-color: black;
944
+ --list-item-header-twisty-content: "";
945
+ --list-item-header-twisty-top: 50%;
946
+ --list-item-header-twisty-left: -18px;
947
+ --list-item-header-twisty-right: auto;
948
+ --list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
949
+ --list-item-selected-color: white;
950
+ --list-item-text-color: var(--hw-gray-800);
951
+ --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
952
+ list-style: none;
953
+ margin: 0;
954
+ padding: 0 1px;
955
+ font-size: var(--vuuTree-font-size, 14px);
956
+ max-height: inherit;
957
+ outline: none;
958
+ overflow-y: auto;
959
+ position: relative;
960
+ user-select: none;
961
+ }
962
+ .vuuTree-viewport {
963
+ --list-item-height: 30px;
964
+ box-sizing: border-box;
965
+ max-height: inherit;
966
+ overflow: auto;
967
+ }
968
+ .vuuTree-scrollingContentContainer {
969
+ box-sizing: inherit;
970
+ position: relative;
971
+ }
972
+ .vuuTree-scrollingContentContainer .vuuTreeNode {
973
+ line-height: 30px;
974
+ position: absolute;
975
+ top: 0;
976
+ left: 0;
977
+ right: 0;
978
+ will-change: transform;
979
+ }
980
+ .vuuTreeNode {
981
+ list-style: none;
982
+ }
983
+ .vuuTreeNode:not([aria-expanded]),
984
+ .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
985
+ --checkbox-border-color: black;
986
+ --checkbox-border-width: 1px;
987
+ --checkbox-tick: black;
988
+ --list-item-padding-left: 6px;
989
+ --svg-toggle: var(--tree-node-collapse);
990
+ align-items: center;
991
+ color: var(--list-item-text-color);
992
+ display: flex;
993
+ flex-wrap: nowrap;
994
+ height: var(--list-item-height);
995
+ line-height: var(--list-item-height);
996
+ padding: var(--list-item-padding);
997
+ padding-left: var(--padding-left);
998
+ position: relative;
999
+ cursor: default;
1000
+ margin: 0;
1001
+ white-space: nowrap;
1002
+ }
1003
+ .vuuTreeNode:not([aria-expanded]) {
1004
+ --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1005
+ }
1006
+ .vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
1007
+ --padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
1008
+ }
1009
+ .vuuTreeNode-icon {
1010
+ background-color: var(--tree-icon-color);
1011
+ display: inline-block;
1012
+ height: 18px;
1013
+ margin-right: 6px;
1014
+ -webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1015
+ mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
1016
+ flex: 0 0 18px;
1017
+ }
1018
+ .vuuTreeNode[aria-expanded] {
1019
+ flex-direction: column;
1020
+ }
1021
+ .vuuTreeNode[aria-expanded] {
1022
+ flex-direction: column;
1023
+ height: auto;
1024
+ }
1025
+ .vuuTreeNode > *[role=group] {
1026
+ padding-left: 0px;
1027
+ }
1028
+ .vuuTreeNode {
1029
+ padding-left: calc(var(--padding-left) + var(--tree-node-indent));
1030
+ }
1031
+ .vuuTreeNode[aria-level="2"] {
1032
+ --tree-node-indent: 12px;
1033
+ }
1034
+ .vuuTreeNode[aria-level="3"] {
1035
+ --tree-node-indent: 24px;
1036
+ }
1037
+ .vuuTreeNode[aria-level="4"] {
1038
+ --tree-node-indent: 36px;
1039
+ }
1040
+ .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
1041
+ .vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
1042
+ background-color: var(--list-hilited-bg);
1043
+ }
1044
+ .vuuTreeNode-toggle {
1045
+ cursor: pointer;
1046
+ }
1047
+ .vuuTreeNode > .vuuTreeNode-toggle {
1048
+ display: inline-block;
1049
+ height: 100%;
1050
+ left: 0;
1051
+ position: absolute;
1052
+ width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
1053
+ }
1054
+ .vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
1055
+ content: var(--list-item-header-twisty-content);
1056
+ -webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
1057
+ mask: var(--svg-toggle) center center/8px 8px no-repeat;
1058
+ background-color: var(--list-item-header-twisty-color);
1059
+ height: 18px;
1060
+ margin-top: -9px;
1061
+ left: var(--tree-node-indent);
1062
+ position: absolute;
1063
+ top: var(--list-item-header-twisty-top);
1064
+ transition: transform 0.3s;
1065
+ width: 18px;
1066
+ }
1067
+ .vuuTreeNode[aria-selected=true] {
1068
+ --list-item-header-twisty-color: var(--list-item-selected-color);
1069
+ }
1070
+ .vuuTreeNode:not(.focusVisible):focus {
1071
+ background-color: rgba(0, 0, 0, 0.1);
1072
+ }
1073
+ .vuuTreeNode:not([aria-expanded]).focusVisible:before,
1074
+ .vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
1075
+ content: "";
1076
+ position: absolute;
1077
+ top: 0px;
1078
+ left: var(--tree-focus-offset, 0px);
1079
+ right: 0;
1080
+ bottom: 0px;
1081
+ border: dotted var(--focus-visible-border-color) 2px;
1082
+ background-color: var(--list-hilited-bg);
1083
+ }
1084
+ .vuuTreeNode[aria-expanded=false] > *:first-child:after {
1085
+ --svg-toggle: var(--tree-node-expand);
1086
+ }
1087
+ .vuuTreeNode[aria-expanded=true] > *:first-child:after {
1088
+ transform: var(--tree-node-expanded-transform);
1089
+ }
1090
+ .vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
1091
+ .vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
1092
+ --checkbox-border-color: var(--list-item-selected-color);
1093
+ --checkbox-tick: var(--list-item-selected-color);
1094
+ --focus-visible-border-color: var(--list-item-selected-color);
1095
+ background-color: var(--list-item-selected-bg);
1096
+ color: var(--list-item-selected-color);
1097
+ }
1098
+ .with-checkbox .vuuTreeNode {
1099
+ padding-left: 28px;
1100
+ }
1101
+ .with-checkbox .vuuTreeNode:before {
1102
+ border-style: solid;
1103
+ border-width: var(--checkbox-border-width);
1104
+ border-color: var(--checkbox-border-color);
1105
+ content: "";
1106
+ height: 12px;
1107
+ left: 3px;
1108
+ margin-top: -7px;
1109
+ position: absolute;
1110
+ top: 50%;
1111
+ width: 12px;
1112
+ }
1113
+
1114
+ /* ../vuu-layout/src/layout-view/View.css */
1115
+ .vuuView {
1116
+ border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
1117
+ border-width: var(--vuuView-borderWidth, 1px);
1118
+ border-style: var(--vuuView-borderStyle, none);
1119
+ display: flex;
1120
+ flex-direction: column;
1121
+ margin: var(--vuuView-margin, 0px);
1122
+ min-height: 50px;
1123
+ min-width: 50px;
1124
+ outline: none;
1125
+ overflow: hidden;
1126
+ position: relative;
1127
+ }
1128
+ .vuuView.focus-visible:after {
1129
+ content: "";
1130
+ position: absolute;
1131
+ top: 0;
1132
+ left: 0;
1133
+ right: 0;
1134
+ bottom: 0;
1135
+ border: dotted cornflowerblue 2px;
1136
+ }
1137
+ .vuuView.dragging {
1138
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1139
+ }
1140
+ .vuuView-main {
1141
+ display: flex;
1142
+ flex-direction: var(--vuuView-flexDirection, column);
1143
+ flex-wrap: var(--vuuView-flex-wrap, nowrap);
1144
+ flex: 1;
1145
+ overflow: hidden;
1146
+ position: relative;
1147
+ }
1148
+ .vuuView-main > * {
1149
+ flex-basis: auto;
1150
+ flex-grow: var(--vuuView-flex-grow, 1);
1151
+ flex-shrink: var(--vuuView-flex-shrink, 1);
1152
+ }
1153
+ .vuuView-collapsed .vuuView-main {
1154
+ display: none;
1155
+ }
1156
+ .vuuView-collapsed + .Splitter {
1157
+ display: none;
1158
+ }
1159
+ .vuuView-collapsed .Toolbar-vertical {
1160
+ border-right: solid 1px var(--grey40);
1161
+ }
1162
+ .vuuView-collapsed .Toolbar-vertical .toolbar-title {
1163
+ display: none;
1164
+ }
1165
+
994
1166
  /* ../vuu-layout/src/layout-header/Header.css */
995
1167
  .vuuHeader {
996
- --saltToolbar-background: var(--salt-container-tertiary-background);
1168
+ --saltButton-height: 24px;
1169
+ --saltButton-width: 24px;
997
1170
  }
998
1171
  .salt-density-high .vuuHeader {
999
1172
  --saltToolbarField-marginTop: 0;
@@ -1002,15 +1175,26 @@ path.drop-target.centre {
1002
1175
  /* ../vuu-layout/src/overflow-container/OverflowContainer.css */
1003
1176
  .vuuOverflowContainer {
1004
1177
  --item-gap: 4px;
1178
+ --overflow-direction: row;
1005
1179
  --overflow-width: 0px;
1006
1180
  --overflow-order: 99;
1007
1181
  --border-size: calc((var(--overflow-container-height) - 24px) / 2);
1008
1182
  background-color: var(--vuuOverflowContainer-background, black);
1009
1183
  height: var(--overflow-container-height);
1010
1184
  }
1185
+ .vuuOverflowContainer-horizontal {
1186
+ --item-align: center;
1187
+ --item-margin: 0 0 0 var(--item-gap);
1188
+ }
1189
+ .vuuOverflowContainer-vertical {
1190
+ --item-align: stretch;
1191
+ --item-margin: var(--item-gap) 0 0 0;
1192
+ --overflow-direction: column;
1193
+ }
1011
1194
  .vuuOverflowContainer-wrapContainer {
1012
- align-items: center;
1195
+ align-items: var(--item-align);
1013
1196
  display: flex;
1197
+ flex-direction: var(--overflow-direction);
1014
1198
  flex-wrap: wrap;
1015
1199
  height: var(--overflow-container-height);
1016
1200
  min-width: 44px;
@@ -1027,13 +1211,16 @@ path.drop-target.centre {
1027
1211
  .vuuOverflowContainer-item:first-child {
1028
1212
  --item-gap: 0;
1029
1213
  }
1214
+ .vuuOverflowContainer-item:first-child {
1215
+ --item-margin: 0;
1216
+ }
1030
1217
  .vuuOverflowContainer-item {
1031
1218
  align-items: inherit;
1032
1219
  display: flex;
1033
1220
  order: 1;
1034
1221
  position: relative;
1035
1222
  height: var(--overflow-container-height);
1036
- margin-left: var(--item-gap);
1223
+ margin: var(--item-margin);
1037
1224
  }
1038
1225
  .vuuOverflowContainer-item.wrapped {
1039
1226
  --overflow-item-bg: #ccc;
@@ -1091,16 +1278,6 @@ path.drop-target.centre {
1091
1278
  --vuu-icon-color: var(--salt-selectable-foreground);
1092
1279
  }
1093
1280
 
1094
- /* ../vuu-layout/src/palette/PaletteSalt.css */
1095
- .vuuPalette {
1096
- --list-item-header-bg: inherit;
1097
- --list-item-header-color: inherit;
1098
- --list-item-padding: 0 6px 0 24px;
1099
- --list-item-header-twisty-color: black;
1100
- --list-item-header-twisty-left: 3px;
1101
- --list-item-header-twisty-right: auto;
1102
- }
1103
-
1104
1281
  /* ../vuu-layout/src/stack/Stack.css */
1105
1282
  .Tabs {
1106
1283
  display: flex;
@@ -1108,6 +1285,7 @@ path.drop-target.centre {
1108
1285
  flex-direction: column;
1109
1286
  }
1110
1287
  .Tabs-horizontal {
1288
+ --vuu-tabs-border-style: none solid none none;
1111
1289
  flex-direction: row;
1112
1290
  }
1113
1291
  .Tabs .Toolbar:before {
@@ -1122,7 +1300,9 @@ path.drop-target.centre {
1122
1300
  .vuuTabHeader {
1123
1301
  --saltTabs-activationIndicator-background: transparent;
1124
1302
  --saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
1125
- border-bottom: solid 1px var(--salt-container-primary-borderColor);
1303
+ border-color: var(--salt-container-primary-borderColor);
1304
+ border-style: var(--vuu-tabs-border-style, none none solid none);
1305
+ border-width: 1px;
1126
1306
  }
1127
1307
  .vuuTabHeader + .hwFlexbox,
1128
1308
  .vuuTabHeader + * {
@@ -1248,6 +1428,128 @@ path.drop-target.centre {
1248
1428
  color: white;
1249
1429
  }
1250
1430
 
1431
+ /* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
1432
+ .vuuSaveLayoutPanel {
1433
+ background-color: aqua;
1434
+ height: 400px;
1435
+ width: 600px;
1436
+ }
1437
+
1438
+ /* ../vuu-shell/src/left-nav/LeftNav.css */
1439
+ .vuuLeftNav {
1440
+ --salt-navigable-fontWeight-active: 700;
1441
+ --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
1442
+ --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
1443
+ --vuuTab-before-content: none;
1444
+ --vuuTab-borderRadius: 6px;
1445
+ --vuuTab-height: 40px;
1446
+ --vuuTab-padding: 0 0 0 48px;
1447
+ --vuuTabstrip-fontWeight: 700;
1448
+ --vuuTabstrip-width: 100%;
1449
+ --svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');
1450
+ --svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');
1451
+ --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>');
1452
+ --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>');
1453
+ --vuu-light-text-primary: #15171b;
1454
+ display: flex;
1455
+ transition: width .3s ease-in-out;
1456
+ }
1457
+ .vuuLeftNav-menu-full {
1458
+ --menu-width: var(--nav-menu-expanded-width);
1459
+ }
1460
+ .vuuLeftNav-menu-icons {
1461
+ --menu-width: var(--nav-menu-collapsed-width);
1462
+ }
1463
+ .vuuLeftNav-menu-content {
1464
+ --menu-width: var(--nav-menu-collapsed-width);
1465
+ }
1466
+ .vuuLeftNav-menu-content .vuuLeftNav-menu-secondary {
1467
+ display: block;
1468
+ }
1469
+ .vuuLeftNav-menu-primary {
1470
+ background-color: #2A015F;
1471
+ container-type: inline-size;
1472
+ display: flex;
1473
+ flex-direction: column;
1474
+ height: 100%;
1475
+ padding: 32px 16px;
1476
+ transition: width ease .3s;
1477
+ width: var(--menu-width, 100%);
1478
+ }
1479
+ .vuuLeftNav-menu-secondary {
1480
+ flex: 1 1 auto;
1481
+ height: 100%;
1482
+ display: none;
1483
+ }
1484
+ .vuuLeftNav .vuuTabstrip {
1485
+ margin-top: 102px;
1486
+ }
1487
+ .vuuLeftNav .vuuTab {
1488
+ --vuuTab-focusVisible-color: pink;
1489
+ --vuu-icon-color: white;
1490
+ --vuu-icon-left: 12px;
1491
+ --vuu-icon-size: 16px;
1492
+ border-left: solid 4px transparent;
1493
+ }
1494
+ .vuuLeftNav .vuuTab-selected {
1495
+ --vuu-icon-color: var(--salt-navigable-indicator-active);
1496
+ border-left: solid 4px var(--salt-navigable-indicator-active);
1497
+ }
1498
+ .vuuLeftNav-logo {
1499
+ display: flex;
1500
+ flex: 0 0 auto;
1501
+ justify-content: center;
1502
+ }
1503
+ .vuuLeftNav-main {
1504
+ flex: 1 1 auto;
1505
+ }
1506
+ .vuuLeftNav-menu {
1507
+ color: white;
1508
+ margin-top: 102px;
1509
+ padding: 0;
1510
+ }
1511
+ .vuuLeftNav [data-icon=demo] {
1512
+ --vuu-icon-svg: var(--svg-demo);
1513
+ }
1514
+ .vuuLeftNav [data-icon=tables] {
1515
+ --vuu-icon-svg: var(--svg-tables);
1516
+ }
1517
+ .vuuLeftNav [data-icon=templates] {
1518
+ --vuu-icon-svg: var(--svg-templates);
1519
+ }
1520
+ .vuuLeftNav [data-icon=layouts] {
1521
+ --vuu-icon-svg: var(--svg-layouts);
1522
+ }
1523
+ @container (max-width: 100px) {
1524
+ .vuuTab {
1525
+ --vuuTab-padding: 0 0 0 42px;
1526
+ }
1527
+ .vuuTab-main {
1528
+ display: none !important;
1529
+ }
1530
+ }
1531
+ .vuuLeftNav-buttonBar {
1532
+ align-items: center;
1533
+ display: flex;
1534
+ flex: 0 0 100px;
1535
+ justify-content: center;
1536
+ }
1537
+ .vuuLeftNav-toggleButton {
1538
+ --vuu-icon-color: var(--vuu-light-text-primary);
1539
+ --vuu-icon-left: 11px;
1540
+ --vuu-icon-top: 10px;
1541
+ --vuu-icon-size: 16px;
1542
+ background-color: var(--salt-navigable-indicator-active);
1543
+ border-width: 0;
1544
+ border-radius: 18px;
1545
+ height: 36px;
1546
+ position: relative;
1547
+ width: 36px;
1548
+ }
1549
+ .vuuLeftNav-toggleButton-open {
1550
+ --vuu-icon-left: 9px;
1551
+ }
1552
+
1251
1553
  /* ../vuu-shell/src/login/LoginPanel.css */
1252
1554
  .vuuLoginPanel {
1253
1555
  --hwTextInput-border: solid 1px #ccc;
@@ -1354,10 +1656,9 @@ vuuUserPanel-history {
1354
1656
  /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
1355
1657
  .vuuThemeSwitch {
1356
1658
  --saltButton-minWidth: 22px;
1357
- }
1358
- .vuuThemeSwitch {
1359
1659
  --svg-light: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 31q2.9 0 4.95-2.05Q31 26.9 31 24q0-2.9-2.05-4.95Q26.9 17 24 17q-2.9 0-4.95 2.05Q17 21.1 17 24q0 2.9 2.05 4.95Q21.1 31 24 31Zm0 3q-4.15 0-7.075-2.925T14 24q0-4.15 2.925-7.075T24 14q4.15 0 7.075 2.925T34 24q0 4.15-2.925 7.075T24 34ZM3.5 25.5q-.65 0-1.075-.425Q2 24.65 2 24q0-.65.425-1.075Q2.85 22.5 3.5 22.5h5q.65 0 1.075.425Q10 23.35 10 24q0 .65-.425 1.075-.425.425-1.075.425Zm36 0q-.65 0-1.075-.425Q38 24.65 38 24q0-.65.425-1.075.425-.425 1.075-.425h5q.65 0 1.075.425Q46 23.35 46 24q0 .65-.425 1.075-.425.425-1.075.425ZM24 10q-.65 0-1.075-.425Q22.5 9.15 22.5 8.5v-5q0-.65.425-1.075Q23.35 2 24 2q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 10 24 10Zm0 36q-.65 0-1.075-.425-.425-.425-.425-1.075v-5q0-.65.425-1.075Q23.35 38 24 38q.65 0 1.075.425.425.425.425 1.075v5q0 .65-.425 1.075Q24.65 46 24 46ZM12 14.1l-2.85-2.8q-.45-.45-.425-1.075.025-.625.425-1.075.45-.45 1.075-.45t1.075.45L14.1 12q.4.45.4 1.05 0 .6-.4 1-.4.45-1.025.45-.625 0-1.075-.4Zm24.7 24.75L33.9 36q-.4-.45-.4-1.075t.45-1.025q.4-.45 1-.45t1.05.45l2.85 2.8q.45.45.425 1.075-.025.625-.425 1.075-.45.45-1.075.45t-1.075-.45ZM33.9 14.1q-.45-.45-.45-1.05 0-.6.45-1.05l2.8-2.85q.45-.45 1.075-.425.625.025 1.075.425.45.45.45 1.075t-.45 1.075L36 14.1q-.4.4-1.025.4-.625 0-1.075-.4ZM9.15 38.85q-.45-.45-.45-1.075t.45-1.075L12 33.9q.45-.45 1.05-.45.6 0 1.05.45.45.45.45 1.05 0 .6-.45 1.05l-2.8 2.85q-.45.45-1.075.425-.625-.025-1.075-.425ZM24 24Z"/></svg>');
1360
1660
  --svg-dark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M24 42q-7.5 0-12.75-5.25T6 24q0-7.5 5.25-12.75T24 6q.4 0 .85.025.45.025 1.15.075-1.8 1.6-2.8 3.95-1 2.35-1 4.95 0 4.5 3.15 7.65Q28.5 25.8 33 25.8q2.6 0 4.95-.925T41.9 22.3q.05.6.075.975Q42 23.65 42 24q0 7.5-5.25 12.75T24 42Zm0-3q5.45 0 9.5-3.375t5.05-7.925q-1.25.55-2.675.825Q34.45 28.8 33 28.8q-5.75 0-9.775-4.025T19.2 15q0-1.2.25-2.575.25-1.375.9-3.125-4.9 1.35-8.125 5.475Q9 18.9 9 24q0 6.25 4.375 10.625T24 39Zm-.2-14.85Z"/></svg>');
1661
+ padding: 2px;
1361
1662
  }
1362
1663
  .salt-density-high .vuuThemeSwitch {
1363
1664
  --saltButton-minWidth: 16px;
@@ -1373,6 +1674,10 @@ vuuUserPanel-history {
1373
1674
  .vuuThemeSwitch [data-icon=dark] {
1374
1675
  --vuu-icon-svg: var(--svg-dark);
1375
1676
  }
1677
+ .vuuThemeSwitch .saltToggleButton {
1678
+ height: 20px;
1679
+ width: 20px;
1680
+ }
1376
1681
 
1377
1682
  /* ../vuu-shell/src/app-header/AppHeader.css */
1378
1683
  .vuuAppHeader {
@@ -1382,7 +1687,7 @@ vuuUserPanel-history {
1382
1687
  height: 40px;
1383
1688
  justify-content: flex-end;
1384
1689
  }
1385
- .vuu-purple-theme .vuuAppHeader {
1690
+ .vuu-theme .vuuAppHeader {
1386
1691
  border-radius: 8px;
1387
1692
  border: 1px solid #D6D7DA;
1388
1693
  height: 44px;
@@ -1436,99 +1741,6 @@ vuuUserPanel-history {
1436
1741
  white-space: nowrap;
1437
1742
  }
1438
1743
 
1439
- /* ../vuu-shell/src/left-nav/LeftNav.css */
1440
- .vuuLeftNav {
1441
- --svg-demo: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11.3333 11C11.52 11 11.6667 10.8533 11.6667 10.6667C11.6667 10.48 11.52 10.3333 11.3333 10.3333C11.1467 10.3333 11 10.48 11 10.6667C11 10.8533 11.1467 11 11.3333 11Z"/><path d="M5.99999 8.66667C6.36818 8.66667 6.66666 8.36819 6.66666 8C6.66666 7.63181 6.36818 7.33334 5.99999 7.33334C5.63181 7.33334 5.33333 7.63181 5.33333 8C5.33333 8.36819 5.63181 8.66667 5.99999 8.66667Z"/><path d="M8.66667 6C9.03486 6 9.33333 5.70152 9.33333 5.33333C9.33333 4.96514 9.03486 4.66667 8.66667 4.66667C8.29848 4.66667 8 4.96514 8 5.33333C8 5.70152 8.29848 6 8.66667 6Z"/><path d="M8.66667 11.3333C9.03486 11.3333 9.33333 11.0349 9.33333 10.6667C9.33333 10.2985 9.03486 10 8.66667 10C8.29848 10 8 10.2985 8 10.6667C8 11.0349 8.29848 11.3333 8.66667 11.3333Z"/><path d="M11.3333 8.33333C11.52 8.33333 11.6667 8.18666 11.6667 8C11.6667 7.81333 11.52 7.66666 11.3333 7.66666C11.1467 7.66666 11 7.81333 11 8C11 8.18666 11.1467 8.33333 11.3333 8.33333Z"/><path d="M8.66667 8.66667C9.03486 8.66667 9.33333 8.36819 9.33333 8C9.33333 7.63181 9.03486 7.33334 8.66667 7.33334C8.29848 7.33334 8 7.63181 8 8C8 8.36819 8.29848 8.66667 8.66667 8.66667Z"/><path d="M2 2H14V3.33333H2V2Z"/><path d="M3.33333 6.33333C3.88561 6.33333 4.33333 5.88562 4.33333 5.33333C4.33333 4.78105 3.88561 4.33333 3.33333 4.33333C2.78104 4.33333 2.33333 4.78105 2.33333 5.33333C2.33333 5.88562 2.78104 6.33333 3.33333 6.33333Z"/><path d="M3.33333 9C3.88561 9 4.33333 8.55228 4.33333 8C4.33333 7.44772 3.88561 7 3.33333 7C2.78104 7 2.33333 7.44772 2.33333 8C2.33333 8.55228 2.78104 9 3.33333 9Z"/><path d="M3.33333 11.6667C3.88561 11.6667 4.33333 11.2189 4.33333 10.6667C4.33333 10.1144 3.88561 9.66666 3.33333 9.66666C2.78104 9.66666 2.33333 10.1144 2.33333 10.6667C2.33333 11.2189 2.78104 11.6667 3.33333 11.6667Z"/><path d="M11.3333 5.66667C11.52 5.66667 11.6667 5.52 11.6667 5.33333C11.6667 5.14667 11.52 5 11.3333 5C11.1467 5 11 5.14667 11 5.33333C11 5.52 11.1467 5.66667 11.3333 5.66667Z"/><path d="M5.99999 11.3333C6.36818 11.3333 6.66666 11.0349 6.66666 10.6667C6.66666 10.2985 6.36818 10 5.99999 10C5.63181 10 5.33333 10.2985 5.33333 10.6667C5.33333 11.0349 5.63181 11.3333 5.99999 11.3333Z"/><path d="M5.99999 6C6.36818 6 6.66666 5.70152 6.66666 5.33333C6.66666 4.96514 6.36818 4.66667 5.99999 4.66667C5.63181 4.66667 5.33333 4.96514 5.33333 5.33333C5.33333 5.70152 5.63181 6 5.99999 6Z"/><path d="M2 12.6667H14V14H2V12.6667Z"/></svg>');
1442
- --svg-tables: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 6H4.66667V3.33334H3.33333C2.6 3.33334 2 3.93334 2 4.66667V6ZM2 9.33334H4.66667V6.66667H2V9.33334ZM5.33333 9.33334H8V6.66667H5.33333V9.33334ZM8.66667 9.33334H11.3333V6.66667H8.66667V9.33334ZM5.33333 6H8V3.33334H5.33333V6ZM8.66667 3.33334V6H11.3333V3.33334H8.66667ZM12 9.33334H14.6667V6.66667H12V9.33334ZM3.33333 12.6667H4.66667V10H2V11.3333C2 12.0667 2.6 12.6667 3.33333 12.6667ZM5.33333 12.6667H8V10H5.33333V12.6667ZM8.66667 12.6667H11.3333V10H8.66667V12.6667ZM12 12.6667H13.3333C14.0667 12.6667 14.6667 12.0667 14.6667 11.3333V10H12V12.6667ZM12 3.33334V6H14.6667V4.66667C14.6667 3.93334 14.0667 3.33334 13.3333 3.33334H12Z"/></svg>');
1443
- --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>');
1444
- --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>');
1445
- --vuu-accent-color: #f37880;
1446
- --vuu-light-text-primary: #15171b;
1447
- background-color: #2A015F;
1448
- container-type: inline-size;
1449
- display: flex;
1450
- flex-direction: column;
1451
- padding: 32px 16px;
1452
- transition: width .3s ease-in-out;
1453
- }
1454
- .vuuLeftNav-logo {
1455
- display: flex;
1456
- flex: 0 0 auto;
1457
- justify-content: center;
1458
- }
1459
- .vuuLeftNav-main {
1460
- flex: 1 1 auto;
1461
- }
1462
- .vuuLeftNav-menu {
1463
- color: white;
1464
- margin-top: 102px;
1465
- padding: 0;
1466
- }
1467
- .vuuLeftNav-menuitem {
1468
- --vuu-icon-color: white;
1469
- align-items: center;
1470
- border-radius: 6px;
1471
- display: flex;
1472
- font-weight: 700;
1473
- height: 40px;
1474
- line-height: 24px;
1475
- list-style: none;
1476
- padding: 8px 16px 8px 48px;
1477
- }
1478
- .vuuLeftNav-menuitem[data-icon] {
1479
- --vuu-icon-left: 32px;
1480
- --vuu-icon-size: 16px;
1481
- }
1482
- .vuuLeftNav-menuitem[data-icon=demo] {
1483
- --vuu-icon-svg: var(--svg-demo);
1484
- }
1485
- .vuuLeftNav-menuitem[data-icon=tables] {
1486
- --vuu-icon-svg: var(--svg-tables);
1487
- }
1488
- .vuuLeftNav-menuitem[data-icon=templates] {
1489
- --vuu-icon-svg: var(--svg-templates);
1490
- }
1491
- .vuuLeftNav-menuitem[data-icon=layouts] {
1492
- --vuu-icon-svg: var(--svg-layouts);
1493
- }
1494
- .vuuLeftNav-menuitem-label {
1495
- white-space: nowrap;
1496
- }
1497
- .vuuLeftNav-menuitem-active {
1498
- --vuu-icon-color: var(--vuu-accent-color);
1499
- background: rgba(255, 255, 255, 0.10);
1500
- border-left: solid 4px var(--vuu-accent-color);
1501
- }
1502
- @container (max-width: 100px) {
1503
- .vuuLeftNav-menuitem {
1504
- padding-left: 28px;
1505
- }
1506
- .vuuLeftNav-menuitem-label {
1507
- display: none;
1508
- }
1509
- }
1510
- .vuuLeftNav-buttonBar {
1511
- align-items: center;
1512
- display: flex;
1513
- flex: 0 0 100px;
1514
- justify-content: center;
1515
- }
1516
- .vuuLeftNav-toggleButton {
1517
- --vuu-icon-color: var(--vuu-light-text-primary);
1518
- --vuu-icon-left: 11px;
1519
- --vuu-icon-top: 10px;
1520
- --vuu-icon-size: 16px;
1521
- background-color: var(--vuu-accent-color);
1522
- border-width: 0;
1523
- border-radius: 18px;
1524
- height: 36px;
1525
- position: relative;
1526
- width: 36px;
1527
- }
1528
- .vuuLeftNav-toggleButton-open {
1529
- --vuu-icon-left: 9px;
1530
- }
1531
-
1532
1744
  /* ../vuu-shell/src/shell.css */
1533
1745
  .vuuShell {
1534
1746
  background-color: var(--salt-container-primary-background, ivory);
@@ -1721,10 +1933,10 @@ vuuUserPanel-history {
1721
1933
  --saltButton-background: var(--salt-actionable-secondary-background-active);
1722
1934
  --vuu-icon-color: white;
1723
1935
  }
1724
- .vuu-theme-purple .vuuPopupMenu:hover {
1936
+ .vuu-theme .vuuPopupMenu:hover {
1725
1937
  --saltButton-background-hover: #F37880;
1726
1938
  }
1727
- .vuu-theme-purple .vuuPopupMenu-open {
1939
+ .vuu-theme .vuuPopupMenu-open {
1728
1940
  --saltButton-background: #6D18BD;
1729
1941
  }
1730
1942
  /*# sourceMappingURL=index.css.map */