@vuu-ui/vuu-shell 0.8.32-debug → 0.8.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.css DELETED
@@ -1,721 +0,0 @@
1
- /* src/login/LoginPanel.css */
2
- .vuuLoginPanel {
3
- --saltInput-paddingLeft: 8px;
4
- --login-width: 856px;
5
- --login-height: 550px;
6
- --hwTextInput-border: solid 1px #ccc;
7
- --hwTextInput-height: 28px;
8
- --hwTextInput-padding: 0 12px;
9
- --hwTextInput-width: 100%;
10
- --login-row-height: 60px;
11
- border-radius: 16px;
12
- box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.25);
13
- display: flex;
14
- height: var(--login-height);
15
- margin: 0 auto;
16
- width: var(--login-width);
17
- }
18
- .vuuLoginPanel .saltInput-primary {
19
- --saltInput-height: 36px;
20
- }
21
- .vuuLoginPanel-title {
22
- justify-content: center;
23
- font-size: 28px;
24
- font-weight: 400;
25
- display: flex;
26
- }
27
- .vuuLoginPanel-branding {
28
- align-items: center;
29
- background-color: var(--vuu-color-purple-50);
30
- border-radius: 16px 0 0 16px;
31
- display: flex;
32
- flex: 0 0 368px;
33
- flex-direction: column;
34
- gap: 40px;
35
- justify-content: center;
36
- padding: 40px 100px;
37
- }
38
- .vuuLoginPanel-form {
39
- background-color: white;
40
- border-radius: 0 16px 16px 0px;
41
- display: flex;
42
- flex: 1 1 auto;
43
- flex-direction: column;
44
- gap: 32px;
45
- justify-content: center;
46
- padding: 0 40px;
47
- }
48
- .vuuLoginPanel-password {
49
- --vuu-icon-size: 16px;
50
- }
51
- .vuuLoginPanel-appName {
52
- color: white;
53
- font-size: 18px;
54
- font-weight: 700;
55
- text-transform: uppercase;
56
- }
57
- .vuuLoginPanel-login {
58
- --saltButton-height: 36px;
59
- --saltButton-borderRadius: 6px;
60
- width: 100%;
61
- }
62
-
63
- /* src/app-header/AppHeader.css */
64
- .vuuAppHeader {
65
- --saltButton-borderRadius: 6px;
66
- --saltButton-text-color: var(--vuu-color-gray-50);
67
- --saltButton-padding: 12px;
68
- --vuuToolbarItem-height: 26px;
69
- --vuuOverflowContainer-gap: 8px;
70
- --vuu-icon-color: var(--vuu-color-gray-45);
71
- --vuu-icon-size: 16px;
72
- --vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));
73
- --vuuToolbar-borderWidth: 1px;
74
- --vuuToolbar-borderStyle: solid;
75
- --vuuToolbar-borderColor: var(--vuu-color-gray-30);
76
- align-items: center;
77
- display: flex;
78
- justify-content: flex-end;
79
- }
80
- .vuu-theme .vuuAppHeader {
81
- border-radius: 8px;
82
- margin-bottom: 8px;
83
- }
84
-
85
- /* src/connection-status/ConnectionStatusIcon.css */
86
- .vuuStatus-container {
87
- display: flex;
88
- }
89
- .vuuStatus-text {
90
- align-self: center;
91
- }
92
- .vuuStatus {
93
- --vuu-icon-height: 18px;
94
- --vuu-icon-padding: var(--vuuStatus-padding, 6px);
95
- --vuu-icon-width: var(--vuuStatus-width, auto);
96
- --vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
97
- align-items: center;
98
- display: inline-flex;
99
- height: var(--vuu-icon-height);
100
- justify-content: center;
101
- min-width: var(--vuu-icon-min-width);
102
- padding: 0 var(--vuu-icon-padding);
103
- width: var(--vuu-icon-width);
104
- position: relative;
105
- }
106
- .vuuStatus[data-icon]::after {
107
- top: 0;
108
- right: 0;
109
- bottom: 0;
110
- left: 0;
111
- content: "";
112
- box-shadow: 0 0 0 0 black;
113
- position: absolute;
114
- mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
115
- -webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
116
- }
117
- .vuuActiveStatus::after {
118
- --vuu-icon-svg: var(--svg-active-status);
119
- background-color: rgb(0, 255, 0);
120
- }
121
- .vuuConnectingStatus::after {
122
- --vuu-icon-svg: var(--svg-connecting-status);
123
- background-color: orange;
124
- transform: scale(1);
125
- animation: infinite pulse 1s;
126
- }
127
- .vuuDisconnectedStatus::after {
128
- --vuu-icon-svg: var(--svg-disconnected-status);
129
- background-color: red;
130
- transform: scale(1);
131
- animation: infinite pulse 0.5s;
132
- }
133
- @keyframes pulse {
134
- 0% {
135
- transform: scale(0.95);
136
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
137
- }
138
- 70% {
139
- transform: scale(1);
140
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
141
- }
142
- 100% {
143
- transform: scale(0.95);
144
- box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
145
- }
146
- }
147
-
148
- /* src/layout-management/SaveLayoutPanel.css */
149
- .saveLayoutPanel {
150
- --salt-selectable-foreground-hover: #6d18bdc3;
151
- --salt-selectable-foreground-selected: #6D18BD;
152
- --salt-selectable-borderColor-selected: #6D18BD;
153
- --saltInputLegacy-fontSize: 12px;
154
- --salt-text-label-fontSize: 10px;
155
- --saltFormFieldLegacy-label-paddingLeft: 0;
156
- --saltFormField-label-fontWeight: 400;
157
- --saltText-color: var(--text-secondary-foreground, #606477);
158
- }
159
- .spinner {
160
- width: 100px;
161
- height: 100px;
162
- background-image: var(--svg-spinner);
163
- }
164
- .saveLayoutPanel-panelContainer {
165
- display: flex;
166
- flex-direction: column;
167
- align-items: flex-start;
168
- }
169
- .saveLayoutPanel-panelContent {
170
- display: flex;
171
- align-items: flex-start;
172
- gap: 32px;
173
- }
174
- .saveLayoutPanel-formContainer {
175
- display: flex;
176
- width: 217px;
177
- flex-direction: column;
178
- align-items: flex-start;
179
- gap: 16px;
180
- }
181
- .saveLayoutPanel-formField {
182
- display: flex;
183
- flex-direction: column;
184
- gap: 1px;
185
- }
186
- .saveLayoutPanel-inputText {
187
- border: none;
188
- color: var(--light-text-primary, #15171B);
189
- font-family: Nunito Sans A-Variant, serif;
190
- font-feature-settings:
191
- "ss02" on,
192
- "ss01" on,
193
- "salt" on,
194
- "liga" off;
195
- font-size: 12px;
196
- font-weight: 400;
197
- line-height: 16px;
198
- padding-left: 4px;
199
- width: 100%;
200
- outline: none;
201
- }
202
- .saveLayoutPanel-settingsGroup {
203
- display: flex;
204
- flex-wrap: wrap;
205
- align-items: flex-end;
206
- gap: 10px;
207
- width: 100%;
208
- line-height: 16px;
209
- }
210
- .saveLayoutPanel-screenshotContainer {
211
- display: flex;
212
- width: 304px;
213
- height: 208px;
214
- padding: 11px 15.5px;
215
- justify-content: center;
216
- align-items: center;
217
- border: 1px solid #E8E8E8;
218
- background: var(--dark-text-primary, #FFF);
219
- }
220
- .saveLayoutPanel-screenshot {
221
- background: lightgray 50% / cover no-repeat;
222
- width: 273px;
223
- height: 186px;
224
- }
225
- .saveLayoutPanel-buttonsContainer {
226
- display: flex;
227
- justify-content: flex-end;
228
- align-items: flex-start;
229
- align-self: stretch;
230
- padding-top: 24px;
231
- gap: 8px;
232
- }
233
- .saveLayoutPanel-cancelButton,
234
- .saveLayoutPanel-saveButton {
235
- display: flex;
236
- height: fit-content;
237
- padding: 4px 8px;
238
- align-items: flex-start;
239
- gap: 8px;
240
- border-radius: 6px;
241
- font-size: 12px;
242
- font-style: normal;
243
- font-weight: 700;
244
- line-height: 133.333%;
245
- letter-spacing: 0.48px;
246
- text-transform: uppercase;
247
- }
248
- .saveLayoutPanel-cancelButton {
249
- color: var(--actionable-primary-foreground-default, #606477);
250
- background: var(--actionable-primary-background-default, #FFF);
251
- }
252
- .saveLayoutPanel-saveButton {
253
- background: #6D18BD;
254
- border-color: #6D18BD;
255
- color: white;
256
- }
257
- .saveLayoutPanel-saveButton.saltButton:disabled {
258
- background: #6D18BD;
259
- border-color: #6D18BD;
260
- color: white;
261
- opacity: 0.3;
262
- }
263
- .saveLayoutPanel-saveButton.saltButton:hover {
264
- background: #F37880;
265
- border-color: #F37880;
266
- color: white;
267
- }
268
-
269
- /* src/layout-management/LayoutTile.css */
270
- .vuuLayoutTile-layoutTile {
271
- display: flex;
272
- align-items: center;
273
- gap: 8px;
274
- padding: 8px 0px;
275
- flex: 1 1 auto;
276
- cursor: pointer;
277
- }
278
- .vuuLayoutTile-layoutName {
279
- color: var(--light-text-primary, #15171B);
280
- font-weight: 600;
281
- line-height: 133.333%;
282
- text-transform: capitalize;
283
- }
284
- .vuuLayoutTile-screenshot {
285
- width: 60px;
286
- height: 45.6px;
287
- border: 1px solid #D6D7DA;
288
- }
289
- .vuuLayoutTile-layoutDetails {
290
- color: var(--light-text-secondary, #606477);
291
- font-size: 10px;
292
- font-weight: 600;
293
- line-height: 150%;
294
- }
295
-
296
- /* src/layout-management/LayoutList.css */
297
- .vuuLayoutList {
298
- --vuuLayoutList-width: 90%;
299
- --vuuMeasuredContainer-flex: 1 1 1px;
300
- align-self: stretch;
301
- display: flex;
302
- flex-direction: column;
303
- height: 100%;
304
- overflow: hidden;
305
- padding-right: 6px;
306
- }
307
- .vuuLayoutList ::-webkit-scrollbar {
308
- width: 4px;
309
- height: 4px;
310
- }
311
- .vuuLayoutList ::-webkit-scrollbar-track {
312
- background: transparent;
313
- margin-top: 15px;
314
- margin-bottom: 15px;
315
- }
316
- .vuuLayoutList ::-webkit-scrollbar-thumb {
317
- border-radius: 4px;
318
- background: #D9D9D9;
319
- }
320
- .vuuLayoutList-header {
321
- display: flex;
322
- flex: 0 0 47px;
323
- width: var(--vuuLayoutList-width);
324
- padding: 16px 0;
325
- border-bottom: 1px solid rgba(119, 124, 148, 0.10);
326
- color: var(--light-text-primary, #15171B);
327
- font-weight: 700;
328
- letter-spacing: 0.48px;
329
- line-height: 200%;
330
- text-transform: uppercase;
331
- }
332
- .vuuLayoutList-groupName {
333
- display: flex;
334
- padding-top: 24px;
335
- width: var(--vuuLayoutList-width);
336
- color: var(--light-text-secondary, #606477);
337
- font-feature-settings:
338
- "ss02" on,
339
- "ss01" on,
340
- "salt" on,
341
- "liga" off;
342
- font-family: Nunito Sans;
343
- font-size: 12px;
344
- font-style: normal;
345
- font-weight: 700;
346
- line-height: 200%;
347
- letter-spacing: 0.48px;
348
- text-transform: uppercase;
349
- }
350
- .vuuLayoutList-layoutContainer {
351
- display: flex;
352
- align-items: center;
353
- width: 90%;
354
- height: auto;
355
- gap: 8px;
356
- padding: 8px 0;
357
- flex: 1 1 auto;
358
- cursor: pointer;
359
- }
360
- .vuuLayoutList-layoutName {
361
- color: var(--light-text-primary, #15171B);
362
- font-weight: 600;
363
- line-height: 133.333%;
364
- text-transform: capitalize;
365
- }
366
- .vuuLayoutList-screenshot {
367
- width: 60px;
368
- height: 45.6px;
369
- border: 1px solid #D6D7DA;
370
- }
371
- .vuuLayoutList-layoutDetails {
372
- color: var(--light-text-secondary, #606477);
373
- font-size: 10px;
374
- font-weight: 600;
375
- line-height: 150%;
376
- }
377
-
378
- /* src/feature-list/FeatureList.css */
379
- .vuuFeatureList {
380
- background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
381
- display: flex;
382
- flex-direction: column;
383
- height: 100%;
384
- padding: 195px 32px 16px 24px;
385
- }
386
- .vuuFeatureList-header {
387
- flex: 0 0 40px;
388
- font-size: 12px;
389
- font-weight: 700;
390
- line-height: 2;
391
- }
392
- .vuuFeatureList-content {
393
- flex: 1 1 auto;
394
- font-size: 12px;
395
- font-weight: 700;
396
- }
397
-
398
- /* src/left-nav/LeftNav.css */
399
- .vuuLeftNav {
400
- --vuuOverflowContainer-height: auto;
401
- --salt-navigable-fontWeight-active: 700;
402
- --vuuTab-background-selected: rgba(255, 255, 255, 0.10);
403
- --vuuTab-hover-background: rgba(255, 255, 255, 0.10);
404
- --vuuTab-before-content: none;
405
- --vuuTab-borderRadius: 6px;
406
- --vuuTab-height: 40px;
407
- --vuuTabstrip-fontWeight: 700;
408
- --vuuTabstrip-width: 100%;
409
- --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>');
410
- --svg-features: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M15.3333 12.6667H14L14 3.33334H15.3333L15.3333 12.6667ZM12.6667 12.6667H11.3333L11.3333 3.33334H12.6667L12.6667 12.6667ZM1.33333 12.6667L9.33333 12.6667C9.69999 12.6667 9.99999 12.3667 9.99999 12V4.00001C9.99999 3.63334 9.69999 3.33334 9.33333 3.33334L1.33333 3.33334C0.966661 3.33334 0.666661 3.63334 0.666661 4.00001L0.666661 12C0.666661 12.3667 0.966661 12.6667 1.33333 12.6667ZM1.99999 4.66667L8.66666 4.66667V11.3333L1.99999 11.3333L1.99999 4.66667Z"/></svg>');
411
- --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>');
412
- --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>');
413
- --vuu-light-text-primary: #15171b;
414
- --menu-level-2-width: 0px;
415
- box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.15);
416
- display: flex;
417
- height: calc(100% - 4px);
418
- margin-bottom: 4px;
419
- overflow: hidden;
420
- position: relative;
421
- transition: width .2s ease-out;
422
- z-index: 0;
423
- }
424
- .vuuLeftNav-menu-full {
425
- --menu-width: var(--nav-menu-expanded-width);
426
- }
427
- .vuuLeftNav-menu-icons {
428
- --menu-width: var(--nav-menu-collapsed-width);
429
- }
430
- .vuuLeftNav-menu-icons-content {
431
- --menu-width: var(--nav-menu-collapsed-width);
432
- --menu-level-2-width: var(--nav-menu-content-width);
433
- }
434
- .vuuLeftNav-menu-full-content {
435
- --menu-width: var(--nav-menu-expanded-width);
436
- --menu-level-2-width: var(--nav-menu-content-width);
437
- }
438
- .vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
439
- .vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
440
- display: flex;
441
- }
442
- .vuuLeftNav-menu-primary {
443
- background-color: #2A015F;
444
- container-type: inline-size;
445
- display: flex;
446
- flex-direction: column;
447
- height: 100%;
448
- padding: 32px 16px;
449
- transition: flex-basis ease-out .2s;
450
- flex-grow: 0;
451
- flex-shrink: 0;
452
- flex-basis: var(--menu-width);
453
- }
454
- .vuuLeftNav-menu-secondary {
455
- flex: 1 1 auto;
456
- display: none;
457
- top: 0;
458
- right: 0;
459
- flex-grow: 0;
460
- flex-shrink: 0;
461
- flex-basis: var(--nav-menu-content-width, 240px);
462
- z-index: -1;
463
- }
464
- .vuuLeftNav .vuuTabstrip {
465
- margin-top: 102px;
466
- }
467
- .vuuLeftNav .vuuTab {
468
- --vuuTab-focusVisible-color: pink;
469
- --vuu-icon-color: white;
470
- --vuu-icon-left: 12px;
471
- --vuu-icon-size: 16px;
472
- border-left: solid 4px transparent;
473
- padding: 0 0 0 48px;
474
- }
475
- .vuuLeftNav .vuuTab-selected {
476
- --vuu-icon-color: var(--salt-navigable-indicator-active);
477
- border-left: solid 4px var(--salt-navigable-indicator-active);
478
- }
479
- .vuuLeftNav-logo {
480
- display: flex;
481
- flex: 0 0 auto;
482
- justify-content: center;
483
- }
484
- .vuuLeftNav-main {
485
- flex: 1 1 auto;
486
- }
487
- .vuuLeftNav-menu {
488
- color: white;
489
- margin-top: 102px;
490
- padding: 0;
491
- }
492
- .vuuLeftNav [data-icon=demo] {
493
- --vuu-icon-svg: var(--svg-demo);
494
- }
495
- .vuuLeftNav [data-icon=tables] {
496
- --vuu-icon-svg: var(--svg-tables);
497
- }
498
- .vuuLeftNav [data-icon=features] {
499
- --vuu-icon-svg: var(--svg-features);
500
- }
501
- .vuuLeftNav [data-icon=layouts] {
502
- --vuu-icon-svg: var(--svg-layouts);
503
- }
504
- @container (max-width: 100px) {
505
- .vuuTab {
506
- --vuuTab-padding: 0 0 0 42px;
507
- }
508
- .vuuTab-main {
509
- display: none !important;
510
- }
511
- }
512
- .vuuLeftNav-buttonBar {
513
- align-items: center;
514
- display: flex;
515
- flex: 0 0 100px;
516
- justify-content: center;
517
- }
518
- .vuuLeftNav-toggleButton {
519
- --vuu-icon-color: var(--vuu-light-text-primary);
520
- --vuu-icon-left: 11px;
521
- --vuu-icon-top: 10px;
522
- --vuu-icon-size: 16px;
523
- background-color: var(--salt-navigable-indicator-active);
524
- border-width: 0;
525
- border-radius: 18px;
526
- height: 36px;
527
- position: relative;
528
- width: 36px;
529
- }
530
- .vuuLeftNav-toggleButton-open {
531
- --vuu-icon-left: 9px;
532
- }
533
- .vuuLeftNav-drawer {
534
- display: flex;
535
- padding: 0 0 0 24px;
536
- flex-direction: column;
537
- align-items: flex-start;
538
- flex-shrink: 0;
539
- align-self: stretch;
540
- background: #FFF;
541
- box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.15);
542
- height: 100%;
543
- }
544
-
545
- /* src/session-editing-form/SessionEditingForm.css */
546
- .vuuSessionEditingForm {
547
- display: flex;
548
- flex-direction: column;
549
- gap: 3px;
550
- min-width: 400px;
551
- padding: 6px;
552
- }
553
- .vuuSessionEditingForm-content {
554
- display: flex;
555
- flex-direction: column;
556
- flex: 1 1 auto;
557
- gap: 3px;
558
- overflow: auto;
559
- }
560
- .vuuSessionEditingForm-field {
561
- align-items: center;
562
- display: flex;
563
- height: 32px;
564
- }
565
- .vuuSessionEditingForm-fieldLabel {
566
- flex: 0 0 50%;
567
- }
568
- .vuuSessionEditingForm-fieldValue {
569
- max-width: 50%;
570
- }
571
- .vuuSessionEditingForm-fieldValue.vuuReadOnly {
572
- font-weight: var(--salt-text-label-fontWeight-strong);
573
- }
574
- .vuuSessionEditingForm-buttonbar {
575
- align-items: center;
576
- border-top: solid 1px var(--salt-container-primary-borderColor);
577
- display: flex;
578
- justify-content: flex-end;
579
- flex: 0 0 autox;
580
- gap: 6px;
581
- padding-top: 6px;
582
- }
583
- .vuuSessionEditingForm-errorBanner {
584
- --vuu-icon-left: 3px;
585
- --vuu-icon-size: 18px;
586
- --vuu-icon-top: 3px;
587
- border: solid 1px var(--salt-status-error-borderColor);
588
- line-height: 24px;
589
- padding: 0 6px 0 26px;
590
- position: relative;
591
- }
592
-
593
- /* src/shell-layouts/context-panel/ContextPanel.css */
594
- .vuuContextPanel {
595
- position: relative;
596
- transition: width .3s ease-in-out;
597
- width: var(--vuu-side-panel-width, 0px) !important;
598
- z-index: 1;
599
- }
600
- .vuuContextPanel-expanded {
601
- --vuu-side-panel-width: 300px !important;
602
- --vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
603
- --vuu-side-panel-padding: 24px;
604
- }
605
- .vuuContextPanel-overlay {
606
- width: 0px !important;
607
- }
608
- .vuuContextPanel-inner {
609
- background-color: var(--salt-container-primary-background);
610
- box-shadow: var(--vuu-side-panel-shadow, none);
611
- display: flex;
612
- flex-direction: column;
613
- height: 100%;
614
- min-width: 0 !important;
615
- overflow: auto;
616
- padding-bottom: 24px;
617
- padding-top: 24px;
618
- padding-left: var(--vuu-side-panel-padding, 0);
619
- padding-right: var(--vuu-side-panel-padding, 0);
620
- position: absolute !important;
621
- right: 0;
622
- top: 0;
623
- transition-property:
624
- padding-left,
625
- padding-right,
626
- width;
627
- transition-duration: .3s;
628
- transition-timing-function: ease-in-out;
629
- width: var(--vuu-side-panel-width, 0px);
630
- }
631
- .vuuContextPanel-header {
632
- align-items: center;
633
- display: flex;
634
- flex-wrap: nowrap;
635
- flex: 0 0 27px !important;
636
- justify-content: space-between;
637
- }
638
- .vuuContextPanel-title {
639
- font-size: 20px;
640
- font-weight: 700;
641
- white-space: nowrap;
642
- }
643
- .vuuContextPanel-content {
644
- flex: 1 1 auto;
645
- width: 100%;
646
- }
647
-
648
- /* src/shell-layouts/side-panel/SidePanel.css */
649
- .vuuShellSidePanel {
650
- transition: width .2s ease-out;
651
- width: var(--shell-left-nav-size);
652
- }
653
-
654
- /* src/shell.css */
655
- .vuuShell {
656
- background-color: var(--vuu-color-gray-25);
657
- height: var(--vuuShell-height, 100vh);
658
- width: var(--vuuShell-width, 100vw);
659
- }
660
- .vuuShell-mainTabs {
661
- background: var(--salt-container-primary-background);
662
- }
663
- .vuuShell-palette {
664
- --vuuView-border: none;
665
- --vuuView-margin: 0;
666
- }
667
- .vuuShell-warningPlaceholder {
668
- background-color: var(--salt-container-background-high);
669
- height: 100%;
670
- }
671
- .vuuToolbarProxy {
672
- background: var(--salt-container-primary-background);
673
- }
674
- .vuuShell-mainTabs > .vuuTabstrip > .vuuOverflowContainer-wrapContainer {
675
- background: var(--vuu-color-gray-25);
676
- }
677
- .vuuShell-mainTabs {
678
- --vuuTab-height: 28px;
679
- border: solid 1px #D6D7DA;
680
- border-top: none !important;
681
- border-radius: 6px;
682
- height: 100%;
683
- padding: 36px 8px 8px 8px;
684
- position: relative;
685
- width: 100%;
686
- }
687
- .vuuShell-mainTabs > .vuuTabstrip {
688
- left: -1px;
689
- padding-bottom: 7px;
690
- position: absolute !important;
691
- right: 1px;
692
- top: 0;
693
- width: calc(100% + 2px) !important;
694
- }
695
-
696
- /* src/theme-switch/ThemeSwitch.css */
697
- .vuuThemeSwitch {
698
- --saltButton-minWidth: 22px;
699
- --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>');
700
- --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>');
701
- padding: 2px;
702
- }
703
- .salt-density-high .vuuThemeSwitch {
704
- --saltButton-minWidth: 16px;
705
- --saltButton-width: 18px;
706
- --vuuThemeSwitch-iconSize: 16px;
707
- }
708
- .vuuThemeSwitch [data-icon] {
709
- --vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
710
- }
711
- .vuuThemeSwitch [data-icon=light] {
712
- --vuu-icon-svg: var(--svg-light);
713
- }
714
- .vuuThemeSwitch [data-icon=dark] {
715
- --vuu-icon-svg: var(--svg-dark);
716
- }
717
- .vuuThemeSwitch .saltToggleButton {
718
- height: 20px;
719
- width: 20px;
720
- }
721
- /*# sourceMappingURL=index.css.map */