@vuu-ui/vuu-ui-controls 0.8.5-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.
Files changed (36) hide show
  1. package/cjs/index.js +44047 -0
  2. package/cjs/index.js.map +7 -0
  3. package/esm/index.js +44136 -0
  4. package/esm/index.js.map +7 -0
  5. package/index.css +899 -0
  6. package/index.css.map +7 -0
  7. package/package.json +29 -0
  8. package/types/drag-drop/DragDropProvider.d.ts +22 -0
  9. package/types/drag-drop/Draggable.d.ts +12 -0
  10. package/types/drag-drop/DropIndicator.d.ts +7 -0
  11. package/types/drag-drop/drag-utils.d.ts +48 -0
  12. package/types/drag-drop/dragDropTypesNext.d.ts +72 -0
  13. package/types/drag-drop/drop-target-utils.d.ts +75 -0
  14. package/types/drag-drop/index.d.ts +2 -0
  15. package/types/drag-drop/useAutoScroll.d.ts +11 -0
  16. package/types/drag-drop/useDragDisplacers.d.ts +15 -0
  17. package/types/drag-drop/useDragDropIndicator.d.ts +2 -0
  18. package/types/drag-drop/useDragDropNaturalMovementNext.d.ts +2 -0
  19. package/types/drag-drop/useDragDropNext.d.ts +2 -0
  20. package/types/drag-drop/useDragSpacers.d.ts +7 -0
  21. package/types/drag-drop/useDropIndicator.d.ts +8 -0
  22. package/types/drag-drop/useTransition.d.ts +3 -0
  23. package/types/editable-label/EditableLabel.d.ts +14 -0
  24. package/types/editable-label/index.d.ts +1 -0
  25. package/types/index.d.ts +2 -0
  26. package/types/tabstrip/Tab.d.ts +27 -0
  27. package/types/tabstrip/TabMenu.d.ts +12 -0
  28. package/types/tabstrip/TabMenuOptions.d.ts +10 -0
  29. package/types/tabstrip/TabsTypes.d.ts +112 -0
  30. package/types/tabstrip/Tabstrip.d.ts +4 -0
  31. package/types/tabstrip/index.d.ts +4 -0
  32. package/types/tabstrip/tabstrip-dom-utils.d.ts +3 -0
  33. package/types/tabstrip/useAnimatedSelectionThumb.d.ts +6 -0
  34. package/types/tabstrip/useKeyboardNavigation.d.ts +29 -0
  35. package/types/tabstrip/useSelection.d.ts +14 -0
  36. package/types/tabstrip/useTabstrip.d.ts +49 -0
package/index.css ADDED
@@ -0,0 +1,899 @@
1
+ /* src/editable-label/EditableLabel.css */
2
+ .vuuEditableLabel {
3
+ --saltInput-minWidth: 14px;
4
+ --saltInput-position: absolute;
5
+ --editableLabel-padding: var(--saltEditableLabel-padding, 6px);
6
+ --editableLabel-height: var(--saltEditableLabel-height, 26px);
7
+ color: inherit;
8
+ cursor: default;
9
+ display: flex;
10
+ flex-direction: column;
11
+ font-size: var(--salt-text-fontSize);
12
+ height: var(--editableLabel-height);
13
+ justify-content: center;
14
+ outline: none;
15
+ padding: 0 var(--editableLabel-padding);
16
+ position: relative;
17
+ z-index: var(--salt-zIndex-default);
18
+ }
19
+ .vuuEditableLabel:before {
20
+ content: attr(data-text);
21
+ display: block;
22
+ height: 0px;
23
+ visibility: hidden;
24
+ white-space: pre-wrap;
25
+ }
26
+ .vuuEditableLabel .saltInput {
27
+ font-weight: var(--salt-text-fontWeight);
28
+ left: var(--editableLabel-padding, 0);
29
+ padding: 0;
30
+ outline-style: none;
31
+ right: var(--editableLabel-padding, 0);
32
+ }
33
+ .vuuEditableLabel-input {
34
+ outline: none;
35
+ }
36
+
37
+ /* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
38
+ .vuuStatus-container {
39
+ display: flex;
40
+ }
41
+ .vuuStatus-text {
42
+ align-self: center;
43
+ }
44
+ .vuuStatus {
45
+ --vuu-icon-height: 18px;
46
+ --vuu-icon-padding: var(--vuuStatus-padding, 6px);
47
+ --vuu-icon-width: var(--vuuStatus-width, auto);
48
+ --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
49
+ align-items: center;
50
+ display: inline-flex;
51
+ height: var(--vuu-icon-height);
52
+ justify-content: center;
53
+ min-width: var(--vuu-icon-min-width);
54
+ padding: 0 var(--vuu-icon-padding);
55
+ width: var(--vuu-icon-width);
56
+ position: relative;
57
+ }
58
+ .vuuStatus[data-icon]::after {
59
+ inset: 0 0 0 0;
60
+ content: "";
61
+ box-shadow: 0 0 0 0 black;
62
+ position: absolute;
63
+ mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
64
+ -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
65
+ }
66
+ .vuuActiveStatus::after {
67
+ --vuu-icon-svg: var(--svg-active-status);
68
+ background-color: rgb(0, 255, 0);
69
+ }
70
+ .vuuConnectingStatus::after {
71
+ --vuu-icon-svg: var(--svg-connecting-status);
72
+ background-color: orange;
73
+ transform: scale(1);
74
+ animation: infinite pulse 1s;
75
+ }
76
+ .vuuDisconnectedStatus::after {
77
+ --vuu-icon-svg: var(--svg-disconnected-status);
78
+ background-color: red;
79
+ transform: scale(1);
80
+ animation: infinite pulse 0.5s;
81
+ }
82
+ @keyframes pulse {
83
+ 0% {
84
+ transform: scale(0.95);
85
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
86
+ }
87
+ 70% {
88
+ transform: scale(1);
89
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
90
+ }
91
+ 100% {
92
+ transform: scale(0.95);
93
+ box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
94
+ }
95
+ }
96
+
97
+ /* ../vuu-shell/src/login/LoginPanel.css */
98
+ .vuuLoginPanel {
99
+ --hwTextInput-border: solid 1px #ccc;
100
+ --hwTextInput-height: 28px;
101
+ --hwTextInput-padding: 0 12px;
102
+ --hwTextInput-width: 100%;
103
+ --login-row-height: 60px;
104
+ align-content: center;
105
+ align-items: center;
106
+ border: solid 1px lightgray;
107
+ display: flex;
108
+ flex-direction: column;
109
+ gap: 24px;
110
+ justify-content: center;
111
+ justify-items: center;
112
+ margin: 0 auto;
113
+ padding: 48px 48px 24px 48px;
114
+ width: fit-content;
115
+ }
116
+ .vuuLoginPanel-login {
117
+ grid-column: 2/3;
118
+ align-self: end;
119
+ justify-self: end;
120
+ }
121
+
122
+ /* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
123
+ .vuuSessionEditingForm {
124
+ display: flex;
125
+ flex-direction: column;
126
+ gap: 3px;
127
+ min-width: 400px;
128
+ padding: 6px;
129
+ }
130
+ .vuuSessionEditingForm-content {
131
+ display: flex;
132
+ flex-direction: column;
133
+ flex: 1 1 auto;
134
+ gap: 3px;
135
+ overflow: auto;
136
+ }
137
+ .vuuSessionEditingForm-field {
138
+ align-items: center;
139
+ display: flex;
140
+ height: 32px;
141
+ }
142
+ .vuuSessionEditingForm-fieldLabel {
143
+ flex: 0 0 50%;
144
+ }
145
+ .vuuSessionEditingForm-fieldValue {
146
+ max-width: 50%;
147
+ }
148
+ .vuuSessionEditingForm-fieldValue.vuuReadOnly {
149
+ font-weight: var(--salt-text-label-fontWeight-strong);
150
+ }
151
+ .vuuSessionEditingForm-buttonbar {
152
+ align-items: center;
153
+ border-top: solid 1px var(--salt-container-primary-borderColor);
154
+ display: flex;
155
+ justify-content: flex-end;
156
+ flex: 0 0 autox;
157
+ gap: 6px;
158
+ padding-top: 6px;
159
+ }
160
+ .vuuSessionEditingForm-errorBanner {
161
+ --vuu-icon-left: 3px;
162
+ --vuu-icon-size: 18px;
163
+ --vuu-icon-top: 3px;
164
+ border: solid 1px var(--salt-status-error-borderColor);
165
+ line-height: 24px;
166
+ padding: 0 6px 0 26px;
167
+ position: relative;
168
+ }
169
+
170
+ /* ../vuu-shell/src/user-profile/UserPanel.css */
171
+ .vuuUserPanel {
172
+ background-color: white;
173
+ display: flex;
174
+ flex-direction: column;
175
+ max-height: 400px;
176
+ padding: 12px;
177
+ }
178
+ vuuUserPanel-history {
179
+ flex: 1 1 auto;
180
+ }
181
+ .vuuUserPanel-buttonBar {
182
+ --saltButton-width: 100%;
183
+ align-items: flex-end;
184
+ border-top: 1px solid var(--surface3);
185
+ display: flex;
186
+ flex: 0 0 32px;
187
+ justify-content: flex-start;
188
+ }
189
+ .btn-logout {
190
+ --hwButton-icon-left: 12px;
191
+ --hwButton-padding: 0 6px 0 24px;
192
+ padding-left: 24px;
193
+ }
194
+
195
+ /* ../vuu-shell/src/user-profile/UserProfile.css */
196
+ .vuuUserProfile {
197
+ --svg-icon: var(--svg-user);
198
+ }
199
+
200
+ /* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
201
+ .vuuThemeSwitch {
202
+ --saltButton-minWidth: 22px;
203
+ }
204
+ .vuuThemeSwitch {
205
+ --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>');
206
+ --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>');
207
+ }
208
+ .salt-density-high .vuuThemeSwitch {
209
+ --saltButton-minWidth: 16px;
210
+ --saltButton-width: 18px;
211
+ --vuuThemeSwitch-iconSize: 16px;
212
+ }
213
+ .vuuThemeSwitch [data-icon] {
214
+ --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
215
+ }
216
+ .vuuThemeSwitch [data-icon=light] {
217
+ --vuu-icon-svg: var(--svg-light);
218
+ }
219
+ .vuuThemeSwitch [data-icon=dark] {
220
+ --vuu-icon-svg: var(--svg-dark);
221
+ }
222
+
223
+ /* ../vuu-shell/src/app-header/AppHeader.css */
224
+ .vuuAppHeader {
225
+ align-items: center;
226
+ border-bottom: solid 1px var(--salt-container-secondary-borderColor);
227
+ display: flex;
228
+ height: 40px;
229
+ justify-content: flex-end;
230
+ }
231
+ .vuu-purple-theme .vuuAppHeader {
232
+ border-radius: 8px;
233
+ border: 1px solid #D6D7DA;
234
+ height: 44px;
235
+ margin-bottom: 8px;
236
+ }
237
+
238
+ /* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
239
+ .vuuContextPanel {
240
+ position: relative;
241
+ transition: width .3s ease-in-out;
242
+ width: var(--vuu-side-panel-width, 0px) !important;
243
+ z-index: 1;
244
+ }
245
+ .vuuContextPanel-expanded {
246
+ --vuu-side-panel-width: 300px !important;
247
+ --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
248
+ --vuu-side-panel-padding: 24px;
249
+ }
250
+ .vuuContextPanel-overlay {
251
+ width: 0px !important;
252
+ }
253
+ .vuuContextPanel-inner {
254
+ background-color: var(--salt-container-primary-background);
255
+ box-shadow: var(--vuu-side-panel-shadow, none);
256
+ height: 100%;
257
+ padding-bottom: 24px;
258
+ padding-top: 24px;
259
+ padding-left: var(--vuu-side-panel-padding, 0);
260
+ padding-right: var(--vuu-side-panel-padding, 0);
261
+ position: absolute;
262
+ right: 0;
263
+ top: 0;
264
+ transition-property:
265
+ padding-left,
266
+ padding-right,
267
+ width;
268
+ transition-duration: .3s;
269
+ transition-timing-function: ease-in-out;
270
+ width: var(--vuu-side-panel-width, 0px);
271
+ }
272
+ .vuuContextPanel-header {
273
+ align-items: center;
274
+ display: flex;
275
+ flex-wrap: nowrap;
276
+ height: 27px;
277
+ justify-content: space-between;
278
+ }
279
+ .vuuContextPanel-title {
280
+ font-size: 20px;
281
+ font-weight: 700;
282
+ white-space: nowrap;
283
+ }
284
+
285
+ /* ../vuu-shell/src/left-nav/LeftNav.css */
286
+ .vuuLeftNav {
287
+ --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>');
288
+ --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>');
289
+ --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>');
290
+ --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>');
291
+ --vuu-accent-color: #f37880;
292
+ --vuu-light-text-primary: #15171b;
293
+ background-color: #2A015F;
294
+ container-type: inline-size;
295
+ display: flex;
296
+ flex-direction: column;
297
+ padding: 32px 16px;
298
+ transition: width .3s ease-in-out;
299
+ }
300
+ .vuuLeftNav-logo {
301
+ display: flex;
302
+ flex: 0 0 auto;
303
+ justify-content: center;
304
+ }
305
+ .vuuLeftNav-main {
306
+ flex: 1 1 auto;
307
+ }
308
+ .vuuLeftNav-menu {
309
+ color: white;
310
+ margin-top: 102px;
311
+ padding: 0;
312
+ }
313
+ .vuuLeftNav-menuitem {
314
+ --vuu-icon-color: white;
315
+ align-items: center;
316
+ border-radius: 6px;
317
+ display: flex;
318
+ font-weight: 700;
319
+ height: 40px;
320
+ line-height: 24px;
321
+ list-style: none;
322
+ padding: 8px 16px 8px 48px;
323
+ }
324
+ .vuuLeftNav-menuitem[data-icon] {
325
+ --vuu-icon-left: 32px;
326
+ --vuu-icon-size: 16px;
327
+ }
328
+ .vuuLeftNav-menuitem[data-icon=demo] {
329
+ --vuu-icon-svg: var(--svg-demo);
330
+ }
331
+ .vuuLeftNav-menuitem[data-icon=tables] {
332
+ --vuu-icon-svg: var(--svg-tables);
333
+ }
334
+ .vuuLeftNav-menuitem[data-icon=templates] {
335
+ --vuu-icon-svg: var(--svg-templates);
336
+ }
337
+ .vuuLeftNav-menuitem[data-icon=layouts] {
338
+ --vuu-icon-svg: var(--svg-layouts);
339
+ }
340
+ .vuuLeftNav-menuitem-label {
341
+ white-space: nowrap;
342
+ }
343
+ .vuuLeftNav-menuitem-active {
344
+ --vuu-icon-color: var(--vuu-accent-color);
345
+ background: rgba(255, 255, 255, 0.10);
346
+ border-left: solid 4px var(--vuu-accent-color);
347
+ }
348
+ @container (max-width: 100px) {
349
+ .vuuLeftNav-menuitem {
350
+ padding-left: 28px;
351
+ }
352
+ .vuuLeftNav-menuitem-label {
353
+ display: none;
354
+ }
355
+ }
356
+ .vuuLeftNav-buttonBar {
357
+ align-items: center;
358
+ display: flex;
359
+ flex: 0 0 100px;
360
+ justify-content: center;
361
+ }
362
+ .vuuLeftNav-toggleButton {
363
+ --vuu-icon-color: var(--vuu-light-text-primary);
364
+ --vuu-icon-left: 11px;
365
+ --vuu-icon-top: 10px;
366
+ --vuu-icon-size: 16px;
367
+ background-color: var(--vuu-accent-color);
368
+ border-width: 0;
369
+ border-radius: 18px;
370
+ height: 36px;
371
+ position: relative;
372
+ width: 36px;
373
+ }
374
+ .vuuLeftNav-toggleButton-open {
375
+ --vuu-icon-left: 9px;
376
+ }
377
+
378
+ /* ../vuu-shell/src/shell.css */
379
+ .vuuShell {
380
+ background-color: var(--salt-container-primary-background, ivory);
381
+ height: var(--vuuShell-height, 100vh);
382
+ width: var(--vuuShell-width, 100vw);
383
+ }
384
+ .vuuShell-palette {
385
+ --vuuView-border: none;
386
+ --vuuView-margin: 0;
387
+ }
388
+ .vuuShell-warningPlaceholder {
389
+ background-color: var(--salt-container-background-high);
390
+ height: 100%;
391
+ }
392
+
393
+ /* ../vuu-popups/src/dialog/Dialog.css */
394
+ .vuuDialog {
395
+ background: var(--salt-container-primary-background);
396
+ border: var(--vuuDialog-border, solid 1px #ccc);
397
+ border-radius: 5px;
398
+ padding: var(--vuuDialog-padding, 0);
399
+ box-shadow: var(--salt-overlayable-shadow, none);
400
+ height: var(--vuuDialog-height, fit-content);
401
+ width: var(--vuuDialog-width, fit-content);
402
+ }
403
+ .vuuDialog-header {
404
+ --saltButton-height: 28px;
405
+ --saltButton-width: 28px;
406
+ --saltToolbar-background: transparent;
407
+ --saltToolbar-height: calc(var(--salt-size-base) + 5px);
408
+ border-bottom: solid 1px var(--salt-container-primary-borderColor);
409
+ }
410
+ .vuuDialog-header > .Responsive-inner {
411
+ align-items: center;
412
+ }
413
+ .vuuDialog-header > .Responsive-inner > :last-child {
414
+ right: 2px;
415
+ }
416
+
417
+ /* ../vuu-popups/src/menu/MenuList.css */
418
+ .vuuMenuList {
419
+ --context-menu-color: var(--vuuMenuList-color,#161616);
420
+ --context-menu-padding: var(--hw-list-item-padding, 0 6px);
421
+ --context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
422
+ --focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
423
+ --context-menu-highlight-bg: #a4d5f4;
424
+ --context-menu-blur-focus-bg: #e0e4e9;
425
+ --menu-item-icon-color: black;
426
+ --menu-item-twisty-color: black;
427
+ --menu-item-twisty-content: "";
428
+ --menu-item-twisty-top: 50%;
429
+ --menu-item-twisty-left: auto;
430
+ --menu-item-twisty-right: 0px;
431
+ --menu-icon-size: 12px;
432
+ background-clip: padding-box;
433
+ background-color: white;
434
+ border-radius: 4px;
435
+ border: solid 1px var(--vuuMenuList-borderColor, rgba(0, 0, 0, 0.15));
436
+ box-shadow: var(--context-menu-shadow);
437
+ font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
438
+ font-weight: var(--salt-typography-fontWeight-semiBold);
439
+ list-style: none;
440
+ margin: 2px 0 0;
441
+ outline: 0;
442
+ overflow: hidden;
443
+ padding: var(--vuuMenuList-padding, 0);
444
+ position: absolute;
445
+ }
446
+ .vuuMenuItem {
447
+ align-items: center;
448
+ border-width: 1px;
449
+ border-color: var(--vuuMenuItem-borderColor, transparent);
450
+ border-style: var(--vuuMenuItem-borderStyle, none);
451
+ color: var(--context-menu-color);
452
+ display: flex;
453
+ gap: 6px;
454
+ height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
455
+ padding: var(--context-menu-padding);
456
+ padding-right: 24px;
457
+ position: relative;
458
+ white-space: nowrap;
459
+ }
460
+ .vuuIconContainer {
461
+ display: inline-block;
462
+ flex: 12px 0 0;
463
+ height: var(--menu-icon-size);
464
+ mask-repeat: no-repeat;
465
+ width: var(--menu-icon-size);
466
+ }
467
+ .vuuMenuItem[aria-expanded=true] {
468
+ background-color: var(--context-menu-blur-focus-bg);
469
+ }
470
+ .vuuMenuItem-separator {
471
+ border-top: solid 1px var(--context-menu-blur-focus-bg);
472
+ }
473
+ .vuuMenuItem[aria-haspopup=true]:after {
474
+ content: var(--menu-item-twisty-content);
475
+ -webkit-mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
476
+ mask: var(---vuu-svg-chevron-right) center center/8px 8px no-repeat;
477
+ background-color: var(--menu-item-twisty-color);
478
+ height: 16px;
479
+ left: var(--menu-item-twisty-left);
480
+ right: var(--menu-item-twisty-right);
481
+ margin-top: -8px;
482
+ position: absolute;
483
+ top: var(--menu-item-twisty-top);
484
+ transition: transform 0.3s;
485
+ width: 16px;
486
+ }
487
+ .vuuMenuItem[data-highlighted] {
488
+ background-color: var(--context-menu-highlight-bg);
489
+ }
490
+ .vuuMenuItem:hover {
491
+ background-color: var(--context-menu-highlight-bg);
492
+ cursor: default;
493
+ }
494
+ .vuuMenuList-childMenuShowing .vuuMenuItem[data-highlighted] {
495
+ background-color: var(--context-menu-blur-focus-bg);
496
+ }
497
+ .vuuMenuItem.focusVisible:before {
498
+ content: "";
499
+ position: absolute;
500
+ top: 0;
501
+ left: 0;
502
+ right: 0;
503
+ bottom: 0px;
504
+ border: dotted var(--focus-visible-border-color) 2px;
505
+ }
506
+ .vuuPopupContainer.top-bottom-right-right .popup-menu {
507
+ left: auto;
508
+ right: 0;
509
+ }
510
+ .popup-menu .menu-item.showing > button,
511
+ .popup-menu .menu-item > button:focus,
512
+ .popup-menu .menu-item > button:hover {
513
+ text-decoration: none;
514
+ color: rgb(0, 0, 0);
515
+ background-color: rgb(220, 220, 220);
516
+ }
517
+ .vuuMenuItem-button:active,
518
+ .vuuMenuItem-button:hover {
519
+ outline: 0;
520
+ }
521
+ .popup-menu .menu-item.disabled > button {
522
+ clear: both;
523
+ font-weight: normal;
524
+ line-height: 1.5;
525
+ color: rgb(120, 120, 120);
526
+ white-space: nowrap;
527
+ text-decoration: none;
528
+ cursor: default;
529
+ }
530
+
531
+ /* ../vuu-popups/src/popup/popup-service.css */
532
+ .vuuPopup {
533
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
534
+ position: absolute;
535
+ top: 0;
536
+ left: 0;
537
+ width: 0;
538
+ height: 0;
539
+ overflow: visible;
540
+ z-index: 1000;
541
+ }
542
+ .vuuPopup {
543
+ position: absolute;
544
+ }
545
+
546
+ /* ../vuu-popups/src/popup-menu/PopupMenu.css */
547
+ .vuuPopupMenu {
548
+ --saltButton-height: 24px;
549
+ --saltButton-width: 24px;
550
+ --vuu-icon-color: #606477;
551
+ --vuu-icon-height: 20px;
552
+ --vuu-icon-left: 2px;
553
+ --vuu-icon-size: 16px;
554
+ --vuu-icon-top: 2px;
555
+ --vuu-icon-width: 20px;
556
+ background: var(--vuuPopupMenu-background, transparent);
557
+ border-radius: 4px;
558
+ cursor: pointer;
559
+ display: inline-block;
560
+ margin-top: 2px;
561
+ padding: 2px;
562
+ }
563
+ .vuuPopupMenu:hover {
564
+ --vuu-icon-color: var(--saltButton-text-color-hover);
565
+ }
566
+ .vuuPopupMenu-open {
567
+ --saltButton-background: var(--salt-actionable-secondary-background-active);
568
+ --vuu-icon-color: white;
569
+ }
570
+ .vuu-theme-purple .vuuPopupMenu:hover {
571
+ --saltButton-background-hover: #F37880;
572
+ }
573
+ .vuu-theme-purple .vuuPopupMenu-open {
574
+ --saltButton-background: #6D18BD;
575
+ }
576
+
577
+ /* src/drag-drop/Draggable.css */
578
+ .vuuDraggable {
579
+ background: transparent;
580
+ box-shadow: var(--salt-overlayable-shadow-drag);
581
+ cursor: var(--salt-draggable-grab-cursor-active);
582
+ position: absolute;
583
+ opacity: .95;
584
+ z-index: 2000;
585
+ }
586
+ .vuuDraggable-spacer {
587
+ display: var(--saltDraggable-display, inline-block);
588
+ height: var(--saltDraggable-spacer-height, var(--tabs-tabstrip-height));
589
+ transition: var(--saltDraggable-transitionProp, width) 0.3s ease;
590
+ width: var(--saltDraggable-spacer-width, 0);
591
+ }
592
+ .vuuDraggable-dropIndicatorPosition {
593
+ display: var(--saltDraggable-display, inline-block);
594
+ height: 0px;
595
+ width: 100%;
596
+ }
597
+ .vuuDraggable-dropIndicatorContainer {
598
+ transition: var(--saltDraggable-transitionProp, top) 0.2s ease;
599
+ }
600
+ .vuuDraggable-dropIndicator {
601
+ background-color: var(--salt-palette-accent-background);
602
+ height: 2px;
603
+ width: 100%;
604
+ }
605
+ .vuuDraggable-dropIndicator:before {
606
+ content: "";
607
+ width: 6px;
608
+ height: 6px;
609
+ border-radius: 3px;
610
+ background-color: var(--salt-palette-accent-background);
611
+ position: absolute;
612
+ top: -2px;
613
+ left: -3px;
614
+ }
615
+ .vuuDraggable-settling {
616
+ transition-property: left, top;
617
+ transition-duration: .15s;
618
+ transition-timing-function: ease-out;
619
+ }
620
+ .vuuDraggable-spacer {
621
+ order: 1;
622
+ }
623
+
624
+ /* src/tabstrip/Tabstrip.css */
625
+ .vuuTabstrip {
626
+ --vuuOverflowContainer-background: transparent;
627
+ --tabs-tabstrip-height: var(--vuuTabstrip-height, 28px);
628
+ --tabs-tabstrip-dragging-display: none;
629
+ --tabs-tabstrip-display: inline-flex;
630
+ --tabs-tabstrip-background: transparent;
631
+ align-items: flex-start;
632
+ align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
633
+ border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
634
+ font-size: var(--salt-text-fontSize);
635
+ font-weight: var(--salt-text-fontWeight);
636
+ position: relative;
637
+ overflow: visible;
638
+ display: flex;
639
+ min-width: 28px;
640
+ width: 100%;
641
+ }
642
+ .vuuTabstrip-horizontal {
643
+ --vuuTabActivationIndicator-height: 1px;
644
+ --vuuTabActivationIndicator-thumb-inset: -1px 0 0 0;
645
+ --tab-activationIndicator-borderStyle: none none solid none;
646
+ --tab-activationIndicator-inset: auto 0px 0px 0px;
647
+ --tab-activationIndicator-transitionProperty: left;
648
+ --tab-activationIndicator-thumb-height: 0px;
649
+ --tab-thumb-height: 2px;
650
+ }
651
+ .vuuTabstrip-vertical {
652
+ --vuuTabActivationIndicator-thumb-inset: 0 0 0 -1px;
653
+ --tab-activationIndicator-transition: top 0.3s ease;
654
+ --tab-activationIndicator-borderStyle: none solid none none;
655
+ --tab-activationIndicator-inset: 0px 0px 0px auto;
656
+ --tab-activationIndicator-transitionProperty: top;
657
+ --tab-activationIndicator-width: 1px;
658
+ --tab-activationIndicator-thumb-width: 2px;
659
+ align-self: flex-start;
660
+ display: inline-flex;
661
+ }
662
+ .vuuTabstrip-draggingTab {
663
+ --vuuTabs-activationIndicator-transition: none;
664
+ }
665
+ .vuuTabstrip-draggingTab .vuuTab {
666
+ pointer-events: none;
667
+ }
668
+ .vuuTabstrip-horizontal {
669
+ height: var(--tabs-tabstrip-height);
670
+ }
671
+ .vuuTabstrip-addTabButton {
672
+ --saltButton-height: 20px;
673
+ --saltButton-width: 20px;
674
+ }
675
+ .vuuTabstrip-overflowMenu.saltDropdown {
676
+ --saltIcon-margin: 2px 0 0 0px;
677
+ }
678
+ .vuuTabstrip-overflowMenu-open {
679
+ --saltButton-background: var(--salt-actionable-secondary-background-active);
680
+ --saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
681
+ }
682
+ .vuuTabstrip-overflowMenu-open .saltButton {
683
+ --saltIcon-color: var(--salt-actionable-secondary-foreground-active);
684
+ }
685
+ .vuuTabstrip-inner {
686
+ width: 100%;
687
+ align-items: center;
688
+ display: flex;
689
+ flex-basis: auto;
690
+ flex-grow: 0;
691
+ flex-shrink: 1;
692
+ flex-wrap: wrap;
693
+ justify-content: flex-start;
694
+ line-height: var(--tabs-tabstrip-height);
695
+ }
696
+ .vuuTabstrip-vertical .vuuTabstrip-inner {
697
+ flex-direction: column;
698
+ height: auto;
699
+ }
700
+ .vuuTabstrip-centered .vuuTabstrip-inner {
701
+ justify-content: center;
702
+ }
703
+ .vuuDraggable[class*=vuuTabstrip] {
704
+ --tabs-tabstrip-display: flex;
705
+ --tabs-tabstrip-height: 100%;
706
+ --tabs-tabstrip-dragging-display: block;
707
+ --tabs-tab-background: var(--salt-navigable-primary-background-hover);
708
+ --tabs-tab-before-content: "";
709
+ --tabs-tab-before-background: var(--salt-navigable-indicator-hover);
710
+ --tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
711
+ --tabs-tab-before-inset: var(--tab-activationIndicator-inset);
712
+ --tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
713
+ --tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
714
+ --tabs-tab-position: static;
715
+ font-size: 12px;
716
+ }
717
+ .vuuDraggable-tabstrip-horizontal {
718
+ --tab-thumb-height: 2px;
719
+ --tabs-tabstrip-height: 28px;
720
+ --tab-activationIndicator-thumb-height: 2px;
721
+ --tab-activationIndicator-inset: auto 0px 0px 0px;
722
+ line-height: var(--tabs-tabstrip-height);
723
+ }
724
+ .vuuDraggable-tabstrip-vertical {
725
+ --tab-activationIndicator-inset: 0px 0px 0px auto;
726
+ --tab-activationIndicator-thumb-width: 2px;
727
+ }
728
+ .vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
729
+ --tabs-tab-before-background: var(--salt-navigable-indicator-active);
730
+ }
731
+ .vuuTabstrip-overflowMenu-dropTarget:after {
732
+ background: var(--salt-selectable-background-selected);
733
+ content: "";
734
+ position: absolute;
735
+ height: 2px;
736
+ left: 0;
737
+ right: 0;
738
+ bottom: 0;
739
+ }
740
+
741
+ /* src/tabstrip/TabMenu.css */
742
+ .vuuTabMenu {
743
+ top: -2px;
744
+ }
745
+
746
+ /* src/tabstrip/Tab.css */
747
+ .vuuTab {
748
+ --saltEditableLabel-padding: 0;
749
+ --saltEditableLabel-height: var(--tabs-tabstrip-height);
750
+ --saltInputLegacy-minWidth: 4em;
751
+ --tab-background: var(--salt-navigable-primary-background);
752
+ --tab-cursor: pointer;
753
+ --tab-position: relative;
754
+ }
755
+ .vuuTab {
756
+ align-items: center;
757
+ align-self: stretch;
758
+ background: var(--vuuTab-background, var(--tab-background));
759
+ border: none;
760
+ border-radius: 0;
761
+ color: var(--salt-text-primary-foreground);
762
+ cursor: var(--vuuTab-cursor, var(--tab-cursor));
763
+ display: var(--tabs-tabstrip-display);
764
+ gap: 8px;
765
+ height: var(--vuuTab-height, var(--tabs-tabstrip-height));
766
+ letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
767
+ min-width: var(--vuuTab-minWidth, 40px);
768
+ outline: none;
769
+ padding: 0 24px;
770
+ position: var(--vuuTab-position, var(--tab-position));
771
+ user-select: none;
772
+ }
773
+ .vuuTab.saltFocusVisible:after {
774
+ inset: 2px 2px 4px 2px;
775
+ }
776
+ .vuuTab:not(.vuuTab-vertical) {
777
+ margin: 0 var(--tab-spacing) 0 0;
778
+ }
779
+ .vuuTab-selected {
780
+ color: var(--salt-text-primary-foreground);
781
+ font-weight: var(--salt-navigable-fontWeight-active);
782
+ }
783
+ .vuuTab-main {
784
+ align-items: center;
785
+ background: inherit;
786
+ border: none;
787
+ color: inherit;
788
+ cursor: inherit;
789
+ display: flex;
790
+ font-family: inherit;
791
+ font-size: inherit;
792
+ font-weight: inherit;
793
+ height: var(--vuuTabstrip-height, var(--salt-size-stackable));
794
+ outline: none;
795
+ position: relative;
796
+ }
797
+ .vuuTab-closeable .vuuTab-main {
798
+ border-right: solid transparent var(--salt-size-unit);
799
+ }
800
+ .vuuTab .vuuTab-closeButton {
801
+ display: flex;
802
+ align-items: center;
803
+ justify-content: center;
804
+ }
805
+ .vuuTab-close-icon {
806
+ display: none;
807
+ }
808
+ .salt-density-touch .vuuTab-close-icon,
809
+ .salt-density-low .vuuTab-close-icon {
810
+ display: block;
811
+ }
812
+ .salt-density-touch .vuuTab-close-icon-small,
813
+ .salt-density-low .vuuTab-close-icon-small {
814
+ display: none;
815
+ }
816
+ .vuuTab .vuuTab-text {
817
+ display: inline-block;
818
+ position: relative;
819
+ overflow: hidden;
820
+ text-align: var(--salt-text-textAlign-embedded);
821
+ text-overflow: ellipsis;
822
+ top: var(--vuuTab-top, var(--tab-top, auto));
823
+ white-space: nowrap;
824
+ z-index: var(--salt-zIndex-default);
825
+ }
826
+ .vuuTab-vertical .vuuTab-text {
827
+ text-align: var(--salt-text-textAlign);
828
+ }
829
+ .vuuTab .vuuTab-text:before {
830
+ height: 0;
831
+ content: attr(data-text);
832
+ display: block;
833
+ visibility: hidden;
834
+ font-weight: var(--salt-navigable-fontWeight-active);
835
+ }
836
+ .vuuTab-editing:after {
837
+ content: "";
838
+ position: absolute;
839
+ top: 0;
840
+ left: 0;
841
+ right: 0;
842
+ bottom: 2px;
843
+ outline-color: var(--salt-focused-outlineColor);
844
+ outline-style: var(--salt-focused-outlineStyle);
845
+ outline-width: var(--salt-focused-outlineWidth);
846
+ outline-offset: -2px;
847
+ }
848
+ .vuuTab-vertical.vuuTab-editing:after {
849
+ right: 2px;
850
+ bottom: 0;
851
+ }
852
+ .vuuTab-vertical .saltFocusVisible:not(.vuuTab-selected):before {
853
+ left: auto;
854
+ height: auto;
855
+ top: 0;
856
+ width: 2px;
857
+ }
858
+ .vuuTab.saltFocusVisible {
859
+ background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
860
+ }
861
+ .vuuTab:before {
862
+ content: var(--tab-before-content, none);
863
+ background: var(--tab-before-background);
864
+ height: var(--tab-before-height);
865
+ inset: var(--tab-before-inset);
866
+ position: absolute;
867
+ width: var(--tab-before-width);
868
+ z-index: 1;
869
+ }
870
+ .vuuTabstrip-draggingTab .vuuTab-selected:before {
871
+ --tab-before-content: "";
872
+ --tab-before-background: var(--salt-navigable-indicator-color-active);
873
+ --tab-before-height: var(--tab-thumb-height);
874
+ --tab-before-inset: var(--tab-activationIndicator-inset);
875
+ --tab-before-width: var(--tab-activationIndicator-thumb-width);
876
+ }
877
+ .vuuDraggable .vuuTab:before,
878
+ .vuuTab:not(.vuuTab-selected).saltFocusVisible:before,
879
+ .vuuTab:hover:not(.vuuTab-selected):before {
880
+ --tab-before-content: "";
881
+ --tab-before-background: var(--salt-navigable-indicator-hover);
882
+ --tab-before-height: var(--tab-thumb-height);
883
+ --tab-before-inset: var(--tab-activationIndicator-inset);
884
+ --tab-before-width: var(--tab-activationIndicator-thumb-width);
885
+ }
886
+ .vuuTab-selected:before {
887
+ --tab-before-content: "";
888
+ background: var(--salt-navigable-indicator-active);
889
+ height: var(--tab-thumb-height);
890
+ position: absolute;
891
+ left: var(--tab-thumb-offset,0);
892
+ bottom: 0px;
893
+ transition: var(--tab-thumb-transition, none);
894
+ width: var(--tab-thumb-width, 100%);
895
+ }
896
+ .vuuTab:hover:not(.vuuTab-closeHover) {
897
+ background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
898
+ }
899
+ /*# sourceMappingURL=index.css.map */