@vuu-ui/vuu-shell 0.8.9-debug → 0.8.10-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/index.js +387 -33552
- package/cjs/index.js.map +4 -4
- package/esm/index.js +374 -33934
- package/esm/index.js.map +4 -4
- package/index.css +0 -3438
- package/index.css.map +3 -3
- package/package.json +8 -4
package/index.css
CHANGED
|
@@ -58,3154 +58,6 @@
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
/* ../vuu-popups/src/dialog/Dialog.css */
|
|
62
|
-
.vuuDialog {
|
|
63
|
-
background: var(--salt-container-primary-background);
|
|
64
|
-
border: var(--vuuDialog-border, solid 1px #ccc);
|
|
65
|
-
border-radius: 5px;
|
|
66
|
-
padding: var(--vuuDialog-padding, 0);
|
|
67
|
-
box-shadow: var(--salt-overlayable-shadow, none);
|
|
68
|
-
height: var(--vuuDialog-height, fit-content);
|
|
69
|
-
width: var(--vuuDialog-width, fit-content);
|
|
70
|
-
}
|
|
71
|
-
.vuuDialog-header {
|
|
72
|
-
--saltButton-height: 28px;
|
|
73
|
-
--saltButton-width: 28px;
|
|
74
|
-
--saltToolbar-background: transparent;
|
|
75
|
-
--saltToolbar-height: calc(var(--salt-size-base) + 5px);
|
|
76
|
-
}
|
|
77
|
-
.vuuDialog-header > .Responsive-inner {
|
|
78
|
-
align-items: center;
|
|
79
|
-
}
|
|
80
|
-
.vuuDialog-header > .Responsive-inner > :last-child {
|
|
81
|
-
right: 2px;
|
|
82
|
-
}
|
|
83
|
-
.dialogHeader {
|
|
84
|
-
display: flex;
|
|
85
|
-
padding-bottom: 0px;
|
|
86
|
-
padding-top: 16px;
|
|
87
|
-
padding-left: 16px;
|
|
88
|
-
flex-direction: column;
|
|
89
|
-
align-items: flex-start;
|
|
90
|
-
align-self: stretch;
|
|
91
|
-
color: var(--light-text-primary, #15171B);
|
|
92
|
-
font-feature-settings:
|
|
93
|
-
"ss02" on,
|
|
94
|
-
"ss01" on,
|
|
95
|
-
"salt" on,
|
|
96
|
-
"liga" off;
|
|
97
|
-
font-size: 16px;
|
|
98
|
-
font-weight: 600;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/* ../vuu-popups/src/menu/MenuList.css */
|
|
102
|
-
.vuuMenuList {
|
|
103
|
-
--salt-focused-outlineStyle: dashed !important;
|
|
104
|
-
--salt-focused-outlineWidth: 1px !important;
|
|
105
|
-
--vuuListItem-padding: 8px;
|
|
106
|
-
--context-menu-color: var(--vuuMenuList-color,#161616);
|
|
107
|
-
--context-menu-padding: var(--hw-list-item-padding, 0 6px);
|
|
108
|
-
--context-menu-shadow: var(--hw-dialog-shadow, 0 6px 12px rgba(0, 0, 0, 0.175));
|
|
109
|
-
--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
|
|
110
|
-
--context-menu-highlight-bg: var(--vuu-color-gray-10);
|
|
111
|
-
--context-menu-blur-focus-bg: #e0e4e9;
|
|
112
|
-
--menu-item-icon-color: black;
|
|
113
|
-
--menu-item-twisty-color: black;
|
|
114
|
-
--menu-item-twisty-content: "";
|
|
115
|
-
--menu-item-twisty-top: 50%;
|
|
116
|
-
--menu-item-twisty-left: auto;
|
|
117
|
-
--menu-item-twisty-right: 0px;
|
|
118
|
-
--menu-icon-size: 12px;
|
|
119
|
-
background-clip: padding-box;
|
|
120
|
-
background-color: white;
|
|
121
|
-
border-style: var(--vuuMenuList-borderStyle, none);
|
|
122
|
-
font-size: var(--vuuMenuList-fontSize, var(--salt-text-label-fontSize));
|
|
123
|
-
font-weight: var(--salt-typography-fontWeight-medium);
|
|
124
|
-
list-style: none;
|
|
125
|
-
outline: 0;
|
|
126
|
-
overflow: hidden;
|
|
127
|
-
padding: var(--vuuMenuList-padding, 0);
|
|
128
|
-
position: absolute;
|
|
129
|
-
}
|
|
130
|
-
.vuuPortal > .vuuMenuList {
|
|
131
|
-
position: relative;
|
|
132
|
-
}
|
|
133
|
-
.vuuMenuItem {
|
|
134
|
-
align-items: center;
|
|
135
|
-
border-width: 1px;
|
|
136
|
-
border-color: var(--vuuMenuItem-borderColor, transparent);
|
|
137
|
-
border-style: var(--vuuMenuItem-borderStyle, none);
|
|
138
|
-
color: var(--context-menu-color);
|
|
139
|
-
display: flex;
|
|
140
|
-
gap: 6px;
|
|
141
|
-
height: var(--vuuMenuItem-height, var(--hw-list-item-height, 24px));
|
|
142
|
-
padding: var(--context-menu-padding);
|
|
143
|
-
padding-right: 24px;
|
|
144
|
-
position: relative;
|
|
145
|
-
white-space: nowrap;
|
|
146
|
-
}
|
|
147
|
-
.vuuIconContainer {
|
|
148
|
-
display: inline-block;
|
|
149
|
-
flex: 12px 0 0;
|
|
150
|
-
height: var(--menu-icon-size);
|
|
151
|
-
mask-repeat: no-repeat;
|
|
152
|
-
width: var(--menu-icon-size);
|
|
153
|
-
}
|
|
154
|
-
.vuuMenuItem[aria-expanded=true] {
|
|
155
|
-
background-color: var(--context-menu-blur-focus-bg);
|
|
156
|
-
}
|
|
157
|
-
.vuuMenuItem-separator {
|
|
158
|
-
border-top: solid 1px var(--context-menu-blur-focus-bg);
|
|
159
|
-
}
|
|
160
|
-
.vuuMenuItem[aria-haspopup=true]:after {
|
|
161
|
-
content: var(--menu-item-twisty-content);
|
|
162
|
-
-webkit-mask: var(--vuu-svg-chevron-right) center center/8px 8px no-repeat;
|
|
163
|
-
mask: var(---vuu-svg-chevron-right) center center/8px 8px no-repeat;
|
|
164
|
-
background-color: var(--menu-item-twisty-color);
|
|
165
|
-
height: 16px;
|
|
166
|
-
left: var(--menu-item-twisty-left);
|
|
167
|
-
right: var(--menu-item-twisty-right);
|
|
168
|
-
margin-top: -8px;
|
|
169
|
-
position: absolute;
|
|
170
|
-
top: var(--menu-item-twisty-top);
|
|
171
|
-
transition: transform 0.3s;
|
|
172
|
-
width: 16px;
|
|
173
|
-
}
|
|
174
|
-
.vuuMenuItem[data-highlighted] {
|
|
175
|
-
background-color: var(--context-menu-highlight-bg);
|
|
176
|
-
}
|
|
177
|
-
.vuuMenuItem:hover {
|
|
178
|
-
background-color: var(--context-menu-highlight-bg);
|
|
179
|
-
cursor: default;
|
|
180
|
-
}
|
|
181
|
-
.vuuMenuList-childMenuShowing .vuuMenuItem[data-highlighted] {
|
|
182
|
-
background-color: var(--context-menu-blur-focus-bg);
|
|
183
|
-
}
|
|
184
|
-
.vuuMenuItem.focusVisible:before {
|
|
185
|
-
content: "";
|
|
186
|
-
position: absolute;
|
|
187
|
-
top: 0;
|
|
188
|
-
left: 0;
|
|
189
|
-
right: 0;
|
|
190
|
-
bottom: 0px;
|
|
191
|
-
border: dotted var(--focus-visible-border-color) 2px;
|
|
192
|
-
}
|
|
193
|
-
.vuuPopupContainer.top-bottom-right-right .popup-menu {
|
|
194
|
-
left: auto;
|
|
195
|
-
right: 0;
|
|
196
|
-
}
|
|
197
|
-
.popup-menu .menu-item.showing > button,
|
|
198
|
-
.popup-menu .menu-item > button:focus,
|
|
199
|
-
.popup-menu .menu-item > button:hover {
|
|
200
|
-
text-decoration: none;
|
|
201
|
-
color: rgb(0, 0, 0);
|
|
202
|
-
background-color: rgb(220, 220, 220);
|
|
203
|
-
}
|
|
204
|
-
.vuuMenuItem-button:active,
|
|
205
|
-
.vuuMenuItem-button:hover {
|
|
206
|
-
outline: 0;
|
|
207
|
-
}
|
|
208
|
-
.popup-menu .menu-item.disabled > button {
|
|
209
|
-
clear: both;
|
|
210
|
-
font-weight: normal;
|
|
211
|
-
line-height: 1.5;
|
|
212
|
-
color: rgb(120, 120, 120);
|
|
213
|
-
white-space: nowrap;
|
|
214
|
-
text-decoration: none;
|
|
215
|
-
cursor: default;
|
|
216
|
-
}
|
|
217
|
-
.vuuMenuList.salt-theme {
|
|
218
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
219
|
-
position: absolute;
|
|
220
|
-
border-color: var(--salt-container-primary-borderColor);
|
|
221
|
-
border-style: solid !important;
|
|
222
|
-
border-width: 1px;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
/* ../vuu-popups/src/menu/ContextMenu.css */
|
|
226
|
-
.vuuContextMenu {
|
|
227
|
-
border-radius: 4px;
|
|
228
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
229
|
-
border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
|
|
230
|
-
border-style: solid;
|
|
231
|
-
border-width: 1px;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/* ../vuu-popups/src/popup/popup-service.css */
|
|
235
|
-
.vuuPopup {
|
|
236
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
237
|
-
position: absolute;
|
|
238
|
-
top: 0;
|
|
239
|
-
left: 0;
|
|
240
|
-
width: 0;
|
|
241
|
-
height: 0;
|
|
242
|
-
overflow: visible;
|
|
243
|
-
z-index: 1000;
|
|
244
|
-
}
|
|
245
|
-
.vuuPopup {
|
|
246
|
-
position: absolute;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
/* ../vuu-popups/src/popup/Popup.css */
|
|
250
|
-
|
|
251
|
-
/* ../vuu-popups/src/popup-menu/PopupMenu.css */
|
|
252
|
-
.vuuPopupMenu {
|
|
253
|
-
--saltButton-height: 24px;
|
|
254
|
-
--saltButton-width: 24px;
|
|
255
|
-
--vuu-icon-color: var(--vuuPopupMenu-iconColor,#606477);
|
|
256
|
-
--vuu-icon-height: 20px;
|
|
257
|
-
--vuu-icon-left: 2px;
|
|
258
|
-
--vuu-icon-size: 16px;
|
|
259
|
-
--vuu-icon-top: 2px;
|
|
260
|
-
--vuu-icon-width: 20px;
|
|
261
|
-
background: var(--vuuPopupMenu-background, transparent);
|
|
262
|
-
border: var(--vuuPopupMenu-border, none);
|
|
263
|
-
border-radius: var(--vuuPopupMenu-borderRadius, 4px);
|
|
264
|
-
cursor: pointer;
|
|
265
|
-
display: inline-block;
|
|
266
|
-
margin-top: 2px;
|
|
267
|
-
padding: 2px;
|
|
268
|
-
}
|
|
269
|
-
.vuuPopupMenu:hover {
|
|
270
|
-
--vuu-icon-color: var(--saltButton-text-color-hover);
|
|
271
|
-
}
|
|
272
|
-
.vuuPopupMenu-open {
|
|
273
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
274
|
-
--vuu-icon-color: white;
|
|
275
|
-
}
|
|
276
|
-
.vuu-theme .vuuPopupMenu:hover {
|
|
277
|
-
--saltButton-background-hover: #F37880;
|
|
278
|
-
}
|
|
279
|
-
.vuu-theme .vuuPopupMenu-open {
|
|
280
|
-
--saltButton-background: #6D18BD;
|
|
281
|
-
}
|
|
282
|
-
.vuuPopupMenu-withCaption {
|
|
283
|
-
--vuu-icon-left: calc(100% - 24px);
|
|
284
|
-
--vuu-icon-size: 20px;
|
|
285
|
-
--saltButton-width: auto;
|
|
286
|
-
padding: 0 28px 0 8px;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/* ../vuu-popups/src/portal/Portal.css */
|
|
290
|
-
.vuuPortal {
|
|
291
|
-
background-color: var(--salt-container-primary-background);
|
|
292
|
-
border-radius: 4px;
|
|
293
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
294
|
-
position: absolute;
|
|
295
|
-
border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
|
|
296
|
-
border-style: solid;
|
|
297
|
-
border-width: 1px;
|
|
298
|
-
padding: 4px 0;
|
|
299
|
-
z-index: var(--salt-zIndex-modal);
|
|
300
|
-
}
|
|
301
|
-
.vuuPopupMenuList {
|
|
302
|
-
border-radius: 4px;
|
|
303
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
304
|
-
position: absolute;
|
|
305
|
-
border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
|
|
306
|
-
border-style: solid !important;
|
|
307
|
-
border-width: 1px;
|
|
308
|
-
padding: 4px 0;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
/* ../vuu-popups/src/prompt/Prompt.css */
|
|
312
|
-
.vuuPrompt {
|
|
313
|
-
--saltButton-padding: var(--prompt-padding);
|
|
314
|
-
--saltButton-width: auto;
|
|
315
|
-
--border-width: var(--vuuPrompt-borderWidth, 1px);
|
|
316
|
-
--border-color: var(--vuuPrompt-borderColor, var(--vuu-color-purple-10));
|
|
317
|
-
--prompt-padding: 16px;
|
|
318
|
-
--variant-color: inherit;
|
|
319
|
-
--vuu-icon-color: var(--vuu-color-gray-80);
|
|
320
|
-
--vuu-icon-left: 6px;
|
|
321
|
-
--vuu-icon-size: 24px;
|
|
322
|
-
background-color: var(--salt-container-primary-background);
|
|
323
|
-
border-color: var(--border-color);
|
|
324
|
-
border-radius: 4px;
|
|
325
|
-
border-style: solid;
|
|
326
|
-
border-width: var(--border-width);
|
|
327
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
328
|
-
margin: 0;
|
|
329
|
-
padding: 0;
|
|
330
|
-
position: absolute;
|
|
331
|
-
}
|
|
332
|
-
.vuuPrompt-warn {
|
|
333
|
-
--border-color: var(--vuu-color-yellow-20);
|
|
334
|
-
--variant-color: var(--vuu-color-yellow-20);
|
|
335
|
-
}
|
|
336
|
-
.vuuPrompt-form {
|
|
337
|
-
display: flex;
|
|
338
|
-
flex-direction: column;
|
|
339
|
-
}
|
|
340
|
-
.vuuPrompt-header {
|
|
341
|
-
align-items: center;
|
|
342
|
-
background-color: var(--variant-color);
|
|
343
|
-
display: flex;
|
|
344
|
-
flex: 0 0 32px;
|
|
345
|
-
font-size: 16px;
|
|
346
|
-
font-weight: 700;
|
|
347
|
-
padding: 0 var(--prompt-padding);
|
|
348
|
-
}
|
|
349
|
-
.vuuPrompt-header[data-icon] {
|
|
350
|
-
padding-left: 36px;
|
|
351
|
-
}
|
|
352
|
-
.vuuPrompt-text {
|
|
353
|
-
flex: 1 1 auto;
|
|
354
|
-
padding: var(--prompt-padding);
|
|
355
|
-
}
|
|
356
|
-
.vuuPrompt-buttonBar {
|
|
357
|
-
align-items: flex-end;
|
|
358
|
-
display: flex;
|
|
359
|
-
flex: 0 0 32px;
|
|
360
|
-
gap: 6px;
|
|
361
|
-
justify-content: flex-end;
|
|
362
|
-
padding: 0 var(--prompt-padding) var(--prompt-padding) var(--prompt-padding);
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
/* ../vuu-popups/src/tooltip/Tooltip.css */
|
|
366
|
-
.vuuTooltip {
|
|
367
|
-
--tooltip-align: flex-start;
|
|
368
|
-
--tooltip-justify: flex-start;
|
|
369
|
-
--tooltip-top: auto;
|
|
370
|
-
--tooltip-right: auto;
|
|
371
|
-
--tooltip-bottom: auto;
|
|
372
|
-
--tooltip-left: auto;
|
|
373
|
-
align-items: var(--tooltip-align);
|
|
374
|
-
justify-content: var(--tooltip-justify);
|
|
375
|
-
display: flex;
|
|
376
|
-
position: absolute;
|
|
377
|
-
}
|
|
378
|
-
.vuuTooltip[data-align=right] {
|
|
379
|
-
--tooltip-align: center;
|
|
380
|
-
--tooltip-left: 9px;
|
|
381
|
-
}
|
|
382
|
-
.vuuTooltip[data-align=left] {
|
|
383
|
-
--tooltip-align: center;
|
|
384
|
-
--tooltip-left: auto;
|
|
385
|
-
--tooltip-right: 10px;
|
|
386
|
-
}
|
|
387
|
-
.vuuTooltip[data-align=above] {
|
|
388
|
-
--tooltip-justify: center;
|
|
389
|
-
--tooltip-bottom: 9px;
|
|
390
|
-
--tooltip-left: auto;
|
|
391
|
-
}
|
|
392
|
-
.vuuTooltip[data-align=below] {
|
|
393
|
-
--tooltip-justify: center;
|
|
394
|
-
--tooltip-top: 9px;
|
|
395
|
-
--tooltip-left: auto;
|
|
396
|
-
}
|
|
397
|
-
.vuuTooltip-content {
|
|
398
|
-
background-color: var(--salt-color-blue-500);
|
|
399
|
-
border-radius: 4px;
|
|
400
|
-
color: white;
|
|
401
|
-
line-height: 24px;
|
|
402
|
-
padding: 2px 6px;
|
|
403
|
-
position: absolute;
|
|
404
|
-
white-space: nowrap;
|
|
405
|
-
top: var(--tooltip-top);
|
|
406
|
-
right: var(--tooltip-right);
|
|
407
|
-
bottom: var(--tooltip-bottom);
|
|
408
|
-
left: var(--tooltip-left);
|
|
409
|
-
}
|
|
410
|
-
.vuuTooltip::before {
|
|
411
|
-
background-color: var(--salt-color-blue-500);
|
|
412
|
-
content: " ";
|
|
413
|
-
display: block;
|
|
414
|
-
position: absolute;
|
|
415
|
-
width: 12px;
|
|
416
|
-
height: 12px;
|
|
417
|
-
z-index: -1;
|
|
418
|
-
}
|
|
419
|
-
.vuuTooltip[data-align=above]::before {
|
|
420
|
-
transform: translate(0, -18px) rotate(45deg);
|
|
421
|
-
}
|
|
422
|
-
.vuuTooltip[data-align=below]::before {
|
|
423
|
-
transform: translate(0, 6px) rotate(45deg);
|
|
424
|
-
}
|
|
425
|
-
.vuuTooltip[data-align=right]::before {
|
|
426
|
-
transform: translate(7px, 0px) rotate(45deg);
|
|
427
|
-
}
|
|
428
|
-
.vuuTooltip[data-align=left]::before {
|
|
429
|
-
transform: translate(-19px, 0) rotate(45deg);
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
/* ../vuu-ui-controls/src/dropdown/Dropdown.css */
|
|
433
|
-
.vuuDropdown {
|
|
434
|
-
--saltIcon-margin: 2px 0 0 8px;
|
|
435
|
-
--saltButton-borderStyle: solid;
|
|
436
|
-
--saltButton-borderColor: var(--salt-editable-borderColor);
|
|
437
|
-
--saltButton-borderWidth: 1px;
|
|
438
|
-
--saltButton-borderRadius: 6px;
|
|
439
|
-
--saltButton-height: var(--vuuDropdown-height, auto);
|
|
440
|
-
display: inline-block;
|
|
441
|
-
line-height: 0;
|
|
442
|
-
position: relative;
|
|
443
|
-
width: var(--vuuDropdown-width, auto);
|
|
444
|
-
}
|
|
445
|
-
.vuuDropdown-fullWidth {
|
|
446
|
-
width: 100%;
|
|
447
|
-
}
|
|
448
|
-
.vuuDropdown-popup {
|
|
449
|
-
background: var(--salt-container-primary-background);
|
|
450
|
-
z-index: calc(var(--salt-zIndex-flyover) - 1);
|
|
451
|
-
}
|
|
452
|
-
.vuuDropdown-popup-component {
|
|
453
|
-
--vuuList-borderStyle: none;
|
|
454
|
-
}
|
|
455
|
-
.vuuDropdownButton {
|
|
456
|
-
width: 100%;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
/* ../vuu-ui-controls/src/dropdown/DropdownButton.css */
|
|
460
|
-
.vuuDropdownButton {
|
|
461
|
-
--saltButton-background-hover: var(--salt-actionable-secondary-background);
|
|
462
|
-
--saltButton-background-active: var(--salt-actionable-secondary-background);
|
|
463
|
-
--saltButton-fontWeight: var(--salt-text-fontWeight-strong);
|
|
464
|
-
--saltButton-textAlign: left;
|
|
465
|
-
--saltButton-textTransform: none;
|
|
466
|
-
--saltButton-width: 100%;
|
|
467
|
-
--vuu-icon-size: 16px;
|
|
468
|
-
}
|
|
469
|
-
.vuuDropdownButton:active {
|
|
470
|
-
--saltIcon-color: var(--salt-actionable-secondary-foreground);
|
|
471
|
-
--saltButton-text-color-active: var(--salt-actionable-secondary-foreground);
|
|
472
|
-
}
|
|
473
|
-
.vuuDropdownButton-fullwidth {
|
|
474
|
-
width: 100%;
|
|
475
|
-
}
|
|
476
|
-
.vuuDropdownButton-content {
|
|
477
|
-
align-items: center;
|
|
478
|
-
flex: 1;
|
|
479
|
-
width: 100%;
|
|
480
|
-
display: flex;
|
|
481
|
-
white-space: nowrap;
|
|
482
|
-
}
|
|
483
|
-
.vuuDropdownButton-buttonLabel {
|
|
484
|
-
display: inline-block;
|
|
485
|
-
letter-spacing: 0;
|
|
486
|
-
overflow: hidden;
|
|
487
|
-
text-overflow: ellipsis;
|
|
488
|
-
width: 100%;
|
|
489
|
-
}
|
|
490
|
-
.vuuDropdownButton-formField.saltButton:focus,
|
|
491
|
-
.vuuDropdownButton-formField.saltButton:focus-visible {
|
|
492
|
-
outline: none;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
/* ../vuu-ui-controls/src/list/Highlighter.css */
|
|
496
|
-
.saltHighlighter-highlight {
|
|
497
|
-
font-weight: var(--salt-text-fontWeight-strong);
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
/* ../vuu-ui-controls/src/list/CheckboxIcon.css */
|
|
501
|
-
.vuuCheckboxIcon {
|
|
502
|
-
--vuu-icon-size: 12px;
|
|
503
|
-
--vuu-icon-left: -1px;
|
|
504
|
-
--vuu-icon-top: -1px;
|
|
505
|
-
--vuu-icon-svg: var(--vuu-svg-tick);
|
|
506
|
-
border-style: solid;
|
|
507
|
-
border-color: var(--vuuCheckboxIcon-borderColor, var(--salt-selectable-borderColor));
|
|
508
|
-
border-radius: var(--vuuCheckboxIcon-borderRadius, 3px);
|
|
509
|
-
border-width: 1px;
|
|
510
|
-
display: inline-block;
|
|
511
|
-
height: var(--vuuCheckboxIcon-size, 12px);
|
|
512
|
-
position: relative;
|
|
513
|
-
width: var(--vuuCheckboxIcon-size, 12px);
|
|
514
|
-
}
|
|
515
|
-
.vuuCheckboxIcon-checked {
|
|
516
|
-
background-color: var(--vuuCheckboxIcon-background-checked, var(--salt-selectable-background-selected));
|
|
517
|
-
border-color: var(--vuuCheckboxIcon-borderColor-checked, var(--salt-selectable-borderColor-selected));
|
|
518
|
-
}
|
|
519
|
-
.vuuCheckboxIcon-checked:after {
|
|
520
|
-
content: "";
|
|
521
|
-
background-color: white;
|
|
522
|
-
left: var(--vuu-icon-left, auto);
|
|
523
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
524
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
525
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
526
|
-
mask-repeat: no-repeat;
|
|
527
|
-
-webkit-mask-repeat: no-repeat;
|
|
528
|
-
position: absolute;
|
|
529
|
-
top: var(--vuu-icon-top, auto);
|
|
530
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
/* ../vuu-ui-controls/src/list/ListItem.css */
|
|
534
|
-
.vuuListItem {
|
|
535
|
-
--list-item-text-color: var(--salt-text-primary-foreground);
|
|
536
|
-
--list-item-background: var(--vuuList-item-background, var(--salt-selectable-background));
|
|
537
|
-
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
538
|
-
--list-item-background-active: var(--salt-selectable-background-selected);
|
|
539
|
-
--list-item-alignItems: center;
|
|
540
|
-
}
|
|
541
|
-
.vuuListItem.vuuHighlighted {
|
|
542
|
-
--saltCheckbox-icon-stroke: var(--salt-selectable-borderColor-hover);
|
|
543
|
-
--list-item-background: var(--salt-selectable-background-hover);
|
|
544
|
-
}
|
|
545
|
-
.vuuListItemHeader {
|
|
546
|
-
font-weight: var(--salt-text-fontWeight-strong);
|
|
547
|
-
}
|
|
548
|
-
.vuuListItemHeader[data-sticky] {
|
|
549
|
-
position: sticky;
|
|
550
|
-
top: 0;
|
|
551
|
-
z-index: 1;
|
|
552
|
-
}
|
|
553
|
-
.vuuListItem {
|
|
554
|
-
color: var(--list-item-text-color);
|
|
555
|
-
cursor: var(--vuuList-item-cursor, pointer);
|
|
556
|
-
background: var(--vuuList-item-background, var(--list-item-background));
|
|
557
|
-
font-size: var(--salt-text-fontSize);
|
|
558
|
-
text-align: var(--salt-text-textAlign);
|
|
559
|
-
line-height: var(--salt-text-lineHeight);
|
|
560
|
-
height: var(--vuuList-item-height, var(--list-item-height, auto));
|
|
561
|
-
margin-bottom: var(--list-item-gap);
|
|
562
|
-
padding: 0 var(--vuuListItem-padding, var(--salt-size-unit));
|
|
563
|
-
left: 0;
|
|
564
|
-
right: 0;
|
|
565
|
-
display: flex;
|
|
566
|
-
position: relative;
|
|
567
|
-
align-items: var(--list-item-alignItems);
|
|
568
|
-
white-space: nowrap;
|
|
569
|
-
}
|
|
570
|
-
.vuuListItem:last-child {
|
|
571
|
-
margin-bottom: 0px;
|
|
572
|
-
}
|
|
573
|
-
.vuuListItem-checkbox {
|
|
574
|
-
--list-item-background-active: var(--salt-selectable-background);
|
|
575
|
-
--list-item-text-color-active: var(--salt-text-primary-foreground);
|
|
576
|
-
--list-item-text-padding: 0 0 0 var(--salt-size-unit);
|
|
577
|
-
}
|
|
578
|
-
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox) {
|
|
579
|
-
--list-item-background: var(--list-item-background-active);
|
|
580
|
-
color: var(--list-item-text-color-active);
|
|
581
|
-
}
|
|
582
|
-
.vuuListItem.vuuDisabled {
|
|
583
|
-
--list-item-text-color: var(--salt-text-primary-foreground-disabled);
|
|
584
|
-
cursor: var(--salt-selectable-cursor-disabled);
|
|
585
|
-
}
|
|
586
|
-
.vuuListItem.vuuFocusVisible {
|
|
587
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
588
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
589
|
-
outline-offset: -2px;
|
|
590
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
591
|
-
}
|
|
592
|
-
.vuuListItem.vuuFocusVisible:after {
|
|
593
|
-
content: none;
|
|
594
|
-
}
|
|
595
|
-
.vuuListItem[aria-selected=true]:not(.vuuListItem-checkbox).vuuFocusVisible {
|
|
596
|
-
outline-color: var(--list-item-selected-focus-outlineColor);
|
|
597
|
-
}
|
|
598
|
-
.vuuListItem-textWrapper {
|
|
599
|
-
flex: 1;
|
|
600
|
-
overflow: hidden;
|
|
601
|
-
padding: var(--list-item-text-padding, 0px);
|
|
602
|
-
white-space: nowrap;
|
|
603
|
-
text-overflow: ellipsis;
|
|
604
|
-
}
|
|
605
|
-
.vuuListItem-proxy {
|
|
606
|
-
position: absolute !important;
|
|
607
|
-
visibility: hidden;
|
|
608
|
-
}
|
|
609
|
-
.vuuDraggable-list-item {
|
|
610
|
-
--vuuList-item-height: 24px;
|
|
611
|
-
background-color: white;
|
|
612
|
-
}
|
|
613
|
-
.vuuListItem.vuuDraggable-dragAway {
|
|
614
|
-
display: none;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
/* ../vuu-ui-controls/src/drag-drop/Draggable.css */
|
|
618
|
-
.vuuDraggable {
|
|
619
|
-
background: transparent;
|
|
620
|
-
box-shadow: var(--salt-overlayable-shadow-drag);
|
|
621
|
-
cursor: var(--salt-draggable-grab-cursor-active);
|
|
622
|
-
position: absolute;
|
|
623
|
-
opacity: .95;
|
|
624
|
-
z-index: 2000;
|
|
625
|
-
}
|
|
626
|
-
.vuuDraggable-spacer {
|
|
627
|
-
display: var(--vuuDraggable-display, inline-block);
|
|
628
|
-
height: var(--vuuDraggable-spacer-height, var(--tabstrip-height));
|
|
629
|
-
transition: var(--vuuDraggable-transitionProp, width) 0.3s ease;
|
|
630
|
-
width: var(--vuuDraggable-spacer-width, 0);
|
|
631
|
-
}
|
|
632
|
-
.vuuDraggable-dropIndicatorPosition {
|
|
633
|
-
display: var(--saltDraggable-display, inline-block);
|
|
634
|
-
height: 0px;
|
|
635
|
-
width: 100%;
|
|
636
|
-
}
|
|
637
|
-
.vuuDraggable-dropIndicatorContainer {
|
|
638
|
-
transition: var(--vuuDraggable-transitionProp, top) 0.2s ease;
|
|
639
|
-
}
|
|
640
|
-
.vuuDraggable-dropIndicator {
|
|
641
|
-
background-color: var(--salt-palette-accent-background);
|
|
642
|
-
height: 2px;
|
|
643
|
-
width: 100%;
|
|
644
|
-
}
|
|
645
|
-
.vuuDraggable-dropIndicator:before {
|
|
646
|
-
content: "";
|
|
647
|
-
width: 6px;
|
|
648
|
-
height: 6px;
|
|
649
|
-
border-radius: 3px;
|
|
650
|
-
background-color: var(--salt-palette-accent-background);
|
|
651
|
-
position: absolute;
|
|
652
|
-
top: -2px;
|
|
653
|
-
left: -3px;
|
|
654
|
-
}
|
|
655
|
-
.vuuDraggable-settling {
|
|
656
|
-
transition-property: left, top;
|
|
657
|
-
transition-duration: .15s;
|
|
658
|
-
transition-timing-function: ease-out;
|
|
659
|
-
}
|
|
660
|
-
.vuuDraggable-spacer {
|
|
661
|
-
order: 1;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
/* ../vuu-ui-controls/src/list/List.css */
|
|
665
|
-
.vuuList {
|
|
666
|
-
--list-background: var(--salt-container-primary-background);
|
|
667
|
-
--list-borderStyle: var(--vuuList-borderStyle,var(--salt-container-borderStyle));
|
|
668
|
-
--list-borderWidth: var(--salt-size-border);
|
|
669
|
-
--list-height: auto;
|
|
670
|
-
--list-item-height: var(--salt-size-stackable);
|
|
671
|
-
--list-item-gap: 0px;
|
|
672
|
-
--list-maxHeight: 100%;
|
|
673
|
-
--vuuDraggable-display: block;
|
|
674
|
-
--vuuDraggable-spacer-height: 0;
|
|
675
|
-
--vuuDraggable-spacer-width: 100%;
|
|
676
|
-
--vuuDraggable-transitionProp: height;
|
|
677
|
-
--vuuMeasuredContainer-height: var(--computed-list-height);
|
|
678
|
-
background: var(--list-background);
|
|
679
|
-
border-color: var(--salt-container-primary-borderColor);
|
|
680
|
-
border-style: var(--list-borderStyle);
|
|
681
|
-
border-width: var(--list-borderWidth);
|
|
682
|
-
height: var(--saltList-height, var(--list-height));
|
|
683
|
-
max-height: var(--list-maxHeight);
|
|
684
|
-
outline: none;
|
|
685
|
-
position: relative;
|
|
686
|
-
user-select: none;
|
|
687
|
-
width: var(--saltList-width, auto);
|
|
688
|
-
}
|
|
689
|
-
.vuuList-contentSized {
|
|
690
|
-
box-sizing: content-box;
|
|
691
|
-
}
|
|
692
|
-
.vuuList-borderless {
|
|
693
|
-
--list-borderStyle: none;
|
|
694
|
-
}
|
|
695
|
-
.vuuList-viewport {
|
|
696
|
-
height: var(--computed-list-height, var(--measured-px-height));
|
|
697
|
-
overflow: auto;
|
|
698
|
-
width: var(--measured-px-width);
|
|
699
|
-
}
|
|
700
|
-
.vuuListItemHeader {
|
|
701
|
-
--saltList-item-background: var(--list-item-header-background);
|
|
702
|
-
color: var(--list-item-header-color);
|
|
703
|
-
}
|
|
704
|
-
.vuuListItemHeader[data-sticky=true] {
|
|
705
|
-
--saltList-item-background: var(--list-background);
|
|
706
|
-
position: sticky;
|
|
707
|
-
top: 0;
|
|
708
|
-
z-index: 1;
|
|
709
|
-
}
|
|
710
|
-
.vuuList-collapsible .vuuListItemHeader:after {
|
|
711
|
-
border-width: var(--checkbox-borderWidth);
|
|
712
|
-
border-color: var(--checkbox-borderColor);
|
|
713
|
-
content: var(--list-item-header-twisty-content);
|
|
714
|
-
-webkit-mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
715
|
-
mask: var(--list-svg-chevron-down) center center/12px 12px no-repeat;
|
|
716
|
-
background: var(--list-item-header-twisty-color);
|
|
717
|
-
height: 12px;
|
|
718
|
-
left: var(--list-item-header-twisty-left);
|
|
719
|
-
right: var(--list-item-header-twisty-right);
|
|
720
|
-
margin-top: -8px;
|
|
721
|
-
position: absolute;
|
|
722
|
-
top: var(--list-item-header-twisty-top);
|
|
723
|
-
transition: transform 0.3s;
|
|
724
|
-
width: 12px;
|
|
725
|
-
}
|
|
726
|
-
.vuuListItemHeader[aria-expanded=false]:after {
|
|
727
|
-
transform: rotate(-90deg);
|
|
728
|
-
}
|
|
729
|
-
.vuuList-scrollingContentContainer {
|
|
730
|
-
box-sizing: inherit;
|
|
731
|
-
position: relative;
|
|
732
|
-
}
|
|
733
|
-
.vuuList-virtualized .vuuListItem {
|
|
734
|
-
line-height: 30px;
|
|
735
|
-
position: absolute;
|
|
736
|
-
top: 0;
|
|
737
|
-
left: 0;
|
|
738
|
-
right: 0;
|
|
739
|
-
will-change: transform;
|
|
740
|
-
}
|
|
741
|
-
.vuuList.saltFocusVisible:after {
|
|
742
|
-
inset: 2px;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
/* ../vuu-ui-controls/src/list/RadioIcon.css */
|
|
746
|
-
.vuuRadioIcon {
|
|
747
|
-
--vuu-icon-size: 12px;
|
|
748
|
-
--vuu-icon-left: -1px;
|
|
749
|
-
--vuu-icon-top: -1px;
|
|
750
|
-
--vuu-icon-svg: var(--vuu-svg-radio);
|
|
751
|
-
border-style: solid;
|
|
752
|
-
border-color: var(--vuuRadioIcon-borderColor, var(--salt-selectable-borderColor));
|
|
753
|
-
border-radius: 50%;
|
|
754
|
-
border-width: 1px;
|
|
755
|
-
display: inline-block;
|
|
756
|
-
height: var(--vuuRadioIcon-size, 12px);
|
|
757
|
-
position: relative;
|
|
758
|
-
width: var(--vuuRadioIcon-size, 12px);
|
|
759
|
-
}
|
|
760
|
-
.vuuRadioIcon-checked {
|
|
761
|
-
background-image: var(--vuu-svg-radio);
|
|
762
|
-
border: none;
|
|
763
|
-
background-repeat: no-repeat;
|
|
764
|
-
}
|
|
765
|
-
.vuuRadioIcon-checked:after {
|
|
766
|
-
content: "";
|
|
767
|
-
left: var(--vuu-icon-left, auto);
|
|
768
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
769
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
770
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
771
|
-
mask-repeat: no-repeat;
|
|
772
|
-
-webkit-mask-repeat: no-repeat;
|
|
773
|
-
position: absolute;
|
|
774
|
-
top: var(--vuu-icon-top, auto);
|
|
775
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
/* ../vuu-ui-controls/src/list/ChevronIcon.css */
|
|
779
|
-
.vuuChevronIcon {
|
|
780
|
-
--vuu-icon-size: 14px;
|
|
781
|
-
--vuu-icon-left: -1px;
|
|
782
|
-
--vuu-icon-top: -1px;
|
|
783
|
-
height: var(--vuuChevronIcon-size, 14px);
|
|
784
|
-
position: relative;
|
|
785
|
-
width: var(--vuuChevronIcon-size, 14px);
|
|
786
|
-
cursor: pointer;
|
|
787
|
-
}
|
|
788
|
-
.vuuChevronIcon:after {
|
|
789
|
-
content: "";
|
|
790
|
-
background-color: #777C94;
|
|
791
|
-
left: var(--vuu-icon-left, auto);
|
|
792
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
793
|
-
-webkit-mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
794
|
-
mask: var(--vuu-icon-svg) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
795
|
-
mask-repeat: no-repeat;
|
|
796
|
-
-webkit-mask-repeat: no-repeat;
|
|
797
|
-
position: absolute;
|
|
798
|
-
top: var(--vuu-icon-top, auto);
|
|
799
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
800
|
-
}
|
|
801
|
-
.vuuChevronIcon.up {
|
|
802
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-up);
|
|
803
|
-
}
|
|
804
|
-
.vuuChevronIcon.down {
|
|
805
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-down);
|
|
806
|
-
}
|
|
807
|
-
.vuuChevronIcon.left {
|
|
808
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-left);
|
|
809
|
-
}
|
|
810
|
-
.vuuChevronIcon.right {
|
|
811
|
-
--vuu-icon-svg: var(--vuu-svg-chevron-right);
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
/* ../vuu-ui-controls/src/editable-label/EditableLabel.css */
|
|
815
|
-
.vuuEditableLabel {
|
|
816
|
-
--editableLabel-padding: var(--vuuEditableLabel-padding, 6px);
|
|
817
|
-
--editableLabel-height: var(--vuuEditableLabel-height, 26px);
|
|
818
|
-
--saltInput-background: transparent;
|
|
819
|
-
--saltInput-height: calc(var(--editableLabel-height) - 4px);
|
|
820
|
-
--saltInput-minWidth: 14px;
|
|
821
|
-
color: inherit;
|
|
822
|
-
cursor: default;
|
|
823
|
-
display: flex;
|
|
824
|
-
flex-direction: column;
|
|
825
|
-
font-size: var(--salt-text-fontSize);
|
|
826
|
-
height: var(--editableLabel-height);
|
|
827
|
-
justify-content: center;
|
|
828
|
-
max-width: 170px;
|
|
829
|
-
outline: none;
|
|
830
|
-
overflow: hidden;
|
|
831
|
-
padding: 0 var(--editableLabel-padding);
|
|
832
|
-
position: relative;
|
|
833
|
-
text-overflow: ellipsis;
|
|
834
|
-
white-space: nowrap;
|
|
835
|
-
z-index: var(--salt-zIndex-default);
|
|
836
|
-
}
|
|
837
|
-
.vuuEditableLabel:before {
|
|
838
|
-
content: attr(data-text);
|
|
839
|
-
display: block;
|
|
840
|
-
height: 0px;
|
|
841
|
-
visibility: hidden;
|
|
842
|
-
white-space: pre-wrap;
|
|
843
|
-
}
|
|
844
|
-
.vuuEditableLabel .saltInput {
|
|
845
|
-
font-weight: var(--salt-text-fontWeight);
|
|
846
|
-
left: var(--editableLabel-padding, 0);
|
|
847
|
-
padding: 0;
|
|
848
|
-
outline-style: none;
|
|
849
|
-
position: absolute;
|
|
850
|
-
right: var(--editableLabel-padding, 0);
|
|
851
|
-
top: var(--saltEditableLabel-top, 2px);
|
|
852
|
-
width: auto;
|
|
853
|
-
}
|
|
854
|
-
.vuuEditableLabel .saltInput-activationIndicator {
|
|
855
|
-
display: none;
|
|
856
|
-
}
|
|
857
|
-
.vuuEditableLabel-input {
|
|
858
|
-
background-color: transparent;
|
|
859
|
-
border: none;
|
|
860
|
-
box-sizing: content-box;
|
|
861
|
-
color: inherit;
|
|
862
|
-
display: block;
|
|
863
|
-
flex: 1;
|
|
864
|
-
font: inherit;
|
|
865
|
-
height: 20px;
|
|
866
|
-
margin: 0;
|
|
867
|
-
min-width: 0;
|
|
868
|
-
outline: none;
|
|
869
|
-
padding: 0;
|
|
870
|
-
}
|
|
871
|
-
.vuuEditableLabel-label {
|
|
872
|
-
overflow: hidden;
|
|
873
|
-
text-overflow: ellipsis;
|
|
874
|
-
white-space: nowrap;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
/* ../vuu-ui-controls/src/expando-input/ExpandoInput.css */
|
|
878
|
-
.vuuExpandoInput {
|
|
879
|
-
--salt-editable-secondary-background: white;
|
|
880
|
-
--expandoInput-height: var(--vuuExpandoInput-height, 26px);
|
|
881
|
-
--expandoInput-padding: var(--vuuExpandoInput-padding, 6px);
|
|
882
|
-
--saltInput-height: calc(var(--vuuExpandoInput-height) - 4px);
|
|
883
|
-
--saltInput-minWidth: var(--vuuExpandoInput-minWidth, 8px);
|
|
884
|
-
border: var(--vuuExpandoInput-border, none);
|
|
885
|
-
border-radius: var(--vuuExpandoInput-borderRadius, 0);
|
|
886
|
-
color: inherit;
|
|
887
|
-
cursor: default;
|
|
888
|
-
display: inline-block;
|
|
889
|
-
font-size: var(--salt-text-fontSize);
|
|
890
|
-
height: var(--expandoInput-height);
|
|
891
|
-
min-width: calc(var(--saltInput-minWidth) + 2 * var(--expandoInput-padding));
|
|
892
|
-
outline: none;
|
|
893
|
-
padding: 0 var(--expandoInput-padding);
|
|
894
|
-
position: relative;
|
|
895
|
-
}
|
|
896
|
-
.vuuExpandoInput:before {
|
|
897
|
-
content: attr(data-text);
|
|
898
|
-
display: block;
|
|
899
|
-
height: 0px;
|
|
900
|
-
visibility: hidden;
|
|
901
|
-
white-space: pre-wrap;
|
|
902
|
-
}
|
|
903
|
-
.vuuExpandoInput .saltInput {
|
|
904
|
-
font-weight: var(--salt-text-fontWeight);
|
|
905
|
-
left: var(--expandoInput-padding, 0);
|
|
906
|
-
padding: 0;
|
|
907
|
-
outline-style: none;
|
|
908
|
-
position: absolute;
|
|
909
|
-
right: var(--expandoInput-padding, 0);
|
|
910
|
-
top: var(--vuuExpandoInput-top, 2px);
|
|
911
|
-
width: auto;
|
|
912
|
-
}
|
|
913
|
-
.vuuExpandoInput .saltInput-activationIndicator {
|
|
914
|
-
display: none;
|
|
915
|
-
}
|
|
916
|
-
.vuuExpandoInput-input {
|
|
917
|
-
background-color: transparent;
|
|
918
|
-
border: none;
|
|
919
|
-
box-sizing: content-box;
|
|
920
|
-
display: block;
|
|
921
|
-
flex: 1;
|
|
922
|
-
font: inherit;
|
|
923
|
-
height: 20px;
|
|
924
|
-
margin: 0;
|
|
925
|
-
min-width: 0;
|
|
926
|
-
outline: none;
|
|
927
|
-
padding: 0;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
/* ../vuu-ui-controls/src/inputs/Checkbox.css */
|
|
931
|
-
.vuuCheckbox {
|
|
932
|
-
display: flex;
|
|
933
|
-
height: 24px;
|
|
934
|
-
align-items: center;
|
|
935
|
-
gap: 6px;
|
|
936
|
-
color: var(--light-text-primary, #15171B);
|
|
937
|
-
font-feature-settings:
|
|
938
|
-
"ss02" on,
|
|
939
|
-
"ss01" on,
|
|
940
|
-
"salt" on,
|
|
941
|
-
"liga" off;
|
|
942
|
-
font-size: 12px;
|
|
943
|
-
font-weight: 400;
|
|
944
|
-
cursor: pointer;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
/* ../vuu-ui-controls/src/inputs/RadioButton.css */
|
|
948
|
-
.vuuRadioButton {
|
|
949
|
-
display: flex;
|
|
950
|
-
height: 24px;
|
|
951
|
-
align-items: center;
|
|
952
|
-
gap: 6px;
|
|
953
|
-
color: var(--light-text-primary, #15171B);
|
|
954
|
-
font-feature-settings:
|
|
955
|
-
"ss02" on,
|
|
956
|
-
"ss01" on,
|
|
957
|
-
"salt" on,
|
|
958
|
-
"liga" off;
|
|
959
|
-
font-size: 12px;
|
|
960
|
-
font-weight: 400;
|
|
961
|
-
cursor: pointer;
|
|
962
|
-
}
|
|
963
|
-
.radio {
|
|
964
|
-
position: relative;
|
|
965
|
-
height: 12px;
|
|
966
|
-
}
|
|
967
|
-
input[type=radio] {
|
|
968
|
-
position: absolute;
|
|
969
|
-
appearance: none;
|
|
970
|
-
width: 100%;
|
|
971
|
-
height: 100%;
|
|
972
|
-
border-radius: 50%;
|
|
973
|
-
margin: 0;
|
|
974
|
-
top: 0;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
/* ../vuu-table/src/table/ColumnResizer.css */
|
|
978
|
-
.vuuColumnResizer {
|
|
979
|
-
background-color: var(--columnResizer-color);
|
|
980
|
-
cursor: col-resize;
|
|
981
|
-
height: var(--header-height);
|
|
982
|
-
position: relative;
|
|
983
|
-
width: 4px;
|
|
984
|
-
}
|
|
985
|
-
.vuuColumnResizer:hover {
|
|
986
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
987
|
-
}
|
|
988
|
-
.vuuColumnResizer:after {
|
|
989
|
-
content: "";
|
|
990
|
-
position: absolute;
|
|
991
|
-
width: var(--columnResizer-width, 1px);
|
|
992
|
-
top: 0;
|
|
993
|
-
bottom: 0;
|
|
994
|
-
right: -1px;
|
|
995
|
-
background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
|
|
996
|
-
height: var(--columnResizer-height, calc(100% + 1px));
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
/* ../vuu-table/src/table/TableCell.css */
|
|
1000
|
-
.vuuTable {
|
|
1001
|
-
--cell-outline-width: 2px;
|
|
1002
|
-
user-select: none;
|
|
1003
|
-
}
|
|
1004
|
-
[role=cell] {
|
|
1005
|
-
display: inline-block;
|
|
1006
|
-
}
|
|
1007
|
-
[data-align=end] {
|
|
1008
|
-
margin-left: auto;
|
|
1009
|
-
}
|
|
1010
|
-
[data-align=end] + [data-align=end] {
|
|
1011
|
-
margin-left: 0;
|
|
1012
|
-
}
|
|
1013
|
-
.vuuTable-table [role=cell] {
|
|
1014
|
-
--saltEditableLabel-height: 17px;
|
|
1015
|
-
--saltInput-height: 17px;
|
|
1016
|
-
--saltInput-minHeight: 17px;
|
|
1017
|
-
border-right: 1px solid var(--vuuTableCell-border-rightColor);
|
|
1018
|
-
border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
|
|
1019
|
-
color: var(--salt-text-primary-foreground);
|
|
1020
|
-
cursor: default;
|
|
1021
|
-
height: var(--vuuTable-rowHeight);
|
|
1022
|
-
line-height: calc(var(--vuuTable-rowHeight) - 1px);
|
|
1023
|
-
overflow: hidden;
|
|
1024
|
-
padding: 0 5px;
|
|
1025
|
-
vertical-align: top;
|
|
1026
|
-
}
|
|
1027
|
-
.vuuTable-headerCell:focus,
|
|
1028
|
-
.vuuTable [role=cell]:focus {
|
|
1029
|
-
outline: var(--vuuTableCell-outline, dotted var(--salt-color-blue-400) var(--cell-outline-width));
|
|
1030
|
-
outline-offset: calc(var(--cell-outline-width) * -1);
|
|
1031
|
-
box-shadow: inset 0 0 0 var(--cell-outline-width) white;
|
|
1032
|
-
border-bottom: none;
|
|
1033
|
-
}
|
|
1034
|
-
.vuuTable-headerCell:focus .vuuTable-headerCell-inner {
|
|
1035
|
-
padding-bottom: var(--cell-outline-width);
|
|
1036
|
-
}
|
|
1037
|
-
.vuuTable-headerCell:not(.vuuTable-headerCell-resizing):focus .vuuTable-headerCell-inner {
|
|
1038
|
-
--columnResizer-color: transparent;
|
|
1039
|
-
}
|
|
1040
|
-
.vuuTable [role=cell]:focus {
|
|
1041
|
-
border-right: none;
|
|
1042
|
-
padding-bottom: 1px;
|
|
1043
|
-
}
|
|
1044
|
-
[role=cell][data-editable=true] {
|
|
1045
|
-
--salt-text-fontSize: 10px;
|
|
1046
|
-
--vuu-icon-size: 5px;
|
|
1047
|
-
position: relative;
|
|
1048
|
-
}
|
|
1049
|
-
[role=cell][data-editable=true]:after {
|
|
1050
|
-
top: 0;
|
|
1051
|
-
content: "";
|
|
1052
|
-
background-color: var(--salt-text-secondary-foreground, black);
|
|
1053
|
-
left: 0;
|
|
1054
|
-
height: var(--vuu-icon-height, var(--vuu-icon-size, 12px));
|
|
1055
|
-
-webkit-mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
1056
|
-
mask: var(--svg-corner-triangle) center center/var(--vuu-icon-size) var(--vuu-icon-size);
|
|
1057
|
-
mask-repeat: no-repeat;
|
|
1058
|
-
-webkit-mask-repeat: no-repeat;
|
|
1059
|
-
position: absolute;
|
|
1060
|
-
transform: rotate(180deg);
|
|
1061
|
-
width: var(--vuu-icon-width, var(--vuu-icon-size, 12px));
|
|
1062
|
-
}
|
|
1063
|
-
[role=cell]:focus[data-editable],
|
|
1064
|
-
[role=cell]:focus-within[data-editable],
|
|
1065
|
-
[role=cell]:has(.saltEditableLabel-editing) {
|
|
1066
|
-
outline: solid var(--salt-color-blue-400) 1px;
|
|
1067
|
-
background-color: white;
|
|
1068
|
-
outline-offset: -1px;
|
|
1069
|
-
}
|
|
1070
|
-
[role=cell]:focus[data-editable=true]:after,
|
|
1071
|
-
[role=cell]:has(.saltEditableLabel):after {
|
|
1072
|
-
background-color: var(--salt-color-blue-400);
|
|
1073
|
-
left: 1px;
|
|
1074
|
-
top: 1px;
|
|
1075
|
-
}
|
|
1076
|
-
.vuuAlignRight {
|
|
1077
|
-
text-align: right;
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
/* ../vuu-table/src/table/TableGroupCell.css */
|
|
1081
|
-
.vuuTableGroupCell {
|
|
1082
|
-
--spacer-width: 20px;
|
|
1083
|
-
--toggle-icon-transform: var(--row-toggle-icon-transform, none);
|
|
1084
|
-
--vuu-icon-width: 18px;
|
|
1085
|
-
align-items: center;
|
|
1086
|
-
display: inline-flex;
|
|
1087
|
-
}
|
|
1088
|
-
.vuuTableGroupCell-spacer {
|
|
1089
|
-
height: 100%;
|
|
1090
|
-
position: relative;
|
|
1091
|
-
width: var(--spacer-width);
|
|
1092
|
-
}
|
|
1093
|
-
.vuuTableGroupCell-spacer:after {
|
|
1094
|
-
background: var(--salt-container-primary-borderColor);
|
|
1095
|
-
content: "";
|
|
1096
|
-
position: absolute;
|
|
1097
|
-
top: 0;
|
|
1098
|
-
bottom: -1px;
|
|
1099
|
-
left: 9px;
|
|
1100
|
-
width: 1px;
|
|
1101
|
-
}
|
|
1102
|
-
.vuuTableGroupCell-toggle {
|
|
1103
|
-
transition: transform 0.25s;
|
|
1104
|
-
transform: var(--toggle-icon-transform);
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1107
|
-
/* ../vuu-table/src/table/TableRow.css */
|
|
1108
|
-
.vuuTableRow {
|
|
1109
|
-
--row-background: var(--table-background);
|
|
1110
|
-
position: absolute;
|
|
1111
|
-
top: 0;
|
|
1112
|
-
}
|
|
1113
|
-
.vuuTableRow-even {
|
|
1114
|
-
--row-background: var(--row-background-even);
|
|
1115
|
-
}
|
|
1116
|
-
.vuuTableRow {
|
|
1117
|
-
background-color: var(--row-background);
|
|
1118
|
-
}
|
|
1119
|
-
.vuuTableRow-expanded {
|
|
1120
|
-
--row-toggle-icon-transform: rotate(90deg);
|
|
1121
|
-
}
|
|
1122
|
-
.vuuTableRow[aria-selected] {
|
|
1123
|
-
background-color: var(--vuuTableRow-selected-background, var(--salt-selectable-background-selected));
|
|
1124
|
-
--vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
|
|
1125
|
-
}
|
|
1126
|
-
.vuuTableRow-preSelected {
|
|
1127
|
-
--vuuTableCell-border-bottomColor: var(--salt-selectable-borderColor-selected);
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
/* ../vuu-table/src/table/TableGroupHeaderCell.css */
|
|
1131
|
-
.salt-theme {
|
|
1132
|
-
--svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
|
|
1133
|
-
}
|
|
1134
|
-
.vuuTable-groupHeaderCell {
|
|
1135
|
-
--cell-align: "flex-start";
|
|
1136
|
-
text-align: left;
|
|
1137
|
-
background: var(--dataTable-background);
|
|
1138
|
-
cursor: default;
|
|
1139
|
-
height: var(--vuuTableHeaderHeight);
|
|
1140
|
-
}
|
|
1141
|
-
.vuuTable-groupHeaderCell-inner {
|
|
1142
|
-
align-items: center;
|
|
1143
|
-
display: flex;
|
|
1144
|
-
height: 100%;
|
|
1145
|
-
padding-left: 1px;
|
|
1146
|
-
}
|
|
1147
|
-
.vuuTable-groupHeaderCell-label {
|
|
1148
|
-
align-items: center;
|
|
1149
|
-
display: flex;
|
|
1150
|
-
flex: 0 0 auto;
|
|
1151
|
-
}
|
|
1152
|
-
.vuuTable-groupHeaderCell-col {
|
|
1153
|
-
align-items: center;
|
|
1154
|
-
background-color: inherit;
|
|
1155
|
-
display: inline-flex;
|
|
1156
|
-
flex: 0 1 auto;
|
|
1157
|
-
height: calc(var(--vuuTableHeaderHeight) - 2px);
|
|
1158
|
-
justify-content: space-between;
|
|
1159
|
-
padding-right: 8px;
|
|
1160
|
-
position: relative;
|
|
1161
|
-
}
|
|
1162
|
-
.vuuTable-groupHeaderCell-close {
|
|
1163
|
-
--vuu-icon-height: 18px;
|
|
1164
|
-
--vuu-icon-width: 18px;
|
|
1165
|
-
cursor: pointer;
|
|
1166
|
-
left: 3px;
|
|
1167
|
-
}
|
|
1168
|
-
.vuuTable-groupHeaderCell-col:nth-child(odd) {
|
|
1169
|
-
background-color: var(--salt-color-gray-50);
|
|
1170
|
-
}
|
|
1171
|
-
.vuuTable-groupHeaderCell-col:nth-child(even) {
|
|
1172
|
-
background-color: var(--salt-color-gray-40);
|
|
1173
|
-
}
|
|
1174
|
-
.vuuTable-groupHeaderCell-col:first-child {
|
|
1175
|
-
clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
|
|
1176
|
-
padding-left: 3px;
|
|
1177
|
-
z-index: 1;
|
|
1178
|
-
}
|
|
1179
|
-
.vuuTable-groupHeaderCell-col:not(:first-child) {
|
|
1180
|
-
margin-left: -6px;
|
|
1181
|
-
padding-left: 12px;
|
|
1182
|
-
clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%, 8px 50%);
|
|
1183
|
-
}
|
|
1184
|
-
.vuuTable-groupHeaderCell-resizing {
|
|
1185
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
1186
|
-
--columnResizer-height: var(--table-height);
|
|
1187
|
-
--columnResizer-width: 2px;
|
|
1188
|
-
}
|
|
1189
|
-
.vuuTable-groupHeaderCell-pending {
|
|
1190
|
-
--pending-content: "";
|
|
1191
|
-
}
|
|
1192
|
-
.vuuTable-groupHeaderCell-col:has(+ .vuuColumnResizer):after {
|
|
1193
|
-
content: var(--pending-content);
|
|
1194
|
-
width: 24px;
|
|
1195
|
-
height: 24px;
|
|
1196
|
-
background-image: var(--svg-spinner);
|
|
1197
|
-
background-repeat: no-repeat;
|
|
1198
|
-
background-size: cover;
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
/* ../vuu-table/src/table/SortIndicator.css */
|
|
1202
|
-
.vuuSortIndicator {
|
|
1203
|
-
--menu-icon-size: 18px;
|
|
1204
|
-
--menu-item-icon-color: black;
|
|
1205
|
-
display: flex;
|
|
1206
|
-
flex-direction: column;
|
|
1207
|
-
position: relative;
|
|
1208
|
-
width: 18px;
|
|
1209
|
-
}
|
|
1210
|
-
.vuuSortPosition {
|
|
1211
|
-
font-size: 10px;
|
|
1212
|
-
line-height: 10px;
|
|
1213
|
-
text-align: center;
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
/* ../vuu-table/src/table/TableHeaderCell.css */
|
|
1217
|
-
.vuuTable-heading:nth-child(2) {
|
|
1218
|
-
--heading-top: calc(var(--header-height));
|
|
1219
|
-
}
|
|
1220
|
-
.vuuTable-heading:nth-child(3) {
|
|
1221
|
-
--heading-top: calc(var(--header-height) * 2);
|
|
1222
|
-
}
|
|
1223
|
-
.vuuTable-heading:nth-child(3) {
|
|
1224
|
-
--heading-top: calc(var(--header-height) * 3);
|
|
1225
|
-
}
|
|
1226
|
-
.vuuTable-headingCell {
|
|
1227
|
-
background: var(--dataTable-background);
|
|
1228
|
-
border-color: var(--salt-separable-tertiary-borderColor);
|
|
1229
|
-
border-style: solid solid solid none;
|
|
1230
|
-
border-width: 1px;
|
|
1231
|
-
color: var(--salt-text-secondary-foreground);
|
|
1232
|
-
display: inline-block;
|
|
1233
|
-
height: var(--vuuTableHeaderHeight);
|
|
1234
|
-
padding: 0 !important;
|
|
1235
|
-
}
|
|
1236
|
-
.vuuTable-heading:has(+ .vuuTable-heading) > .vuuTable-headingCell {
|
|
1237
|
-
border-bottom-color: transparent;
|
|
1238
|
-
}
|
|
1239
|
-
[role=columnHeader] {
|
|
1240
|
-
--vuuTableCell-border-bottomColor: var(--salt-separable-tertiary-borderColor);
|
|
1241
|
-
--cell-align: "flex-start";
|
|
1242
|
-
display: inline-block;
|
|
1243
|
-
text-align: left;
|
|
1244
|
-
background: var(--dataTable-background);
|
|
1245
|
-
border-right: 1px solid var(--vuuTableCell-border-rightColor);
|
|
1246
|
-
border-bottom: 1px solid var(--vuuTableCell-border-bottomColor);
|
|
1247
|
-
color: var(--salt-text-secondary-foreground);
|
|
1248
|
-
cursor: default;
|
|
1249
|
-
height: var(--vuuTableHeaderHeight);
|
|
1250
|
-
padding: 0 !important;
|
|
1251
|
-
vertical-align: top;
|
|
1252
|
-
}
|
|
1253
|
-
.vuuTable-headerCell-right {
|
|
1254
|
-
--cell-align: flex-end;
|
|
1255
|
-
}
|
|
1256
|
-
.vuuTable-headerCell-inner {
|
|
1257
|
-
align-items: stretch;
|
|
1258
|
-
display: flex;
|
|
1259
|
-
height: 100%;
|
|
1260
|
-
padding: 0 0 0 3px;
|
|
1261
|
-
}
|
|
1262
|
-
.vuuTable-headerCell-inner:has(.vuuFilterIndicator) {
|
|
1263
|
-
padding-left: 0;
|
|
1264
|
-
}
|
|
1265
|
-
.vuuTable-headerCell-label {
|
|
1266
|
-
align-items: center;
|
|
1267
|
-
justify-content: var(--cell-align);
|
|
1268
|
-
display: flex;
|
|
1269
|
-
flex: 1 1 auto;
|
|
1270
|
-
}
|
|
1271
|
-
.vuuTable-headerCell-resizing {
|
|
1272
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
1273
|
-
--columnResizer-height: var(--table-height);
|
|
1274
|
-
--columnResizer-width: 2px;
|
|
1275
|
-
}
|
|
1276
|
-
[role=headerCell].vuuPinLeft.vuuEndPin:after {
|
|
1277
|
-
box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.4);
|
|
1278
|
-
content: "";
|
|
1279
|
-
position: absolute;
|
|
1280
|
-
width: 1px;
|
|
1281
|
-
background-color: transparent;
|
|
1282
|
-
height: var(--table-height);
|
|
1283
|
-
top: 0;
|
|
1284
|
-
right: 0px;
|
|
1285
|
-
}
|
|
1286
|
-
[role=headerCell].vuuPinRight.vuuEndPin:after {
|
|
1287
|
-
box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.3);
|
|
1288
|
-
content: "";
|
|
1289
|
-
position: absolute;
|
|
1290
|
-
width: 1px;
|
|
1291
|
-
background-color: transparent;
|
|
1292
|
-
height: var(--table-height);
|
|
1293
|
-
top: 0;
|
|
1294
|
-
left: 0px;
|
|
1295
|
-
}
|
|
1296
|
-
[role=headerCell]:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
|
|
1297
|
-
top: 0;
|
|
1298
|
-
z-index: 20;
|
|
1299
|
-
}
|
|
1300
|
-
.saltDraggable-vuuTable-headerCell {
|
|
1301
|
-
--dataTable-background: ivory;
|
|
1302
|
-
--vuuTableHeaderHeight: 25px;
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
/* ../vuu-table/src/table/filter-indicator.css */
|
|
1306
|
-
.vuuFilterIndicator {
|
|
1307
|
-
--menu-icon-size: 12px;
|
|
1308
|
-
--menu-item-icon-color: black;
|
|
1309
|
-
align-items: center;
|
|
1310
|
-
cursor: pointer;
|
|
1311
|
-
display: flex;
|
|
1312
|
-
flex: 0 0 18px;
|
|
1313
|
-
flex-direction: column;
|
|
1314
|
-
justify-content: center;
|
|
1315
|
-
position: relative;
|
|
1316
|
-
}
|
|
1317
|
-
.vuuFilterIndicator + .vuuTable-headerCell-inner {
|
|
1318
|
-
padding-left: 0;
|
|
1319
|
-
}
|
|
1320
|
-
|
|
1321
|
-
/* ../vuu-table/src/table/RowBasedTable.css */
|
|
1322
|
-
.vuuTable-table {
|
|
1323
|
-
--vuuTable-rowHeight: var(--row-height);
|
|
1324
|
-
--vuuTableCell-border-bottomColor: transparent;
|
|
1325
|
-
--vuuTableCell-border-rightColor: var(--salt-separable-tertiary-borderColor);
|
|
1326
|
-
border-collapse: separate;
|
|
1327
|
-
border-spacing: 0;
|
|
1328
|
-
border-left: 1px solid #ccc;
|
|
1329
|
-
border: none;
|
|
1330
|
-
font-size: var(--vuuTable-font-size, 10px);
|
|
1331
|
-
margin: 0;
|
|
1332
|
-
min-height: 100%;
|
|
1333
|
-
width: var(--content-width);
|
|
1334
|
-
}
|
|
1335
|
-
.vuuTable-headers {
|
|
1336
|
-
position: sticky;
|
|
1337
|
-
top: 0;
|
|
1338
|
-
z-index: 1;
|
|
1339
|
-
}
|
|
1340
|
-
.vuuTable-body {
|
|
1341
|
-
height: var(--content-height);
|
|
1342
|
-
position: relative;
|
|
1343
|
-
}
|
|
1344
|
-
|
|
1345
|
-
/* ../vuu-table/src/table/Table.css */
|
|
1346
|
-
.vuuTable {
|
|
1347
|
-
--dataTable-background: var(--salt-container-primary-background, inherit);
|
|
1348
|
-
--row-background-even: var(--dataTable-background);
|
|
1349
|
-
--row-background-odd: var(--dataTable-background);
|
|
1350
|
-
--table-background: var(--dataTable-background, none);
|
|
1351
|
-
background-color: var(--dataTable-background);
|
|
1352
|
-
position: relative;
|
|
1353
|
-
}
|
|
1354
|
-
.vuuTable-zebra {
|
|
1355
|
-
--row-background-even: var(--salt-container-secondary-background);
|
|
1356
|
-
}
|
|
1357
|
-
.vuuTable-scrollbarContainer {
|
|
1358
|
-
--scroll-content-width: calc(var(--content-width) - var(--pinned-width-left));
|
|
1359
|
-
border-bottom: none !important;
|
|
1360
|
-
border-top: none !important;
|
|
1361
|
-
border-left: solid 1px var(--salt-container-primary-borderColor);
|
|
1362
|
-
box-shadow: 0px -1px 0px 0px var(--salt-container-primary-borderColor);
|
|
1363
|
-
height: var(--viewport-body-height);
|
|
1364
|
-
left: var(--pinned-width-left);
|
|
1365
|
-
overflow: auto;
|
|
1366
|
-
position: absolute;
|
|
1367
|
-
top: var(--total-header-height);
|
|
1368
|
-
width: calc(var(--table-width) - var(--pinned-width-left) + 1px);
|
|
1369
|
-
}
|
|
1370
|
-
.vuuTable-scrollbarContent {
|
|
1371
|
-
height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
|
|
1372
|
-
position: absolute;
|
|
1373
|
-
width: var(--scroll-content-width, var(--content-width));
|
|
1374
|
-
}
|
|
1375
|
-
.vuuTable-contentContainer {
|
|
1376
|
-
--vuuTableHeaderHeight: var(--header-height, 30px);
|
|
1377
|
-
background-color: var(--salt-container-primary-background);
|
|
1378
|
-
height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
1379
|
-
position: relative;
|
|
1380
|
-
overflow: auto;
|
|
1381
|
-
overscroll-behavior: none;
|
|
1382
|
-
width: calc(var(--table-width) - var(--vertical-scrollbar-width));
|
|
1383
|
-
}
|
|
1384
|
-
.vuuTable-contentContainer::-webkit-scrollbar {
|
|
1385
|
-
display: none;
|
|
1386
|
-
}
|
|
1387
|
-
:is(.vuuPinLeft, .vuuPinRight, .vuuPinFloating) {
|
|
1388
|
-
background-color: inherit;
|
|
1389
|
-
position: sticky;
|
|
1390
|
-
z-index: 1;
|
|
1391
|
-
}
|
|
1392
|
-
.vuuTable-settings {
|
|
1393
|
-
--saltButton-height: var(--header-height);
|
|
1394
|
-
--saltButton-width: 15px;
|
|
1395
|
-
position: absolute !important;
|
|
1396
|
-
right: 0;
|
|
1397
|
-
top: 0;
|
|
1398
|
-
}
|
|
1399
|
-
.vuuTable:has(.vuuTable-headerCell-resizing) * {
|
|
1400
|
-
cursor: col-resize;
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
/* ../vuu-table/src/table/Table-loading.css */
|
|
1404
|
-
.vuuTable-loading .vuuTable-table {
|
|
1405
|
-
--skeleton-height: 20px;
|
|
1406
|
-
--skeleton-width: calc(var(--content-width) - 8px);
|
|
1407
|
-
--skeleton-left: 4px;
|
|
1408
|
-
--skeleton-row-height: 16px;
|
|
1409
|
-
--skeleton-size: var(--skeleton-width) var(--skeleton-height);
|
|
1410
|
-
--skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
|
|
1411
|
-
--skeleton-background-image: var(--skeleton-row);
|
|
1412
|
-
background-image: var(--skeleton-background-image);
|
|
1413
|
-
background-repeat: repeat-y;
|
|
1414
|
-
background-size: var(--skeleton-size);
|
|
1415
|
-
background-position-x: var(--skeleton-left);
|
|
1416
|
-
background-position-y: 27px;
|
|
1417
|
-
}
|
|
1418
|
-
.vuuTable-loading .vuuTable-table {
|
|
1419
|
-
--skeleton-height: 20px;
|
|
1420
|
-
--skeleton-width: calc(var(--content-width) - 8px);
|
|
1421
|
-
--skeleton-left: 4px;
|
|
1422
|
-
--skeleton-row-height: 16px;
|
|
1423
|
-
--skeleton-size: var(--skeleton-width) var(--skeleton-height);
|
|
1424
|
-
--skeleton-row: linear-gradient( var(--salt-color-gray-20-fade-background) var(--skeleton-row-height), transparent 0 );
|
|
1425
|
-
--skeleton-background-image: var(--skeleton-row);
|
|
1426
|
-
background-image: var(--skeleton-background-image);
|
|
1427
|
-
background-repeat: repeat-y;
|
|
1428
|
-
background-size: var(--skeleton-size);
|
|
1429
|
-
background-position-x: var(--skeleton-left);
|
|
1430
|
-
background-position-y: 27px;
|
|
1431
|
-
}
|
|
1432
|
-
.vuuTable-loading .vuuTable-table:after {
|
|
1433
|
-
animation: shimmer 2s infinite;
|
|
1434
|
-
background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, 0));
|
|
1435
|
-
content: "";
|
|
1436
|
-
height: var(--table-height);
|
|
1437
|
-
left: 0px;
|
|
1438
|
-
position: absolute;
|
|
1439
|
-
transform: translateX(-100%);
|
|
1440
|
-
top: var(--header-height);
|
|
1441
|
-
width: var(--content-width);
|
|
1442
|
-
}
|
|
1443
|
-
@keyframes shimmer {
|
|
1444
|
-
100% {
|
|
1445
|
-
transform: translateX(100%);
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
|
|
1449
|
-
/* ../vuu-table/src/table/cell-renderers/json-cell/JsonCell.css */
|
|
1450
|
-
.vuuJsonCell-group {
|
|
1451
|
-
align-items: center;
|
|
1452
|
-
display: inline-flex;
|
|
1453
|
-
height: calc(var(--vuuTable-rowHeight) - 1px);
|
|
1454
|
-
width: 100%;
|
|
1455
|
-
}
|
|
1456
|
-
.vuuJsonCell-toggle {
|
|
1457
|
-
--vuu-icon-color: var(--salt-text-primary-foreground);
|
|
1458
|
-
--vuu-icon-height: calc(var(--vuuTable-rowHeight) - 1px);
|
|
1459
|
-
--vuu-icon-width: 18px;
|
|
1460
|
-
flex-shrink: 0;
|
|
1461
|
-
margin-left: auto;
|
|
1462
|
-
}
|
|
1463
|
-
.vuuJsonCell-name {
|
|
1464
|
-
font-weight: var(--salt-typography-fontWeight-semiBold);
|
|
1465
|
-
}
|
|
1466
|
-
.vuuJsonCell-value {
|
|
1467
|
-
overflow: hidden;
|
|
1468
|
-
text-overflow: ellipsis;
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
/* ../vuu-table/src/table-next/column-resizing/ColumnResizer.css */
|
|
1472
|
-
.vuuColumnResizerNext {
|
|
1473
|
-
background-color: var(--columnResizer-color);
|
|
1474
|
-
cursor: col-resize;
|
|
1475
|
-
height: var(--header-height);
|
|
1476
|
-
margin-left: var(--columnResizer-left, auto);
|
|
1477
|
-
position: relative;
|
|
1478
|
-
width: 2px;
|
|
1479
|
-
}
|
|
1480
|
-
.vuuColumnResizerNext:hover {
|
|
1481
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
1482
|
-
}
|
|
1483
|
-
.vuuColumnResizerNext:after {
|
|
1484
|
-
background-color: var(--columnResizer-color, var(--salt-separable-tertiary-borderColor));
|
|
1485
|
-
bottom: 0;
|
|
1486
|
-
content: "";
|
|
1487
|
-
position: absolute;
|
|
1488
|
-
top: 0;
|
|
1489
|
-
right: 0px;
|
|
1490
|
-
height: var(--columnResizer-height, 0);
|
|
1491
|
-
width: 2px;
|
|
1492
|
-
}
|
|
1493
|
-
|
|
1494
|
-
/* ../vuu-table/src/table-next/column-header-pill/ColumnHeaderPill.css */
|
|
1495
|
-
.vuuColumnHeaderPill {
|
|
1496
|
-
--vuu-icon-size: 14px;
|
|
1497
|
-
--menu-item-icon-color: black;
|
|
1498
|
-
--vuu-icon-color: white;
|
|
1499
|
-
--vuu-icon-height: 12px;
|
|
1500
|
-
--vuu-icon-width: 13px;
|
|
1501
|
-
align-items: center;
|
|
1502
|
-
background: var(--salt-taggable-background-active);
|
|
1503
|
-
color: white;
|
|
1504
|
-
border-radius: 4px;
|
|
1505
|
-
font-size: 11px;
|
|
1506
|
-
gap: 4px;
|
|
1507
|
-
height: 16px;
|
|
1508
|
-
display: flex;
|
|
1509
|
-
margin: var(--vuuColumnHeaderPill-margin, 0);
|
|
1510
|
-
padding: 0 6px;
|
|
1511
|
-
position: relative;
|
|
1512
|
-
}
|
|
1513
|
-
.vuuColumnHeaderPill:hover {
|
|
1514
|
-
--vuu-icon-color: var(--vuu-color-gray-80);
|
|
1515
|
-
background-color: var(--salt-taggable-background-hover);
|
|
1516
|
-
color: var(--vuu-color-gray-80);
|
|
1517
|
-
}
|
|
1518
|
-
.vuuColumnHeaderPill-removeButton {
|
|
1519
|
-
cursor: pointer;
|
|
1520
|
-
}
|
|
1521
|
-
|
|
1522
|
-
/* ../vuu-table/src/table-next/column-header-pill/GroupColumnPill.css */
|
|
1523
|
-
.vuuSortPosition {
|
|
1524
|
-
font-size: 11px;
|
|
1525
|
-
font-weight: 700;
|
|
1526
|
-
padding-top: 1px;
|
|
1527
|
-
}
|
|
1528
|
-
|
|
1529
|
-
/* ../vuu-table/src/table-next/column-header-pill/SortIndicator.css */
|
|
1530
|
-
.vuuSortPosition {
|
|
1531
|
-
font-size: 11px;
|
|
1532
|
-
font-weight: 700;
|
|
1533
|
-
padding-top: 1px;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
/* ../vuu-table/src/table-next/header-cell/GroupHeaderCell.css */
|
|
1537
|
-
.vuu-theme {
|
|
1538
|
-
--svg-spinner: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgb(38, 112, 169)" d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50"><animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /></path></svg>');
|
|
1539
|
-
}
|
|
1540
|
-
.vuuTableNextGroupHeaderCell.vuuTableNextHeaderCell {
|
|
1541
|
-
--vuuColumnHeaderPill-margin: 0;
|
|
1542
|
-
--cell-align: "flex-start";
|
|
1543
|
-
text-align: left;
|
|
1544
|
-
background: var(--dataTable-background);
|
|
1545
|
-
cursor: default;
|
|
1546
|
-
height: var(--vuuTableHeaderHeight);
|
|
1547
|
-
}
|
|
1548
|
-
.vuuTableNextGroupHeaderCell-inner {
|
|
1549
|
-
align-items: center;
|
|
1550
|
-
display: flex;
|
|
1551
|
-
gap: 4px;
|
|
1552
|
-
height: 100%;
|
|
1553
|
-
padding-left: 1px;
|
|
1554
|
-
}
|
|
1555
|
-
.vuuTableNextGroupHeaderCell-col {
|
|
1556
|
-
align-items: center;
|
|
1557
|
-
background-color: inherit;
|
|
1558
|
-
display: inline-flex;
|
|
1559
|
-
flex: 0 1 auto;
|
|
1560
|
-
height: calc(var(--vuuTableHeaderHeight) - 2px);
|
|
1561
|
-
justify-content: space-between;
|
|
1562
|
-
padding-right: 8px;
|
|
1563
|
-
position: relative;
|
|
1564
|
-
}
|
|
1565
|
-
.vuuTableNextGroupHeaderCell-label {
|
|
1566
|
-
align-items: center;
|
|
1567
|
-
display: flex;
|
|
1568
|
-
flex: 0 0 auto;
|
|
1569
|
-
}
|
|
1570
|
-
.vuuTableNextGroupHeaderCell-close {
|
|
1571
|
-
--vuu-icon-height: 18px;
|
|
1572
|
-
--vuu-icon-width: 18px;
|
|
1573
|
-
cursor: pointer;
|
|
1574
|
-
left: 3px;
|
|
1575
|
-
}
|
|
1576
|
-
.vuuTableNextGroupHeaderCell-resizing {
|
|
1577
|
-
--columnResizer-color: var(--salt-color-blue-500);
|
|
1578
|
-
--columnResizer-height: var(--table-height);
|
|
1579
|
-
--columnResizer-width: 2px;
|
|
1580
|
-
}
|
|
1581
|
-
.vuuTableNextGroupHeaderCell-pending {
|
|
1582
|
-
--pending-content: "";
|
|
1583
|
-
}
|
|
1584
|
-
.vuuTableNextGroupHeaderCell-col:has(+ .vuuColumnResizer):after {
|
|
1585
|
-
content: var(--pending-content);
|
|
1586
|
-
width: 24px;
|
|
1587
|
-
height: 24px;
|
|
1588
|
-
background-image: var(--svg-spinner);
|
|
1589
|
-
background-repeat: no-repeat;
|
|
1590
|
-
background-size: cover;
|
|
1591
|
-
}
|
|
1592
|
-
|
|
1593
|
-
/* ../vuu-table/src/table-next/column-menu/ColumnMenu.css */
|
|
1594
|
-
.vuuMenuItem {
|
|
1595
|
-
--vuu-svg-cog: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M12.9533 8.65331C12.98 8.43998 13 8.22665 13 7.99998C13 7.77331 12.98 7.55998 12.9533 7.34665L14.36 6.24665C14.4867 6.14665 14.52 5.96665 14.44 5.81998L13.1067 3.51331C13.0267 3.36665 12.8467 3.31331 12.7 3.36665L11.04 4.03331C10.6933 3.76665 10.32 3.54665 9.91333 3.37998L9.66 1.61331C9.64 1.45331 9.5 1.33331 9.33333 1.33331H6.66667C6.5 1.33331 6.36 1.45331 6.34 1.61331L6.08667 3.37998C5.68 3.54665 5.30667 3.77331 4.96 4.03331L3.3 3.36665C3.14667 3.30665 2.97333 3.36665 2.89333 3.51331L1.56 5.81998C1.47333 5.96665 1.51333 6.14665 1.64 6.24665L3.04667 7.34665C3.02 7.55998 3 7.77998 3 7.99998C3 8.21998 3.02 8.43998 3.04667 8.65331L1.64 9.75331C1.51333 9.85331 1.48 10.0333 1.56 10.18L2.89333 12.4866C2.97333 12.6333 3.15333 12.6866 3.3 12.6333L4.96 11.9666C5.30667 12.2333 5.68 12.4533 6.08667 12.62L6.34 14.3866C6.36 14.5466 6.5 14.6666 6.66667 14.6666H9.33333C9.5 14.6666 9.64 14.5466 9.66 14.3866L9.91333 12.62C10.32 12.4533 10.6933 12.2266 11.04 11.9666L12.7 12.6333C12.8533 12.6933 13.0267 12.6333 13.1067 12.4866L14.44 10.18C14.52 10.0333 14.4867 9.85331 14.36 9.75331L12.9533 8.65331V8.65331ZM8 10.3333C6.71333 10.3333 5.66667 9.28665 5.66667 7.99998C5.66667 6.71331 6.71333 5.66665 8 5.66665C9.28667 5.66665 10.3333 6.71331 10.3333 7.99998C10.3333 9.28665 9.28667 10.3333 8 10.3333Z"/></svg>');
|
|
1596
|
-
}
|
|
1597
|
-
.vuuTable-columnMenu {
|
|
1598
|
-
--vuu-icon-color: #606477;
|
|
1599
|
-
--vuu-icon-height: 20px;
|
|
1600
|
-
--vuu-icon-left: 0px;
|
|
1601
|
-
--vuu-icon-size: 16px;
|
|
1602
|
-
--vuu-icon-top: 0px;
|
|
1603
|
-
--vuu-icon-width: 20px;
|
|
1604
|
-
border-radius: 4px;
|
|
1605
|
-
cursor: pointer;
|
|
1606
|
-
display: inline-block;
|
|
1607
|
-
padding: 2px;
|
|
1608
|
-
left: var(--column-menu-left, 0);
|
|
1609
|
-
margin: var(--vuuTable-columnMenu-margin, 0);
|
|
1610
|
-
}
|
|
1611
|
-
.vuuTable-columnMenu:hover {
|
|
1612
|
-
--vuu-icon-color: #15171B;
|
|
1613
|
-
background-color: #F37880;
|
|
1614
|
-
}
|
|
1615
|
-
.vuuTable-columnMenu-open:hover,
|
|
1616
|
-
.vuuTable-columnMenu-open {
|
|
1617
|
-
background-color: #6D18BD;
|
|
1618
|
-
--vuu-icon-color: white;
|
|
1619
|
-
}
|
|
1620
|
-
[data-icon=cog] {
|
|
1621
|
-
--vuu-icon-svg: var(--vuu-svg-cog);
|
|
1622
|
-
--vuu-icon-size: 14px;
|
|
1623
|
-
}
|
|
1624
|
-
.vuuColumnMenuList {
|
|
1625
|
-
--vuuMenuList-borderStyle: solid;
|
|
1626
|
-
border-radius: 4px;
|
|
1627
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
1628
|
-
border-color: var(--vuuMenuList-borderColor, var(--salt-container-primary-borderColor));
|
|
1629
|
-
border-style: solid;
|
|
1630
|
-
border-width: 1px;
|
|
1631
|
-
}
|
|
1632
|
-
|
|
1633
|
-
/* ../vuu-table/src/table-next/header-cell/HeaderCell.css */
|
|
1634
|
-
.vuuTableNextHeaderCell {
|
|
1635
|
-
--cell-align: "flex-start";
|
|
1636
|
-
--vuuColumnHeaderPill-margin: 0 0 0 3px;
|
|
1637
|
-
align-items: center;
|
|
1638
|
-
background-color: var(--vuuTableNextHeaderCell-background, inherit);
|
|
1639
|
-
border-bottom: 1px solid #ccc;
|
|
1640
|
-
border-right-color: var(--cell-borderColor);
|
|
1641
|
-
border-right-style: solid;
|
|
1642
|
-
border-right-width: 1px;
|
|
1643
|
-
box-sizing: border-box;
|
|
1644
|
-
cursor: default;
|
|
1645
|
-
display: inline-flex;
|
|
1646
|
-
height: var(--header-height);
|
|
1647
|
-
vertical-align: top;
|
|
1648
|
-
}
|
|
1649
|
-
.vuuTableNextHeaderCell-right {
|
|
1650
|
-
--columnResizer-left: 0;
|
|
1651
|
-
--vuuTable-columnMenu-margin: 0;
|
|
1652
|
-
--vuuColumnHeaderPill-margin: 0 3px 0 0;
|
|
1653
|
-
--column-menu-left: 2px;
|
|
1654
|
-
justify-content: flex-end;
|
|
1655
|
-
}
|
|
1656
|
-
.vuuTableNextHeaderCell .vuuColumnResizerNext:hover {
|
|
1657
|
-
--columnResizer-color: var(--vuu-color-purple-10);
|
|
1658
|
-
}
|
|
1659
|
-
.vuuTableNextHeaderCell-label {
|
|
1660
|
-
line-height: calc(var(--header-height) - 1px);
|
|
1661
|
-
}
|
|
1662
|
-
.vuuTableNextHeaderCell-resizing {
|
|
1663
|
-
--columnResizer-height: var(--table-height);
|
|
1664
|
-
}
|
|
1665
|
-
.vuuTableNextHeaderCell.vuuPinLeft {
|
|
1666
|
-
padding-left: 2px;
|
|
1667
|
-
}
|
|
1668
|
-
.vuuTableNextHeaderCell.vuuPinLeft.vuuEndPin .vuuColumnResizerNext:before {
|
|
1669
|
-
--height: calc(var(--table-height) - 15px);
|
|
1670
|
-
--inset-r: calc(var(--pin-width) - 2px);
|
|
1671
|
-
--inset-b: calc(var(--height) - 2px);
|
|
1672
|
-
--clip-path: polygon( 0% 0%, 0% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
|
|
1673
|
-
background-color: transparent;
|
|
1674
|
-
border-color: var(--vuu-color-gray-40);
|
|
1675
|
-
border-width: 1px;
|
|
1676
|
-
border-style: solid solid solid solid;
|
|
1677
|
-
border-radius: 4px;
|
|
1678
|
-
box-shadow: 2px 1px 4px 0px rgba(0, 0, 0, 0.10);
|
|
1679
|
-
clip-path: var(--clip-path);
|
|
1680
|
-
content: "";
|
|
1681
|
-
position: absolute;
|
|
1682
|
-
width: var(--pin-width);
|
|
1683
|
-
top: 0;
|
|
1684
|
-
bottom: 0;
|
|
1685
|
-
right: -1px;
|
|
1686
|
-
height: var(--height);
|
|
1687
|
-
z-index: -5;
|
|
1688
|
-
}
|
|
1689
|
-
.vuuTableNextHeaderCell.vuuPinRight.vuuEndPin .vuuColumnResizerNext:before {
|
|
1690
|
-
--height: calc(var(--table-height) - 15px);
|
|
1691
|
-
--inset-r: calc(var(--pin-width) - 2px);
|
|
1692
|
-
--inset-b: calc(var(--height) - 2px);
|
|
1693
|
-
--clip-path: polygon( -20% 0%, -20% 120%, 2px 120%, 2px 2px, var(--inset-r) 2px, var(--inset-r) var(--inset-b), 2px var(--inset-b), 2px 120%, 120% 120%, 120% 0% );
|
|
1694
|
-
background-color: transparent;
|
|
1695
|
-
border-color: #A9AAAD;
|
|
1696
|
-
border-width: 1px;
|
|
1697
|
-
border-style: solid solid solid solid;
|
|
1698
|
-
border-radius: 4px;
|
|
1699
|
-
box-shadow: -2px 1px 4px 0px rgba(0, 0, 0, 0.10);
|
|
1700
|
-
clip-path: var(--clip-path);
|
|
1701
|
-
content: "";
|
|
1702
|
-
position: absolute;
|
|
1703
|
-
width: var(--pin-width);
|
|
1704
|
-
top: 0;
|
|
1705
|
-
bottom: 0;
|
|
1706
|
-
right: 0px;
|
|
1707
|
-
height: var(--height);
|
|
1708
|
-
z-index: -5;
|
|
1709
|
-
}
|
|
1710
|
-
.vuuTableNextHeaderCell.vuuDraggable-dragAway {
|
|
1711
|
-
display: none;
|
|
1712
|
-
}
|
|
1713
|
-
|
|
1714
|
-
/* ../vuu-table/src/table-next/table-cell/TableCell.css */
|
|
1715
|
-
.vuuTableNextCell {
|
|
1716
|
-
border-right-color: var(--cell-borderColor);
|
|
1717
|
-
border-right-style: solid;
|
|
1718
|
-
border-right-width: 1px;
|
|
1719
|
-
display: inline-block;
|
|
1720
|
-
height: 100%;
|
|
1721
|
-
overflow: hidden;
|
|
1722
|
-
padding: 0 8px;
|
|
1723
|
-
text-overflow: ellipsis;
|
|
1724
|
-
vertical-align: top;
|
|
1725
|
-
}
|
|
1726
|
-
.vuuTableNextCell-right {
|
|
1727
|
-
text-align: right;
|
|
1728
|
-
}
|
|
1729
|
-
.vuuTableNextCell-editable {
|
|
1730
|
-
display: inline-flex;
|
|
1731
|
-
line-height: 18px;
|
|
1732
|
-
padding-bottom: 1px;
|
|
1733
|
-
padding-top: 1px;
|
|
1734
|
-
text-overflow: unset;
|
|
1735
|
-
}
|
|
1736
|
-
.vuuTableNextCell:focus {
|
|
1737
|
-
outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
|
|
1738
|
-
outline-offset: -2px;
|
|
1739
|
-
box-shadow: inset 0 0 0 var(--cell-outline-width) white;
|
|
1740
|
-
border-bottom: none;
|
|
1741
|
-
}
|
|
1742
|
-
.vuuTableNextRow-selected .vuuTableNextCell:not(.vuuTableNextCell-editable):focus {
|
|
1743
|
-
outline: var(--vuuTableCell-outline, solid var(--vuu-color-purple-10) 2px);
|
|
1744
|
-
outline-offset: -1px;
|
|
1745
|
-
}
|
|
1746
|
-
.vuuTableNextCell-editable:focus {
|
|
1747
|
-
outline: none;
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
/* ../vuu-table/src/table-next/table-cell/TableGroupCell.css */
|
|
1751
|
-
.vuuTableNextGroupCell {
|
|
1752
|
-
--group-cell-spacer-width: 20px;
|
|
1753
|
-
align-items: center;
|
|
1754
|
-
border-right-color: var(--vuuTableNextGroupCell-borderColor, var(--salt-separable-tertiary-borderColor));
|
|
1755
|
-
border-right-style: solid;
|
|
1756
|
-
border-right-width: 1px;
|
|
1757
|
-
cursor: pointer;
|
|
1758
|
-
display: inline-flex;
|
|
1759
|
-
height: var(--row-height);
|
|
1760
|
-
line-height: 16px;
|
|
1761
|
-
}
|
|
1762
|
-
.vuuTableNextGroupCell-toggle {
|
|
1763
|
-
--vuu-icon-height: 16px;
|
|
1764
|
-
--vuu-icon-size: 16px;
|
|
1765
|
-
--vuu-icon-width: 8px;
|
|
1766
|
-
margin-right: 4px;
|
|
1767
|
-
transition: transform 0.25s;
|
|
1768
|
-
transform: var(--toggle-icon-transform);
|
|
1769
|
-
}
|
|
1770
|
-
.vuuTableNextGroupCell-spacer {
|
|
1771
|
-
width: var(--group-cell-spacer-width);
|
|
1772
|
-
}
|
|
1773
|
-
|
|
1774
|
-
/* ../vuu-table/src/table-next/Row.css */
|
|
1775
|
-
.vuuTableNextRow {
|
|
1776
|
-
background: var(--row-background,#fff);
|
|
1777
|
-
border-bottom: 1px solid var(--row-borderColor);
|
|
1778
|
-
box-sizing: border-box;
|
|
1779
|
-
height: var(--row-height);
|
|
1780
|
-
line-height: calc(var(--row-height) - 1px);
|
|
1781
|
-
position: absolute;
|
|
1782
|
-
top: 0;
|
|
1783
|
-
white-space: nowrap;
|
|
1784
|
-
}
|
|
1785
|
-
.vuuTableNextRow-even {
|
|
1786
|
-
--row-background: var(--row-background-even);
|
|
1787
|
-
}
|
|
1788
|
-
.vuuTableNextRow-selected,
|
|
1789
|
-
.vuuTableNextRow-selectedEnd {
|
|
1790
|
-
background-color: rgb(235, 235, 236);
|
|
1791
|
-
}
|
|
1792
|
-
.vuuTableNextRow-selectedStart {
|
|
1793
|
-
--vuu-selection-decorator-left-radius: 5px 0 0 0;
|
|
1794
|
-
--vuu-selection-decorator-right-radius: 0 5px 0 0;
|
|
1795
|
-
border-radius: 5px 5px 0 0;
|
|
1796
|
-
}
|
|
1797
|
-
.vuuTableNextRow-selectedEnd {
|
|
1798
|
-
--vuu-selection-decorator-left-radius: 0 0 0 5px;
|
|
1799
|
-
--vuu-selection-decorator-right-radius: 0 0 5px 0;
|
|
1800
|
-
border-radius: 0 0 5px 5px;
|
|
1801
|
-
}
|
|
1802
|
-
.vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
|
|
1803
|
-
--vuu-selection-decorator-left-radius: 5px 0 0 5px;
|
|
1804
|
-
--vuu-selection-decorator-right-radius: 0 5px 5px 0;
|
|
1805
|
-
border-radius: 5px 5px 5px 5px;
|
|
1806
|
-
}
|
|
1807
|
-
.vuuTableNextRow-selectedStart:after {
|
|
1808
|
-
content: "";
|
|
1809
|
-
position: absolute;
|
|
1810
|
-
top: 0;
|
|
1811
|
-
left: 4px;
|
|
1812
|
-
height: 1px;
|
|
1813
|
-
background-color: var(--vuu-color-purple-10);
|
|
1814
|
-
width: calc(var(--content-width) - 8px);
|
|
1815
|
-
z-index: 1;
|
|
1816
|
-
}
|
|
1817
|
-
.vuuTableNextRow-selectedEnd {
|
|
1818
|
-
border-bottom-color: var(--vuu-color-purple-10);
|
|
1819
|
-
}
|
|
1820
|
-
.vuuTableNextRow-selectionDecorator {
|
|
1821
|
-
background-color: var(--vuu-selection-decorator-bg, inherit);
|
|
1822
|
-
display: inline-block;
|
|
1823
|
-
position: relative;
|
|
1824
|
-
height: var(--row-height);
|
|
1825
|
-
width: 4px;
|
|
1826
|
-
z-index: 2;
|
|
1827
|
-
}
|
|
1828
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyLeft {
|
|
1829
|
-
left: 0;
|
|
1830
|
-
position: sticky;
|
|
1831
|
-
}
|
|
1832
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyRight {
|
|
1833
|
-
right: 0;
|
|
1834
|
-
position: sticky;
|
|
1835
|
-
}
|
|
1836
|
-
.vuuTableNextRow-selected {
|
|
1837
|
-
--vuu-selection-decorator-bg: var(--vuu-color-purple-10);
|
|
1838
|
-
}
|
|
1839
|
-
.vuuTableNextRow-selectedStart {
|
|
1840
|
-
--vuu-selection-decorator-bg: white;
|
|
1841
|
-
}
|
|
1842
|
-
.vuuTableNextRow-selectedEnd {
|
|
1843
|
-
--vuu-selection-decorator-bg: white;
|
|
1844
|
-
}
|
|
1845
|
-
.vuuTableNextRow-selectedStart.vuuTableNextRow-selectedEnd {
|
|
1846
|
-
}
|
|
1847
|
-
.vuuTableNextRow-selectedStart .vuuTableNextRow-selectionDecorator:before,
|
|
1848
|
-
.vuuTableNextRow-selectedEnd .vuuTableNextRow-selectionDecorator:before {
|
|
1849
|
-
content: "";
|
|
1850
|
-
inset: 0;
|
|
1851
|
-
position: absolute;
|
|
1852
|
-
background-color: var(--vuu-color-purple-10);
|
|
1853
|
-
}
|
|
1854
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyLeft:before {
|
|
1855
|
-
border-radius: var(--vuu-selection-decorator-left-radius, 0);
|
|
1856
|
-
}
|
|
1857
|
-
.vuuTableNextRow-selectionDecorator.vuuStickyRight:before {
|
|
1858
|
-
border-radius: var(--vuu-selection-decorator-right-radius, 0);
|
|
1859
|
-
}
|
|
1860
|
-
.vuuTableNextRow-expanded {
|
|
1861
|
-
--toggle-icon-transform: rotate(90deg);
|
|
1862
|
-
}
|
|
1863
|
-
|
|
1864
|
-
/* ../vuu-table-extras/src/cell-renderers/background-cell/BackgroundCell.css */
|
|
1865
|
-
.vuuTable td:has(> .vuuBackgroundCellDeprecated) {
|
|
1866
|
-
padding: 0;
|
|
1867
|
-
text-align: right;
|
|
1868
|
-
}
|
|
1869
|
-
.vuuBackgroundCellDeprecated {
|
|
1870
|
-
padding-right: var(--salt-size-unit);
|
|
1871
|
-
position: relative;
|
|
1872
|
-
z-index: -1;
|
|
1873
|
-
}
|
|
1874
|
-
.vuuBackgroundCellDeprecated-flasher {
|
|
1875
|
-
color: transparent;
|
|
1876
|
-
position: absolute;
|
|
1877
|
-
left: 0;
|
|
1878
|
-
right: 0;
|
|
1879
|
-
top: 0;
|
|
1880
|
-
bottom: 0;
|
|
1881
|
-
z-index: -1;
|
|
1882
|
-
}
|
|
1883
|
-
.vuuBackgroundCellDeprecated-flasher {
|
|
1884
|
-
text-align: left;
|
|
1885
|
-
}
|
|
1886
|
-
.vuuBackgroundCellDeprecated-flasher + .num {
|
|
1887
|
-
padding-left: 8px;
|
|
1888
|
-
}
|
|
1889
|
-
.right .vuuBackgroundCellDeprecated-flasher {
|
|
1890
|
-
text-align: right;
|
|
1891
|
-
}
|
|
1892
|
-
.right .vuuBackgroundCellDeprecated-flasher + .num {
|
|
1893
|
-
padding-right: 8px;
|
|
1894
|
-
}
|
|
1895
|
-
.up1 > .vuuBackgroundCellDeprecated-flasher {
|
|
1896
|
-
animation-duration: 30s;
|
|
1897
|
-
animation-name: reactbgup1;
|
|
1898
|
-
}
|
|
1899
|
-
.up2 > .vuuBackgroundCellDeprecated-flasher {
|
|
1900
|
-
animation-duration: 30s;
|
|
1901
|
-
animation-name: reactbgup2;
|
|
1902
|
-
}
|
|
1903
|
-
.down1 > .vuuBackgroundCellDeprecated-flasher {
|
|
1904
|
-
animation-duration: 30s;
|
|
1905
|
-
animation-name: reactbgdown1;
|
|
1906
|
-
}
|
|
1907
|
-
.down2 > .vuuBackgroundCellDeprecated-flasher {
|
|
1908
|
-
animation-duration: 30s;
|
|
1909
|
-
animation-name: reactbgdown2;
|
|
1910
|
-
}
|
|
1911
|
-
.up1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
|
|
1912
|
-
animation-duration: 30s;
|
|
1913
|
-
animation-name: reactarrowup1;
|
|
1914
|
-
}
|
|
1915
|
-
.up2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
|
|
1916
|
-
animation-duration: 30s;
|
|
1917
|
-
animation-name: reactarrowup2;
|
|
1918
|
-
}
|
|
1919
|
-
.down1.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
|
|
1920
|
-
animation-duration: 30s;
|
|
1921
|
-
animation-name: reactarrowdown1;
|
|
1922
|
-
}
|
|
1923
|
-
.down2.vuuBackgroundCellDeprecated-arrowOnly > .vuuBackgroundCellDeprecated-flasher {
|
|
1924
|
-
animation-duration: 30s;
|
|
1925
|
-
animation-name: reactarrowdown2;
|
|
1926
|
-
}
|
|
1927
|
-
.up1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
|
|
1928
|
-
animation-duration: 30s;
|
|
1929
|
-
animation-name: reactbgarrowup1;
|
|
1930
|
-
}
|
|
1931
|
-
.up2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
|
|
1932
|
-
animation-duration: 30s;
|
|
1933
|
-
animation-name: reactbgarrowup2;
|
|
1934
|
-
}
|
|
1935
|
-
.down1.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
|
|
1936
|
-
animation-duration: 30s;
|
|
1937
|
-
animation-name: reactbgarrowdown1;
|
|
1938
|
-
}
|
|
1939
|
-
.down2.vuuBackgroundCellDeprecated-arrowBackground > .vuuBackgroundCellDeprecated-flasher {
|
|
1940
|
-
animation-duration: 30s;
|
|
1941
|
-
animation-name: reactbgarrowdown2;
|
|
1942
|
-
}
|
|
1943
|
-
|
|
1944
|
-
/* ../vuu-table-extras/src/cell-renderers/background-cell/FlashingBackground.css */
|
|
1945
|
-
@keyframes reactbgup1 {
|
|
1946
|
-
from {
|
|
1947
|
-
background-color: green;
|
|
1948
|
-
}
|
|
1949
|
-
to {
|
|
1950
|
-
background-color: transparent;
|
|
1951
|
-
}
|
|
1952
|
-
}
|
|
1953
|
-
@keyframes reactbgup2 {
|
|
1954
|
-
from {
|
|
1955
|
-
background-color: green;
|
|
1956
|
-
}
|
|
1957
|
-
to {
|
|
1958
|
-
background-color: transparent;
|
|
1959
|
-
}
|
|
1960
|
-
}
|
|
1961
|
-
@keyframes reactbgdown1 {
|
|
1962
|
-
from {
|
|
1963
|
-
background-color: red;
|
|
1964
|
-
}
|
|
1965
|
-
to {
|
|
1966
|
-
background-color: transparent;
|
|
1967
|
-
}
|
|
1968
|
-
}
|
|
1969
|
-
@keyframes reactbgdown2 {
|
|
1970
|
-
from {
|
|
1971
|
-
background-color: red;
|
|
1972
|
-
}
|
|
1973
|
-
to {
|
|
1974
|
-
background-color: transparent;
|
|
1975
|
-
}
|
|
1976
|
-
}
|
|
1977
|
-
@keyframes reactarrowup1 {
|
|
1978
|
-
from {
|
|
1979
|
-
color: white;
|
|
1980
|
-
}
|
|
1981
|
-
to {
|
|
1982
|
-
color: transparent;
|
|
1983
|
-
}
|
|
1984
|
-
}
|
|
1985
|
-
@keyframes reactarrowup2 {
|
|
1986
|
-
from {
|
|
1987
|
-
color: white;
|
|
1988
|
-
}
|
|
1989
|
-
to {
|
|
1990
|
-
color: transparent;
|
|
1991
|
-
}
|
|
1992
|
-
}
|
|
1993
|
-
@keyframes reactarrowdown1 {
|
|
1994
|
-
from {
|
|
1995
|
-
color: white;
|
|
1996
|
-
}
|
|
1997
|
-
to {
|
|
1998
|
-
color: transparent;
|
|
1999
|
-
}
|
|
2000
|
-
}
|
|
2001
|
-
@keyframes reactarrowdown2 {
|
|
2002
|
-
from {
|
|
2003
|
-
color: white;
|
|
2004
|
-
}
|
|
2005
|
-
to {
|
|
2006
|
-
color: transparent;
|
|
2007
|
-
}
|
|
2008
|
-
}
|
|
2009
|
-
@keyframes reactbgarrowup1 {
|
|
2010
|
-
0% {
|
|
2011
|
-
color: green;
|
|
2012
|
-
background-color: green;
|
|
2013
|
-
}
|
|
2014
|
-
20% {
|
|
2015
|
-
color: green;
|
|
2016
|
-
background-color: transparent;
|
|
2017
|
-
}
|
|
2018
|
-
100% {
|
|
2019
|
-
color: transparent;
|
|
2020
|
-
background-color: transparent;
|
|
2021
|
-
}
|
|
2022
|
-
}
|
|
2023
|
-
@keyframes reactbgarrowup2 {
|
|
2024
|
-
0% {
|
|
2025
|
-
color: green;
|
|
2026
|
-
background-color: green;
|
|
2027
|
-
}
|
|
2028
|
-
20% {
|
|
2029
|
-
color: green;
|
|
2030
|
-
background-color: transparent;
|
|
2031
|
-
}
|
|
2032
|
-
100% {
|
|
2033
|
-
color: transparent;
|
|
2034
|
-
background-color: transparent;
|
|
2035
|
-
}
|
|
2036
|
-
}
|
|
2037
|
-
@keyframes reactbgarrowdown1 {
|
|
2038
|
-
0% {
|
|
2039
|
-
color: red;
|
|
2040
|
-
background-color: red;
|
|
2041
|
-
}
|
|
2042
|
-
20% {
|
|
2043
|
-
color: red;
|
|
2044
|
-
background-color: transparent;
|
|
2045
|
-
}
|
|
2046
|
-
100% {
|
|
2047
|
-
color: transparent;
|
|
2048
|
-
background-color: transparent;
|
|
2049
|
-
}
|
|
2050
|
-
}
|
|
2051
|
-
@keyframes reactbgarrowdown2 {
|
|
2052
|
-
0% {
|
|
2053
|
-
color: red;
|
|
2054
|
-
background-color: red;
|
|
2055
|
-
}
|
|
2056
|
-
20% {
|
|
2057
|
-
color: red;
|
|
2058
|
-
background-color: transparent;
|
|
2059
|
-
}
|
|
2060
|
-
100% {
|
|
2061
|
-
color: transparent;
|
|
2062
|
-
background-color: transparent;
|
|
2063
|
-
}
|
|
2064
|
-
}
|
|
2065
|
-
|
|
2066
|
-
/* ../vuu-table-extras/src/cell-renderers/progress-cell/ProgressCell.css */
|
|
2067
|
-
.vuuProgressCell {
|
|
2068
|
-
align-items: center;
|
|
2069
|
-
display: flex;
|
|
2070
|
-
}
|
|
2071
|
-
.vuuProgressCell-track {
|
|
2072
|
-
display: inline-block;
|
|
2073
|
-
flex: auto 1 1;
|
|
2074
|
-
height: 4px;
|
|
2075
|
-
overflow: hidden;
|
|
2076
|
-
position: relative;
|
|
2077
|
-
}
|
|
2078
|
-
.vuuProgressCell-bg {
|
|
2079
|
-
background-color: var(--salt-measured-background);
|
|
2080
|
-
display: inline-block;
|
|
2081
|
-
height: 2px;
|
|
2082
|
-
left: 0;
|
|
2083
|
-
position: absolute;
|
|
2084
|
-
top: 1px;
|
|
2085
|
-
width: 100%;
|
|
2086
|
-
}
|
|
2087
|
-
.vuuProgressCell-bar {
|
|
2088
|
-
background-color: var(--salt-measured-fill);
|
|
2089
|
-
display: inline-block;
|
|
2090
|
-
height: 100%;
|
|
2091
|
-
left: 0;
|
|
2092
|
-
position: absolute;
|
|
2093
|
-
top: 0;
|
|
2094
|
-
transform: translateX(var(--progress-bar-pct, -100%));
|
|
2095
|
-
width: 100%;
|
|
2096
|
-
}
|
|
2097
|
-
.vuuProgressCell-text {
|
|
2098
|
-
flex: 35px 0 0;
|
|
2099
|
-
text-align: right;
|
|
2100
|
-
}
|
|
2101
|
-
|
|
2102
|
-
/* ../vuu-table-extras/src/cell-renderers-next/background-cell/BackgroundCell.css */
|
|
2103
|
-
.vuuTableNext td:has(> .vuuBackgroundCell) {
|
|
2104
|
-
padding: 0;
|
|
2105
|
-
text-align: right;
|
|
2106
|
-
}
|
|
2107
|
-
.vuuBackgroundCell {
|
|
2108
|
-
color: var(--background-cell-color);
|
|
2109
|
-
padding-right: var(--salt-size-unit);
|
|
2110
|
-
position: relative;
|
|
2111
|
-
z-index: -1;
|
|
2112
|
-
}
|
|
2113
|
-
.vuuBackgroundCell-flasher {
|
|
2114
|
-
background-color: var(--background-cell-background);
|
|
2115
|
-
position: absolute;
|
|
2116
|
-
left: 0;
|
|
2117
|
-
right: 0;
|
|
2118
|
-
top: 0;
|
|
2119
|
-
bottom: 0;
|
|
2120
|
-
z-index: -1;
|
|
2121
|
-
}
|
|
2122
|
-
.vuuBackgroundCell-flasher {
|
|
2123
|
-
text-align: left;
|
|
2124
|
-
}
|
|
2125
|
-
.vuuBackgroundCell-flasher + .num {
|
|
2126
|
-
padding-left: 8px;
|
|
2127
|
-
}
|
|
2128
|
-
.right .vuuBackgroundCell-flasher {
|
|
2129
|
-
text-align: right;
|
|
2130
|
-
}
|
|
2131
|
-
.right .vuuBackgroundCell-flasher + .num {
|
|
2132
|
-
padding-right: 8px;
|
|
2133
|
-
}
|
|
2134
|
-
.vuuBackgroundCell.up1 {
|
|
2135
|
-
animation-duration: 30s;
|
|
2136
|
-
animation-name: reactbgup1;
|
|
2137
|
-
}
|
|
2138
|
-
.vuuBackgroundCell.up2 {
|
|
2139
|
-
animation-duration: 30s;
|
|
2140
|
-
animation-name: reactbgup2;
|
|
2141
|
-
}
|
|
2142
|
-
.vuuBackgroundCell.down1 {
|
|
2143
|
-
animation-duration: 30s;
|
|
2144
|
-
animation-name: reactbgdown1;
|
|
2145
|
-
}
|
|
2146
|
-
.vuuBackgroundCell.down2 {
|
|
2147
|
-
animation-duration: 30s;
|
|
2148
|
-
animation-name: reactbgdown2;
|
|
2149
|
-
}
|
|
2150
|
-
.up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
2151
|
-
animation-duration: 30s;
|
|
2152
|
-
animation-name: reactarrowup1;
|
|
2153
|
-
}
|
|
2154
|
-
.up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
2155
|
-
animation-duration: 30s;
|
|
2156
|
-
animation-name: reactarrowup2;
|
|
2157
|
-
}
|
|
2158
|
-
.down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
2159
|
-
animation-duration: 30s;
|
|
2160
|
-
animation-name: reactarrowdown1;
|
|
2161
|
-
}
|
|
2162
|
-
.down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-flasher {
|
|
2163
|
-
animation-duration: 30s;
|
|
2164
|
-
animation-name: reactarrowdown2;
|
|
2165
|
-
}
|
|
2166
|
-
.up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
2167
|
-
animation-duration: 30s;
|
|
2168
|
-
animation-name: reactbgarrowup1;
|
|
2169
|
-
}
|
|
2170
|
-
.up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
2171
|
-
animation-duration: 30s;
|
|
2172
|
-
animation-name: reactbgarrowup2;
|
|
2173
|
-
}
|
|
2174
|
-
.down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
2175
|
-
animation-duration: 30s;
|
|
2176
|
-
animation-name: reactbgarrowdown1;
|
|
2177
|
-
}
|
|
2178
|
-
.down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-flasher {
|
|
2179
|
-
animation-duration: 30s;
|
|
2180
|
-
animation-name: reactbgarrowdown2;
|
|
2181
|
-
}
|
|
2182
|
-
|
|
2183
|
-
/* ../vuu-table-extras/src/cell-renderers-next/background-cell/FlashingBackground.css */
|
|
2184
|
-
@property --background-cell-background { syntax: "<color>"; initial-value: transparent; inherits: false; }
|
|
2185
|
-
@property --background-cell-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
|
|
2186
|
-
@keyframes reactbgup1 {
|
|
2187
|
-
from {
|
|
2188
|
-
--background-cell-background: var(--vuu-color-green-50);
|
|
2189
|
-
--background-cell-color: white;
|
|
2190
|
-
}
|
|
2191
|
-
to {
|
|
2192
|
-
--background-cell-background: transparent;
|
|
2193
|
-
--background-cell-color: var(--vuu-color-gray-80);
|
|
2194
|
-
}
|
|
2195
|
-
}
|
|
2196
|
-
@keyframes reactbgup2 {
|
|
2197
|
-
from {
|
|
2198
|
-
--background-cell-background: var(--vuu-color-green-50);
|
|
2199
|
-
--background-cell-color: #ffffff;
|
|
2200
|
-
}
|
|
2201
|
-
to {
|
|
2202
|
-
--background-cell-background: transparent;
|
|
2203
|
-
--background-cell-color: var(--vuu-color-gray-80);
|
|
2204
|
-
}
|
|
2205
|
-
}
|
|
2206
|
-
@keyframes reactbgdown1 {
|
|
2207
|
-
from {
|
|
2208
|
-
--background-cell-background: var(--vuu-color-red-50);
|
|
2209
|
-
--background-cell-color: white;
|
|
2210
|
-
}
|
|
2211
|
-
to {
|
|
2212
|
-
--background-cell-background: transparent;
|
|
2213
|
-
--background-cell-color: var(--vuu-color-gray-80);
|
|
2214
|
-
}
|
|
2215
|
-
}
|
|
2216
|
-
@keyframes reactbgdown2 {
|
|
2217
|
-
from {
|
|
2218
|
-
--background-cell-background: var(--vuu-color-red-50);
|
|
2219
|
-
--background-cell-color: white;
|
|
2220
|
-
}
|
|
2221
|
-
to {
|
|
2222
|
-
--background-cell-background: transparent;
|
|
2223
|
-
--background-cell-color: var(--vuu-color-gray-80);
|
|
2224
|
-
}
|
|
2225
|
-
}
|
|
2226
|
-
@keyframes reactarrowup1 {
|
|
2227
|
-
from {
|
|
2228
|
-
color: var(--salt-differential-positive-foreground);
|
|
2229
|
-
}
|
|
2230
|
-
to {
|
|
2231
|
-
color: transparent;
|
|
2232
|
-
}
|
|
2233
|
-
}
|
|
2234
|
-
@keyframes reactarrowup2 {
|
|
2235
|
-
from {
|
|
2236
|
-
color: var(--salt-differential-positive-foreground);
|
|
2237
|
-
}
|
|
2238
|
-
to {
|
|
2239
|
-
color: transparent;
|
|
2240
|
-
}
|
|
2241
|
-
}
|
|
2242
|
-
@keyframes reactarrowdown1 {
|
|
2243
|
-
from {
|
|
2244
|
-
color: var(--salt-differential-negative-foreground);
|
|
2245
|
-
}
|
|
2246
|
-
to {
|
|
2247
|
-
color: transparent;
|
|
2248
|
-
}
|
|
2249
|
-
}
|
|
2250
|
-
@keyframes reactarrowdown2 {
|
|
2251
|
-
from {
|
|
2252
|
-
color: var(--salt-differential-negative-foreground);
|
|
2253
|
-
}
|
|
2254
|
-
to {
|
|
2255
|
-
color: transparent;
|
|
2256
|
-
}
|
|
2257
|
-
}
|
|
2258
|
-
@keyframes reactbgarrowup1 {
|
|
2259
|
-
0% {
|
|
2260
|
-
color: var(--salt-differential-positive-foreground);
|
|
2261
|
-
background-color: var(--vuu-color-green-50);
|
|
2262
|
-
}
|
|
2263
|
-
20% {
|
|
2264
|
-
color: var(--salt-differential-positive-foreground);
|
|
2265
|
-
background-color: transparent;
|
|
2266
|
-
}
|
|
2267
|
-
100% {
|
|
2268
|
-
color: transparent;
|
|
2269
|
-
background-color: transparent;
|
|
2270
|
-
}
|
|
2271
|
-
}
|
|
2272
|
-
@keyframes reactbgarrowup2 {
|
|
2273
|
-
0% {
|
|
2274
|
-
color: var(--salt-differential-positive-foreground);
|
|
2275
|
-
background-color: var(--vuu-color-green-50);
|
|
2276
|
-
}
|
|
2277
|
-
20% {
|
|
2278
|
-
color: var(--salt-differential-positive-foreground);
|
|
2279
|
-
background-color: transparent;
|
|
2280
|
-
}
|
|
2281
|
-
100% {
|
|
2282
|
-
color: transparent;
|
|
2283
|
-
background-color: transparent;
|
|
2284
|
-
}
|
|
2285
|
-
}
|
|
2286
|
-
@keyframes reactbgarrowdown1 {
|
|
2287
|
-
0% {
|
|
2288
|
-
color: var(--salt-differential-negative-foreground);
|
|
2289
|
-
background-color: var(--vuu-color-red-50);
|
|
2290
|
-
}
|
|
2291
|
-
20% {
|
|
2292
|
-
color: var(--salt-differential-negative-foreground);
|
|
2293
|
-
background-color: transparent;
|
|
2294
|
-
}
|
|
2295
|
-
100% {
|
|
2296
|
-
color: transparent;
|
|
2297
|
-
background-color: transparent;
|
|
2298
|
-
}
|
|
2299
|
-
}
|
|
2300
|
-
@keyframes reactbgarrowdown2 {
|
|
2301
|
-
0% {
|
|
2302
|
-
color: var(--salt-differential-negative-foreground);
|
|
2303
|
-
background-color: var(--vuu-color-red-50);
|
|
2304
|
-
}
|
|
2305
|
-
20% {
|
|
2306
|
-
color: var(--salt-differential-negative-foreground);
|
|
2307
|
-
background-color: transparent;
|
|
2308
|
-
}
|
|
2309
|
-
100% {
|
|
2310
|
-
color: transparent;
|
|
2311
|
-
background-color: transparent;
|
|
2312
|
-
}
|
|
2313
|
-
}
|
|
2314
|
-
|
|
2315
|
-
/* ../vuu-table-extras/src/column-list/ColumnList.css */
|
|
2316
|
-
.vuuColumnList {
|
|
2317
|
-
--vuu-svg-function: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.8625 10.5V9.625H6.72291L8.4875 7.59792L6.72291 5.54167H5.64375L4.60833 10.8792C4.53055 11.3167 4.36527 11.6545 4.1125 11.8927C3.85972 12.1309 3.53402 12.25 3.13541 12.25C2.7368 12.25 2.40382 12.1333 2.13645 11.9C1.86909 11.6667 1.73541 11.375 1.73541 11.025C1.73541 10.7625 1.80833 10.551 1.95416 10.3906C2.1 10.2302 2.28958 10.15 2.52291 10.15C2.72708 10.15 2.89479 10.2083 3.02604 10.325C3.15729 10.4417 3.22291 10.5972 3.22291 10.7917C3.22291 10.8986 3.20104 10.9983 3.15729 11.0906C3.11354 11.183 3.05277 11.2583 2.975 11.3167C3.01388 11.3361 3.0552 11.3507 3.09895 11.3604C3.1427 11.3701 3.18888 11.375 3.2375 11.375C3.36388 11.375 3.47083 11.3142 3.55833 11.1927C3.64583 11.0712 3.70902 10.9132 3.74791 10.7188L4.75416 5.54167H2.91666V4.66667H4.91458L5.22083 3.12083C5.30833 2.68333 5.48333 2.34549 5.74583 2.10729C6.00833 1.8691 6.33402 1.75 6.72291 1.75C7.12152 1.75 7.44965 1.86667 7.70729 2.1C7.96493 2.33333 8.09375 2.625 8.09375 2.975C8.09375 3.2375 8.02083 3.44896 7.875 3.60938C7.72916 3.76979 7.53958 3.85 7.30625 3.85C7.1118 3.85 6.94652 3.7941 6.81041 3.68229C6.6743 3.57049 6.60625 3.42222 6.60625 3.2375C6.60625 3.14028 6.62569 3.04549 6.66458 2.95312C6.70347 2.86076 6.75208 2.78542 6.81041 2.72708C6.79097 2.70764 6.7618 2.69063 6.72291 2.67604C6.68402 2.66146 6.64513 2.65417 6.60625 2.65417C6.47986 2.65417 6.37048 2.7125 6.27812 2.82917C6.18576 2.94583 6.12013 3.09653 6.08125 3.28125L5.81875 4.66667H8.575V5.54167H7.88958L9.1 6.94167L10.2375 5.54167H9.5375V4.66667H12.25V5.54167H11.4042L9.65416 7.59792L11.4042 9.625H12.25V10.5H9.5375V9.625H10.2375L9.07083 8.26875L7.875 9.625H8.575V10.5H5.8625Z"/></svg>');
|
|
2318
|
-
--vuuList-borderStyle: none;
|
|
2319
|
-
--vuuListItem-padding: 0;
|
|
2320
|
-
display: flex;
|
|
2321
|
-
flex-direction: column;
|
|
2322
|
-
width: 252px;
|
|
2323
|
-
}
|
|
2324
|
-
[data-icon=function] {
|
|
2325
|
-
--vuu-icon-svg: var(--vuu-svg-function);
|
|
2326
|
-
}
|
|
2327
|
-
.vuuColumnListItem {
|
|
2328
|
-
border-bottom: solid 1px var(--salt-separable-tertiary-borderColor);
|
|
2329
|
-
padding: 0 6px 0 0;
|
|
2330
|
-
}
|
|
2331
|
-
.vuuColumnList-switch {
|
|
2332
|
-
flex: 0 0 32px;
|
|
2333
|
-
}
|
|
2334
|
-
.vuuColumnList-text {
|
|
2335
|
-
flex: 1 1 auto;
|
|
2336
|
-
}
|
|
2337
|
-
.vuuColumnList-checkBox {
|
|
2338
|
-
flex: 0 0 20px;
|
|
2339
|
-
}
|
|
2340
|
-
.vuuColumnList-icon {
|
|
2341
|
-
--vuu-icon-color: var(--vuu-color-gray-45);
|
|
2342
|
-
--vuu-icon-size: 16px;
|
|
2343
|
-
--vuu-icon-width: 32px;
|
|
2344
|
-
}
|
|
2345
|
-
.vuuColumnList-header {
|
|
2346
|
-
border-top: solid 2px var(--vuu-color-gray-30);
|
|
2347
|
-
flex: 0 0 40px;
|
|
2348
|
-
font-size: 14px;
|
|
2349
|
-
font-weight: 600;
|
|
2350
|
-
padding-top: 24px;
|
|
2351
|
-
}
|
|
2352
|
-
.vuuColumnList-colHeadings {
|
|
2353
|
-
border-bottom: solid 2px var(--vuu-color-gray-30);
|
|
2354
|
-
color: var(--vuu-color-gray-50);
|
|
2355
|
-
display: flex;
|
|
2356
|
-
flex: 0 0 24px;
|
|
2357
|
-
font-size: 10px;
|
|
2358
|
-
justify-content: space-between;
|
|
2359
|
-
margin-top: 16px;
|
|
2360
|
-
padding-bottom: 8px;
|
|
2361
|
-
}
|
|
2362
|
-
|
|
2363
|
-
/* ../vuu-table-extras/src/column-expression-input/ColumnExpressionInput.css */
|
|
2364
|
-
.vuuColumnExpressionInput {
|
|
2365
|
-
--vuuFilterEditor-background: var(--salt-container-primary-background);
|
|
2366
|
-
--vuuFilterEditor-color: var(--salt-text-primary-foreground);
|
|
2367
|
-
--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
|
|
2368
|
-
--vuuFilterEditor-fontSize: var(--salt-text-fontSize);
|
|
2369
|
-
--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
|
|
2370
|
-
--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
|
|
2371
|
-
--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
|
|
2372
|
-
--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
|
|
2373
|
-
--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
|
|
2374
|
-
--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
|
|
2375
|
-
--vuuFilterEditor-suggestion-selectedColor: var(--salt-text-primary-foreground);
|
|
2376
|
-
--vuuFilterEditor-suggestion-detailColor: var(--salt-text-secondary-foreground-disabled);
|
|
2377
|
-
--vuuFilterEditor-suggestion-height: 24px;
|
|
2378
|
-
--vuuFilterEditor-variableColor: blue;
|
|
2379
|
-
align-items: center;
|
|
2380
|
-
box-sizing: border-box;
|
|
2381
|
-
height: 30px;
|
|
2382
|
-
}
|
|
2383
|
-
.vuuColumnExpressionInput-FilterButton,
|
|
2384
|
-
.vuuColumnExpressionInput-ClearButton {
|
|
2385
|
-
--vuu-icon-size: 12px;
|
|
2386
|
-
--saltButton-width: 28px;
|
|
2387
|
-
}
|
|
2388
|
-
.expression-type-container {
|
|
2389
|
-
margin: 0 3px 0 auto;
|
|
2390
|
-
color: var(--salt-text-secondary-foreground);
|
|
2391
|
-
}
|
|
2392
|
-
.expression-kind {
|
|
2393
|
-
display: inline-block;
|
|
2394
|
-
width: 50px;
|
|
2395
|
-
}
|
|
2396
|
-
.expression-type {
|
|
2397
|
-
display: inline-block;
|
|
2398
|
-
text-align: right;
|
|
2399
|
-
width: 50px;
|
|
2400
|
-
}
|
|
2401
|
-
.vuuSuggestion {
|
|
2402
|
-
display: flex;
|
|
2403
|
-
align-items: center;
|
|
2404
|
-
}
|
|
2405
|
-
.vuuFunctionDoc .function-heading {
|
|
2406
|
-
display: flex;
|
|
2407
|
-
gap: 3px;
|
|
2408
|
-
}
|
|
2409
|
-
.vuuFunctionDoc .function-name {
|
|
2410
|
-
font-style: italic;
|
|
2411
|
-
}
|
|
2412
|
-
.vuuFunctionDoc .param-list {
|
|
2413
|
-
font-style: italic;
|
|
2414
|
-
color: blue;
|
|
2415
|
-
white-space: pre;
|
|
2416
|
-
}
|
|
2417
|
-
.vuuFunctionDoc .function-type {
|
|
2418
|
-
margin-left: auto;
|
|
2419
|
-
}
|
|
2420
|
-
.vuuFunctionDoc .example-container {
|
|
2421
|
-
background-color: var(--salt-container-secondary-background);
|
|
2422
|
-
margin: 6px 0;
|
|
2423
|
-
padding: 3px;
|
|
2424
|
-
}
|
|
2425
|
-
.vuuFunctionDoc .example-expression {
|
|
2426
|
-
font-family: var(--salt-typography-fontFamily-code);
|
|
2427
|
-
margin-left: 8px;
|
|
2428
|
-
margin-top: 6px;
|
|
2429
|
-
}
|
|
2430
|
-
.vuuFunctionDoc .example-result {
|
|
2431
|
-
margin-left: 8px;
|
|
2432
|
-
margin-top: 6px;
|
|
2433
|
-
}
|
|
2434
|
-
|
|
2435
|
-
/* ../vuu-table-extras/src/column-settings/ColumnSettingsPanel.css */
|
|
2436
|
-
.vuuColumnSettingsPanel {
|
|
2437
|
-
--vuu-svg-align-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.33333 10H2.66667C2.3 10 2 10.3 2 10.6667C2 11.0333 2.3 11.3333 2.66667 11.3333H9.33333C9.7 11.3333 10 11.0333 10 10.6667C10 10.3 9.7 10 9.33333 10ZM9.33333 4.66667H2.66667C2.3 4.66667 2 4.96667 2 5.33333C2 5.7 2.3 6 2.66667 6H9.33333C9.7 6 10 5.7 10 5.33333C10 4.96667 9.7 4.66667 9.33333 4.66667ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
|
|
2438
|
-
--vuu-svg-align-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2.66667 14H13.3333C13.7 14 14 13.7 14 13.3333C14 12.9667 13.7 12.6667 13.3333 12.6667H2.66667C2.3 12.6667 2 12.9667 2 13.3333C2 13.7 2.3 14 2.66667 14ZM6.66667 11.3333H13.3333C13.7 11.3333 14 11.0333 14 10.6667C14 10.3 13.7 10 13.3333 10H6.66667C6.3 10 6 10.3 6 10.6667C6 11.0333 6.3 11.3333 6.66667 11.3333ZM2.66667 8.66667H13.3333C13.7 8.66667 14 8.36667 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36667 2.3 8.66667 2.66667 8.66667ZM6.66667 6H13.3333C13.7 6 14 5.7 14 5.33333C14 4.96667 13.7 4.66667 13.3333 4.66667H6.66667C6.3 4.66667 6 4.96667 6 5.33333C6 5.7 6.3 6 6.66667 6ZM2 2.66667C2 3.03333 2.3 3.33333 2.66667 3.33333H13.3333C13.7 3.33333 14 3.03333 14 2.66667C14 2.3 13.7 2 13.3333 2H2.66667C2.3 2 2 2.3 2 2.66667Z" /></svg>');
|
|
2439
|
-
--vuu-svg-pin-left: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M7.33333 9.86V8.66666H13.3333C13.7 8.66666 14 8.36666 14 8C14 7.63333 13.7 7.33333 13.3333 7.33333L7.33333 7.33333V6.14C7.33333 5.84 6.97333 5.69333 6.76667 5.90666L4.90667 7.76666C4.77333 7.89999 4.77333 8.10666 4.90667 8.24L6.76667 10.1C6.97333 10.3067 7.33333 10.16 7.33333 9.86ZM2.66667 13.3333C3.03333 13.3333 3.33333 13.0333 3.33333 12.6667L3.33333 3.33333C3.33333 2.96666 3.03333 2.66666 2.66667 2.66666C2.3 2.66666 2 2.96666 2 3.33333L2 12.6667C2 13.0333 2.3 13.3333 2.66667 13.3333Z" /></svg>');
|
|
2440
|
-
--vuu-svg-pin-float: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 4.66667H4.66667V6H6V4.66667ZM6 7.33333H4.66667V8.66667H6V7.33333ZM6 2C5.26 2 4.66667 2.6 4.66667 3.33333H6V2ZM8.66667 10H7.33333V11.3333H8.66667V10ZM12.6667 2V3.33333H14C14 2.6 13.4 2 12.6667 2ZM8.66667 2H7.33333V3.33333H8.66667V2ZM6 11.3333V10H4.66667C4.66667 10.7333 5.26 11.3333 6 11.3333ZM12.6667 8.66667H14V7.33333H12.6667V8.66667ZM12.6667 6H14V4.66667H12.6667V6ZM12.6667 11.3333C13.4 11.3333 14 10.7333 14 10H12.6667V11.3333ZM2.66667 4.66667C2.3 4.66667 2 4.96667 2 5.33333V12.6667C2 13.4 2.6 14 3.33333 14H10.6667C11.0333 14 11.3333 13.7 11.3333 13.3333C11.3333 12.9667 11.0333 12.6667 10.6667 12.6667H4C3.63333 12.6667 3.33333 12.3667 3.33333 12V5.33333C3.33333 4.96667 3.03333 4.66667 2.66667 4.66667ZM10 3.33333H11.3333V2H10V3.33333ZM10 11.3333H11.3333V10H10V11.3333Z" /></svg>');
|
|
2441
|
-
--vuu-svg-pin-right: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.66667 6.14V7.33333H2.66667C2.3 7.33333 2 7.63333 2 8C2 8.36666 2.3 8.66666 2.66667 8.66666H8.66667V9.86C8.66667 10.16 9.02667 10.3067 9.23333 10.0933L11.0933 8.23333C11.2267 8.1 11.2267 7.89333 11.0933 7.76L9.23333 5.9C9.02667 5.69333 8.66667 5.84 8.66667 6.14ZM13.3333 13.3333C13.7 13.3333 14 13.0333 14 12.6667V3.33333C14 2.96666 13.7 2.66666 13.3333 2.66666C12.9667 2.66666 12.6667 2.96666 12.6667 3.33333V12.6667C12.6667 13.0333 12.9667 13.3333 13.3333 13.3333Z"/></svg>');
|
|
2442
|
-
--vuuDropdown-height: 24px;
|
|
2443
|
-
--vuuDropdown-width: 100%;
|
|
2444
|
-
--vuuIconToggleButton-iconSize: 16px;
|
|
2445
|
-
display: flex;
|
|
2446
|
-
flex-direction: column;
|
|
2447
|
-
gap: 24px;
|
|
2448
|
-
height: 100%;
|
|
2449
|
-
padding-top: 24px;
|
|
2450
|
-
}
|
|
2451
|
-
.vuuColumnSettingsPanel-header {
|
|
2452
|
-
border-top: solid 2px var(--vuu-color-gray-30);
|
|
2453
|
-
font-size: 14px;
|
|
2454
|
-
font-weight: 600;
|
|
2455
|
-
padding-top: 24px;
|
|
2456
|
-
}
|
|
2457
|
-
.vuuColumnSettingsPanel-buttonBar {
|
|
2458
|
-
align-items: center;
|
|
2459
|
-
display: flex;
|
|
2460
|
-
justify-content: space-between;
|
|
2461
|
-
margin-top: auto;
|
|
2462
|
-
}
|
|
2463
|
-
.vuuColumnSettingsPanel-buttonBar[data-align=right] {
|
|
2464
|
-
gap: 6px;
|
|
2465
|
-
justify-content: flex-end;
|
|
2466
|
-
}
|
|
2467
|
-
.vuuColumnSettingsPanel-buttonNavPrev {
|
|
2468
|
-
--vuu-icon-left: 6px;
|
|
2469
|
-
padding-left: 24px;
|
|
2470
|
-
}
|
|
2471
|
-
.vuuColumnSettingsPanel-buttonNavNext {
|
|
2472
|
-
--vuu-icon-left: calc(100% - 18px);
|
|
2473
|
-
padding-right: 24px;
|
|
2474
|
-
}
|
|
2475
|
-
[data-icon=align-left] {
|
|
2476
|
-
--vuu-icon-svg: var(--vuu-svg-align-left);
|
|
2477
|
-
}
|
|
2478
|
-
[data-icon=align-right] {
|
|
2479
|
-
--vuu-icon-svg: var(--vuu-svg-align-right);
|
|
2480
|
-
}
|
|
2481
|
-
[data-icon=pin-left] {
|
|
2482
|
-
--vuu-icon-svg: var(--vuu-svg-pin-left);
|
|
2483
|
-
}
|
|
2484
|
-
[data-icon=pin-float] {
|
|
2485
|
-
--vuu-icon-svg: var(--vuu-svg-pin-float);
|
|
2486
|
-
}
|
|
2487
|
-
[data-icon=pin-right] {
|
|
2488
|
-
--vuu-icon-svg: var(--vuu-svg-pin-right);
|
|
2489
|
-
}
|
|
2490
|
-
|
|
2491
|
-
/* ../vuu-table-extras/src/datasource-stats/DatasourceStats.css */
|
|
2492
|
-
.vuuDatasourceStats {
|
|
2493
|
-
color: black;
|
|
2494
|
-
display: flex;
|
|
2495
|
-
font-size: 10px;
|
|
2496
|
-
gap: var(--salt-size-unit);
|
|
2497
|
-
padding: 4px 0 0 12px;
|
|
2498
|
-
}
|
|
2499
|
-
.vuuDatasourceStats-label {
|
|
2500
|
-
color: var(--vuu-color-gray-50);
|
|
2501
|
-
}
|
|
2502
|
-
|
|
2503
|
-
/* ../vuu-table-extras/src/table-settings/TableSettingsPanel.css */
|
|
2504
|
-
.vuuTableSettingsPanel {
|
|
2505
|
-
--vuu-svg-text-strikethrough: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M28.3333 9.33334C28.8867 9.33334 29.3333 8.88668 29.3333 8.33334C29.3333 7.78001 28.8867 7.33334 28.3333 7.33334H20.26L22.26 9.33334H23.48L23.1133 10.1867L24.5067 11.58L25.4733 9.33334H28.3333ZM27.6267 16.5867L18.7467 7.70668C18.4867 7.44668 18.0667 7.44668 17.8067 7.70668C17.5467 7.96668 17.5467 8.38668 17.8067 8.64668L21.98 12.82L20.88 15.38C20.62 15.9933 21.0667 16.6667 21.7267 16.6667C22.0933 16.6667 22.4267 16.4467 22.5733 16.1067L23.38 14.22L26.68 17.52C26.94 17.78 27.36 17.78 27.62 17.52C27.8867 17.2667 27.8867 16.8467 27.6267 16.5867Z"/></svg>');
|
|
2506
|
-
--vuu-svg-text-Tt: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M17.6667 7.66666C17.6667 8.21999 18.1133 8.66666 18.6667 8.66666H21V15.6667C21 16.22 21.4467 16.6667 22 16.6667C22.5533 16.6667 23 16.22 23 15.6667V8.66666H25.3333C25.8867 8.66666 26.3333 8.21999 26.3333 7.66666C26.3333 7.11332 25.8867 6.66666 25.3333 6.66666H18.6667C18.1133 6.66666 17.6667 7.11332 17.6667 7.66666ZM29.3333 9.99999H25.3333C24.78 9.99999 24.3333 10.4467 24.3333 11C24.3333 11.5533 24.78 12 25.3333 12H26.3333V15.6667C26.3333 16.22 26.78 16.6667 27.3333 16.6667C27.8867 16.6667 28.3333 16.22 28.3333 15.6667V12H29.3333C29.8867 12 30.3333 11.5533 30.3333 11C30.3333 10.4467 29.8867 9.99999 29.3333 9.99999Z" /></svg>');
|
|
2507
|
-
--vuu-svg-text-T: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 24"><path d="M19.3333 7.66666C19.3333 8.21999 19.78 8.66666 20.3333 8.66666H23V15.6667C23 16.22 23.4467 16.6667 24 16.6667C24.5533 16.6667 25 16.22 25 15.6667V8.66666H27.6667C28.22 8.66666 28.6667 8.21999 28.6667 7.66666C28.6667 7.11332 28.22 6.66666 27.6667 6.66666H20.3333C19.78 6.66666 19.3333 7.11332 19.3333 7.66666Z"/></svg>');
|
|
2508
|
-
--vuu-svg-stripes: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="2" width="12" height="2" rx="0.3"/><rect x="2" y="5" width="12" height="2" rx="0.3"/><rect x="2" y="8" width="12" height="2" rx="0.3"/><rect x="2" y="11" width="12" height="2" rx="0.3"/></svg>');
|
|
2509
|
-
--vuu-svg-row-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="2" y="3" width="12" height="1" rx="0.3" /><rect x="2" y="6" width="12" height="1" rx="0.3" /><rect x="2" y="9" width="12" height="1" rx="0.3" /><rect x="2" y="12" width="12" height="1" rx="0.3"/></svg>');
|
|
2510
|
-
--vuu-svg-col-lines: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><rect x="3" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 3 14)"/><rect x="6" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 6 14)"/><rect x="9" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 9 14)"/><rect x="12" y="14" width="12" height="1" rx="0.3" transform="rotate(-90 12 14)"/></svg>');
|
|
2511
|
-
display: flex;
|
|
2512
|
-
flex-direction: column;
|
|
2513
|
-
gap: 24px;
|
|
2514
|
-
height: 100%;
|
|
2515
|
-
padding-top: 24px;
|
|
2516
|
-
}
|
|
2517
|
-
.vuuTableSettingsPanel [data-icon=text-strikethrough] {
|
|
2518
|
-
--vuu-icon-svg: var(--vuu-svg-text-strikethrough);
|
|
2519
|
-
}
|
|
2520
|
-
.vuuTableSettingsPanel [data-icon=text-Tt] {
|
|
2521
|
-
--vuu-icon-svg: var(--vuu-svg-text-Tt);
|
|
2522
|
-
}
|
|
2523
|
-
.vuuTableSettingsPanel [data-icon=text-T] {
|
|
2524
|
-
--vuu-icon-svg: var(--vuu-svg-text-T);
|
|
2525
|
-
}
|
|
2526
|
-
.vuuTableSettingsPanel [data-icon=col-lines] {
|
|
2527
|
-
--vuu-icon-svg: var(--vuu-svg-col-lines);
|
|
2528
|
-
}
|
|
2529
|
-
.vuuTableSettingsPanel [data-icon=row-lines] {
|
|
2530
|
-
--vuu-icon-svg: var(--vuu-svg-row-lines);
|
|
2531
|
-
}
|
|
2532
|
-
.vuuTableSettingsPanel [data-icon=row-striping] {
|
|
2533
|
-
--vuu-icon-svg: var(--vuu-svg-stripes);
|
|
2534
|
-
}
|
|
2535
|
-
.vuuTableSettingsPanel-header {
|
|
2536
|
-
border-top: solid 2px var(--vuu-color-gray-30);
|
|
2537
|
-
font-size: 14px;
|
|
2538
|
-
font-weight: 600;
|
|
2539
|
-
padding-top: 24px;
|
|
2540
|
-
}
|
|
2541
|
-
.vuuTableSettingsPanel .vuuColumnList {
|
|
2542
|
-
flex-grow: 1;
|
|
2543
|
-
flex-shrink: 1;
|
|
2544
|
-
flex-basis: 0;
|
|
2545
|
-
}
|
|
2546
|
-
.vuuTableSettingsPanel-calculatedButtonbar {
|
|
2547
|
-
--vuu-icon-size: 16px;
|
|
2548
|
-
--saltButton-height: 24px;
|
|
2549
|
-
--saltButton-width: 24px;
|
|
2550
|
-
align-items: center;
|
|
2551
|
-
display: flex;
|
|
2552
|
-
flex: 0 0 32px;
|
|
2553
|
-
gap: 12px;
|
|
2554
|
-
}
|
|
2555
|
-
.vuuGridSeparators {
|
|
2556
|
-
--vuuIconToggleButton-iconSize: 16px;
|
|
2557
|
-
}
|
|
2558
|
-
|
|
2559
|
-
/* ../vuu-table/src/table-next/TableNext.css */
|
|
2560
|
-
.vuuTableNext {
|
|
2561
|
-
--vuu-table-cell-outlineWidth: 1px;
|
|
2562
|
-
--table-height: var(--measured-px-height);
|
|
2563
|
-
--table-width: var(--measured-px-width);
|
|
2564
|
-
--vuu-table-next-selection-bookend-width: 4px;
|
|
2565
|
-
--columnResizer-color: transparent;
|
|
2566
|
-
--row-background: white;
|
|
2567
|
-
--cell-borderColor: transparent;
|
|
2568
|
-
--row-borderColor: var(--row-background);
|
|
2569
|
-
--table-background: var(--salt-container-primary-background);
|
|
2570
|
-
position: relative;
|
|
2571
|
-
user-select: none;
|
|
2572
|
-
}
|
|
2573
|
-
.vuuTableNext-zebra {
|
|
2574
|
-
--row-background-even: var(--vuu-color-gray-25) ;
|
|
2575
|
-
}
|
|
2576
|
-
.vuuTableNext-colLines {
|
|
2577
|
-
--cell-borderColor: var(--salt-separable-tertiary-borderColor);
|
|
2578
|
-
}
|
|
2579
|
-
.vuuTableNext-rowLines {
|
|
2580
|
-
--row-borderColor: var(--salt-separable-tertiary-borderColor);
|
|
2581
|
-
}
|
|
2582
|
-
.vuuTableNext-scrollbarContainer {
|
|
2583
|
-
--scroll-content-width: 1100px;
|
|
2584
|
-
border-bottom: none !important;
|
|
2585
|
-
border-top: none !important;
|
|
2586
|
-
border-left: solid 1px var(--salt-container-primary-borderColor);
|
|
2587
|
-
height: var(--viewport-body-height);
|
|
2588
|
-
left: 0px;
|
|
2589
|
-
overflow: auto;
|
|
2590
|
-
position: absolute;
|
|
2591
|
-
top: var(--total-header-height);
|
|
2592
|
-
width: var(--table-width);
|
|
2593
|
-
}
|
|
2594
|
-
.vuuTableNext-scrollbarContainer::-webkit-scrollbar {
|
|
2595
|
-
border: none;
|
|
2596
|
-
width: 10px;
|
|
2597
|
-
}
|
|
2598
|
-
.vuuTableNext-scrollbarContainer::-webkit-scrollbar:horizontal {
|
|
2599
|
-
height: 10px;
|
|
2600
|
-
}
|
|
2601
|
-
.vuuTableNext-scrollbarContainer::-webkit-scrollbar-track {
|
|
2602
|
-
background-color: white;
|
|
2603
|
-
}
|
|
2604
|
-
.vuuTableNext-scrollbarContainer::-webkit-scrollbar-thumb {
|
|
2605
|
-
background-clip: padding-box;
|
|
2606
|
-
border-radius: 10px;
|
|
2607
|
-
border: 2px solid rgba(0, 0, 0, 0);
|
|
2608
|
-
background-color: var(--vuu-color-gray-30);
|
|
2609
|
-
}
|
|
2610
|
-
.vuuTableNext-scrollbarContent {
|
|
2611
|
-
height: calc(var(--content-height) + var(--horizontal-scrollbar-height));
|
|
2612
|
-
position: absolute;
|
|
2613
|
-
width: var(--content-width);
|
|
2614
|
-
}
|
|
2615
|
-
.vuuTableNext-contentContainer {
|
|
2616
|
-
background-color: var(--salt-container-primary-background);
|
|
2617
|
-
height: calc(var(--table-height) - var(--horizontal-scrollbar-height));
|
|
2618
|
-
position: relative;
|
|
2619
|
-
overflow: auto;
|
|
2620
|
-
overscroll-behavior: none;
|
|
2621
|
-
width: calc(var(--table-width) - var(--vertical-scrollbar-width));
|
|
2622
|
-
}
|
|
2623
|
-
.vuuTableNext-contentContainer::-webkit-scrollbar {
|
|
2624
|
-
display: none;
|
|
2625
|
-
}
|
|
2626
|
-
.vuuTableNext-table {
|
|
2627
|
-
position: absolute;
|
|
2628
|
-
top: 0;
|
|
2629
|
-
left: 0;
|
|
2630
|
-
table-layout: fixed;
|
|
2631
|
-
width: var(--content-width);
|
|
2632
|
-
margin: 0;
|
|
2633
|
-
border: none;
|
|
2634
|
-
background-color: #fff;
|
|
2635
|
-
border-collapse: separate;
|
|
2636
|
-
border-spacing: 0;
|
|
2637
|
-
}
|
|
2638
|
-
.vuuTableNext-body {
|
|
2639
|
-
height: var(--content-height);
|
|
2640
|
-
}
|
|
2641
|
-
.vuuPinLeft,
|
|
2642
|
-
.vuuPinRight {
|
|
2643
|
-
background-color: inherit;
|
|
2644
|
-
position: sticky;
|
|
2645
|
-
z-index: 1;
|
|
2646
|
-
}
|
|
2647
|
-
.vuuTableNext-col-headings {
|
|
2648
|
-
background-color: white;
|
|
2649
|
-
padding: 0 var(--vuu-table-next-selection-bookend-width, 0);
|
|
2650
|
-
position: sticky;
|
|
2651
|
-
top: 0;
|
|
2652
|
-
z-index: 1;
|
|
2653
|
-
}
|
|
2654
|
-
.vuuTableNext-col-headers {
|
|
2655
|
-
background-color: var(--table-background);
|
|
2656
|
-
white-space: nowrap;
|
|
2657
|
-
}
|
|
2658
|
-
.sizer-cell {
|
|
2659
|
-
background-color: green !important;
|
|
2660
|
-
border: none !important;
|
|
2661
|
-
height: 0px;
|
|
2662
|
-
}
|
|
2663
|
-
.vuuDraggable-vuuTableNext {
|
|
2664
|
-
--header-height: 25px;
|
|
2665
|
-
--vuuTableNextHeaderCell-background: var(--vuu-color-gray-25);
|
|
2666
|
-
}
|
|
2667
|
-
|
|
2668
|
-
/* ../vuu-table/src/table-next/cell-renderers/dropdown-cell/DropdownCell.css */
|
|
2669
|
-
.vuuTableDropdownCell {
|
|
2670
|
-
--vuu-icon-height: 15px;
|
|
2671
|
-
--salt-focused-outlineStyle: none;
|
|
2672
|
-
--saltButton-borderRadius: 4px;
|
|
2673
|
-
font-weight: 500;
|
|
2674
|
-
}
|
|
2675
|
-
.vuuTableDropdownCell button:focus-visible {
|
|
2676
|
-
--saltButton-borderColor: var(--vuu-color-purple-10);
|
|
2677
|
-
--saltButton-borderWidth: 2px;
|
|
2678
|
-
padding-left: 3px;
|
|
2679
|
-
}
|
|
2680
|
-
|
|
2681
|
-
/* ../vuu-table/src/table-next/cell-renderers/input-cell/InputCell.css */
|
|
2682
|
-
.vuuTableInputCell.saltInput-primary {
|
|
2683
|
-
--salt-focused-outlineStyle: none;
|
|
2684
|
-
--saltInput-height: 17px;
|
|
2685
|
-
--saltInput-minHeight: 17px;
|
|
2686
|
-
border-radius: 4px;
|
|
2687
|
-
font-weight: 500;
|
|
2688
|
-
}
|
|
2689
|
-
.vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary,
|
|
2690
|
-
.vuuTableInputCell.saltInput-primary.saltInput-focused {
|
|
2691
|
-
border: solid 2px var(--vuu-color-purple-10);
|
|
2692
|
-
padding: 0 3px;
|
|
2693
|
-
}
|
|
2694
|
-
.vuuTableInputCell-icon {
|
|
2695
|
-
--vuu-icon-height: 13px;
|
|
2696
|
-
--vuu-icon-size: 15px;
|
|
2697
|
-
--vuu-icon-width: 12px;
|
|
2698
|
-
border-radius: 10px;
|
|
2699
|
-
}
|
|
2700
|
-
.vuuTableNextCell:focus .vuuTableInputCell.saltInput-primary.vuuTableInputCell-error,
|
|
2701
|
-
.vuuTableInputCell.saltInput-primary.saltInput-focused.vuuTableInputCell-error {
|
|
2702
|
-
border: solid 2px var(--vuu-color-red-50);
|
|
2703
|
-
}
|
|
2704
|
-
.vuuTableInputCell-error.saltInput-primary {
|
|
2705
|
-
border: solid 1px var(--vuu-color-red-50);
|
|
2706
|
-
}
|
|
2707
|
-
|
|
2708
|
-
/* ../vuu-ui-controls/src/instrument-search/SearchCell.css */
|
|
2709
|
-
.vuuSearchCell {
|
|
2710
|
-
--vuu-icon-left: 0;
|
|
2711
|
-
--vuu-icon-size: 16px;
|
|
2712
|
-
--vuu-icon-top: 0px;
|
|
2713
|
-
align-items: center;
|
|
2714
|
-
color: var(--background-cell-color);
|
|
2715
|
-
display: flex;
|
|
2716
|
-
gap: 4px;
|
|
2717
|
-
padding: 0 8px 0 8px;
|
|
2718
|
-
position: relative;
|
|
2719
|
-
z-index: -1;
|
|
2720
|
-
}
|
|
2721
|
-
|
|
2722
|
-
/* ../vuu-ui-controls/src/instrument-search/InstrumentSearch.css */
|
|
2723
|
-
.vuuInstrumentSearch {
|
|
2724
|
-
height: 100%;
|
|
2725
|
-
padding: var(--vuuInstrumentSearch-padding, 12px);
|
|
2726
|
-
display: flex;
|
|
2727
|
-
flex-direction: column;
|
|
2728
|
-
}
|
|
2729
|
-
.vuuInstrumentSearch-inputField {
|
|
2730
|
-
--vuu-icon-size: 16px;
|
|
2731
|
-
flex: 0 0 40px;
|
|
2732
|
-
}
|
|
2733
|
-
.vuuInstrumentSearch-list {
|
|
2734
|
-
background-color: var(--salt-container-primary-background);
|
|
2735
|
-
flex: 1 1 auto;
|
|
2736
|
-
}
|
|
2737
|
-
.vuuInstrumentSearch .vuuTableNextCell {
|
|
2738
|
-
padding: 0;
|
|
2739
|
-
}
|
|
2740
|
-
|
|
2741
|
-
/* ../vuu-ui-controls/src/price-ticker/PriceTicker.css */
|
|
2742
|
-
@property --price-ticker-color { syntax: "<color>"; initial-value: #15171B; inherits: false; }
|
|
2743
|
-
.vuuPriceTicker {
|
|
2744
|
-
align-items: center;
|
|
2745
|
-
display: flex;
|
|
2746
|
-
font-size: var(--vuuPriceTicker-fontSize, var(--salt-text-fontSize));
|
|
2747
|
-
font-weight: var(--vuuPriceTicker-fontWeight, 700);
|
|
2748
|
-
transition-property: color;
|
|
2749
|
-
transition-duration: .3s;
|
|
2750
|
-
}
|
|
2751
|
-
.vuuPriceTicker.up1 {
|
|
2752
|
-
--vuu-icon-color: var(--vuu-color-green-50);
|
|
2753
|
-
color: var(--vuu-color-green-50);
|
|
2754
|
-
animation-duration: 30s;
|
|
2755
|
-
}
|
|
2756
|
-
.vuuPriceTicker.up2 {
|
|
2757
|
-
--vuu-icon-color: var(--vuu-color-green-50);
|
|
2758
|
-
color: var(--vuu-color-green-50);
|
|
2759
|
-
animation-duration: 30s;
|
|
2760
|
-
}
|
|
2761
|
-
.vuuPriceTicker.down1 {
|
|
2762
|
-
--vuu-icon-transform: rotate(180deg);
|
|
2763
|
-
--vuu-icon-color: var(--vuu-color-red-50);
|
|
2764
|
-
color: var(--vuu-color-red-50);
|
|
2765
|
-
animation-duration: 30s;
|
|
2766
|
-
}
|
|
2767
|
-
.vuuPriceTicker.down2 {
|
|
2768
|
-
--vuu-icon-transform: rotate(180deg);
|
|
2769
|
-
--vuu-icon-color: var(--vuu-color-red-50);
|
|
2770
|
-
color: var(--vuu-color-red-50);
|
|
2771
|
-
animation-duration: 30s;
|
|
2772
|
-
}
|
|
2773
|
-
|
|
2774
|
-
/* ../vuu-ui-controls/src/tabstrip/Tabstrip.css */
|
|
2775
|
-
.vuuTabstrip {
|
|
2776
|
-
--vuuOverflowContainer-background: transparent;
|
|
2777
|
-
--tabstrip-dragging-display: none;
|
|
2778
|
-
--tabstrip-display: inline-flex;
|
|
2779
|
-
--tabstrip-background: transparent;
|
|
2780
|
-
align-self: var(--saltTabs-tabstrip-alignSelf, stretch);
|
|
2781
|
-
display: flex;
|
|
2782
|
-
font-size: var(--salt-text-fontSize);
|
|
2783
|
-
font-weight: var(--vuuTabstrip-fontWeight, var(--salt-text-fontWeight));
|
|
2784
|
-
min-width: 28px;
|
|
2785
|
-
position: relative;
|
|
2786
|
-
overflow: visible;
|
|
2787
|
-
width: var(--tabstrip-width);
|
|
2788
|
-
}
|
|
2789
|
-
.vuuTabstrip-horizontal {
|
|
2790
|
-
--tabstrip-height: var(--vuuTabstrip-height, 28px);
|
|
2791
|
-
--tabstrip-width: var(--vuuTabstrip-width, 100%);
|
|
2792
|
-
--tab-height: var(--tabstrip-height);
|
|
2793
|
-
--tab-width: auto;
|
|
2794
|
-
--tab-thumb-height: 2px;
|
|
2795
|
-
--tab-thumb-left: var(--tab-thumb-offset, 0);
|
|
2796
|
-
--tab-thumb-top: auto;
|
|
2797
|
-
--tab-thumb-width: var(--tab-thumb-size, 100%);
|
|
2798
|
-
align-items: flex-start;
|
|
2799
|
-
border-bottom: var(--vuuTabstrip-borderBottom, solid 1px var(--salt-container-primary-borderColor));
|
|
2800
|
-
}
|
|
2801
|
-
.vuuTabstrip-vertical {
|
|
2802
|
-
--tabstrip-height: var(--vuuTabstrip-height, 100%);
|
|
2803
|
-
--tabstrip-width: var(--vuuTabstrip-width, 100px);
|
|
2804
|
-
--tab-height: 50px;
|
|
2805
|
-
--tab-width: 100%;
|
|
2806
|
-
--tab-thumb-height: 0;
|
|
2807
|
-
--tab-thumb-left: 0;
|
|
2808
|
-
--tab-thumb-top: var(--tab-thumb-offset, 0);
|
|
2809
|
-
--tab-thumb-width: 2px;
|
|
2810
|
-
align-self: flex-start;
|
|
2811
|
-
display: inline-flex;
|
|
2812
|
-
}
|
|
2813
|
-
.vuuTabstrip-draggingTab .vuuTab {
|
|
2814
|
-
pointer-events: none;
|
|
2815
|
-
}
|
|
2816
|
-
.vuuTabstrip-addTabButton {
|
|
2817
|
-
--saltButton-height: 20px;
|
|
2818
|
-
--saltButton-width: 20px;
|
|
2819
|
-
}
|
|
2820
|
-
.vuuTabstrip-overflowMenu.vuuDropdown {
|
|
2821
|
-
--saltIcon-margin: 2px 0 0 0px;
|
|
2822
|
-
}
|
|
2823
|
-
.vuuTabstrip-overflowMenu-open {
|
|
2824
|
-
--saltButton-background: var(--salt-actionable-secondary-background-active);
|
|
2825
|
-
--saltButton-text-color: var(--salt-actionable-secondary-text-color-active);
|
|
2826
|
-
}
|
|
2827
|
-
.vuuTabstrip-overflowMenu-open .saltButton {
|
|
2828
|
-
--saltIcon-color: var(--salt-actionable-secondary-foreground-active);
|
|
2829
|
-
}
|
|
2830
|
-
.vuuTabstrip-inner {
|
|
2831
|
-
width: 100%;
|
|
2832
|
-
align-items: center;
|
|
2833
|
-
display: flex;
|
|
2834
|
-
flex-basis: auto;
|
|
2835
|
-
flex-grow: 0;
|
|
2836
|
-
flex-shrink: 1;
|
|
2837
|
-
flex-wrap: wrap;
|
|
2838
|
-
justify-content: flex-start;
|
|
2839
|
-
line-height: var(--tabstrip-height);
|
|
2840
|
-
}
|
|
2841
|
-
.vuuTabstrip-vertical .vuuTabstrip-inner {
|
|
2842
|
-
flex-direction: column;
|
|
2843
|
-
height: auto;
|
|
2844
|
-
}
|
|
2845
|
-
.vuuTabstrip-centered .vuuTabstrip-inner {
|
|
2846
|
-
justify-content: center;
|
|
2847
|
-
}
|
|
2848
|
-
.vuuDraggable[class*=vuuTabstrip] {
|
|
2849
|
-
--tabstrip-display: flex;
|
|
2850
|
-
--tabstrip-height: 100%;
|
|
2851
|
-
--tabstrip-dragging-display: block;
|
|
2852
|
-
--tabs-tab-background: var(--salt-navigable-primary-background-hover);
|
|
2853
|
-
--tabs-tab-before-content: "";
|
|
2854
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-hover);
|
|
2855
|
-
--tabs-tab-before-height: var(--tab-activationIndicator-thumb-height);
|
|
2856
|
-
--tabs-tab-before-inset: var(--tab-activationIndicator-inset);
|
|
2857
|
-
--tabs-tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
2858
|
-
--tabs-tab-cursor: var(--salt-draggable-grab-cursor-active);
|
|
2859
|
-
--tabs-tab-position: static;
|
|
2860
|
-
font-size: 12px;
|
|
2861
|
-
}
|
|
2862
|
-
.vuuDraggable-tabstrip-horizontal {
|
|
2863
|
-
--tab-thumb-height: 2px;
|
|
2864
|
-
--tab-thumb-left: 0px;
|
|
2865
|
-
--tabstrip-height: 28px;
|
|
2866
|
-
line-height: var(--tabstrip-height);
|
|
2867
|
-
}
|
|
2868
|
-
.vuuDraggable[class*=tabstrip] .vuuTab[aria-selected=true]:before {
|
|
2869
|
-
--tabs-tab-before-background: var(--salt-navigable-indicator-active);
|
|
2870
|
-
}
|
|
2871
|
-
.vuuTabstrip-overflowMenu-dropTarget:after {
|
|
2872
|
-
background: var(--salt-selectable-background-selected);
|
|
2873
|
-
content: "";
|
|
2874
|
-
position: absolute;
|
|
2875
|
-
height: 2px;
|
|
2876
|
-
left: 0;
|
|
2877
|
-
right: 0;
|
|
2878
|
-
bottom: 0;
|
|
2879
|
-
}
|
|
2880
|
-
|
|
2881
|
-
/* ../vuu-ui-controls/src/tabstrip/TabMenu.css */
|
|
2882
|
-
.vuuTabMenu {
|
|
2883
|
-
top: -2px;
|
|
2884
|
-
}
|
|
2885
|
-
|
|
2886
|
-
/* ../vuu-ui-controls/src/tabstrip/Tab.css */
|
|
2887
|
-
.vuuTab {
|
|
2888
|
-
--saltEditableLabel-padding: 0;
|
|
2889
|
-
--saltEditableLabel-height: calc(var(--tabstrip-height) - 2px);
|
|
2890
|
-
--saltInputLegacy-minWidth: 4em;
|
|
2891
|
-
--saltEditableLabel-top: 2px;
|
|
2892
|
-
--tab-background: var(--vuuTab-background, var(--salt-navigable-primary-background));
|
|
2893
|
-
--tab-cursor: pointer;
|
|
2894
|
-
--tab-position: relative;
|
|
2895
|
-
}
|
|
2896
|
-
.vuuTab {
|
|
2897
|
-
align-items: center;
|
|
2898
|
-
align-self: stretch;
|
|
2899
|
-
background: var(--tab-background);
|
|
2900
|
-
border: none;
|
|
2901
|
-
border-radius: var(--vuuTab-borderRadius, 0);
|
|
2902
|
-
color: var(--salt-text-primary-foreground);
|
|
2903
|
-
cursor: var(--vuuTab-cursor, var(--tab-cursor));
|
|
2904
|
-
display: var(--tabstrip-display);
|
|
2905
|
-
gap: 8px;
|
|
2906
|
-
height: var(--vuuTabHeight, var(--tab-height));
|
|
2907
|
-
letter-spacing: var(--vuuTab-letterSpacing, var(--tab-letterSpacing, 0));
|
|
2908
|
-
min-width: var(--vuuTab-minWidth, 40px);
|
|
2909
|
-
outline: none;
|
|
2910
|
-
padding: var(--vuuTab-padding, 0 24px);
|
|
2911
|
-
position: var(--vuuTab-position, var(--tab-position));
|
|
2912
|
-
user-select: none;
|
|
2913
|
-
width: var(--tab-width);
|
|
2914
|
-
}
|
|
2915
|
-
.vuuTab {
|
|
2916
|
-
margin: 0 var(--tab-spacing) 0 0;
|
|
2917
|
-
}
|
|
2918
|
-
.vuuTab-selected {
|
|
2919
|
-
background: var(--vuuTab-background-selected, var(--tab-background));
|
|
2920
|
-
color: var(--salt-text-primary-foreground);
|
|
2921
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
2922
|
-
}
|
|
2923
|
-
.vuuTab-main {
|
|
2924
|
-
align-items: center;
|
|
2925
|
-
border: none;
|
|
2926
|
-
color: inherit;
|
|
2927
|
-
cursor: inherit;
|
|
2928
|
-
display: flex;
|
|
2929
|
-
font-family: inherit;
|
|
2930
|
-
font-size: inherit;
|
|
2931
|
-
font-weight: inherit;
|
|
2932
|
-
height: calc(var(--tab-height) - var(--tab-thumb-height));
|
|
2933
|
-
margin-bottom: var(--tab-thumb-height);
|
|
2934
|
-
outline: none;
|
|
2935
|
-
position: relative;
|
|
2936
|
-
}
|
|
2937
|
-
.vuuTab-closeable .vuuTab-main {
|
|
2938
|
-
border-right: solid transparent var(--salt-size-unit);
|
|
2939
|
-
}
|
|
2940
|
-
.vuuTab .vuuTab-closeButton {
|
|
2941
|
-
display: flex;
|
|
2942
|
-
align-items: center;
|
|
2943
|
-
justify-content: center;
|
|
2944
|
-
}
|
|
2945
|
-
.vuuTab-close-icon {
|
|
2946
|
-
display: none;
|
|
2947
|
-
}
|
|
2948
|
-
.salt-density-touch .vuuTab-close-icon,
|
|
2949
|
-
.salt-density-low .vuuTab-close-icon {
|
|
2950
|
-
display: block;
|
|
2951
|
-
}
|
|
2952
|
-
.salt-density-touch .vuuTab-close-icon-small,
|
|
2953
|
-
.salt-density-low .vuuTab-close-icon-small {
|
|
2954
|
-
display: none;
|
|
2955
|
-
}
|
|
2956
|
-
.vuuTab .vuuTab-text {
|
|
2957
|
-
display: inline-block;
|
|
2958
|
-
position: relative;
|
|
2959
|
-
overflow: hidden;
|
|
2960
|
-
text-align: var(--salt-text-textAlign-embedded);
|
|
2961
|
-
text-overflow: ellipsis;
|
|
2962
|
-
top: var(--vuuTab-top, var(--tab-top, auto));
|
|
2963
|
-
white-space: nowrap;
|
|
2964
|
-
z-index: var(--salt-zIndex-default);
|
|
2965
|
-
}
|
|
2966
|
-
.vuuTab .vuuTab-text:before {
|
|
2967
|
-
height: 0;
|
|
2968
|
-
content: attr(data-text);
|
|
2969
|
-
display: block;
|
|
2970
|
-
visibility: hidden;
|
|
2971
|
-
font-weight: var(--salt-navigable-fontWeight-active);
|
|
2972
|
-
}
|
|
2973
|
-
.vuuTab-editing:after {
|
|
2974
|
-
content: "";
|
|
2975
|
-
position: absolute;
|
|
2976
|
-
top: 0;
|
|
2977
|
-
left: 0;
|
|
2978
|
-
right: 0;
|
|
2979
|
-
bottom: 2px;
|
|
2980
|
-
outline-color: var(--salt-focused-outlineColor);
|
|
2981
|
-
outline-style: var(--salt-focused-outlineStyle);
|
|
2982
|
-
outline-width: var(--salt-focused-outlineWidth);
|
|
2983
|
-
outline-offset: -2px;
|
|
2984
|
-
}
|
|
2985
|
-
.vuuTab.vuuFocusVisible {
|
|
2986
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
2987
|
-
outline-color: var(--vuuTab-focusVisible-color, var(--salt-focused-outlineColor));
|
|
2988
|
-
outline-style: dashed;
|
|
2989
|
-
outline-width: 1px;
|
|
2990
|
-
outline-offset: -1px;
|
|
2991
|
-
}
|
|
2992
|
-
.vuuTab:before {
|
|
2993
|
-
content: var(--tab-before-content, none);
|
|
2994
|
-
content: "";
|
|
2995
|
-
background: var(--tab-before-background);
|
|
2996
|
-
height: var(--tab-before-height);
|
|
2997
|
-
inset: var(--tab-before-inset);
|
|
2998
|
-
position: absolute;
|
|
2999
|
-
width: var(--tab-before-width);
|
|
3000
|
-
z-index: 1;
|
|
3001
|
-
}
|
|
3002
|
-
.vuuTabstrip-draggingTab .vuuTab-selected:before {
|
|
3003
|
-
--tab-before-content: "";
|
|
3004
|
-
--tab-before-background: var(--salt-navigable-indicator-color-active);
|
|
3005
|
-
--tab-before-height: var(--tab-thumb-height);
|
|
3006
|
-
--tab-before-inset: var(--tab-activationIndicator-inset);
|
|
3007
|
-
--tab-before-width: var(--tab-activationIndicator-thumb-width);
|
|
3008
|
-
}
|
|
3009
|
-
.vuuTab-selected:before {
|
|
3010
|
-
--tab-before-content: "";
|
|
3011
|
-
background: var(--salt-navigable-indicator-active);
|
|
3012
|
-
height: var(--tab-thumb-height);
|
|
3013
|
-
position: absolute;
|
|
3014
|
-
left: var(--tab-thumb-left);
|
|
3015
|
-
bottom: 0px;
|
|
3016
|
-
top: var(--tab-thumb-top, auto);
|
|
3017
|
-
transition: var(--tab-thumb-transition, none);
|
|
3018
|
-
width: var(--tab-thumb-width, 100%);
|
|
3019
|
-
}
|
|
3020
|
-
.vuuTab:hover:not(.vuuTab-closeHover) {
|
|
3021
|
-
background: var(--vuuTab-hover-background, var(--salt-navigable-primary-background-hover));
|
|
3022
|
-
}
|
|
3023
|
-
|
|
3024
|
-
/* ../vuu-ui-controls/src/tree/Tree.css */
|
|
3025
|
-
.vuuTree {
|
|
3026
|
-
--tree-node-collapse: var(--vuuTree-toggle-collapse, var(--svg-tree-node-collapse));
|
|
3027
|
-
--tree-node-expand: var(--vuuTree-toggle-expand, var(--svg-tree-node-expand));
|
|
3028
|
-
--tree-toggle-width: 12px;
|
|
3029
|
-
--tree-icon-color: var(--vuuTree-icon-color, #4c505b);
|
|
3030
|
-
--tree-node-expanded-transform: var(--vuuTree-node-expanded-transform, none);
|
|
3031
|
-
--tree-node-indent: 0px;
|
|
3032
|
-
--list-hilited-bg: var(--hw-list-hilited-bg, rgba(0, 0, 0, 0.1));
|
|
3033
|
-
--list-item-height: var(--hw-list-item-height, 30px);
|
|
3034
|
-
--list-item-padding: var(--hw-list-item-padding, 0 6px);
|
|
3035
|
-
--list-item-header-bg: var(--hw-list-item-header-bg, black);
|
|
3036
|
-
--list-item-header-color: var(--hw-list-item-header-color, white);
|
|
3037
|
-
--list-item-header-font-weight: bold;
|
|
3038
|
-
--list-item-header-twisty-color: black;
|
|
3039
|
-
--list-item-header-twisty-content: "";
|
|
3040
|
-
--list-item-header-twisty-top: 50%;
|
|
3041
|
-
--list-item-header-twisty-left: -18px;
|
|
3042
|
-
--list-item-header-twisty-right: auto;
|
|
3043
|
-
--list-item-selected-bg: var(--hw-list-selected-bg, #1ea7fd);
|
|
3044
|
-
--list-item-selected-color: white;
|
|
3045
|
-
--list-item-text-color: var(--hw-gray-800);
|
|
3046
|
-
--focus-visible-border-color: var(--hw-focus-visible-border-color, rgb(141, 154, 179));
|
|
3047
|
-
list-style: none;
|
|
3048
|
-
margin: 0;
|
|
3049
|
-
padding: 0 1px;
|
|
3050
|
-
font-size: var(--vuuTree-font-size, 14px);
|
|
3051
|
-
max-height: inherit;
|
|
3052
|
-
outline: none;
|
|
3053
|
-
overflow-y: auto;
|
|
3054
|
-
position: relative;
|
|
3055
|
-
user-select: none;
|
|
3056
|
-
}
|
|
3057
|
-
.vuuTree-viewport {
|
|
3058
|
-
--list-item-height: 30px;
|
|
3059
|
-
box-sizing: border-box;
|
|
3060
|
-
max-height: inherit;
|
|
3061
|
-
overflow: auto;
|
|
3062
|
-
}
|
|
3063
|
-
.vuuTree-scrollingContentContainer {
|
|
3064
|
-
box-sizing: inherit;
|
|
3065
|
-
position: relative;
|
|
3066
|
-
}
|
|
3067
|
-
.vuuTree-scrollingContentContainer .vuuTreeNode {
|
|
3068
|
-
line-height: 30px;
|
|
3069
|
-
position: absolute;
|
|
3070
|
-
top: 0;
|
|
3071
|
-
left: 0;
|
|
3072
|
-
right: 0;
|
|
3073
|
-
will-change: transform;
|
|
3074
|
-
}
|
|
3075
|
-
.vuuTreeNode {
|
|
3076
|
-
list-style: none;
|
|
3077
|
-
}
|
|
3078
|
-
.vuuTreeNode:not([aria-expanded]),
|
|
3079
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
|
|
3080
|
-
--checkbox-border-color: black;
|
|
3081
|
-
--checkbox-border-width: 1px;
|
|
3082
|
-
--checkbox-tick: black;
|
|
3083
|
-
--list-item-padding-left: 6px;
|
|
3084
|
-
--svg-toggle: var(--tree-node-collapse);
|
|
3085
|
-
align-items: center;
|
|
3086
|
-
color: var(--list-item-text-color);
|
|
3087
|
-
display: flex;
|
|
3088
|
-
flex-wrap: nowrap;
|
|
3089
|
-
height: var(--list-item-height);
|
|
3090
|
-
line-height: var(--list-item-height);
|
|
3091
|
-
padding: var(--list-item-padding);
|
|
3092
|
-
padding-left: var(--padding-left);
|
|
3093
|
-
position: relative;
|
|
3094
|
-
cursor: default;
|
|
3095
|
-
margin: 0;
|
|
3096
|
-
white-space: nowrap;
|
|
3097
|
-
}
|
|
3098
|
-
.vuuTreeNode:not([aria-expanded]) {
|
|
3099
|
-
--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
|
|
3100
|
-
}
|
|
3101
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label {
|
|
3102
|
-
--padding-left: calc( var(--list-item-padding-left) + var(--tree-toggle-width) + var(--tree-node-indent) );
|
|
3103
|
-
}
|
|
3104
|
-
.vuuTreeNode-icon {
|
|
3105
|
-
background-color: var(--tree-icon-color);
|
|
3106
|
-
display: inline-block;
|
|
3107
|
-
height: 18px;
|
|
3108
|
-
margin-right: 6px;
|
|
3109
|
-
-webkit-mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
|
|
3110
|
-
mask: var(--vuu-icon-svg) center center/12px 12px no-repeat;
|
|
3111
|
-
flex: 0 0 18px;
|
|
3112
|
-
}
|
|
3113
|
-
.vuuTreeNode[aria-expanded] {
|
|
3114
|
-
flex-direction: column;
|
|
3115
|
-
}
|
|
3116
|
-
.vuuTreeNode[aria-expanded] {
|
|
3117
|
-
flex-direction: column;
|
|
3118
|
-
height: auto;
|
|
3119
|
-
}
|
|
3120
|
-
.vuuTreeNode > *[role=group] {
|
|
3121
|
-
padding-left: 0px;
|
|
3122
|
-
}
|
|
3123
|
-
.vuuTreeNode {
|
|
3124
|
-
padding-left: calc(var(--padding-left) + var(--tree-node-indent));
|
|
3125
|
-
}
|
|
3126
|
-
.vuuTreeNode[aria-level="2"] {
|
|
3127
|
-
--tree-node-indent: 12px;
|
|
3128
|
-
}
|
|
3129
|
-
.vuuTreeNode[aria-level="3"] {
|
|
3130
|
-
--tree-node-indent: 24px;
|
|
3131
|
-
}
|
|
3132
|
-
.vuuTreeNode[aria-level="4"] {
|
|
3133
|
-
--tree-node-indent: 36px;
|
|
3134
|
-
}
|
|
3135
|
-
.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader):not([aria-expanded])[data-highlighted],
|
|
3136
|
-
.vuuTreeNode:not(.focusVisible):not(.hwListItemHeader)[aria-expanded][data-highlighted] > div:first-child {
|
|
3137
|
-
background-color: var(--list-hilited-bg);
|
|
3138
|
-
}
|
|
3139
|
-
.vuuTreeNode-toggle {
|
|
3140
|
-
cursor: pointer;
|
|
3141
|
-
}
|
|
3142
|
-
.vuuTreeNode > .vuuTreeNode-toggle {
|
|
3143
|
-
display: inline-block;
|
|
3144
|
-
height: 100%;
|
|
3145
|
-
left: 0;
|
|
3146
|
-
position: absolute;
|
|
3147
|
-
width: calc(var(--list-item-padding-left) + var(--tree-toggle-width));
|
|
3148
|
-
}
|
|
3149
|
-
.vuuTreeNode[aria-expanded] > .vuuTreeNode-label:after {
|
|
3150
|
-
content: var(--list-item-header-twisty-content);
|
|
3151
|
-
-webkit-mask: var(--svg-toggle) center center/8px 8px no-repeat;
|
|
3152
|
-
mask: var(--svg-toggle) center center/8px 8px no-repeat;
|
|
3153
|
-
background-color: var(--list-item-header-twisty-color);
|
|
3154
|
-
height: 18px;
|
|
3155
|
-
margin-top: -9px;
|
|
3156
|
-
left: var(--tree-node-indent);
|
|
3157
|
-
position: absolute;
|
|
3158
|
-
top: var(--list-item-header-twisty-top);
|
|
3159
|
-
transition: transform 0.3s;
|
|
3160
|
-
width: 18px;
|
|
3161
|
-
}
|
|
3162
|
-
.vuuTreeNode[aria-selected=true] {
|
|
3163
|
-
--list-item-header-twisty-color: var(--list-item-selected-color);
|
|
3164
|
-
}
|
|
3165
|
-
.vuuTreeNode:not(.focusVisible):focus {
|
|
3166
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
3167
|
-
}
|
|
3168
|
-
.vuuTreeNode:not([aria-expanded]).focusVisible:before,
|
|
3169
|
-
.vuuTreeNode[aria-expanded].focusVisible > div:first-child:before {
|
|
3170
|
-
content: "";
|
|
3171
|
-
position: absolute;
|
|
3172
|
-
top: 0px;
|
|
3173
|
-
left: var(--tree-focus-offset, 0px);
|
|
3174
|
-
right: 0;
|
|
3175
|
-
bottom: 0px;
|
|
3176
|
-
border: dotted var(--focus-visible-border-color) 2px;
|
|
3177
|
-
background-color: var(--list-hilited-bg);
|
|
3178
|
-
}
|
|
3179
|
-
.vuuTreeNode[aria-expanded=false] > *:first-child:after {
|
|
3180
|
-
--svg-toggle: var(--tree-node-expand);
|
|
3181
|
-
}
|
|
3182
|
-
.vuuTreeNode[aria-expanded=true] > *:first-child:after {
|
|
3183
|
-
transform: var(--tree-node-expanded-transform);
|
|
3184
|
-
}
|
|
3185
|
-
.vuuTree:not(.checkbox-only) .vuuTreeNode:not([aria-expanded])[aria-selected=true],
|
|
3186
|
-
.vuuTree:not(.checkbox-only) .vuuTreeNode[aria-expanded][aria-selected=true] > div:first-child {
|
|
3187
|
-
--checkbox-border-color: var(--list-item-selected-color);
|
|
3188
|
-
--checkbox-tick: var(--list-item-selected-color);
|
|
3189
|
-
--focus-visible-border-color: var(--list-item-selected-color);
|
|
3190
|
-
background-color: var(--list-item-selected-bg);
|
|
3191
|
-
color: var(--list-item-selected-color);
|
|
3192
|
-
}
|
|
3193
|
-
.with-checkbox .vuuTreeNode {
|
|
3194
|
-
padding-left: 28px;
|
|
3195
|
-
}
|
|
3196
|
-
.with-checkbox .vuuTreeNode:before {
|
|
3197
|
-
border-style: solid;
|
|
3198
|
-
border-width: var(--checkbox-border-width);
|
|
3199
|
-
border-color: var(--checkbox-border-color);
|
|
3200
|
-
content: "";
|
|
3201
|
-
height: 12px;
|
|
3202
|
-
left: 3px;
|
|
3203
|
-
margin-top: -7px;
|
|
3204
|
-
position: absolute;
|
|
3205
|
-
top: 50%;
|
|
3206
|
-
width: 12px;
|
|
3207
|
-
}
|
|
3208
|
-
|
|
3209
61
|
/* src/layout-management/SaveLayoutPanel.css */
|
|
3210
62
|
.saveLayoutPanel {
|
|
3211
63
|
--salt-selectable-foreground-hover: #6d18bdc3;
|
|
@@ -3331,296 +183,6 @@ input[type=radio] {
|
|
|
3331
183
|
color: white;
|
|
3332
184
|
}
|
|
3333
185
|
|
|
3334
|
-
/* ../vuu-filters/src/filter-builder-menu/FilterBuilderMenu.css */
|
|
3335
|
-
.vuuFilterBuilderMenu {
|
|
3336
|
-
margin: 0;
|
|
3337
|
-
}
|
|
3338
|
-
.vuuFilterBuilderMenu-trigger {
|
|
3339
|
-
display: inline-block;
|
|
3340
|
-
height: 26px;
|
|
3341
|
-
width: 0px;
|
|
3342
|
-
}
|
|
3343
|
-
.vuuFilterBuilderMenuList {
|
|
3344
|
-
--vuuList-borderStyle: none;
|
|
3345
|
-
}
|
|
3346
|
-
.vuuListItem.vuuMenuButton {
|
|
3347
|
-
color: var(--vuu-color-gray-50);
|
|
3348
|
-
font-size: 9px;
|
|
3349
|
-
padding: 0 8px;
|
|
3350
|
-
}
|
|
3351
|
-
.vuuListItem.vuuMenuButton:after {
|
|
3352
|
-
border-radius: 6px;
|
|
3353
|
-
content: "";
|
|
3354
|
-
position: absolute;
|
|
3355
|
-
height: 16px;
|
|
3356
|
-
background-color: transparent;
|
|
3357
|
-
left: 4px;
|
|
3358
|
-
right: 4px;
|
|
3359
|
-
border: solid 1px var(--salt-actionable-primary-foreground);
|
|
3360
|
-
}
|
|
3361
|
-
|
|
3362
|
-
/* ../vuu-filters/src/filter-clause/ExpandoCombobox.css */
|
|
3363
|
-
.vuuExpandoCombobox {
|
|
3364
|
-
--expando-combobox-height: var(--vuuExpandoCombobox-height, 24px);
|
|
3365
|
-
--expando-combobox-fontSize: var(--vuuExpandoCombobox-fontSizew, 12px);
|
|
3366
|
-
--saltInput-outline: none;
|
|
3367
|
-
--saltInput-fontSize: var(--expando-combobox-fontSize);
|
|
3368
|
-
--saltInput-height: var(--expando-combobox-height);
|
|
3369
|
-
--saltInput-minWidth: 4px;
|
|
3370
|
-
display: inline-flex;
|
|
3371
|
-
flex-direction: column;
|
|
3372
|
-
height: var(--expando-combobox-height);
|
|
3373
|
-
min-width: 4px;
|
|
3374
|
-
padding: 0;
|
|
3375
|
-
}
|
|
3376
|
-
.vuuExpandoCombobox .saltInput {
|
|
3377
|
-
background-color: transparent;
|
|
3378
|
-
position: absolute;
|
|
3379
|
-
}
|
|
3380
|
-
.vuuExpandoCombobox .vuuDropdown {
|
|
3381
|
-
height: 100%;
|
|
3382
|
-
}
|
|
3383
|
-
.vuuExpandoCombobox-Input.saltInput {
|
|
3384
|
-
border: none;
|
|
3385
|
-
left: 0px;
|
|
3386
|
-
margin: 0;
|
|
3387
|
-
min-height: 100%;
|
|
3388
|
-
padding: 0;
|
|
3389
|
-
right: 0px;
|
|
3390
|
-
width: auto;
|
|
3391
|
-
}
|
|
3392
|
-
.vuuExpandoCombobox .saltInput-input {
|
|
3393
|
-
border: none;
|
|
3394
|
-
box-sizing: content-box;
|
|
3395
|
-
display: block;
|
|
3396
|
-
flex: 1;
|
|
3397
|
-
font: inherit;
|
|
3398
|
-
margin: 0;
|
|
3399
|
-
min-width: 0;
|
|
3400
|
-
outline: none;
|
|
3401
|
-
padding: 0;
|
|
3402
|
-
}
|
|
3403
|
-
.vuuExpandoCombobox:before {
|
|
3404
|
-
content: attr(data-text);
|
|
3405
|
-
display: block;
|
|
3406
|
-
font-size: var(--expando-combobox-fontSize);
|
|
3407
|
-
height: 0px;
|
|
3408
|
-
overflow: hidden;
|
|
3409
|
-
white-space: pre-wrap;
|
|
3410
|
-
}
|
|
3411
|
-
|
|
3412
|
-
/* ../vuu-filters/src/filter-clause/CloseButton.css */
|
|
3413
|
-
.vuu-theme {
|
|
3414
|
-
--salt-actionable-secondary-background: #ffffff;
|
|
3415
|
-
--salt-actionable-secondary-background-hover: #f37880;
|
|
3416
|
-
--salt-actionable-secondary-background-disabled: #ffffff;
|
|
3417
|
-
--salt-actionable-secondary-foreground: #606477;
|
|
3418
|
-
--salt-actionable-secondary-foreground-hover: #15171b;
|
|
3419
|
-
--salt-actionable-secondary-foreground-active: #ffffff;
|
|
3420
|
-
--salt-actionable-secondary-foreground-disabled: #9b9ea8;
|
|
3421
|
-
}
|
|
3422
|
-
.vuuFilterClause-closeButton {
|
|
3423
|
-
height: 16px;
|
|
3424
|
-
width: 16px;
|
|
3425
|
-
border-radius: 6px;
|
|
3426
|
-
padding: 0;
|
|
3427
|
-
}
|
|
3428
|
-
.vuuFilterClause-closeButton:focus-visible {
|
|
3429
|
-
}
|
|
3430
|
-
.vuuFilterClause-closeButton:not(:hover) {
|
|
3431
|
-
background: var(--salt-actionable-secondary-background);
|
|
3432
|
-
}
|
|
3433
|
-
|
|
3434
|
-
/* ../vuu-filters/src/filter-clause/FilterClauseEditor.css */
|
|
3435
|
-
.vuuFilterClause {
|
|
3436
|
-
--vuuExpandoInput-top: 0;
|
|
3437
|
-
--vuuExpandoInput-height: 16px;
|
|
3438
|
-
--vuuExpandoCombobox-height: 16px;
|
|
3439
|
-
--saltButton-height: 16px;
|
|
3440
|
-
--saltButton-width: 16px;
|
|
3441
|
-
display: flex;
|
|
3442
|
-
flex-direction: row;
|
|
3443
|
-
width: fit-content;
|
|
3444
|
-
border-color: var(--vuu-color-gray-45);
|
|
3445
|
-
border-radius: 6px;
|
|
3446
|
-
border-width: 1px;
|
|
3447
|
-
border-style: solid;
|
|
3448
|
-
background: #ffffff;
|
|
3449
|
-
--salt-focused-outlineStyle: dotted;
|
|
3450
|
-
}
|
|
3451
|
-
.vuuFilterClause:focus-within {
|
|
3452
|
-
border-color: var(--vuu-color-purple-10);
|
|
3453
|
-
}
|
|
3454
|
-
.vuu-density-high .vuuFilterClause {
|
|
3455
|
-
padding: 4px 8px;
|
|
3456
|
-
gap: 4px;
|
|
3457
|
-
--salt-text-lineHeight: 12px;
|
|
3458
|
-
--saltInputLegacy-fontSize: 12px;
|
|
3459
|
-
--saltInputLegacy-minWidth: 12px;
|
|
3460
|
-
}
|
|
3461
|
-
.vuu-density-high .vuuFilterClause .saltInput {
|
|
3462
|
-
padding: 0;
|
|
3463
|
-
min-height: 16px;
|
|
3464
|
-
height: 16px;
|
|
3465
|
-
}
|
|
3466
|
-
.vuuFilterClause .vuuExpandoCombobox {
|
|
3467
|
-
flex-basis: auto;
|
|
3468
|
-
flex-shrink: 0;
|
|
3469
|
-
flex-grow: 0;
|
|
3470
|
-
}
|
|
3471
|
-
.vuuFilterClauseOperator-hidden {
|
|
3472
|
-
display: none;
|
|
3473
|
-
}
|
|
3474
|
-
.vuuFilterClause :not(.vuuFilterClauseNumericValue) .saltInput {
|
|
3475
|
-
}
|
|
3476
|
-
.vuuFilterClause .saltInput-focused,
|
|
3477
|
-
.vuuFilterClause .saltTokenizedInput-focused {
|
|
3478
|
-
outline: none;
|
|
3479
|
-
color: var(--salt-text-primary-foreground);
|
|
3480
|
-
}
|
|
3481
|
-
.vuuFilterClause .saltInput-input::selection {
|
|
3482
|
-
color: #ffffff;
|
|
3483
|
-
}
|
|
3484
|
-
.vuu-theme .saltList {
|
|
3485
|
-
--list-borderWidth: 1px;
|
|
3486
|
-
--list-borderStyle: solid;
|
|
3487
|
-
border-radius: 4px;
|
|
3488
|
-
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
|
|
3489
|
-
}
|
|
3490
|
-
.saltListItem[aria-selected=true]:not(.saltListItem-checkbox) {
|
|
3491
|
-
--list-item-background: var(--list-item-background-active);
|
|
3492
|
-
color: var(--list-item-text-color-active);
|
|
3493
|
-
}
|
|
3494
|
-
.saltTokenizedInput {
|
|
3495
|
-
height: 16px;
|
|
3496
|
-
min-height: 16px;
|
|
3497
|
-
}
|
|
3498
|
-
.saltTokenizedInput .saltInputPill {
|
|
3499
|
-
--pill-fontSize: 12px;
|
|
3500
|
-
--saltButton-borderStyle: none;
|
|
3501
|
-
--pill-background: none;
|
|
3502
|
-
height: 16px;
|
|
3503
|
-
margin: 0;
|
|
3504
|
-
}
|
|
3505
|
-
.saltTokenizedInput-pillGroup {
|
|
3506
|
-
padding: 0;
|
|
3507
|
-
height: 16px;
|
|
3508
|
-
}
|
|
3509
|
-
|
|
3510
|
-
/* ../vuu-filters/src/filter-pill-menu/FilterPillMenu.css */
|
|
3511
|
-
.vuuFilterPillMenu {
|
|
3512
|
-
top: -1px;
|
|
3513
|
-
}
|
|
3514
|
-
|
|
3515
|
-
/* ../vuu-filters/src/filter-pill/FilterPill.css */
|
|
3516
|
-
.vuuFilterPill {
|
|
3517
|
-
--vuuToolbarItem-outlineColor: white;
|
|
3518
|
-
align-items: center;
|
|
3519
|
-
background: var(--salt-taggable-background);
|
|
3520
|
-
border: solid 1px var(--salt-taggable-foreground);
|
|
3521
|
-
border-radius: 26px;
|
|
3522
|
-
color: var(--vuu-color-gray-50);
|
|
3523
|
-
display: inline-flex;
|
|
3524
|
-
height: 26px;
|
|
3525
|
-
max-width: var(--vuuFilterPill-maxWidth, 200px);
|
|
3526
|
-
padding: 0 8px;
|
|
3527
|
-
position: relative;
|
|
3528
|
-
user-select: none;
|
|
3529
|
-
outline: none;
|
|
3530
|
-
}
|
|
3531
|
-
.vuuFilterPill[aria-selected=true] {
|
|
3532
|
-
--vuuPopupMenu-iconColor: white;
|
|
3533
|
-
--salt-text-background-selected: var(--vuu-color-blue-40);
|
|
3534
|
-
--salt-text-color-selected: var(--salt-text-primary-foreground);
|
|
3535
|
-
--saltInput-background-hover: var(--salt-taggable-background-active);
|
|
3536
|
-
--saltInput-color: var(--salt-taggable-foreground-active);
|
|
3537
|
-
background: var(--salt-taggable-background-active);
|
|
3538
|
-
color: white;
|
|
3539
|
-
}
|
|
3540
|
-
.vuuFilterPill:not([aria-selected="true"]):hover {
|
|
3541
|
-
--vuuPopupMenu-iconColor: var(--vuu-color-gray-80);
|
|
3542
|
-
background-color: var(--salt-taggable-background-hover);
|
|
3543
|
-
border-color: var(--salt-taggable-background-hover);
|
|
3544
|
-
color: var(--vuu-color-gray-80);
|
|
3545
|
-
}
|
|
3546
|
-
|
|
3547
|
-
/* ../vuu-filters/src/filter-bar/FilterBar.css */
|
|
3548
|
-
.vuuFilterBar {
|
|
3549
|
-
--vuu-svg-tune: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 18C3 18.55 3.45 19 4 19H9V17H4C3.45 17 3 17.45 3 18ZM3 6C3 6.55 3.45 7 4 7H13V5H4C3.45 5 3 5.45 3 6ZM13 20V19H20C20.55 19 21 18.55 21 18C21 17.45 20.55 17 20 17H13V16C13 15.45 12.55 15 12 15C11.45 15 11 15.45 11 16V20C11 20.55 11.45 21 12 21C12.55 21 13 20.55 13 20ZM7 10V11H4C3.45 11 3 11.45 3 12C3 12.55 3.45 13 4 13H7V14C7 14.55 7.45 15 8 15C8.55 15 9 14.55 9 14V10C9 9.45 8.55 9 8 9C7.45 9 7 9.45 7 10ZM21 12C21 11.45 20.55 11 20 11H11V13H20C20.55 13 21 12.55 21 12ZM16 9C16.55 9 17 8.55 17 8V7H20C20.55 7 21 6.55 21 6C21 5.45 20.55 5 20 5H17V4C17 3.45 16.55 3 16 3C15.45 3 15 3.45 15 4V8C15 8.55 15.45 9 16 9Z" /></svg>');
|
|
3550
|
-
--vuuToolbar-height: 26px;
|
|
3551
|
-
--salt-container-primary-borderColor: var(--vuu-color-purple-10);
|
|
3552
|
-
--saltButton-height: 26px;
|
|
3553
|
-
--saltButton-width: 26px;
|
|
3554
|
-
align-items: center;
|
|
3555
|
-
background-color: var(--salt-container-secondary-background);
|
|
3556
|
-
border-bottom: solid 1px #D6D7DA;
|
|
3557
|
-
display: flex;
|
|
3558
|
-
gap: 4px;
|
|
3559
|
-
height: 33px;
|
|
3560
|
-
padding: 3px 8px;
|
|
3561
|
-
}
|
|
3562
|
-
.vuuFilterbar-icon {
|
|
3563
|
-
display: inline-block;
|
|
3564
|
-
height: 16px;
|
|
3565
|
-
width: 16px;
|
|
3566
|
-
}
|
|
3567
|
-
.vuuFilterBar [data-icon=tune] {
|
|
3568
|
-
--vuu-icon-size: 16px;
|
|
3569
|
-
--vuu-icon-svg: var(--vuu-svg-tune);
|
|
3570
|
-
}
|
|
3571
|
-
.vuuFilterBar [data-icon=plus] {
|
|
3572
|
-
--vuu-icon-size: 16px;
|
|
3573
|
-
}
|
|
3574
|
-
.vuuFilterBar .vuuToolbar {
|
|
3575
|
-
flex: 1 1 auto;
|
|
3576
|
-
}
|
|
3577
|
-
|
|
3578
|
-
/* ../vuu-filters/src/filter-input/FilterInput.css */
|
|
3579
|
-
.salt-theme {
|
|
3580
|
-
--vuuFilterEditor-lineHeight: 28px;
|
|
3581
|
-
}
|
|
3582
|
-
.salt-density-high {
|
|
3583
|
-
--vuuFilterEditor-buttonWidth: 20px;
|
|
3584
|
-
--vuuFilterEditor-height: 22px;
|
|
3585
|
-
--vuuFilterEditor-lineHeight: 20px;
|
|
3586
|
-
}
|
|
3587
|
-
.vuuFilterInput {
|
|
3588
|
-
--vuuFilterEditor-background: var(--salt-container-primary-background);
|
|
3589
|
-
--vuuFilterEditor-color: var(--salt-text-primary-foreground);
|
|
3590
|
-
--vuuFilterEditor-fontFamily: var(--salt-typography-fontFamily);
|
|
3591
|
-
--vuuFilterEditor-fontSize: var(--salt-text-fontSize);
|
|
3592
|
-
--vuuFilterEditor-cursorColor: var(--salt-text-secondary-foreground);
|
|
3593
|
-
--vuuFilterEditor-selectionBackground: var(--salt-text-background-selected);
|
|
3594
|
-
--vuuFilterEditor-tooltipBackground: var(--salt-container-primary-background);
|
|
3595
|
-
--vuuFilterEditor-tooltipBorder: var(--tooltip-status-borderColor) var(--salt-container-borderWidth) var(--salt-container-borderStyle);
|
|
3596
|
-
--vuuFilterEditor-tooltipElevation: var(--salt-overlayable-shadow-popout);
|
|
3597
|
-
--vuuFilterEditor-suggestion-selectedBackground: var(--salt-selectable-background-selected);
|
|
3598
|
-
--vuuFilterEditor-suggestion-selectedColor: var(--vuuFilterEditor-color);
|
|
3599
|
-
--vuuFilterEditor-suggestion-height: 24px;
|
|
3600
|
-
--vuuFilterEditor-variableColor: blue;
|
|
3601
|
-
align-items: center;
|
|
3602
|
-
border-color: var(--salt-container-secondary-borderColor);
|
|
3603
|
-
border-style: solid none;
|
|
3604
|
-
border-width: 1px;
|
|
3605
|
-
box-sizing: border-box;
|
|
3606
|
-
display: flex;
|
|
3607
|
-
height: var(--vuuFilterEditor-height, 30px);
|
|
3608
|
-
}
|
|
3609
|
-
.vuuFilterInput-Editor {
|
|
3610
|
-
flex: 1 1 auto;
|
|
3611
|
-
height: 100%;
|
|
3612
|
-
}
|
|
3613
|
-
.vuuFilterInput-FilterButton,
|
|
3614
|
-
.vuuFilterInput-ClearButton {
|
|
3615
|
-
--vuu-icon-size: 12px;
|
|
3616
|
-
--saltButton-width: var(--vuuFilterEditor-buttonWidth, 28px);
|
|
3617
|
-
}
|
|
3618
|
-
.vuuIllustration {
|
|
3619
|
-
--vuuFilterEditor-suggestion-selectedBackground:var(--salt-container-secondary-background);
|
|
3620
|
-
background: var(--salt-container-secondary-background);
|
|
3621
|
-
color: var(--salt-text-secondary-foreground);
|
|
3622
|
-
}
|
|
3623
|
-
|
|
3624
186
|
/* src/layout-management/LayoutList.css */
|
|
3625
187
|
.vuuLayoutList-header {
|
|
3626
188
|
color: var(--light-text-primary, #15171B);
|