@vuu-ui/vuu-layout 0.8.13-debug → 0.8.13
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/LICENSE +201 -0
- package/cjs/index.js +5 -16438
- package/cjs/index.js.map +3 -3
- package/esm/index.js +5 -16558
- package/esm/index.js.map +3 -3
- package/index.css +1 -1669
- package/index.css.map +1 -1
- package/package.json +7 -7
package/index.css
CHANGED
|
@@ -1,1670 +1,2 @@
|
|
|
1
|
-
/* src/dock-layout/Drawer.css */
|
|
2
|
-
.vuuDrawer {
|
|
3
|
-
--drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);
|
|
4
|
-
--vuu-close-icon-svg: var(--svg-chevron-double-right);
|
|
5
|
-
transition: flex-basis;
|
|
6
|
-
transition-duration: var(--drawer-transition-duration);
|
|
7
|
-
position: relative;
|
|
8
|
-
z-index: 1;
|
|
9
|
-
flex-basis: 0;
|
|
10
|
-
flex-grow: 1;
|
|
11
|
-
flex-shrink: 1;
|
|
12
|
-
min-width: 0;
|
|
13
|
-
min-height: 0;
|
|
14
|
-
display: flex;
|
|
15
|
-
}
|
|
16
|
-
.vuuDrawer-peekaboo {
|
|
17
|
-
flex-basis: var(--drawer-peek-size);
|
|
18
|
-
flex-grow: 0;
|
|
19
|
-
flex-shrink: 0;
|
|
20
|
-
}
|
|
21
|
-
.vuuDrawer-inline.vuuDrawer-open {
|
|
22
|
-
flex-basis: var(--drawer-size);
|
|
23
|
-
flex-grow: 0;
|
|
24
|
-
flex-shrink: 0;
|
|
25
|
-
}
|
|
26
|
-
.vuuDrawer-liner {
|
|
27
|
-
background-color: var(--drawer-bg);
|
|
28
|
-
overflow: hidden;
|
|
29
|
-
position: relative;
|
|
30
|
-
}
|
|
31
|
-
.vuuDrawer-content {
|
|
32
|
-
height: 100%;
|
|
33
|
-
overflow: hidden;
|
|
34
|
-
position: absolute;
|
|
35
|
-
top: 0;
|
|
36
|
-
right: var(--drawer-peek-size);
|
|
37
|
-
transition: right;
|
|
38
|
-
transition-duration: var(--drawer-transition-duration);
|
|
39
|
-
width: 100%;
|
|
40
|
-
flex: 1 1 100%;
|
|
41
|
-
}
|
|
42
|
-
.vuuDrawer-open .vuuDrawer-content {
|
|
43
|
-
right: 0;
|
|
44
|
-
}
|
|
45
|
-
.vuuDrawer-left {
|
|
46
|
-
border-right: var(--drawer-leading-edge-border);
|
|
47
|
-
}
|
|
48
|
-
.vuuDrawer-right {
|
|
49
|
-
border-left: var(--drawer-leading-edge-border);
|
|
50
|
-
}
|
|
51
|
-
.vuuDrawer-top {
|
|
52
|
-
border-bottom: var(--drawer-leading-edge-border);
|
|
53
|
-
}
|
|
54
|
-
.vuuDrawer-bottom {
|
|
55
|
-
border-top: var(--drawer-leading-edge-border);
|
|
56
|
-
}
|
|
57
|
-
.vuuDrawer-left .vuuDrawer-liner,
|
|
58
|
-
.vuuDrawer-right .vuuDrawer-liner {
|
|
59
|
-
height: 100%;
|
|
60
|
-
transition: width;
|
|
61
|
-
}
|
|
62
|
-
.vuuDrawer-top .vuuDrawer-liner,
|
|
63
|
-
.vuuDrawer-bottom .vuuDrawer-liner {
|
|
64
|
-
width: 100%;
|
|
65
|
-
transition: height;
|
|
66
|
-
}
|
|
67
|
-
.vuuDrawer-inline .vuuDrawer-liner {
|
|
68
|
-
width: 100%;
|
|
69
|
-
height: 100%;
|
|
70
|
-
}
|
|
71
|
-
.vuuDrawer-over .vuuDrawer-liner {
|
|
72
|
-
position: absolute;
|
|
73
|
-
transition-duration: 0.4s;
|
|
74
|
-
}
|
|
75
|
-
.vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner {
|
|
76
|
-
top: 0;
|
|
77
|
-
left: 0;
|
|
78
|
-
width: 0;
|
|
79
|
-
}
|
|
80
|
-
.vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner {
|
|
81
|
-
top: 0;
|
|
82
|
-
right: 0;
|
|
83
|
-
width: 0;
|
|
84
|
-
}
|
|
85
|
-
.vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner {
|
|
86
|
-
height: 0;
|
|
87
|
-
top: 0;
|
|
88
|
-
left: 0;
|
|
89
|
-
}
|
|
90
|
-
.vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner {
|
|
91
|
-
bottom: 0;
|
|
92
|
-
height: 0;
|
|
93
|
-
left: 0;
|
|
94
|
-
}
|
|
95
|
-
.vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
|
|
96
|
-
.vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
|
|
97
|
-
width: var(--drawer-peek-size);
|
|
98
|
-
}
|
|
99
|
-
.vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,
|
|
100
|
-
.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner {
|
|
101
|
-
height: var(--drawer-peek-size);
|
|
102
|
-
}
|
|
103
|
-
.vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
|
|
104
|
-
.vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
|
|
105
|
-
width: var(--drawer-size);
|
|
106
|
-
}
|
|
107
|
-
.vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,
|
|
108
|
-
.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner {
|
|
109
|
-
height: var(--drawer-size);
|
|
110
|
-
}
|
|
111
|
-
.vuuDrawer-top,
|
|
112
|
-
.vuuDrawer-left {
|
|
113
|
-
order: 0;
|
|
114
|
-
}
|
|
115
|
-
.vuuDrawer-bottom,
|
|
116
|
-
.vuuDrawer-right {
|
|
117
|
-
order: 99;
|
|
118
|
-
}
|
|
119
|
-
.vuuDrawer-left,
|
|
120
|
-
.vuuDrawer-right {
|
|
121
|
-
flex-direction: column;
|
|
122
|
-
}
|
|
123
|
-
.vuuToggleButton-container {
|
|
124
|
-
--saltButton-height: 28px;
|
|
125
|
-
--saltButton-width: 28px;
|
|
126
|
-
--vuu-icon-size: 12px;
|
|
127
|
-
flex: 0 0 28px;
|
|
128
|
-
}
|
|
129
|
-
.vuuDrawer-open {
|
|
130
|
-
--vuu-close-icon-svg: var(--svg-chevron-double-left);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/* src/dock-layout/DockLayout.css */
|
|
134
|
-
.vuuDockLayout {
|
|
135
|
-
--chest-bg: var(--hw-chest-bg, inherit);
|
|
136
|
-
--drawer-bg: var(--hw-drawer-bg, inherit);
|
|
137
|
-
--drawer-size: var(--hw-drawer-size, 200px);
|
|
138
|
-
--drawer-peek-size: var(--hw-drawer-peek-size, 32px);
|
|
139
|
-
--drawer-transition-duration: var(--hw-drawer-transition-duration, 0.4s);
|
|
140
|
-
background-color: var(--chest-bg);
|
|
141
|
-
display: flex;
|
|
142
|
-
}
|
|
143
|
-
.vuuDockLayout-horizontal {
|
|
144
|
-
flex-direction: row;
|
|
145
|
-
}
|
|
146
|
-
.vuuDockLayout-vertical {
|
|
147
|
-
flex-direction: column;
|
|
148
|
-
}
|
|
149
|
-
.vuuDockLayout-content {
|
|
150
|
-
background-color: var(--chest-bg);
|
|
151
|
-
flex-grow: 1;
|
|
152
|
-
flex-shrink: 1;
|
|
153
|
-
overflow: hidden;
|
|
154
|
-
display: flex;
|
|
155
|
-
align-items: center;
|
|
156
|
-
justify-content: center;
|
|
157
|
-
}
|
|
158
|
-
.vuuDockLayout-horizontal .vuuDockLayout-content {
|
|
159
|
-
flex-basis: 100%;
|
|
160
|
-
}
|
|
161
|
-
.vuuDockLayout-vertical .vuuDockLayout-content {
|
|
162
|
-
flex-basis: 100%;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
/* src/Component.css */
|
|
166
|
-
|
|
167
|
-
/* src/drag-drop/DropMenu.css */
|
|
168
|
-
.vuuDropMenu {
|
|
169
|
-
margin-left: -50%;
|
|
170
|
-
margin-bottom: -50%;
|
|
171
|
-
background-color: white;
|
|
172
|
-
border: solid 1px var(--grey40);
|
|
173
|
-
display: inline-flex;
|
|
174
|
-
justify-content: center;
|
|
175
|
-
align-items: center;
|
|
176
|
-
padding: 3px;
|
|
177
|
-
border-radius: 3px;
|
|
178
|
-
}
|
|
179
|
-
.vuuDropMenu-left,
|
|
180
|
-
.vuuDropMenu-right {
|
|
181
|
-
flex-direction: column;
|
|
182
|
-
}
|
|
183
|
-
.vuuDropMenu-bottom {
|
|
184
|
-
transform: translate(0, -30px);
|
|
185
|
-
}
|
|
186
|
-
.vuuDropMenu-right {
|
|
187
|
-
transform: translate(-20px, 0);
|
|
188
|
-
}
|
|
189
|
-
.vuuDropMenu-item {
|
|
190
|
-
--vuu-icon-size: 20px;
|
|
191
|
-
width: 32px;
|
|
192
|
-
height: 32px;
|
|
193
|
-
background-color: var(--grey20);
|
|
194
|
-
border-bottom: solid 1px var(--grey40);
|
|
195
|
-
cursor: pointer;
|
|
196
|
-
display: flex;
|
|
197
|
-
align-items: center;
|
|
198
|
-
justify-content: center;
|
|
199
|
-
}
|
|
200
|
-
.vuuDropMenu-item .Icon {
|
|
201
|
-
transform: scale(1.25);
|
|
202
|
-
transform-origin: center center;
|
|
203
|
-
}
|
|
204
|
-
.vuuDropMenu-left .vuuDropMenu-item .hwIcon {
|
|
205
|
-
transform: scale(1.25) rotate(180deg);
|
|
206
|
-
transform-origin: center center;
|
|
207
|
-
}
|
|
208
|
-
.vuuDropMenu-top .vuuDropMenu-item .hwIcon {
|
|
209
|
-
transform: scale(1.25) rotate(270deg);
|
|
210
|
-
transform-origin: center center;
|
|
211
|
-
}
|
|
212
|
-
.vuuDropMenu-bottom .vuuDropMenu-item .hwIcon {
|
|
213
|
-
transform: scale(1.25) rotate(90deg);
|
|
214
|
-
transform-origin: center center;
|
|
215
|
-
}
|
|
216
|
-
.vuuDropMenu-item .hwIcon-path {
|
|
217
|
-
fill: grey;
|
|
218
|
-
}
|
|
219
|
-
.vuuDropMenu-item:hover {
|
|
220
|
-
background-color: rgba(200, 200, 200, 0.5);
|
|
221
|
-
}
|
|
222
|
-
.vuuDropMenu-item:hover .hwIcon-path-2 {
|
|
223
|
-
fill: blue;
|
|
224
|
-
}
|
|
225
|
-
.vuuDropMenu-item:last-child {
|
|
226
|
-
border-bottom: none;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
/* src/drag-drop/DropTargetRenderer.css */
|
|
230
|
-
#hw-drag-canvas {
|
|
231
|
-
visibility: hidden;
|
|
232
|
-
z-index: 10;
|
|
233
|
-
position: absolute;
|
|
234
|
-
top: 0px;
|
|
235
|
-
left: 0;
|
|
236
|
-
right: 0;
|
|
237
|
-
bottom: 0;
|
|
238
|
-
background-color: transparent;
|
|
239
|
-
}
|
|
240
|
-
#hw-drag-canvas > svg {
|
|
241
|
-
position: absolute;
|
|
242
|
-
}
|
|
243
|
-
.drawing #hw-drag-canvas {
|
|
244
|
-
visibility: visible;
|
|
245
|
-
}
|
|
246
|
-
path.drop-target {
|
|
247
|
-
stroke: blue;
|
|
248
|
-
stroke-width: 4px;
|
|
249
|
-
fill: transparent;
|
|
250
|
-
}
|
|
251
|
-
path.drop-target.centre {
|
|
252
|
-
stroke: red;
|
|
253
|
-
}
|
|
254
|
-
#vuu-drop-outline {
|
|
255
|
-
fill: rgba(0, 0, 255, .3);
|
|
256
|
-
stroke: none;
|
|
257
|
-
stroke-dasharray: 4 2;
|
|
258
|
-
}
|
|
259
|
-
#hw-drop-guides {
|
|
260
|
-
fill: none;
|
|
261
|
-
stroke: rgba(0, 0, 0, 0.3);
|
|
262
|
-
stroke-dasharray: 2 3;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
/* src/DraggableLayout.css */
|
|
266
|
-
.DraggableLayout {
|
|
267
|
-
display: inline-block;
|
|
268
|
-
outline: none;
|
|
269
|
-
}
|
|
270
|
-
[data-dragging=true] {
|
|
271
|
-
position: absolute !important;
|
|
272
|
-
z-index: 100;
|
|
273
|
-
}
|
|
274
|
-
.vuuSimpleDraggableWrapper {
|
|
275
|
-
background-color: white;
|
|
276
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
|
|
277
|
-
}
|
|
278
|
-
.vuuSimpleDraggableWrapper > * {
|
|
279
|
-
height: 100%;
|
|
280
|
-
width: 100%;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
/* src/placeholder/LayoutStartPanel.css */
|
|
284
|
-
.vuuLayoutStartPanel {
|
|
285
|
-
align-items: center;
|
|
286
|
-
flex: 0 0 auto !important;
|
|
287
|
-
display: flex;
|
|
288
|
-
flex-direction: column;
|
|
289
|
-
font-weight: 700;
|
|
290
|
-
gap: 12px;
|
|
291
|
-
}
|
|
292
|
-
.vuuLayoutStartPanel-title {
|
|
293
|
-
color: var(--vuu-color-gray-80);
|
|
294
|
-
font-size: 28px;
|
|
295
|
-
line-height: 1.5;
|
|
296
|
-
text-align: center;
|
|
297
|
-
}
|
|
298
|
-
.vuuLayoutStartPanel-text {
|
|
299
|
-
color: var(--vuu-color-gray-50);
|
|
300
|
-
font-size: 18px;
|
|
301
|
-
line-height: 1.5;
|
|
302
|
-
max-width: 460px;
|
|
303
|
-
}
|
|
304
|
-
.vuuLayoutStartPanel-addButton {
|
|
305
|
-
--vuu-icon-size: 20px;
|
|
306
|
-
--saltButton-borderRadius: 28px !important;
|
|
307
|
-
--saltButton-height: 56px;
|
|
308
|
-
--saltButton-width: 56px;
|
|
309
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
/* src/placeholder/Placeholder.css */
|
|
313
|
-
.vuuPlaceholder {
|
|
314
|
-
--vuuView-justify: center;
|
|
315
|
-
align-items: center;
|
|
316
|
-
display: flex;
|
|
317
|
-
flex-basis: 0;
|
|
318
|
-
flex-grow: 1;
|
|
319
|
-
flex-shrink: 1;
|
|
320
|
-
}
|
|
321
|
-
.vuuPlaceholder-nested {
|
|
322
|
-
background-color: red;
|
|
323
|
-
}
|
|
324
|
-
.vuuPlaceholder-shim {
|
|
325
|
-
flex-grow: 0;
|
|
326
|
-
flex-shrink: 0;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
/* src/flexbox/Splitter.css */
|
|
330
|
-
.vuuSplitter {
|
|
331
|
-
--splitter-background: var(--salt-separable-secondary-borderColor);
|
|
332
|
-
--splitter-borderColor: var(--salt-separable-secondary-borderColor);
|
|
333
|
-
--splitter-borderStyle: none;
|
|
334
|
-
--splitter-borderWidth: 0;
|
|
335
|
-
--splitter-size: 3px;
|
|
336
|
-
align-items: center;
|
|
337
|
-
background-color: var(--splitter-background);
|
|
338
|
-
border-color: var(--splitter-borderColor);
|
|
339
|
-
border-style: var(--splitter-borderStyle);
|
|
340
|
-
border-width: var(--splitter-borderWidth);
|
|
341
|
-
box-sizing: border-box;
|
|
342
|
-
display: flex;
|
|
343
|
-
justify-content: center;
|
|
344
|
-
position: relative;
|
|
345
|
-
outline: none;
|
|
346
|
-
z-index: 1;
|
|
347
|
-
}
|
|
348
|
-
.vuuSplitter:hover {
|
|
349
|
-
--splitter-background: var(--salt-separable-primary-borderColor);
|
|
350
|
-
}
|
|
351
|
-
.vuuSplitter-active {
|
|
352
|
-
--splitter-background: var(--salt-separable-primary-borderColor);
|
|
353
|
-
}
|
|
354
|
-
.vuuSplitter-column {
|
|
355
|
-
cursor: ns-resize;
|
|
356
|
-
height: var(--splitter-size);
|
|
357
|
-
}
|
|
358
|
-
.vuuSplitter:not(.vuuSplitter-column) {
|
|
359
|
-
cursor: ew-resize;
|
|
360
|
-
width: var(--splitter-size);
|
|
361
|
-
}
|
|
362
|
-
.vuuSplitter:before {
|
|
363
|
-
border: none;
|
|
364
|
-
border-radius: 0;
|
|
365
|
-
content: "";
|
|
366
|
-
display: block;
|
|
367
|
-
padding: 0;
|
|
368
|
-
}
|
|
369
|
-
.vuuSplitter-grab-zone {
|
|
370
|
-
position: absolute;
|
|
371
|
-
background-color: rgba(255, 0, 0, 0.01);
|
|
372
|
-
cursor: inherit;
|
|
373
|
-
}
|
|
374
|
-
.vuuSplitter-column .vuuSplitter-grab-zone {
|
|
375
|
-
left: 0;
|
|
376
|
-
right: 0;
|
|
377
|
-
top: -5px;
|
|
378
|
-
bottom: -5px;
|
|
379
|
-
}
|
|
380
|
-
.vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
|
|
381
|
-
left: -5px;
|
|
382
|
-
right: -5px;
|
|
383
|
-
top: 0;
|
|
384
|
-
bottom: 0;
|
|
385
|
-
}
|
|
386
|
-
.vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone {
|
|
387
|
-
background-color: rgba(255, 255, 255, .05);
|
|
388
|
-
left: -150px;
|
|
389
|
-
right: -150px;
|
|
390
|
-
}
|
|
391
|
-
.vuuSplitter:not(.vuuSplitter-column):before {
|
|
392
|
-
width: 1px;
|
|
393
|
-
height: 10px;
|
|
394
|
-
background: linear-gradient(to bottom, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
|
|
395
|
-
}
|
|
396
|
-
.vuuSplitter-active.vuuSplitter-column:before {
|
|
397
|
-
background: linear-gradient(to right, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
|
|
398
|
-
}
|
|
399
|
-
.vuuSplitter-active:not(.vuuSplitter-column):before {
|
|
400
|
-
background: linear-gradient(to bottom, #ffffff 10%, transparent 10%, transparent 30%, #ffffff 30%, #ffffff 40%, transparent 40%, transparent 60%, #ffffff 60%, #ffffff 70%, transparent 70%, transparent 90%, #ffffff 90%);
|
|
401
|
-
}
|
|
402
|
-
.vuuSplitter-column:before {
|
|
403
|
-
width: 10px;
|
|
404
|
-
height: 1px;
|
|
405
|
-
background: linear-gradient(to right, var(--grey900) 10%, transparent 10%, transparent 30%, var(--grey900) 30%, var(--grey900) 40%, transparent 40%, transparent 60%, var(--grey900) 60%, var(--grey900) 70%, transparent 70%, transparent 90%, var(--grey900) 90%);
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
/* src/flexbox/Flexbox.css */
|
|
409
|
-
:root {
|
|
410
|
-
--hw-space-unit: 4px;
|
|
411
|
-
--hw-flex-gap: 3;
|
|
412
|
-
--hw-fluid-grid-col-bg: rgba(200, 200, 200, 0.3);
|
|
413
|
-
}
|
|
414
|
-
.hwFlexbox {
|
|
415
|
-
background-color: var(--container1-background);
|
|
416
|
-
box-sizing: border-box;
|
|
417
|
-
display: flex;
|
|
418
|
-
gap: calc(var(--spacing) * var(--space));
|
|
419
|
-
min-height: 0;
|
|
420
|
-
min-width: 0;
|
|
421
|
-
overflow: hidden;
|
|
422
|
-
}
|
|
423
|
-
.hwFlexbox-column {
|
|
424
|
-
flex-direction: column;
|
|
425
|
-
}
|
|
426
|
-
.hwFlexbox-row {
|
|
427
|
-
flex-direction: row;
|
|
428
|
-
}
|
|
429
|
-
.hwFlexbox > .Splitter {
|
|
430
|
-
flex-basis: auto;
|
|
431
|
-
flex-grow: 0;
|
|
432
|
-
flex-shrink: 0;
|
|
433
|
-
}
|
|
434
|
-
.hwFlexbox.full-page {
|
|
435
|
-
height: 100vh;
|
|
436
|
-
width: 100vw;
|
|
437
|
-
}
|
|
438
|
-
.flex-fill {
|
|
439
|
-
border-color: red;
|
|
440
|
-
flex: 0;
|
|
441
|
-
flex-grow: 1;
|
|
442
|
-
flex-shrink: 1;
|
|
443
|
-
}
|
|
444
|
-
.vuuView.flex-fill {
|
|
445
|
-
border-color: red;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
/* src/flexbox/FluidGrid.css */
|
|
449
|
-
:root {
|
|
450
|
-
--hw-space-unit: 4px;
|
|
451
|
-
--hw-fluid-grid-col-bg: rgba(252, 209, 232, 0.7);
|
|
452
|
-
}
|
|
453
|
-
.hwFluidGrid {
|
|
454
|
-
--gap: var(--gutter-width);
|
|
455
|
-
display: flex;
|
|
456
|
-
gap: calc(var(--grid-gap) * var(--hw-space-unit));
|
|
457
|
-
flex-wrap: wrap;
|
|
458
|
-
padding: 0;
|
|
459
|
-
}
|
|
460
|
-
.hwFluidGrid > * {
|
|
461
|
-
--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
|
|
462
|
-
--gutter-count: calc(var(--parent-col-count) - 1);
|
|
463
|
-
--total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));
|
|
464
|
-
--available-width: calc(100% - var(--total-gutter-width));
|
|
465
|
-
flex-basis: 0;
|
|
466
|
-
flex-grow: 1;
|
|
467
|
-
flex-shrink: 1;
|
|
468
|
-
position: relative;
|
|
469
|
-
}
|
|
470
|
-
.hwFluidGrid > *:after {
|
|
471
|
-
content: "";
|
|
472
|
-
position: absolute;
|
|
473
|
-
top: 0;
|
|
474
|
-
left: 0;
|
|
475
|
-
right: 0;
|
|
476
|
-
bottom: 0;
|
|
477
|
-
border: dashed 2px blue;
|
|
478
|
-
}
|
|
479
|
-
.hwFluidGrid > [data-xs] {
|
|
480
|
-
--internal-gutter-count: calc(var(--col-span) - 1);
|
|
481
|
-
--percent-width: calc(var(--col-span) / var(--parent-col-count));
|
|
482
|
-
--internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));
|
|
483
|
-
flex-basis: calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));
|
|
484
|
-
flex-grow: 0;
|
|
485
|
-
}
|
|
486
|
-
.hwFluidGrid > [data-xs="1"] {
|
|
487
|
-
--col-span: 1;
|
|
488
|
-
}
|
|
489
|
-
.hwFluidGrid > [data-xs="2"] {
|
|
490
|
-
--col-span: 2;
|
|
491
|
-
}
|
|
492
|
-
.hwFluidGrid > [data-xs="3"] {
|
|
493
|
-
--col-span: 3;
|
|
494
|
-
}
|
|
495
|
-
.hwFluidGrid > [data-xs="4"] {
|
|
496
|
-
--col-span: 4;
|
|
497
|
-
}
|
|
498
|
-
.hwFluidGrid > [data-xs="6"] {
|
|
499
|
-
--col-span: 6;
|
|
500
|
-
}
|
|
501
|
-
.hwFluidGrid > [data-xs="8"] {
|
|
502
|
-
--col-span: 8;
|
|
503
|
-
}
|
|
504
|
-
.hwFluidGrid > [data-xs="9"] {
|
|
505
|
-
--col-span: 9;
|
|
506
|
-
}
|
|
507
|
-
.hwFluidGrid > [data-xs="10"] {
|
|
508
|
-
--col-span: 10;
|
|
509
|
-
}
|
|
510
|
-
.hwFluidGrid > [data-xs="11"] {
|
|
511
|
-
--col-span: 11;
|
|
512
|
-
}
|
|
513
|
-
.hwFluidGrid > [data-xs="12"] {
|
|
514
|
-
--col-span: 12;
|
|
515
|
-
}
|
|
516
|
-
@media (min-width: 600px) {
|
|
517
|
-
.hwFluidGrid > [data-sm="1"] {
|
|
518
|
-
--col-span: 1;
|
|
519
|
-
}
|
|
520
|
-
.hwFluidGrid > [data-sm="2"] {
|
|
521
|
-
--col-span: 2;
|
|
522
|
-
}
|
|
523
|
-
.hwFluidGrid > [data-sm="3"] {
|
|
524
|
-
--col-span: 3;
|
|
525
|
-
}
|
|
526
|
-
.hwFluidGrid > [data-sm="4"] {
|
|
527
|
-
--col-span: 4;
|
|
528
|
-
}
|
|
529
|
-
.hwFluidGrid > [data-sm="6"] {
|
|
530
|
-
--col-span: 6;
|
|
531
|
-
}
|
|
532
|
-
.hwFluidGrid > [data-sm="8"] {
|
|
533
|
-
--col-span: 8;
|
|
534
|
-
}
|
|
535
|
-
.hwFluidGrid > [data-sm="9"] {
|
|
536
|
-
--col-span: 9;
|
|
537
|
-
}
|
|
538
|
-
.hwFluidGrid > [data-sm="10"] {
|
|
539
|
-
--col-span: 10;
|
|
540
|
-
}
|
|
541
|
-
.hwFluidGrid > [data-sm="11"] {
|
|
542
|
-
--col-span: 11;
|
|
543
|
-
}
|
|
544
|
-
.hwFluidGrid > [data-sm="12"] {
|
|
545
|
-
--col-span: 12;
|
|
546
|
-
}
|
|
547
|
-
}
|
|
548
|
-
.hwFluidGrid-show-grid {
|
|
549
|
-
--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));
|
|
550
|
-
--grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);
|
|
551
|
-
--grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));
|
|
552
|
-
--grid-available-width: calc(100% - var(--grid-total-gutter-width));
|
|
553
|
-
--grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));
|
|
554
|
-
--column-width: calc(var(--grid-available-width) * var(--grid-percent-width));
|
|
555
|
-
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)));
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
/* src/layout-view/View.css */
|
|
559
|
-
.vuuView {
|
|
560
|
-
border-color: var(--vuuView-borderColor, var(--salt-container-primary-borderColor));
|
|
561
|
-
border-width: var(--vuuView-borderWidth, 1px);
|
|
562
|
-
border-style: var(--vuuView-borderStyle, none);
|
|
563
|
-
display: flex;
|
|
564
|
-
flex-direction: column;
|
|
565
|
-
margin: var(--vuuView-margin, 0px);
|
|
566
|
-
min-height: 50px;
|
|
567
|
-
min-width: 50px;
|
|
568
|
-
outline: none;
|
|
569
|
-
overflow: hidden;
|
|
570
|
-
position: relative;
|
|
571
|
-
}
|
|
572
|
-
.vuuView.focus-visible:after {
|
|
573
|
-
content: "";
|
|
574
|
-
position: absolute;
|
|
575
|
-
top: 0;
|
|
576
|
-
left: 0;
|
|
577
|
-
right: 0;
|
|
578
|
-
bottom: 0;
|
|
579
|
-
border: dotted cornflowerblue 2px;
|
|
580
|
-
}
|
|
581
|
-
.vuuView.dragging {
|
|
582
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
583
|
-
}
|
|
584
|
-
.vuuView-main {
|
|
585
|
-
display: flex;
|
|
586
|
-
flex-direction: var(--vuuView-flexDirection, column);
|
|
587
|
-
flex-wrap: var(--vuuView-flex-wrap, nowrap);
|
|
588
|
-
flex: 1;
|
|
589
|
-
justify-content: var(--vuuView-justify, flex-start);
|
|
590
|
-
overflow: hidden;
|
|
591
|
-
position: relative;
|
|
592
|
-
}
|
|
593
|
-
.vuuView-main > * {
|
|
594
|
-
flex-basis: auto;
|
|
595
|
-
flex-grow: var(--vuuView-flex-grow, 1);
|
|
596
|
-
flex-shrink: var(--vuuView-flex-shrink, 1);
|
|
597
|
-
}
|
|
598
|
-
.vuuView-collapsed .vuuView-main {
|
|
599
|
-
display: none;
|
|
600
|
-
}
|
|
601
|
-
.vuuView-collapsed + .Splitter {
|
|
602
|
-
display: none;
|
|
603
|
-
}
|
|
604
|
-
.vuuView-collapsed .Toolbar-vertical {
|
|
605
|
-
border-right: solid 1px var(--grey40);
|
|
606
|
-
}
|
|
607
|
-
.vuuView-collapsed .Toolbar-vertical .toolbar-title {
|
|
608
|
-
display: none;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
/* src/layout-header/Header.css */
|
|
612
|
-
.vuuHeader {
|
|
613
|
-
--saltButton-height: 24px;
|
|
614
|
-
--saltButton-width: 24px;
|
|
615
|
-
}
|
|
616
|
-
.salt-density-high .vuuHeader {
|
|
617
|
-
--saltToolbarField-marginTop: 0;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
/* ../vuu-shell/src/login/LoginPanel.css */
|
|
621
|
-
.vuuLoginPanel {
|
|
622
|
-
--saltInput-paddingLeft: 8px;
|
|
623
|
-
--login-width: 856px;
|
|
624
|
-
--login-height: 550px;
|
|
625
|
-
--hwTextInput-border: solid 1px #ccc;
|
|
626
|
-
--hwTextInput-height: 28px;
|
|
627
|
-
--hwTextInput-padding: 0 12px;
|
|
628
|
-
--hwTextInput-width: 100%;
|
|
629
|
-
--login-row-height: 60px;
|
|
630
|
-
border-radius: 16px;
|
|
631
|
-
box-shadow: 0px 24px 44px 0px rgba(0, 0, 0, 0.25);
|
|
632
|
-
display: flex;
|
|
633
|
-
height: var(--login-height);
|
|
634
|
-
margin: 0 auto;
|
|
635
|
-
width: var(--login-width);
|
|
636
|
-
}
|
|
637
|
-
.vuuLoginPanel .saltInput-primary {
|
|
638
|
-
--saltInput-height: 36px;
|
|
639
|
-
}
|
|
640
|
-
.vuuLoginPanel-title {
|
|
641
|
-
justify-content: center;
|
|
642
|
-
font-size: 28px;
|
|
643
|
-
font-weight: 400;
|
|
644
|
-
display: flex;
|
|
645
|
-
}
|
|
646
|
-
.vuuLoginPanel-branding {
|
|
647
|
-
align-items: center;
|
|
648
|
-
background-color: var(--vuu-color-purple-50);
|
|
649
|
-
border-radius: 16px 0 0 16px;
|
|
650
|
-
display: flex;
|
|
651
|
-
flex: 0 0 368px;
|
|
652
|
-
flex-direction: column;
|
|
653
|
-
gap: 40px;
|
|
654
|
-
justify-content: center;
|
|
655
|
-
padding: 40px 100px;
|
|
656
|
-
}
|
|
657
|
-
.vuuLoginPanel-form {
|
|
658
|
-
background-color: white;
|
|
659
|
-
border-radius: 0 16px 16px 0px;
|
|
660
|
-
display: flex;
|
|
661
|
-
flex: 1 1 auto;
|
|
662
|
-
flex-direction: column;
|
|
663
|
-
gap: 32px;
|
|
664
|
-
justify-content: center;
|
|
665
|
-
padding: 0 40px;
|
|
666
|
-
}
|
|
667
|
-
.vuuLoginPanel-password {
|
|
668
|
-
--vuu-icon-size: 16px;
|
|
669
|
-
}
|
|
670
|
-
.vuuLoginPanel-appName {
|
|
671
|
-
color: white;
|
|
672
|
-
font-size: 18px;
|
|
673
|
-
font-weight: 700;
|
|
674
|
-
text-transform: uppercase;
|
|
675
|
-
}
|
|
676
|
-
.vuuLoginPanel-login {
|
|
677
|
-
--saltButton-height: 36px;
|
|
678
|
-
--saltButton-borderRadius: 6px;
|
|
679
|
-
width: 100%;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
/* ../vuu-shell/src/app-header/AppHeader.css */
|
|
683
|
-
.vuuAppHeader {
|
|
684
|
-
--saltButton-borderRadius: 6px;
|
|
685
|
-
--saltButton-text-color: var(--vuu-color-gray-50);
|
|
686
|
-
--saltButton-padding: 12px;
|
|
687
|
-
--vuuToolbarItem-height: 26px;
|
|
688
|
-
--vuuOverflowContainer-gap: 8px;
|
|
689
|
-
--vuu-icon-color: var(--vuu-color-gray-45);
|
|
690
|
-
--vuu-icon-size: 16px;
|
|
691
|
-
--vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));
|
|
692
|
-
--vuuToolbar-borderWidth: 1px;
|
|
693
|
-
--vuuToolbar-borderStyle: solid;
|
|
694
|
-
--vuuToolbar-borderColor: var(--vuu-color-gray-30);
|
|
695
|
-
align-items: center;
|
|
696
|
-
display: flex;
|
|
697
|
-
justify-content: flex-end;
|
|
698
|
-
}
|
|
699
|
-
.vuu-theme .vuuAppHeader {
|
|
700
|
-
border-radius: 8px;
|
|
701
|
-
margin-bottom: 8px;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
/* ../vuu-shell/src/connection-status/ConnectionStatusIcon.css */
|
|
705
|
-
.vuuStatus-container {
|
|
706
|
-
display: flex;
|
|
707
|
-
}
|
|
708
|
-
.vuuStatus-text {
|
|
709
|
-
align-self: center;
|
|
710
|
-
}
|
|
711
|
-
.vuuStatus {
|
|
712
|
-
--vuu-icon-height: 18px;
|
|
713
|
-
--vuu-icon-padding: var(--vuuStatus-padding, 6px);
|
|
714
|
-
--vuu-icon-width: var(--vuuStatus-width, auto);
|
|
715
|
-
--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);
|
|
716
|
-
align-items: center;
|
|
717
|
-
display: inline-flex;
|
|
718
|
-
height: var(--vuu-icon-height);
|
|
719
|
-
justify-content: center;
|
|
720
|
-
min-width: var(--vuu-icon-min-width);
|
|
721
|
-
padding: 0 var(--vuu-icon-padding);
|
|
722
|
-
width: var(--vuu-icon-width);
|
|
723
|
-
position: relative;
|
|
724
|
-
}
|
|
725
|
-
.vuuStatus[data-icon]::after {
|
|
726
|
-
inset: 0 0 0 0;
|
|
727
|
-
content: "";
|
|
728
|
-
box-shadow: 0 0 0 0 black;
|
|
729
|
-
position: absolute;
|
|
730
|
-
mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
|
|
731
|
-
-webkit-mask: var(--vuu-icon-svg) center center/20px 20px no-repeat;
|
|
732
|
-
}
|
|
733
|
-
.vuuActiveStatus::after {
|
|
734
|
-
--vuu-icon-svg: var(--svg-active-status);
|
|
735
|
-
background-color: rgb(0, 255, 0);
|
|
736
|
-
}
|
|
737
|
-
.vuuConnectingStatus::after {
|
|
738
|
-
--vuu-icon-svg: var(--svg-connecting-status);
|
|
739
|
-
background-color: orange;
|
|
740
|
-
transform: scale(1);
|
|
741
|
-
animation: infinite pulse 1s;
|
|
742
|
-
}
|
|
743
|
-
.vuuDisconnectedStatus::after {
|
|
744
|
-
--vuu-icon-svg: var(--svg-disconnected-status);
|
|
745
|
-
background-color: red;
|
|
746
|
-
transform: scale(1);
|
|
747
|
-
animation: infinite pulse 0.5s;
|
|
748
|
-
}
|
|
749
|
-
@keyframes pulse {
|
|
750
|
-
0% {
|
|
751
|
-
transform: scale(0.95);
|
|
752
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
|
|
753
|
-
}
|
|
754
|
-
70% {
|
|
755
|
-
transform: scale(1);
|
|
756
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
757
|
-
}
|
|
758
|
-
100% {
|
|
759
|
-
transform: scale(0.95);
|
|
760
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
761
|
-
}
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
/* ../vuu-shell/src/layout-management/SaveLayoutPanel.css */
|
|
765
|
-
.saveLayoutPanel {
|
|
766
|
-
--salt-selectable-foreground-hover: #6d18bdc3;
|
|
767
|
-
--salt-selectable-foreground-selected: #6D18BD;
|
|
768
|
-
--salt-selectable-borderColor-selected: #6D18BD;
|
|
769
|
-
--saltInputLegacy-fontSize: 12px;
|
|
770
|
-
--salt-text-label-fontSize: 10px;
|
|
771
|
-
--saltFormFieldLegacy-label-paddingLeft: 0;
|
|
772
|
-
--saltFormField-label-fontWeight: 400;
|
|
773
|
-
--saltText-color: var(--text-secondary-foreground, #606477);
|
|
774
|
-
}
|
|
775
|
-
.saveLayoutPanel-panelContainer {
|
|
776
|
-
display: flex;
|
|
777
|
-
flex-direction: column;
|
|
778
|
-
align-items: flex-start;
|
|
779
|
-
}
|
|
780
|
-
.saveLayoutPanel-panelContent {
|
|
781
|
-
display: flex;
|
|
782
|
-
align-items: flex-start;
|
|
783
|
-
gap: 32px;
|
|
784
|
-
}
|
|
785
|
-
.saveLayoutPanel-formContainer {
|
|
786
|
-
display: flex;
|
|
787
|
-
width: 217px;
|
|
788
|
-
flex-direction: column;
|
|
789
|
-
align-items: flex-start;
|
|
790
|
-
gap: 16px;
|
|
791
|
-
}
|
|
792
|
-
.saveLayoutPanel-formField {
|
|
793
|
-
display: flex;
|
|
794
|
-
flex-direction: column;
|
|
795
|
-
gap: 1px;
|
|
796
|
-
}
|
|
797
|
-
.saveLayoutPanel-inputText {
|
|
798
|
-
border: none;
|
|
799
|
-
color: var(--light-text-primary, #15171B);
|
|
800
|
-
font-family: Nunito Sans A-Variant, serif;
|
|
801
|
-
font-feature-settings:
|
|
802
|
-
"ss02" on,
|
|
803
|
-
"ss01" on,
|
|
804
|
-
"salt" on,
|
|
805
|
-
"liga" off;
|
|
806
|
-
font-size: 12px;
|
|
807
|
-
font-weight: 400;
|
|
808
|
-
line-height: 16px;
|
|
809
|
-
padding-left: 4px;
|
|
810
|
-
width: 100%;
|
|
811
|
-
outline: none;
|
|
812
|
-
}
|
|
813
|
-
.saveLayoutPanel-settingsGroup {
|
|
814
|
-
display: flex;
|
|
815
|
-
flex-wrap: wrap;
|
|
816
|
-
align-items: flex-end;
|
|
817
|
-
gap: 10px;
|
|
818
|
-
width: 100%;
|
|
819
|
-
line-height: 16px;
|
|
820
|
-
}
|
|
821
|
-
.saveLayoutPanel-screenshotContainer {
|
|
822
|
-
display: flex;
|
|
823
|
-
width: 304px;
|
|
824
|
-
height: 208px;
|
|
825
|
-
padding: 11px 15.5px;
|
|
826
|
-
justify-content: center;
|
|
827
|
-
align-items: center;
|
|
828
|
-
border: 1px solid #E8E8E8;
|
|
829
|
-
background: var(--dark-text-primary, #FFF);
|
|
830
|
-
}
|
|
831
|
-
.saveLayoutPanel-screenshot {
|
|
832
|
-
display: flex;
|
|
833
|
-
justify-content: center;
|
|
834
|
-
align-items: center;
|
|
835
|
-
background: lightgray 50% / cover no-repeat;
|
|
836
|
-
width: 273px;
|
|
837
|
-
height: 186px;
|
|
838
|
-
flex-shrink: 0;
|
|
839
|
-
}
|
|
840
|
-
.saveLayoutPanel-buttonsContainer {
|
|
841
|
-
display: flex;
|
|
842
|
-
justify-content: flex-end;
|
|
843
|
-
align-items: flex-start;
|
|
844
|
-
align-self: stretch;
|
|
845
|
-
padding-top: 24px;
|
|
846
|
-
gap: 8px;
|
|
847
|
-
}
|
|
848
|
-
.saveLayoutPanel-cancelButton,
|
|
849
|
-
.saveLayoutPanel-saveButton {
|
|
850
|
-
display: flex;
|
|
851
|
-
height: fit-content;
|
|
852
|
-
padding: 4px 8px;
|
|
853
|
-
align-items: flex-start;
|
|
854
|
-
gap: 8px;
|
|
855
|
-
border-radius: 6px;
|
|
856
|
-
font-size: 12px;
|
|
857
|
-
font-style: normal;
|
|
858
|
-
font-weight: 700;
|
|
859
|
-
line-height: 133.333%;
|
|
860
|
-
letter-spacing: 0.48px;
|
|
861
|
-
text-transform: uppercase;
|
|
862
|
-
}
|
|
863
|
-
.saveLayoutPanel-cancelButton {
|
|
864
|
-
color: var(--actionable-primary-foreground-default, #606477);
|
|
865
|
-
background: var(--actionable-primary-background-default, #FFF);
|
|
866
|
-
}
|
|
867
|
-
.saveLayoutPanel-saveButton {
|
|
868
|
-
background: #6D18BD;
|
|
869
|
-
border-color: #6D18BD;
|
|
870
|
-
color: white;
|
|
871
|
-
}
|
|
872
|
-
.saveLayoutPanel-saveButton.saltButton:disabled {
|
|
873
|
-
background: #6D18BD;
|
|
874
|
-
border-color: #6D18BD;
|
|
875
|
-
color: white;
|
|
876
|
-
opacity: 0.3;
|
|
877
|
-
}
|
|
878
|
-
.saveLayoutPanel-saveButton.saltButton:hover {
|
|
879
|
-
background: #F37880;
|
|
880
|
-
border-color: #F37880;
|
|
881
|
-
color: white;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
/* ../vuu-shell/src/layout-management/LayoutList.css */
|
|
885
|
-
.vuuLayoutList {
|
|
886
|
-
--vuuMeasuredContainer-flex: 1 1 1px;
|
|
887
|
-
align-self: stretch;
|
|
888
|
-
display: flex;
|
|
889
|
-
flex-direction: column;
|
|
890
|
-
height: 100%;
|
|
891
|
-
overflow: hidden;
|
|
892
|
-
}
|
|
893
|
-
.vuuLayoutList-header {
|
|
894
|
-
color: var(--light-text-primary, #15171B);
|
|
895
|
-
flex: 0 0 47px;
|
|
896
|
-
font-weight: 700;
|
|
897
|
-
letter-spacing: 0.48px;
|
|
898
|
-
text-transform: uppercase;
|
|
899
|
-
display: flex;
|
|
900
|
-
padding: 16px 0px;
|
|
901
|
-
border-bottom: 1px solid rgba(119, 124, 148, 0.10);
|
|
902
|
-
line-height: 200%;
|
|
903
|
-
}
|
|
904
|
-
.vuuLayoutList-groupName {
|
|
905
|
-
display: flex;
|
|
906
|
-
padding-top: 24px;
|
|
907
|
-
color: var(--light-text-secondary, #606477);
|
|
908
|
-
font-weight: 700;
|
|
909
|
-
letter-spacing: 0.48px;
|
|
910
|
-
line-height: 200%;
|
|
911
|
-
}
|
|
912
|
-
.vuuLayoutList-layoutContainer {
|
|
913
|
-
display: flex;
|
|
914
|
-
align-items: center;
|
|
915
|
-
gap: 8px;
|
|
916
|
-
padding: 8px 0px;
|
|
917
|
-
flex: 1 1 auto;
|
|
918
|
-
cursor: pointer;
|
|
919
|
-
}
|
|
920
|
-
.vuuLayoutList-layoutName {
|
|
921
|
-
color: var(--light-text-primary, #15171B);
|
|
922
|
-
font-weight: 600;
|
|
923
|
-
line-height: 133.333%;
|
|
924
|
-
text-transform: capitalize;
|
|
925
|
-
}
|
|
926
|
-
.vuuLayoutList-screenshot {
|
|
927
|
-
width: 60px;
|
|
928
|
-
height: 45.6px;
|
|
929
|
-
border: 1px solid #D6D7DA;
|
|
930
|
-
}
|
|
931
|
-
.vuuLayoutList-layoutDetails {
|
|
932
|
-
color: var(--light-text-secondary, #606477);
|
|
933
|
-
font-size: 10px;
|
|
934
|
-
font-weight: 600;
|
|
935
|
-
line-height: 150%;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
/* ../vuu-shell/src/feature-list/FeatureList.css */
|
|
939
|
-
.vuuFeatureList {
|
|
940
|
-
background: var(--vuuFeatureList-background, var(--salt-container-primary-background));
|
|
941
|
-
display: flex;
|
|
942
|
-
flex-direction: column;
|
|
943
|
-
height: 100%;
|
|
944
|
-
padding: 195px 32px 16px 24px;
|
|
945
|
-
}
|
|
946
|
-
.vuuFeatureList-header {
|
|
947
|
-
flex: 0 0 40px;
|
|
948
|
-
font-size: 12px;
|
|
949
|
-
font-weight: 700;
|
|
950
|
-
line-height: 2;
|
|
951
|
-
}
|
|
952
|
-
.vuuFeatureList-content {
|
|
953
|
-
flex: 1 1 auto;
|
|
954
|
-
font-size: 12px;
|
|
955
|
-
font-weight: 700;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
/* ../vuu-shell/src/left-nav/LeftNav.css */
|
|
959
|
-
.vuuLeftNav {
|
|
960
|
-
--salt-navigable-fontWeight-active: 700;
|
|
961
|
-
--vuuTab-background-selected: rgba(255, 255, 255, 0.10);
|
|
962
|
-
--vuuTab-hover-background: rgba(255, 255, 255, 0.10);
|
|
963
|
-
--vuuTab-before-content: none;
|
|
964
|
-
--vuuTab-borderRadius: 6px;
|
|
965
|
-
--vuuTab-height: 40px;
|
|
966
|
-
--vuuTab-padding: 0 0 0 48px;
|
|
967
|
-
--vuuTabstrip-fontWeight: 700;
|
|
968
|
-
--vuuTabstrip-width: 100%;
|
|
969
|
-
--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>');
|
|
970
|
-
--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>');
|
|
971
|
-
--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>');
|
|
972
|
-
--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>');
|
|
973
|
-
--vuu-light-text-primary: #15171b;
|
|
974
|
-
--menu-level-2-width: 0px;
|
|
975
|
-
box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
976
|
-
display: flex;
|
|
977
|
-
height: calc(100% - 4px);
|
|
978
|
-
margin-bottom: 4px;
|
|
979
|
-
overflow: hidden;
|
|
980
|
-
position: relative;
|
|
981
|
-
transition: width .2s ease-out;
|
|
982
|
-
z-index: 0;
|
|
983
|
-
}
|
|
984
|
-
.vuuLeftNav-menu-full {
|
|
985
|
-
--menu-width: var(--nav-menu-expanded-width);
|
|
986
|
-
}
|
|
987
|
-
.vuuLeftNav-menu-icons {
|
|
988
|
-
--menu-width: var(--nav-menu-collapsed-width);
|
|
989
|
-
}
|
|
990
|
-
.vuuLeftNav-menu-icons-content {
|
|
991
|
-
--menu-width: var(--nav-menu-collapsed-width);
|
|
992
|
-
--menu-level-2-width: var(--nav-menu-content-width);
|
|
993
|
-
}
|
|
994
|
-
.vuuLeftNav-menu-full-content {
|
|
995
|
-
--menu-width: var(--nav-menu-expanded-width);
|
|
996
|
-
--menu-level-2-width: var(--nav-menu-content-width);
|
|
997
|
-
}
|
|
998
|
-
.vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,
|
|
999
|
-
.vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary {
|
|
1000
|
-
display: flex;
|
|
1001
|
-
}
|
|
1002
|
-
.vuuLeftNav-menu-primary {
|
|
1003
|
-
background-color: #2A015F;
|
|
1004
|
-
container-type: inline-size;
|
|
1005
|
-
display: flex;
|
|
1006
|
-
flex-direction: column;
|
|
1007
|
-
height: 100%;
|
|
1008
|
-
padding: 32px 16px;
|
|
1009
|
-
transition: flex-basis ease-out .2s;
|
|
1010
|
-
flex-grow: 0;
|
|
1011
|
-
flex-shrink: 0;
|
|
1012
|
-
flex-basis: var(--menu-width);
|
|
1013
|
-
}
|
|
1014
|
-
.vuuLeftNav-menu-secondary {
|
|
1015
|
-
flex: 1 1 auto;
|
|
1016
|
-
display: none;
|
|
1017
|
-
top: 0;
|
|
1018
|
-
right: 0;
|
|
1019
|
-
flex-grow: 0;
|
|
1020
|
-
flex-shrink: 0;
|
|
1021
|
-
flex-basis: var(--nav-menu-content-width, 240px);
|
|
1022
|
-
z-index: -1;
|
|
1023
|
-
}
|
|
1024
|
-
.vuuLeftNav .vuuTabstrip {
|
|
1025
|
-
margin-top: 102px;
|
|
1026
|
-
}
|
|
1027
|
-
.vuuLeftNav .vuuTab {
|
|
1028
|
-
--vuuTab-focusVisible-color: pink;
|
|
1029
|
-
--vuu-icon-color: white;
|
|
1030
|
-
--vuu-icon-left: 12px;
|
|
1031
|
-
--vuu-icon-size: 16px;
|
|
1032
|
-
border-left: solid 4px transparent;
|
|
1033
|
-
}
|
|
1034
|
-
.vuuLeftNav .vuuTab-selected {
|
|
1035
|
-
--vuu-icon-color: var(--salt-navigable-indicator-active);
|
|
1036
|
-
border-left: solid 4px var(--salt-navigable-indicator-active);
|
|
1037
|
-
}
|
|
1038
|
-
.vuuLeftNav-logo {
|
|
1039
|
-
display: flex;
|
|
1040
|
-
flex: 0 0 auto;
|
|
1041
|
-
justify-content: center;
|
|
1042
|
-
}
|
|
1043
|
-
.vuuLeftNav-main {
|
|
1044
|
-
flex: 1 1 auto;
|
|
1045
|
-
}
|
|
1046
|
-
.vuuLeftNav-menu {
|
|
1047
|
-
color: white;
|
|
1048
|
-
margin-top: 102px;
|
|
1049
|
-
padding: 0;
|
|
1050
|
-
}
|
|
1051
|
-
.vuuLeftNav [data-icon=demo] {
|
|
1052
|
-
--vuu-icon-svg: var(--svg-demo);
|
|
1053
|
-
}
|
|
1054
|
-
.vuuLeftNav [data-icon=tables] {
|
|
1055
|
-
--vuu-icon-svg: var(--svg-tables);
|
|
1056
|
-
}
|
|
1057
|
-
.vuuLeftNav [data-icon=features] {
|
|
1058
|
-
--vuu-icon-svg: var(--svg-features);
|
|
1059
|
-
}
|
|
1060
|
-
.vuuLeftNav [data-icon=layouts] {
|
|
1061
|
-
--vuu-icon-svg: var(--svg-layouts);
|
|
1062
|
-
}
|
|
1063
|
-
@container (max-width: 100px) {
|
|
1064
|
-
.vuuTab {
|
|
1065
|
-
--vuuTab-padding: 0 0 0 42px;
|
|
1066
|
-
}
|
|
1067
|
-
.vuuTab-main {
|
|
1068
|
-
display: none !important;
|
|
1069
|
-
}
|
|
1070
|
-
}
|
|
1071
|
-
.vuuLeftNav-buttonBar {
|
|
1072
|
-
align-items: center;
|
|
1073
|
-
display: flex;
|
|
1074
|
-
flex: 0 0 100px;
|
|
1075
|
-
justify-content: center;
|
|
1076
|
-
}
|
|
1077
|
-
.vuuLeftNav-toggleButton {
|
|
1078
|
-
--vuu-icon-color: var(--vuu-light-text-primary);
|
|
1079
|
-
--vuu-icon-left: 11px;
|
|
1080
|
-
--vuu-icon-top: 10px;
|
|
1081
|
-
--vuu-icon-size: 16px;
|
|
1082
|
-
background-color: var(--salt-navigable-indicator-active);
|
|
1083
|
-
border-width: 0;
|
|
1084
|
-
border-radius: 18px;
|
|
1085
|
-
height: 36px;
|
|
1086
|
-
position: relative;
|
|
1087
|
-
width: 36px;
|
|
1088
|
-
}
|
|
1089
|
-
.vuuLeftNav-toggleButton-open {
|
|
1090
|
-
--vuu-icon-left: 9px;
|
|
1091
|
-
}
|
|
1092
|
-
.vuuLeftNav-drawer {
|
|
1093
|
-
display: flex;
|
|
1094
|
-
padding: 40px 32px 0px 24px;
|
|
1095
|
-
flex-direction: column;
|
|
1096
|
-
align-items: flex-start;
|
|
1097
|
-
flex-shrink: 0;
|
|
1098
|
-
align-self: stretch;
|
|
1099
|
-
background: #FFF;
|
|
1100
|
-
box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.15);
|
|
1101
|
-
height: 100%;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
/* ../vuu-shell/src/session-editing-form/SessionEditingForm.css */
|
|
1105
|
-
.vuuSessionEditingForm {
|
|
1106
|
-
display: flex;
|
|
1107
|
-
flex-direction: column;
|
|
1108
|
-
gap: 3px;
|
|
1109
|
-
min-width: 400px;
|
|
1110
|
-
padding: 6px;
|
|
1111
|
-
}
|
|
1112
|
-
.vuuSessionEditingForm-content {
|
|
1113
|
-
display: flex;
|
|
1114
|
-
flex-direction: column;
|
|
1115
|
-
flex: 1 1 auto;
|
|
1116
|
-
gap: 3px;
|
|
1117
|
-
overflow: auto;
|
|
1118
|
-
}
|
|
1119
|
-
.vuuSessionEditingForm-field {
|
|
1120
|
-
align-items: center;
|
|
1121
|
-
display: flex;
|
|
1122
|
-
height: 32px;
|
|
1123
|
-
}
|
|
1124
|
-
.vuuSessionEditingForm-fieldLabel {
|
|
1125
|
-
flex: 0 0 50%;
|
|
1126
|
-
}
|
|
1127
|
-
.vuuSessionEditingForm-fieldValue {
|
|
1128
|
-
max-width: 50%;
|
|
1129
|
-
}
|
|
1130
|
-
.vuuSessionEditingForm-fieldValue.vuuReadOnly {
|
|
1131
|
-
font-weight: var(--salt-text-label-fontWeight-strong);
|
|
1132
|
-
}
|
|
1133
|
-
.vuuSessionEditingForm-buttonbar {
|
|
1134
|
-
align-items: center;
|
|
1135
|
-
border-top: solid 1px var(--salt-container-primary-borderColor);
|
|
1136
|
-
display: flex;
|
|
1137
|
-
justify-content: flex-end;
|
|
1138
|
-
flex: 0 0 autox;
|
|
1139
|
-
gap: 6px;
|
|
1140
|
-
padding-top: 6px;
|
|
1141
|
-
}
|
|
1142
|
-
.vuuSessionEditingForm-errorBanner {
|
|
1143
|
-
--vuu-icon-left: 3px;
|
|
1144
|
-
--vuu-icon-size: 18px;
|
|
1145
|
-
--vuu-icon-top: 3px;
|
|
1146
|
-
border: solid 1px var(--salt-status-error-borderColor);
|
|
1147
|
-
line-height: 24px;
|
|
1148
|
-
padding: 0 6px 0 26px;
|
|
1149
|
-
position: relative;
|
|
1150
|
-
}
|
|
1151
|
-
|
|
1152
|
-
/* ../vuu-shell/src/shell-layouts/context-panel/ContextPanel.css */
|
|
1153
|
-
.vuuContextPanel {
|
|
1154
|
-
position: relative;
|
|
1155
|
-
transition: width .3s ease-in-out;
|
|
1156
|
-
width: var(--vuu-side-panel-width, 0px) !important;
|
|
1157
|
-
z-index: 1;
|
|
1158
|
-
}
|
|
1159
|
-
.vuuContextPanel-expanded {
|
|
1160
|
-
--vuu-side-panel-width: 300px !important;
|
|
1161
|
-
--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
|
|
1162
|
-
--vuu-side-panel-padding: 24px;
|
|
1163
|
-
}
|
|
1164
|
-
.vuuContextPanel-overlay {
|
|
1165
|
-
width: 0px !important;
|
|
1166
|
-
}
|
|
1167
|
-
.vuuContextPanel-inner {
|
|
1168
|
-
background-color: var(--salt-container-primary-background);
|
|
1169
|
-
box-shadow: var(--vuu-side-panel-shadow, none);
|
|
1170
|
-
display: flex;
|
|
1171
|
-
flex-direction: column;
|
|
1172
|
-
height: 100%;
|
|
1173
|
-
min-width: 0 !important;
|
|
1174
|
-
overflow: auto;
|
|
1175
|
-
padding-bottom: 24px;
|
|
1176
|
-
padding-top: 24px;
|
|
1177
|
-
padding-left: var(--vuu-side-panel-padding, 0);
|
|
1178
|
-
padding-right: var(--vuu-side-panel-padding, 0);
|
|
1179
|
-
position: absolute !important;
|
|
1180
|
-
right: 0;
|
|
1181
|
-
top: 0;
|
|
1182
|
-
transition-property:
|
|
1183
|
-
padding-left,
|
|
1184
|
-
padding-right,
|
|
1185
|
-
width;
|
|
1186
|
-
transition-duration: .3s;
|
|
1187
|
-
transition-timing-function: ease-in-out;
|
|
1188
|
-
width: var(--vuu-side-panel-width, 0px);
|
|
1189
|
-
}
|
|
1190
|
-
.vuuContextPanel-header {
|
|
1191
|
-
align-items: center;
|
|
1192
|
-
display: flex;
|
|
1193
|
-
flex-wrap: nowrap;
|
|
1194
|
-
flex: 0 0 27px !important;
|
|
1195
|
-
justify-content: space-between;
|
|
1196
|
-
}
|
|
1197
|
-
.vuuContextPanel-title {
|
|
1198
|
-
font-size: 20px;
|
|
1199
|
-
font-weight: 700;
|
|
1200
|
-
white-space: nowrap;
|
|
1201
|
-
}
|
|
1202
|
-
.vuuContextPanel-content {
|
|
1203
|
-
flex: 1 1 auto;
|
|
1204
|
-
width: 100%;
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
/* ../vuu-shell/src/shell-layouts/side-panel/SidePanel.css */
|
|
1208
|
-
.vuuShellSidePanel {
|
|
1209
|
-
transition: width .2s ease-out;
|
|
1210
|
-
width: var(--shell-left-nav-size);
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
/* ../vuu-shell/src/shell.css */
|
|
1214
|
-
.vuuShell {
|
|
1215
|
-
background-color: var(--vuu-color-gray-25);
|
|
1216
|
-
height: var(--vuuShell-height, 100vh);
|
|
1217
|
-
width: var(--vuuShell-width, 100vw);
|
|
1218
|
-
}
|
|
1219
|
-
.vuuShell-mainTabs {
|
|
1220
|
-
background: var(--salt-container-primary-background);
|
|
1221
|
-
}
|
|
1222
|
-
.vuuShell-palette {
|
|
1223
|
-
--vuuView-border: none;
|
|
1224
|
-
--vuuView-margin: 0;
|
|
1225
|
-
}
|
|
1226
|
-
.vuuShell-warningPlaceholder {
|
|
1227
|
-
background-color: var(--salt-container-background-high);
|
|
1228
|
-
height: 100%;
|
|
1229
|
-
}
|
|
1230
|
-
.vuuToolbarProxy {
|
|
1231
|
-
background: var(--salt-container-primary-background);
|
|
1232
|
-
}
|
|
1233
|
-
.vuuShell-mainTabs > .vuuTabstrip > .vuuOverflowContainer-wrapContainer {
|
|
1234
|
-
background: var(--vuu-color-gray-25);
|
|
1235
|
-
}
|
|
1236
|
-
.vuuShell-mainTabs {
|
|
1237
|
-
--vuuTab-height: 28px;
|
|
1238
|
-
border: solid 1px #D6D7DA;
|
|
1239
|
-
border-top: none !important;
|
|
1240
|
-
border-radius: 6px;
|
|
1241
|
-
height: 100%;
|
|
1242
|
-
padding: 36px 8px 8px 8px;
|
|
1243
|
-
position: relative;
|
|
1244
|
-
width: 100%;
|
|
1245
|
-
}
|
|
1246
|
-
.vuuShell-mainTabs > .vuuTabstrip {
|
|
1247
|
-
--vuuTabstrip-height: 28px;
|
|
1248
|
-
--saltTabs-tabstrip-height: 29px;
|
|
1249
|
-
--tabstrip-height: 29px;
|
|
1250
|
-
left: -1px;
|
|
1251
|
-
padding-bottom: 7px;
|
|
1252
|
-
position: absolute !important;
|
|
1253
|
-
right: 1px;
|
|
1254
|
-
top: 0;
|
|
1255
|
-
width: calc(100% + 2px) !important;
|
|
1256
|
-
}
|
|
1257
|
-
.vuuShell-mainTabs > .vuuTabHeader {
|
|
1258
|
-
border-bottom: none;
|
|
1259
|
-
}
|
|
1260
|
-
.vuuShell-mainTabs > .vuuTabstrip:before {
|
|
1261
|
-
background-color: transparent;
|
|
1262
|
-
border-radius: 0 6px 0 0;
|
|
1263
|
-
border-left: solid 1px #D6D7DA;
|
|
1264
|
-
border-right: solid 1px #D6D7DA;
|
|
1265
|
-
border-top: solid 1px #D6D7DA;
|
|
1266
|
-
content: "";
|
|
1267
|
-
position: absolute;
|
|
1268
|
-
bottom: 0;
|
|
1269
|
-
left: 0;
|
|
1270
|
-
right: 0;
|
|
1271
|
-
height: 8px;
|
|
1272
|
-
z-index: 1;
|
|
1273
|
-
}
|
|
1274
|
-
.vuuTab.MainTab {
|
|
1275
|
-
--vuuTabMenu-top: -1px;
|
|
1276
|
-
background-color: #F1F2F4;
|
|
1277
|
-
border-color: #D6D7DA;
|
|
1278
|
-
border-radius: 6px 6px 0 0;
|
|
1279
|
-
border-width: 1px;
|
|
1280
|
-
border-style: solid;
|
|
1281
|
-
position: relative;
|
|
1282
|
-
}
|
|
1283
|
-
.MainTab.vuuTab-selected {
|
|
1284
|
-
background-color: white;
|
|
1285
|
-
border-bottom-color: white;
|
|
1286
|
-
z-index: 1;
|
|
1287
|
-
}
|
|
1288
|
-
.MainTab.vuuTab-selected:before {
|
|
1289
|
-
background-color: #6d188b;
|
|
1290
|
-
content: "";
|
|
1291
|
-
position: absolute;
|
|
1292
|
-
height: 100%;
|
|
1293
|
-
left: 0;
|
|
1294
|
-
top: 0;
|
|
1295
|
-
border-radius: 6px 0 0 0;
|
|
1296
|
-
width: 6px;
|
|
1297
|
-
}
|
|
1298
|
-
.MainTab.vuuTab:hover:before {
|
|
1299
|
-
background-color: #F37880;
|
|
1300
|
-
content: "";
|
|
1301
|
-
position: absolute;
|
|
1302
|
-
height: 100%;
|
|
1303
|
-
left: 0;
|
|
1304
|
-
top: 0;
|
|
1305
|
-
border-radius: 6px 0 0 0;
|
|
1306
|
-
width: 6px;
|
|
1307
|
-
}
|
|
1308
|
-
.vuuTab.MainTab .vuuTab-main {
|
|
1309
|
-
background-color: transparent;
|
|
1310
|
-
font-weight: 700;
|
|
1311
|
-
height: 29px;
|
|
1312
|
-
padding: 0 24px;
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
/* ../vuu-shell/src/theme-switch/ThemeSwitch.css */
|
|
1316
|
-
.vuuThemeSwitch {
|
|
1317
|
-
--saltButton-minWidth: 22px;
|
|
1318
|
-
--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>');
|
|
1319
|
-
--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>');
|
|
1320
|
-
padding: 2px;
|
|
1321
|
-
}
|
|
1322
|
-
.salt-density-high .vuuThemeSwitch {
|
|
1323
|
-
--saltButton-minWidth: 16px;
|
|
1324
|
-
--saltButton-width: 18px;
|
|
1325
|
-
--vuuThemeSwitch-iconSize: 16px;
|
|
1326
|
-
}
|
|
1327
|
-
.vuuThemeSwitch [data-icon] {
|
|
1328
|
-
--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px);
|
|
1329
|
-
}
|
|
1330
|
-
.vuuThemeSwitch [data-icon=light] {
|
|
1331
|
-
--vuu-icon-svg: var(--svg-light);
|
|
1332
|
-
}
|
|
1333
|
-
.vuuThemeSwitch [data-icon=dark] {
|
|
1334
|
-
--vuu-icon-svg: var(--svg-dark);
|
|
1335
|
-
}
|
|
1336
|
-
.vuuThemeSwitch .saltToggleButton {
|
|
1337
|
-
height: 20px;
|
|
1338
|
-
width: 20px;
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
/* src/measured-container/MeasuredContainer.css */
|
|
1342
|
-
.vuuMeasuredContainer {
|
|
1343
|
-
flex: var(--vuuMeasuredContainer-flex, none);
|
|
1344
|
-
height: var(--vuuMeasuredContainer-height, var(--measured-css-height));
|
|
1345
|
-
min-height: 0;
|
|
1346
|
-
width: var(--measured-css-width);
|
|
1347
|
-
}
|
|
1348
|
-
|
|
1349
|
-
/* src/overflow-container/OverflowContainer.css */
|
|
1350
|
-
.vuuOverflowContainer {
|
|
1351
|
-
--overflow-borderColor: var(--vuuOverflowContainer-borderColor, none);
|
|
1352
|
-
--overflow-borderStyle: var(--vuuOverflowContainer-borderStyle, none);
|
|
1353
|
-
--overflow-borderWidth: var(--vuuOverflowContainer-borderWidth, 0px);
|
|
1354
|
-
--overflow-border-topWidth: var(--vuuOverflowContainer-borderTopWidth, var(--overflow-borderWidth));
|
|
1355
|
-
--overflow-border-rightWidth: var(--vuuOverflowContainer-borderRightWidth, var(--overflow-borderWidth));
|
|
1356
|
-
--overflow-border-bottomWidth: var(--vuuOverflowContainer-borderBottomWidth, var(--overflow-borderWidth));
|
|
1357
|
-
--overflow-border-leftWidth: var(--vuuOverflowContainer-borderLeftWidth, var(--overflow-borderWidth));
|
|
1358
|
-
--overflow-item-gap: var(--vuuOverflowContainer-gap,2px);
|
|
1359
|
-
--overflow-direction: row;
|
|
1360
|
-
--overflow-height: var(--overflow-item-height);
|
|
1361
|
-
--overflow-top:top:0;
|
|
1362
|
-
--overflow-width: 0px;
|
|
1363
|
-
background-color: var(--vuuOverflowContainer-background);
|
|
1364
|
-
border-color: var(--overflow-borderColor);
|
|
1365
|
-
border-style: var(--overflow-borderStyle);
|
|
1366
|
-
border-top-width: var(--overflow-border-topWidth);
|
|
1367
|
-
border-right-width: var(--overflow-border-rightWidth);
|
|
1368
|
-
border-bottom-width: var(--overflow-border-bottomWidth);
|
|
1369
|
-
border-left-width: var(--overflow-border-leftWidth);
|
|
1370
|
-
height: var(--overflow-container-heightWidth);
|
|
1371
|
-
}
|
|
1372
|
-
.vuuOverflowContainer-horizontal {
|
|
1373
|
-
--item-align: center;
|
|
1374
|
-
--item-margin: 0 var(--overflow-item-gap) 0 var(--overflow-item-gap);
|
|
1375
|
-
}
|
|
1376
|
-
.vuuOverflowContainer-vertical {
|
|
1377
|
-
--item-align: stretch;
|
|
1378
|
-
--overflow-item-height: auto;
|
|
1379
|
-
--item-margin: var(--overflow-item-gap) 0 var(--overflow-item-gap) 0;
|
|
1380
|
-
--overflow-direction: column;
|
|
1381
|
-
--overflow-height: 0;
|
|
1382
|
-
--overflow-left: 0;
|
|
1383
|
-
--overflow-top: 100%;
|
|
1384
|
-
--overflow-width: auto;
|
|
1385
|
-
}
|
|
1386
|
-
.vuuOverflowContainer-wrapContainer {
|
|
1387
|
-
--border: calc(var(--overflow-border-topWidth) + var(--overflow-border-bottomWidth));
|
|
1388
|
-
--overflow-item-height: calc(var(--overflow-container-height) - var(--border));
|
|
1389
|
-
align-items: var(--item-align);
|
|
1390
|
-
display: flex;
|
|
1391
|
-
flex-direction: var(--overflow-direction);
|
|
1392
|
-
flex-wrap: wrap;
|
|
1393
|
-
height: var(--overflow-item-height);
|
|
1394
|
-
justify-content: var(--vuuOverflowContainer-justifyContent, flex-start);
|
|
1395
|
-
min-width: var(--vuuOverflowContainer-minWidth, 44px);
|
|
1396
|
-
overflow: hidden;
|
|
1397
|
-
position: relative;
|
|
1398
|
-
width: 100%;
|
|
1399
|
-
}
|
|
1400
|
-
.vuuOverflowContainer-wrapContainer-overflowed {
|
|
1401
|
-
--overflow-order: 2;
|
|
1402
|
-
--overflow-left: auto;
|
|
1403
|
-
--overflow-position: relative;
|
|
1404
|
-
--overflow-width: auto;
|
|
1405
|
-
}
|
|
1406
|
-
.vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed {
|
|
1407
|
-
--overflow-height: auto;
|
|
1408
|
-
}
|
|
1409
|
-
.vuuOverflowContainer-item {
|
|
1410
|
-
align-items: inherit;
|
|
1411
|
-
display: flex;
|
|
1412
|
-
order: 1;
|
|
1413
|
-
position: relative;
|
|
1414
|
-
height: var(--overflow-item-height);
|
|
1415
|
-
margin: var(--item-margin);
|
|
1416
|
-
}
|
|
1417
|
-
.vuuOverflowContainer-item[data-align=right] {
|
|
1418
|
-
margin-left: auto;
|
|
1419
|
-
}
|
|
1420
|
-
.vuuOverflowContainer-item.wrapped {
|
|
1421
|
-
--overflow-item-bg: #ccc;
|
|
1422
|
-
order: 3;
|
|
1423
|
-
}
|
|
1424
|
-
.vuuOverflowContainer-item.vuuDraggable-dragAway,
|
|
1425
|
-
.vuuOverflowContainer-item:has(.vuuDraggable-dragAway) {
|
|
1426
|
-
display: none;
|
|
1427
|
-
}
|
|
1428
|
-
.vuuOverflowContainer-item.vuuDropTarget-settling {
|
|
1429
|
-
visibility: hidden;
|
|
1430
|
-
}
|
|
1431
|
-
.vuuOverflowContainer-OverflowIndicator {
|
|
1432
|
-
align-items: center;
|
|
1433
|
-
background-color: transparent;
|
|
1434
|
-
display: flex;
|
|
1435
|
-
height: var(--overflow-height);
|
|
1436
|
-
order: var(--overflow-order, 99);
|
|
1437
|
-
overflow: hidden;
|
|
1438
|
-
left: var(--overflow-left, 100%);
|
|
1439
|
-
top: var(--overflow-top, 100%);
|
|
1440
|
-
position: var(--overflow-position, absolute);
|
|
1441
|
-
width: var(--overflow-width);
|
|
1442
|
-
}
|
|
1443
|
-
.vuuDraggable-vuuOverflowContainer {
|
|
1444
|
-
align-items: center;
|
|
1445
|
-
display: flex;
|
|
1446
|
-
height: 44px;
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
/* src/palette/Palette.css */
|
|
1450
|
-
.vuuPalette {
|
|
1451
|
-
--vuuList-borderStyle: none;
|
|
1452
|
-
}
|
|
1453
|
-
.vuuPalette-horizontal {
|
|
1454
|
-
align-items: center;
|
|
1455
|
-
display: flex;
|
|
1456
|
-
}
|
|
1457
|
-
.vuuPaletteItem {
|
|
1458
|
-
--vuu-icon-color: var(--salt-text-primary-foreground);
|
|
1459
|
-
--vuu-icon-left: 0;
|
|
1460
|
-
--vuu-icon-size: 16px;
|
|
1461
|
-
--vuu-icon-top: 11px;
|
|
1462
|
-
--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);
|
|
1463
|
-
border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
|
|
1464
|
-
padding-left: 12px;
|
|
1465
|
-
font-size: 12px;
|
|
1466
|
-
font-weight: 600;
|
|
1467
|
-
}
|
|
1468
|
-
.vuuSimpleDraggableWrapper > .vuuPaletteItem {
|
|
1469
|
-
--vuu-icon-color: var(--salt-selectable-foreground);
|
|
1470
|
-
}
|
|
1471
|
-
.salt-theme .vuuPaletteItem {
|
|
1472
|
-
font-size: 11px;
|
|
1473
|
-
font-weight: normal;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
/* src/stack/Stack.css */
|
|
1477
|
-
.Tabs {
|
|
1478
|
-
display: flex;
|
|
1479
|
-
box-sizing: border-box;
|
|
1480
|
-
flex-direction: column;
|
|
1481
|
-
}
|
|
1482
|
-
.Tabs-horizontal {
|
|
1483
|
-
--vuu-tabs-border-style: none solid none none;
|
|
1484
|
-
flex-direction: row;
|
|
1485
|
-
}
|
|
1486
|
-
.Tabs .Toolbar:before {
|
|
1487
|
-
left: 0;
|
|
1488
|
-
width: 100%;
|
|
1489
|
-
bottom: 0;
|
|
1490
|
-
height: 1px;
|
|
1491
|
-
content: "";
|
|
1492
|
-
position: absolute;
|
|
1493
|
-
background: var(--grey60);
|
|
1494
|
-
}
|
|
1495
|
-
.Tabs-tabPanel {
|
|
1496
|
-
flex: 1;
|
|
1497
|
-
}
|
|
1498
|
-
.Tabs-tabPanel > * {
|
|
1499
|
-
height: 100%;
|
|
1500
|
-
}
|
|
1501
|
-
.vuuTabHeader {
|
|
1502
|
-
--saltTabs-activationIndicator-background: transparent;
|
|
1503
|
-
--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);
|
|
1504
|
-
border-color: var(--salt-container-primary-borderColor);
|
|
1505
|
-
border-style: var(--vuu-tabs-border-style, none none solid none);
|
|
1506
|
-
border-width: 1px;
|
|
1507
|
-
}
|
|
1508
|
-
.vuuTabHeader + .vuuView > .vuuHeader {
|
|
1509
|
-
height: 0;
|
|
1510
|
-
overflow: hidden;
|
|
1511
|
-
}
|
|
1512
|
-
.Layout-svg-button {
|
|
1513
|
-
--spacing-medium: 5px;
|
|
1514
|
-
}
|
|
1515
|
-
|
|
1516
|
-
/* src/toolbar/Toolbar.css */
|
|
1517
|
-
.vuuToolbar {
|
|
1518
|
-
--toolbar-height: var(--vuuToolbar-height, 36px);
|
|
1519
|
-
--toolbar-item-height: var(--vuuToolbarItem-height, 100%);
|
|
1520
|
-
--vuuOverflowContainer-background: var(--vuuToolbar-background);
|
|
1521
|
-
--vuuOverflowContainer-borderColor: var(--vuuToolbar-borderColor);
|
|
1522
|
-
--vuuOverflowContainer-borderStyle: var(--vuuToolbar-borderStyle);
|
|
1523
|
-
--vuuOverflowContainer-borderWidth: var(--vuuToolbar-borderWidth);
|
|
1524
|
-
height: var(--toolbar-height);
|
|
1525
|
-
}
|
|
1526
|
-
.vuuToolbar-alignCenter {
|
|
1527
|
-
--vuuOverflowContainer-justifyContent: center;
|
|
1528
|
-
}
|
|
1529
|
-
.vuuToolbar-alignEnd {
|
|
1530
|
-
--vuuOverflowContainer-justifyContent: flex-end;
|
|
1531
|
-
}
|
|
1532
|
-
.vuuToolbarItem {
|
|
1533
|
-
height: var(--toolbar-item-height);
|
|
1534
|
-
}
|
|
1535
|
-
.vuuToolbar-withSeparators .vuuOverflowContainer-item:not(:first-child):before {
|
|
1536
|
-
content: "";
|
|
1537
|
-
position: absolute;
|
|
1538
|
-
left: calc(-1 * var(--overflow-item-gap));
|
|
1539
|
-
top: calc((var(--toolbar-height) - var(--toolbar-item-height)) /2);
|
|
1540
|
-
width: 1px;
|
|
1541
|
-
height: var(--toolbar-item-height);
|
|
1542
|
-
background-color: var(--vuu-color-gray-05);
|
|
1543
|
-
}
|
|
1544
|
-
.vuuToolbarItem.vuuFocusVisible {
|
|
1545
|
-
outline-color: var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));
|
|
1546
|
-
outline-style: dashed;
|
|
1547
|
-
outline-width: 1px;
|
|
1548
|
-
outline-offset: 0px;
|
|
1549
|
-
}
|
|
1550
|
-
.vuuPopupMenu:focus,
|
|
1551
|
-
.vuuToolbarItem:focus,
|
|
1552
|
-
.vuuToolbarItem:focus-visible {
|
|
1553
|
-
outline-color: var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));
|
|
1554
|
-
outline-style: dashed;
|
|
1555
|
-
outline-width: 1px;
|
|
1556
|
-
outline-offset: 0px;
|
|
1557
|
-
}
|
|
1558
|
-
|
|
1559
|
-
/* src/tools/devtools-box/layout-configurator.css */
|
|
1560
|
-
[data-design-mode=true] .Component {
|
|
1561
|
-
filter: grayscale(100%);
|
|
1562
|
-
opacity: 0.4;
|
|
1563
|
-
}
|
|
1564
|
-
[data-design-mode=true] .Component:after {
|
|
1565
|
-
color: black;
|
|
1566
|
-
content: "Component";
|
|
1567
|
-
height: 12px;
|
|
1568
|
-
background-color: yellow;
|
|
1569
|
-
}
|
|
1570
|
-
.LayoutConfigurator {
|
|
1571
|
-
--margin-color: #f3cea5;
|
|
1572
|
-
--border-color: #fddda0;
|
|
1573
|
-
--padding-color: #c6d092;
|
|
1574
|
-
--content-color: #8cb6c0;
|
|
1575
|
-
display: flex;
|
|
1576
|
-
flex-direction: column;
|
|
1577
|
-
align-items: stretch;
|
|
1578
|
-
background-color: var(--margin-color);
|
|
1579
|
-
}
|
|
1580
|
-
.LayoutConfigurator .layout-outer {
|
|
1581
|
-
flex: 1 1 auto;
|
|
1582
|
-
display: flex;
|
|
1583
|
-
flex-direction: column;
|
|
1584
|
-
align-items: stretch;
|
|
1585
|
-
}
|
|
1586
|
-
.LayoutBox {
|
|
1587
|
-
--hw-control-font-size: 13px;
|
|
1588
|
-
--hw-text-input-bg: rgba(255, 255, 255, 0.3);
|
|
1589
|
-
--hwTextInput-padding: 3px;
|
|
1590
|
-
--hw-text-input-position: absolute;
|
|
1591
|
-
--hwTextInput-width: 30px;
|
|
1592
|
-
flex: 1 1 auto;
|
|
1593
|
-
}
|
|
1594
|
-
.LayoutBox > .layout-top {
|
|
1595
|
-
flex: 0 0 40px;
|
|
1596
|
-
padding-left: 12px;
|
|
1597
|
-
display: flex;
|
|
1598
|
-
flex-direction: row;
|
|
1599
|
-
align-items: center;
|
|
1600
|
-
position: relative;
|
|
1601
|
-
}
|
|
1602
|
-
.LayoutBox > .layout-bottom {
|
|
1603
|
-
flex: 0 0 40px;
|
|
1604
|
-
position: relative;
|
|
1605
|
-
display: flex;
|
|
1606
|
-
flex-direction: row;
|
|
1607
|
-
align-items: center;
|
|
1608
|
-
}
|
|
1609
|
-
.LayoutBox > .layout-inner > .layout-right,
|
|
1610
|
-
.LayoutBox > .layout-inner > .layout-left {
|
|
1611
|
-
flex: 0 0 40px;
|
|
1612
|
-
display: flex;
|
|
1613
|
-
flex-direction: column;
|
|
1614
|
-
justify-content: center;
|
|
1615
|
-
align-items: center;
|
|
1616
|
-
}
|
|
1617
|
-
.layout-top,
|
|
1618
|
-
.layout-bottom {
|
|
1619
|
-
--hw-text-input-margin: 0 0 0 -15px;
|
|
1620
|
-
}
|
|
1621
|
-
.layout-top > .layout-input,
|
|
1622
|
-
.layout-bottom > .layout-input {
|
|
1623
|
-
left: 50%;
|
|
1624
|
-
}
|
|
1625
|
-
.LayoutBox > .layout-inner {
|
|
1626
|
-
flex: 1 1 auto;
|
|
1627
|
-
display: flex;
|
|
1628
|
-
flex-direction: row;
|
|
1629
|
-
align-items: stretch;
|
|
1630
|
-
}
|
|
1631
|
-
.LayoutBox.layout-margin {
|
|
1632
|
-
background-color: var(--margin-color);
|
|
1633
|
-
border: dashed 2px black;
|
|
1634
|
-
}
|
|
1635
|
-
.LayoutBox.layout-border {
|
|
1636
|
-
background-color: var(--border-color);
|
|
1637
|
-
border: solid 2px black;
|
|
1638
|
-
}
|
|
1639
|
-
.LayoutBox.layout-padding {
|
|
1640
|
-
background-color: var(--padding-color);
|
|
1641
|
-
border: dashed 2px black;
|
|
1642
|
-
}
|
|
1643
|
-
.LayoutBox .layout-content {
|
|
1644
|
-
flex: 1 1 auto;
|
|
1645
|
-
background-color: var(--content-color);
|
|
1646
|
-
border: solid 2px #808080;
|
|
1647
|
-
}
|
|
1648
|
-
.LayoutBox .layout-title {
|
|
1649
|
-
color: #161616;
|
|
1650
|
-
font-size: 11px;
|
|
1651
|
-
left: 4px;
|
|
1652
|
-
line-height: 15px;
|
|
1653
|
-
position: absolute;
|
|
1654
|
-
top: 1px;
|
|
1655
|
-
}
|
|
1656
|
-
|
|
1657
|
-
/* src/tools/devtools-tree/layout-tree-viewer.css */
|
|
1658
|
-
.hwLayoutTreeViewer {
|
|
1659
|
-
}
|
|
1660
|
-
.hwLayoutTreeNode {
|
|
1661
|
-
cursor: default;
|
|
1662
|
-
}
|
|
1663
|
-
.hwLayoutTreeNode:hover {
|
|
1664
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
1665
|
-
}
|
|
1666
|
-
.hwLayoutTreeNode[aria-selected=true] {
|
|
1667
|
-
background-color: cornflowerblue;
|
|
1668
|
-
color: white;
|
|
1669
|
-
}
|
|
1
|
+
.vuuDrawer{--drawer-leading-edge-border: solid 1px var(--salt-container-primary-borderColor, none);--vuu-close-icon-svg: var(--svg-chevron-double-right);transition:flex-basis;transition-duration:var(--drawer-transition-duration);position:relative;z-index:1;flex-basis:0;flex-grow:1;flex-shrink:1;min-width:0;min-height:0;display:flex}.vuuDrawer-peekaboo{flex-basis:var(--drawer-peek-size);flex-grow:0;flex-shrink:0}.vuuDrawer-inline.vuuDrawer-open{flex-basis:var(--drawer-size);flex-grow:0;flex-shrink:0}.vuuDrawer-liner{background-color:var(--drawer-bg);overflow:hidden;position:relative}.vuuDrawer-content{height:100%;overflow:hidden;position:absolute;top:0;right:var(--drawer-peek-size);transition:right;transition-duration:var(--drawer-transition-duration);width:100%;flex:1 1 100%}.vuuDrawer-open .vuuDrawer-content{right:0}.vuuDrawer-left{border-right:var(--drawer-leading-edge-border)}.vuuDrawer-right{border-left:var(--drawer-leading-edge-border)}.vuuDrawer-top{border-bottom:var(--drawer-leading-edge-border)}.vuuDrawer-bottom{border-top:var(--drawer-leading-edge-border)}.vuuDrawer-left .vuuDrawer-liner,.vuuDrawer-right .vuuDrawer-liner{height:100%;transition:width}.vuuDrawer-top .vuuDrawer-liner,.vuuDrawer-bottom .vuuDrawer-liner{width:100%;transition:height}.vuuDrawer-inline .vuuDrawer-liner{width:100%;height:100%}.vuuDrawer-over .vuuDrawer-liner{position:absolute;transition-duration:.4s}.vuuDrawer-over.vuuDrawer-left .vuuDrawer-liner{top:0;left:0;width:0}.vuuDrawer-over.vuuDrawer-right .vuuDrawer-liner{top:0;right:0;width:0}.vuuDrawer-over.vuuDrawer-top .vuuDrawer-liner{height:0;top:0;left:0}.vuuDrawer-over.vuuDrawer-bottom .vuuDrawer-liner{bottom:0;height:0;left:0}.vuuDrawer-left.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,.vuuDrawer-right.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner{width:var(--drawer-peek-size)}.vuuDrawer-top.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner,.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-peekaboo .vuuDrawer-liner{height:var(--drawer-peek-size)}.vuuDrawer-left.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,.vuuDrawer-right.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner{width:var(--drawer-size)}.vuuDrawer-top.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner,.vuuDrawer-bottom.vuuDrawer-over.vuuDrawer-open .vuuDrawer-liner{height:var(--drawer-size)}.vuuDrawer-top,.vuuDrawer-left{order:0}.vuuDrawer-bottom,.vuuDrawer-right{order:99}.vuuDrawer-left,.vuuDrawer-right{flex-direction:column}.vuuToggleButton-container{--saltButton-height: 28px;--saltButton-width: 28px;--vuu-icon-size: 12px;flex:0 0 28px}.vuuDrawer-open{--vuu-close-icon-svg: var(--svg-chevron-double-left)}.vuuDockLayout{--chest-bg: var(--hw-chest-bg, inherit);--drawer-bg: var(--hw-drawer-bg, inherit);--drawer-size: var(--hw-drawer-size, 200px);--drawer-peek-size: var(--hw-drawer-peek-size, 32px);--drawer-transition-duration: var(--hw-drawer-transition-duration, .4s);background-color:var(--chest-bg);display:flex}.vuuDockLayout-horizontal{flex-direction:row}.vuuDockLayout-vertical{flex-direction:column}.vuuDockLayout-content{background-color:var(--chest-bg);flex-grow:1;flex-shrink:1;overflow:hidden;display:flex;align-items:center;justify-content:center}.vuuDockLayout-horizontal .vuuDockLayout-content,.vuuDockLayout-vertical .vuuDockLayout-content{flex-basis:100%}.vuuDropMenu{margin-left:-50%;margin-bottom:-50%;background-color:#fff;border:solid 1px var(--grey40);display:inline-flex;justify-content:center;align-items:center;padding:3px;border-radius:3px}.vuuDropMenu-left,.vuuDropMenu-right{flex-direction:column}.vuuDropMenu-bottom{transform:translateY(-30px)}.vuuDropMenu-right{transform:translate(-20px)}.vuuDropMenu-item{--vuu-icon-size: 20px;width:32px;height:32px;background-color:var(--grey20);border-bottom:solid 1px var(--grey40);cursor:pointer;display:flex;align-items:center;justify-content:center}.vuuDropMenu-item .Icon{transform:scale(1.25);transform-origin:center center}.vuuDropMenu-left .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(180deg);transform-origin:center center}.vuuDropMenu-top .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(270deg);transform-origin:center center}.vuuDropMenu-bottom .vuuDropMenu-item .hwIcon{transform:scale(1.25) rotate(90deg);transform-origin:center center}.vuuDropMenu-item .hwIcon-path{fill:gray}.vuuDropMenu-item:hover{background-color:#c8c8c880}.vuuDropMenu-item:hover .hwIcon-path-2{fill:#00f}.vuuDropMenu-item:last-child{border-bottom:none}#hw-drag-canvas{visibility:hidden;z-index:10;position:absolute;top:0px;left:0;right:0;bottom:0;background-color:transparent}#hw-drag-canvas>svg{position:absolute}.drawing #hw-drag-canvas{visibility:visible}path.drop-target{stroke:#00f;stroke-width:4px;fill:transparent}path.drop-target.centre{stroke:red}#vuu-drop-outline{fill:#0000ff4d;stroke:none;stroke-dasharray:4 2}#hw-drop-guides{fill:none;stroke:#0000004d;stroke-dasharray:2 3}.DraggableLayout{display:inline-block;outline:none}[data-dragging=true]{position:absolute!important;z-index:100}.vuuSimpleDraggableWrapper{background-color:#fff;box-shadow:0 6px 10px #0003}.vuuSimpleDraggableWrapper>*{height:100%;width:100%}.vuuLayoutStartPanel{align-items:center;flex:0 0 auto!important;display:flex;flex-direction:column;font-weight:700;gap:12px}.vuuLayoutStartPanel-title{color:var(--vuu-color-gray-80);font-size:28px;line-height:1.5;text-align:center}.vuuLayoutStartPanel-text{color:var(--vuu-color-gray-50);font-size:18px;line-height:1.5;max-width:460px}.vuuLayoutStartPanel-addButton{--vuu-icon-size: 20px;--saltButton-borderRadius: 28px !important;--saltButton-height: 56px;--saltButton-width: 56px;box-shadow:0 4px 4px #00000040}.vuuPlaceholder{--vuuView-justify: center;align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:1}.vuuPlaceholder-nested{background-color:red}.vuuPlaceholder-shim{flex-grow:0;flex-shrink:0}.vuuSplitter{--splitter-background: var(--salt-separable-secondary-borderColor);--splitter-borderColor: var(--salt-separable-secondary-borderColor);--splitter-borderStyle: none;--splitter-borderWidth: 0;--splitter-size: 3px;align-items:center;background-color:var(--splitter-background);border-color:var(--splitter-borderColor);border-style:var(--splitter-borderStyle);border-width:var(--splitter-borderWidth);box-sizing:border-box;display:flex;justify-content:center;position:relative;outline:none;z-index:1}.vuuSplitter:hover,.vuuSplitter-active{--splitter-background: var(--salt-separable-primary-borderColor)}.vuuSplitter-column{cursor:ns-resize;height:var(--splitter-size)}.vuuSplitter:not(.vuuSplitter-column){cursor:ew-resize;width:var(--splitter-size)}.vuuSplitter:before{border:none;border-radius:0;content:"";display:block;padding:0}.vuuSplitter-grab-zone{position:absolute;background-color:#ff000003;cursor:inherit}.vuuSplitter-column .vuuSplitter-grab-zone{left:0;right:0;top:-5px;bottom:-5px}.vuuSplitter:not(.vuuSplitter-column) .vuuSplitter-grab-zone{left:-5px;right:-5px;top:0;bottom:0}.vuuSplitter-active:not(.vuuSplitter-column) .vuuSplitter-grab-zone{background-color:#ffffff0d;left:-150px;right:-150px}.vuuSplitter:not(.vuuSplitter-column):before{width:1px;height:10px;background:linear-gradient(to bottom,var(--grey900) 10%,transparent 10%,transparent 30%,var(--grey900) 30%,var(--grey900) 40%,transparent 40%,transparent 60%,var(--grey900) 60%,var(--grey900) 70%,transparent 70%,transparent 90%,var(--grey900) 90%)}.vuuSplitter-active.vuuSplitter-column:before{background:linear-gradient(to right,#ffffff 10%,transparent 10%,transparent 30%,#ffffff 30%,#ffffff 40%,transparent 40%,transparent 60%,#ffffff 60%,#ffffff 70%,transparent 70%,transparent 90%,#ffffff 90%)}.vuuSplitter-active:not(.vuuSplitter-column):before{background:linear-gradient(to bottom,#ffffff 10%,transparent 10%,transparent 30%,#ffffff 30%,#ffffff 40%,transparent 40%,transparent 60%,#ffffff 60%,#ffffff 70%,transparent 70%,transparent 90%,#ffffff 90%)}.vuuSplitter-column:before{width:10px;height:1px;background:linear-gradient(to right,var(--grey900) 10%,transparent 10%,transparent 30%,var(--grey900) 30%,var(--grey900) 40%,transparent 40%,transparent 60%,var(--grey900) 60%,var(--grey900) 70%,transparent 70%,transparent 90%,var(--grey900) 90%)}:root{--hw-space-unit: 4px;--hw-flex-gap: 3;--hw-fluid-grid-col-bg: rgba(200, 200, 200, .3)}.hwFlexbox{background-color:var(--container1-background);box-sizing:border-box;display:flex;gap:calc(var(--spacing) * var(--space));min-height:0;min-width:0;overflow:hidden}.hwFlexbox-column{flex-direction:column}.hwFlexbox-row{flex-direction:row}.hwFlexbox>.Splitter{flex-basis:auto;flex-grow:0;flex-shrink:0}.hwFlexbox.full-page{height:100vh;width:100vw}.flex-fill{border-color:red;flex:0;flex-grow:1;flex-shrink:1}.vuuView.flex-fill{border-color:red}:root{--hw-space-unit: 4px;--hw-fluid-grid-col-bg: rgba(252, 209, 232, .7)}.hwFluidGrid{--gap: var(--gutter-width);display:flex;gap:calc(var(--grid-gap) * var(--hw-space-unit));flex-wrap:wrap;padding:0}.hwFluidGrid>*{--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));--gutter-count: calc(var(--parent-col-count) - 1);--total-gutter-width: calc(var(--gutter-count) * var(--gutter-width));--available-width: calc(100% - var(--total-gutter-width));flex-basis:0;flex-grow:1;flex-shrink:1;position:relative}.hwFluidGrid>*:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dashed 2px blue}.hwFluidGrid>[data-xs]{--internal-gutter-count: calc(var(--col-span) - 1);--percent-width: calc(var(--col-span) / var(--parent-col-count));--internal-gutter-width: calc(var(--internal-gutter-count) * var(--gutter-width));flex-basis:calc(var(--available-width) * var(--percent-width) + var(--internal-gutter-width));flex-grow:0}.hwFluidGrid>[data-xs="1"]{--col-span: 1}.hwFluidGrid>[data-xs="2"]{--col-span: 2}.hwFluidGrid>[data-xs="3"]{--col-span: 3}.hwFluidGrid>[data-xs="4"]{--col-span: 4}.hwFluidGrid>[data-xs="6"]{--col-span: 6}.hwFluidGrid>[data-xs="8"]{--col-span: 8}.hwFluidGrid>[data-xs="9"]{--col-span: 9}.hwFluidGrid>[data-xs="10"]{--col-span: 10}.hwFluidGrid>[data-xs="11"]{--col-span: 11}.hwFluidGrid>[data-xs="12"]{--col-span: 12}@media (min-width: 600px){.hwFluidGrid>[data-sm="1"]{--col-span: 1}.hwFluidGrid>[data-sm="2"]{--col-span: 2}.hwFluidGrid>[data-sm="3"]{--col-span: 3}.hwFluidGrid>[data-sm="4"]{--col-span: 4}.hwFluidGrid>[data-sm="6"]{--col-span: 6}.hwFluidGrid>[data-sm="8"]{--col-span: 8}.hwFluidGrid>[data-sm="9"]{--col-span: 9}.hwFluidGrid>[data-sm="10"]{--col-span: 10}.hwFluidGrid>[data-sm="11"]{--col-span: 11}.hwFluidGrid>[data-sm="12"]{--col-span: 12}}.hwFluidGrid-show-grid{--gutter-width: calc(var(--hw-flex-gap) * var(--hw-space-unit));--grid-gutter-count: calc(var(--grid-col-count, var(--parent-col-count)) - 1);--grid-total-gutter-width: calc(var(--grid-gutter-count) * var(--gutter-width));--grid-available-width: calc(100% - var(--grid-total-gutter-width));--grid-percent-width: calc(1 / var(--grid-col-count, var(--parent-col-count)));--column-width: calc(var(--grid-available-width) * var(--grid-percent-width));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)))}.vuuView{border-color:var(--vuuView-borderColor, var(--salt-container-primary-borderColor));border-width:var(--vuuView-borderWidth, 1px);border-style:var(--vuuView-borderStyle, none);display:flex;flex-direction:column;margin:var(--vuuView-margin, 0px);min-height:50px;min-width:50px;outline:none;overflow:hidden;position:relative}.vuuView.focus-visible:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border:dotted cornflowerblue 2px}.vuuView.dragging{box-shadow:0 6px 12px #0000002d}.vuuView-main{display:flex;flex-direction:var(--vuuView-flexDirection, column);flex-wrap:var(--vuuView-flex-wrap, nowrap);flex:1;justify-content:var(--vuuView-justify, flex-start);overflow:hidden;position:relative}.vuuView-main>*{flex-basis:auto;flex-grow:var(--vuuView-flex-grow, 1);flex-shrink:var(--vuuView-flex-shrink, 1)}.vuuView-collapsed .vuuView-main{display:none}.vuuView-collapsed+.Splitter{display:none}.vuuView-collapsed .Toolbar-vertical{border-right:solid 1px var(--grey40)}.vuuView-collapsed .Toolbar-vertical .toolbar-title{display:none}.vuuHeader{--saltButton-height: 24px;--saltButton-width: 24px}.salt-density-high .vuuHeader{--saltToolbarField-marginTop: 0}.vuuLoginPanel{--saltInput-paddingLeft: 8px;--login-width: 856px;--login-height: 550px;--hwTextInput-border: solid 1px #ccc;--hwTextInput-height: 28px;--hwTextInput-padding: 0 12px;--hwTextInput-width: 100%;--login-row-height: 60px;border-radius:16px;box-shadow:0 24px 44px #00000040;display:flex;height:var(--login-height);margin:0 auto;width:var(--login-width)}.vuuLoginPanel .saltInput-primary{--saltInput-height: 36px}.vuuLoginPanel-title{justify-content:center;font-size:28px;font-weight:400;display:flex}.vuuLoginPanel-branding{align-items:center;background-color:var(--vuu-color-purple-50);border-radius:16px 0 0 16px;display:flex;flex:0 0 368px;flex-direction:column;gap:40px;justify-content:center;padding:40px 100px}.vuuLoginPanel-form{background-color:#fff;border-radius:0 16px 16px 0;display:flex;flex:1 1 auto;flex-direction:column;gap:32px;justify-content:center;padding:0 40px}.vuuLoginPanel-password{--vuu-icon-size: 16px}.vuuLoginPanel-appName{color:#fff;font-size:18px;font-weight:700;text-transform:uppercase}.vuuLoginPanel-login{--saltButton-height: 36px;--saltButton-borderRadius: 6px;width:100%}.vuuAppHeader{--saltButton-borderRadius: 6px;--saltButton-text-color: var(--vuu-color-gray-50);--saltButton-padding: 12px;--vuuToolbarItem-height: 26px;--vuuOverflowContainer-gap: 8px;--vuu-icon-color: var(--vuu-color-gray-45);--vuu-icon-size: 16px;--vuuToolbar-background: var(--vuuAppHeader-background, var(--vuu-color-gray-28));--vuuToolbar-borderWidth: 1px;--vuuToolbar-borderStyle: solid;--vuuToolbar-borderColor: var(--vuu-color-gray-30);align-items:center;display:flex;justify-content:flex-end}.vuu-theme .vuuAppHeader{border-radius:8px;margin-bottom:8px}.vuuStatus-container{display:flex}.vuuStatus-text{align-self:center}.vuuStatus{--vuu-icon-height: 18px;--vuu-icon-padding: var(--vuuStatus-padding, 6px);--vuu-icon-width: var(--vuuStatus-width, auto);--vuu-icon-min-width: var(--vuuStatus-min-width, 20px);align-items:center;display:inline-flex;height:var(--vuu-icon-height);justify-content:center;min-width:var(--vuu-icon-min-width);padding:0 var(--vuu-icon-padding);width:var(--vuu-icon-width);position:relative}.vuuStatus[data-icon]:after{inset:0 0 0 0;content:"";box-shadow:0 0 #000;position:absolute;mask:var(--vuu-icon-svg) center center/20px 20px no-repeat;-webkit-mask:var(--vuu-icon-svg) center center/20px 20px no-repeat}.vuuActiveStatus:after{--vuu-icon-svg: var(--svg-active-status);background-color:#0f0}.vuuConnectingStatus:after{--vuu-icon-svg: var(--svg-connecting-status);background-color:orange;transform:scale(1);animation:infinite pulse 1s}.vuuDisconnectedStatus:after{--vuu-icon-svg: var(--svg-disconnected-status);background-color:red;transform:scale(1);animation:infinite pulse .5s}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 #000000b3}70%{transform:scale(1);box-shadow:0 0 #0000}to{transform:scale(.95);box-shadow:0 0 #0000}}.saveLayoutPanel{--salt-selectable-foreground-hover: #6d18bdc3;--salt-selectable-foreground-selected: #6D18BD;--salt-selectable-borderColor-selected: #6D18BD;--saltInputLegacy-fontSize: 12px;--salt-text-label-fontSize: 10px;--saltFormFieldLegacy-label-paddingLeft: 0;--saltFormField-label-fontWeight: 400;--saltText-color: var(--text-secondary-foreground, #606477)}.saveLayoutPanel-panelContainer{display:flex;flex-direction:column;align-items:flex-start}.saveLayoutPanel-panelContent{display:flex;align-items:flex-start;gap:32px}.saveLayoutPanel-formContainer{display:flex;width:217px;flex-direction:column;align-items:flex-start;gap:16px}.saveLayoutPanel-formField{display:flex;flex-direction:column;gap:1px}.saveLayoutPanel-inputText{border:none;color:var(--light-text-primary, #15171B);font-family:Nunito Sans A-Variant,serif;font-feature-settings:"ss02" on,"ss01" on,"salt" on,"liga" off;font-size:12px;font-weight:400;line-height:16px;padding-left:4px;width:100%;outline:none}.saveLayoutPanel-settingsGroup{display:flex;flex-wrap:wrap;align-items:flex-end;gap:10px;width:100%;line-height:16px}.saveLayoutPanel-screenshotContainer{display:flex;width:304px;height:208px;padding:11px 15.5px;justify-content:center;align-items:center;border:1px solid #E8E8E8;background:var(--dark-text-primary, #FFF)}.saveLayoutPanel-screenshot{display:flex;justify-content:center;align-items:center;background:lightgray 50% / cover no-repeat;width:273px;height:186px;flex-shrink:0}.saveLayoutPanel-buttonsContainer{display:flex;justify-content:flex-end;align-items:flex-start;align-self:stretch;padding-top:24px;gap:8px}.saveLayoutPanel-cancelButton,.saveLayoutPanel-saveButton{display:flex;height:fit-content;padding:4px 8px;align-items:flex-start;gap:8px;border-radius:6px;font-size:12px;font-style:normal;font-weight:700;line-height:133.333%;letter-spacing:.48px;text-transform:uppercase}.saveLayoutPanel-cancelButton{color:var(--actionable-primary-foreground-default, #606477);background:var(--actionable-primary-background-default, #FFF)}.saveLayoutPanel-saveButton{background:#6D18BD;border-color:#6d18bd;color:#fff}.saveLayoutPanel-saveButton.saltButton:disabled{background:#6D18BD;border-color:#6d18bd;color:#fff;opacity:.3}.saveLayoutPanel-saveButton.saltButton:hover{background:#F37880;border-color:#f37880;color:#fff}.vuuLayoutList{--vuuMeasuredContainer-flex: 1 1 1px;align-self:stretch;display:flex;flex-direction:column;height:100%;overflow:hidden}.vuuLayoutList-header{color:var(--light-text-primary, #15171B);flex:0 0 47px;font-weight:700;letter-spacing:.48px;text-transform:uppercase;display:flex;padding:16px 0;border-bottom:1px solid rgba(119,124,148,.1);line-height:200%}.vuuLayoutList-groupName{display:flex;padding-top:24px;color:var(--light-text-secondary, #606477);font-weight:700;letter-spacing:.48px;line-height:200%}.vuuLayoutList-layoutContainer{display:flex;align-items:center;gap:8px;padding:8px 0;flex:1 1 auto;cursor:pointer}.vuuLayoutList-layoutName{color:var(--light-text-primary, #15171B);font-weight:600;line-height:133.333%;text-transform:capitalize}.vuuLayoutList-screenshot{width:60px;height:45.6px;border:1px solid #D6D7DA}.vuuLayoutList-layoutDetails{color:var(--light-text-secondary, #606477);font-size:10px;font-weight:600;line-height:150%}.vuuFeatureList{background:var(--vuuFeatureList-background, var(--salt-container-primary-background));display:flex;flex-direction:column;height:100%;padding:195px 32px 16px 24px}.vuuFeatureList-header{flex:0 0 40px;font-size:12px;font-weight:700;line-height:2}.vuuFeatureList-content{flex:1 1 auto;font-size:12px;font-weight:700}.vuuLeftNav{--salt-navigable-fontWeight-active: 700;--vuuTab-background-selected: rgba(255, 255, 255, .1);--vuuTab-hover-background: rgba(255, 255, 255, .1);--vuuTab-before-content: none;--vuuTab-borderRadius: 6px;--vuuTab-height: 40px;--vuuTab-padding: 0 0 0 48px;--vuuTabstrip-fontWeight: 700;--vuuTabstrip-width: 100%;--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>');--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>');--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>');--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>');--vuu-light-text-primary: #15171b;--menu-level-2-width: 0px;box-shadow:3px 4px 4px #00000026;display:flex;height:calc(100% - 4px);margin-bottom:4px;overflow:hidden;position:relative;transition:width .2s ease-out;z-index:0}.vuuLeftNav-menu-full{--menu-width: var(--nav-menu-expanded-width)}.vuuLeftNav-menu-icons{--menu-width: var(--nav-menu-collapsed-width)}.vuuLeftNav-menu-icons-content{--menu-width: var(--nav-menu-collapsed-width);--menu-level-2-width: var(--nav-menu-content-width)}.vuuLeftNav-menu-full-content{--menu-width: var(--nav-menu-expanded-width);--menu-level-2-width: var(--nav-menu-content-width)}.vuuLeftNav-menu-icons-content .vuuLeftNav-menu-secondary,.vuuLeftNav-menu-full-content .vuuLeftNav-menu-secondary{display:flex}.vuuLeftNav-menu-primary{background-color:#2a015f;container-type:inline-size;display:flex;flex-direction:column;height:100%;padding:32px 16px;transition:flex-basis ease-out .2s;flex-grow:0;flex-shrink:0;flex-basis:var(--menu-width)}.vuuLeftNav-menu-secondary{flex:1 1 auto;display:none;top:0;right:0;flex-grow:0;flex-shrink:0;flex-basis:var(--nav-menu-content-width, 240px);z-index:-1}.vuuLeftNav .vuuTabstrip{margin-top:102px}.vuuLeftNav .vuuTab{--vuuTab-focusVisible-color: pink;--vuu-icon-color: white;--vuu-icon-left: 12px;--vuu-icon-size: 16px;border-left:solid 4px transparent}.vuuLeftNav .vuuTab-selected{--vuu-icon-color: var(--salt-navigable-indicator-active);border-left:solid 4px var(--salt-navigable-indicator-active)}.vuuLeftNav-logo{display:flex;flex:0 0 auto;justify-content:center}.vuuLeftNav-main{flex:1 1 auto}.vuuLeftNav-menu{color:#fff;margin-top:102px;padding:0}.vuuLeftNav [data-icon=demo]{--vuu-icon-svg: var(--svg-demo)}.vuuLeftNav [data-icon=tables]{--vuu-icon-svg: var(--svg-tables)}.vuuLeftNav [data-icon=features]{--vuu-icon-svg: var(--svg-features)}.vuuLeftNav [data-icon=layouts]{--vuu-icon-svg: var(--svg-layouts)}@container (max-width: 100px){.vuuTab{--vuuTab-padding: 0 0 0 42px}.vuuTab-main{display:none!important}}.vuuLeftNav-buttonBar{align-items:center;display:flex;flex:0 0 100px;justify-content:center}.vuuLeftNav-toggleButton{--vuu-icon-color: var(--vuu-light-text-primary);--vuu-icon-left: 11px;--vuu-icon-top: 10px;--vuu-icon-size: 16px;background-color:var(--salt-navigable-indicator-active);border-width:0;border-radius:18px;height:36px;position:relative;width:36px}.vuuLeftNav-toggleButton-open{--vuu-icon-left: 9px}.vuuLeftNav-drawer{display:flex;padding:40px 32px 0 24px;flex-direction:column;align-items:flex-start;flex-shrink:0;align-self:stretch;background:#FFF;box-shadow:3px 4px 4px #00000026;height:100%}.vuuSessionEditingForm{display:flex;flex-direction:column;gap:3px;min-width:400px;padding:6px}.vuuSessionEditingForm-content{display:flex;flex-direction:column;flex:1 1 auto;gap:3px;overflow:auto}.vuuSessionEditingForm-field{align-items:center;display:flex;height:32px}.vuuSessionEditingForm-fieldLabel{flex:0 0 50%}.vuuSessionEditingForm-fieldValue{max-width:50%}.vuuSessionEditingForm-fieldValue.vuuReadOnly{font-weight:var(--salt-text-label-fontWeight-strong)}.vuuSessionEditingForm-buttonbar{align-items:center;border-top:solid 1px var(--salt-container-primary-borderColor);display:flex;justify-content:flex-end;flex:0 0 autox;gap:6px;padding-top:6px}.vuuSessionEditingForm-errorBanner{--vuu-icon-left: 3px;--vuu-icon-size: 18px;--vuu-icon-top: 3px;border:solid 1px var(--salt-status-error-borderColor);line-height:24px;padding:0 6px 0 26px;position:relative}.vuuContextPanel{position:relative;transition:width .3s ease-in-out;width:var(--vuu-side-panel-width, 0px)!important;z-index:1}.vuuContextPanel-expanded{--vuu-side-panel-width: 300px !important;--vuu-side-panel-shadow: -4px 4px 4px rgba(0, 0, 0, .1);--vuu-side-panel-padding: 24px}.vuuContextPanel-overlay{width:0px!important}.vuuContextPanel-inner{background-color:var(--salt-container-primary-background);box-shadow:var(--vuu-side-panel-shadow, none);display:flex;flex-direction:column;height:100%;min-width:0!important;overflow:auto;padding-bottom:24px;padding-top:24px;padding-left:var(--vuu-side-panel-padding, 0);padding-right:var(--vuu-side-panel-padding, 0);position:absolute!important;right:0;top:0;transition-property:padding-left,padding-right,width;transition-duration:.3s;transition-timing-function:ease-in-out;width:var(--vuu-side-panel-width, 0px)}.vuuContextPanel-header{align-items:center;display:flex;flex-wrap:nowrap;flex:0 0 27px!important;justify-content:space-between}.vuuContextPanel-title{font-size:20px;font-weight:700;white-space:nowrap}.vuuContextPanel-content{flex:1 1 auto;width:100%}.vuuShellSidePanel{transition:width .2s ease-out;width:var(--shell-left-nav-size)}.vuuShell{background-color:var(--vuu-color-gray-25);height:var(--vuuShell-height, 100vh);width:var(--vuuShell-width, 100vw)}.vuuShell-mainTabs{background:var(--salt-container-primary-background)}.vuuShell-palette{--vuuView-border: none;--vuuView-margin: 0}.vuuShell-warningPlaceholder{background-color:var(--salt-container-background-high);height:100%}.vuuToolbarProxy{background:var(--salt-container-primary-background)}.vuuShell-mainTabs>.vuuTabstrip>.vuuOverflowContainer-wrapContainer{background:var(--vuu-color-gray-25)}.vuuShell-mainTabs{--vuuTab-height: 28px;border:solid 1px #D6D7DA;border-top:none!important;border-radius:6px;height:100%;padding:36px 8px 8px;position:relative;width:100%}.vuuShell-mainTabs>.vuuTabstrip{--vuuTabstrip-height: 28px;--saltTabs-tabstrip-height: 29px;--tabstrip-height: 29px;left:-1px;padding-bottom:7px;position:absolute!important;right:1px;top:0;width:calc(100% + 2px)!important}.vuuShell-mainTabs>.vuuTabHeader{border-bottom:none}.vuuShell-mainTabs>.vuuTabstrip:before{background-color:transparent;border-radius:0 6px 0 0;border-left:solid 1px #D6D7DA;border-right:solid 1px #D6D7DA;border-top:solid 1px #D6D7DA;content:"";position:absolute;bottom:0;left:0;right:0;height:8px;z-index:1}.vuuTab.MainTab{--vuuTabMenu-top: -1px;background-color:#f1f2f4;border-color:#d6d7da;border-radius:6px 6px 0 0;border-width:1px;border-style:solid;position:relative}.MainTab.vuuTab-selected{background-color:#fff;border-bottom-color:#fff;z-index:1}.MainTab.vuuTab-selected:before{background-color:#6d188b;content:"";position:absolute;height:100%;left:0;top:0;border-radius:6px 0 0;width:6px}.MainTab.vuuTab:hover:before{background-color:#f37880;content:"";position:absolute;height:100%;left:0;top:0;border-radius:6px 0 0;width:6px}.vuuTab.MainTab .vuuTab-main{background-color:transparent;font-weight:700;height:29px;padding:0 24px}.vuuThemeSwitch{--saltButton-minWidth: 22px;--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>');--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>');padding:2px}.salt-density-high .vuuThemeSwitch{--saltButton-minWidth: 16px;--saltButton-width: 18px;--vuuThemeSwitch-iconSize: 16px}.vuuThemeSwitch [data-icon]{--vuu-icon-size: var(--vuuThemeSwitch-iconSize,18px)}.vuuThemeSwitch [data-icon=light]{--vuu-icon-svg: var(--svg-light)}.vuuThemeSwitch [data-icon=dark]{--vuu-icon-svg: var(--svg-dark)}.vuuThemeSwitch .saltToggleButton{height:20px;width:20px}.vuuMeasuredContainer{flex:var(--vuuMeasuredContainer-flex, none);height:var(--vuuMeasuredContainer-height, var(--measured-css-height));min-height:0;width:var(--measured-css-width)}.vuuOverflowContainer{--overflow-borderColor: var(--vuuOverflowContainer-borderColor, none);--overflow-borderStyle: var(--vuuOverflowContainer-borderStyle, none);--overflow-borderWidth: var(--vuuOverflowContainer-borderWidth, 0px);--overflow-border-topWidth: var(--vuuOverflowContainer-borderTopWidth, var(--overflow-borderWidth));--overflow-border-rightWidth: var(--vuuOverflowContainer-borderRightWidth, var(--overflow-borderWidth));--overflow-border-bottomWidth: var(--vuuOverflowContainer-borderBottomWidth, var(--overflow-borderWidth));--overflow-border-leftWidth: var(--vuuOverflowContainer-borderLeftWidth, var(--overflow-borderWidth));--overflow-item-gap: var(--vuuOverflowContainer-gap,2px);--overflow-direction: row;--overflow-height: var(--overflow-item-height);--overflow-top:top:0;--overflow-width: 0px;background-color:var(--vuuOverflowContainer-background);border-color:var(--overflow-borderColor);border-style:var(--overflow-borderStyle);border-top-width:var(--overflow-border-topWidth);border-right-width:var(--overflow-border-rightWidth);border-bottom-width:var(--overflow-border-bottomWidth);border-left-width:var(--overflow-border-leftWidth);height:var(--overflow-container-heightWidth)}.vuuOverflowContainer-horizontal{--item-align: center;--item-margin: 0 var(--overflow-item-gap) 0 var(--overflow-item-gap)}.vuuOverflowContainer-vertical{--item-align: stretch;--overflow-item-height: auto;--item-margin: var(--overflow-item-gap) 0 var(--overflow-item-gap) 0;--overflow-direction: column;--overflow-height: 0;--overflow-left: 0;--overflow-top: 100%;--overflow-width: auto}.vuuOverflowContainer-wrapContainer{--border: calc(var(--overflow-border-topWidth) + var(--overflow-border-bottomWidth));--overflow-item-height: calc(var(--overflow-container-height) - var(--border));align-items:var(--item-align);display:flex;flex-direction:var(--overflow-direction);flex-wrap:wrap;height:var(--overflow-item-height);justify-content:var(--vuuOverflowContainer-justifyContent, flex-start);min-width:var(--vuuOverflowContainer-minWidth, 44px);overflow:hidden;position:relative;width:100%}.vuuOverflowContainer-wrapContainer-overflowed{--overflow-order: 2;--overflow-left: auto;--overflow-position: relative;--overflow-width: auto}.vuuOverflowContainer-vertical.vuuOverflowContainer-wrapContainer-overflowed{--overflow-height: auto}.vuuOverflowContainer-item{align-items:inherit;display:flex;order:1;position:relative;height:var(--overflow-item-height);margin:var(--item-margin)}.vuuOverflowContainer-item[data-align=right]{margin-left:auto}.vuuOverflowContainer-item.wrapped{--overflow-item-bg: #ccc;order:3}.vuuOverflowContainer-item.vuuDraggable-dragAway,.vuuOverflowContainer-item:has(.vuuDraggable-dragAway){display:none}.vuuOverflowContainer-item.vuuDropTarget-settling{visibility:hidden}.vuuOverflowContainer-OverflowIndicator{align-items:center;background-color:transparent;display:flex;height:var(--overflow-height);order:var(--overflow-order, 99);overflow:hidden;left:var(--overflow-left, 100%);top:var(--overflow-top, 100%);position:var(--overflow-position, absolute);width:var(--overflow-width)}.vuuDraggable-vuuOverflowContainer{align-items:center;display:flex;height:44px}.vuuPalette{--vuuList-borderStyle: none}.vuuPalette-horizontal{align-items:center;display:flex}.vuuPaletteItem{--vuu-icon-color: var(--salt-text-primary-foreground);--vuu-icon-left: 0;--vuu-icon-size: 16px;--vuu-icon-top: 11px;--list-item-text-padding: 0 0 0 calc(var(--salt-size-unit) * 3);border-bottom:solid 1px var(--salt-separable-tertiary-borderColor);padding-left:12px;font-size:12px;font-weight:600}.vuuSimpleDraggableWrapper>.vuuPaletteItem{--vuu-icon-color: var(--salt-selectable-foreground)}.salt-theme .vuuPaletteItem{font-size:11px;font-weight:400}.Tabs{display:flex;box-sizing:border-box;flex-direction:column}.Tabs-horizontal{--vuu-tabs-border-style: none solid none none;flex-direction:row}.Tabs .Toolbar:before{left:0;width:100%;bottom:0;height:1px;content:"";position:absolute;background:var(--grey60)}.Tabs-tabPanel{flex:1}.Tabs-tabPanel>*{height:100%}.vuuTabHeader{--saltTabs-activationIndicator-background: transparent;--saltToolbarField-marginTop: calc(var(--salt-size-unit) - 1px);border-color:var(--salt-container-primary-borderColor);border-style:var(--vuu-tabs-border-style, none none solid none);border-width:1px}.vuuTabHeader+.vuuView>.vuuHeader{height:0;overflow:hidden}.Layout-svg-button{--spacing-medium: 5px}.vuuToolbar{--toolbar-height: var(--vuuToolbar-height, 36px);--toolbar-item-height: var(--vuuToolbarItem-height, 100%);--vuuOverflowContainer-background: var(--vuuToolbar-background);--vuuOverflowContainer-borderColor: var(--vuuToolbar-borderColor);--vuuOverflowContainer-borderStyle: var(--vuuToolbar-borderStyle);--vuuOverflowContainer-borderWidth: var(--vuuToolbar-borderWidth);height:var(--toolbar-height)}.vuuToolbar-alignCenter{--vuuOverflowContainer-justifyContent: center}.vuuToolbar-alignEnd{--vuuOverflowContainer-justifyContent: flex-end}.vuuToolbarItem{height:var(--toolbar-item-height)}.vuuToolbar-withSeparators .vuuOverflowContainer-item:not(:first-child):before{content:"";position:absolute;left:calc(-1 * var(--overflow-item-gap));top:calc((var(--toolbar-height) - var(--toolbar-item-height)) /2);width:1px;height:var(--toolbar-item-height);background-color:var(--vuu-color-gray-05)}.vuuToolbarItem.vuuFocusVisible{outline-color:var(--vuuToolbarItem-outlineColor, var(--salt-focused-outlineColor));outline-style:dashed;outline-width:1px;outline-offset:0px}.vuuPopupMenu:focus,.vuuToolbarItem:focus,.vuuToolbarItem:focus-visible{outline-color:var(--vuuToolbarItem-outlineColor, var(--vuu-color-purple-10));outline-style:dashed;outline-width:1px;outline-offset:0px}[data-design-mode=true] .Component{filter:grayscale(100%);opacity:.4}[data-design-mode=true] .Component:after{color:#000;content:"Component";height:12px;background-color:#ff0}.LayoutConfigurator{--margin-color: #f3cea5;--border-color: #fddda0;--padding-color: #c6d092;--content-color: #8cb6c0;display:flex;flex-direction:column;align-items:stretch;background-color:var(--margin-color)}.LayoutConfigurator .layout-outer{flex:1 1 auto;display:flex;flex-direction:column;align-items:stretch}.LayoutBox{--hw-control-font-size: 13px;--hw-text-input-bg: rgba(255, 255, 255, .3);--hwTextInput-padding: 3px;--hw-text-input-position: absolute;--hwTextInput-width: 30px;flex:1 1 auto}.LayoutBox>.layout-top{flex:0 0 40px;padding-left:12px;display:flex;flex-direction:row;align-items:center;position:relative}.LayoutBox>.layout-bottom{flex:0 0 40px;position:relative;display:flex;flex-direction:row;align-items:center}.LayoutBox>.layout-inner>.layout-right,.LayoutBox>.layout-inner>.layout-left{flex:0 0 40px;display:flex;flex-direction:column;justify-content:center;align-items:center}.layout-top,.layout-bottom{--hw-text-input-margin: 0 0 0 -15px}.layout-top>.layout-input,.layout-bottom>.layout-input{left:50%}.LayoutBox>.layout-inner{flex:1 1 auto;display:flex;flex-direction:row;align-items:stretch}.LayoutBox.layout-margin{background-color:var(--margin-color);border:dashed 2px black}.LayoutBox.layout-border{background-color:var(--border-color);border:solid 2px black}.LayoutBox.layout-padding{background-color:var(--padding-color);border:dashed 2px black}.LayoutBox .layout-content{flex:1 1 auto;background-color:var(--content-color);border:solid 2px #808080}.LayoutBox .layout-title{color:#161616;font-size:11px;left:4px;line-height:15px;position:absolute;top:1px}.hwLayoutTreeNode{cursor:default}.hwLayoutTreeNode:hover{background-color:#fff3}.hwLayoutTreeNode[aria-selected=true]{background-color:#6495ed;color:#fff}
|
|
1670
2
|
/*# sourceMappingURL=index.css.map */
|