@omnia/runtime 8.0.308-dev → 8.0.310-dev

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.
@@ -0,0 +1,575 @@
1
+ .v-list {
2
+ overflow: auto;
3
+ padding: 8px 0;
4
+ position: relative;
5
+ outline: none;
6
+ }
7
+ .v-list {
8
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
9
+ border-style: solid;
10
+ border-width: 0;
11
+ }
12
+ .v-list--border {
13
+ border-width: thin;
14
+ box-shadow: none;
15
+ }
16
+ .v-list {
17
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18
+ }
19
+ .v-list {
20
+ border-radius: 0;
21
+ }
22
+ .v-list {
23
+ background: rgba(var(--v-theme-surface));
24
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25
+ }
26
+ .v-list--disabled {
27
+ pointer-events: none;
28
+ user-select: none;
29
+ }
30
+ .v-list--nav {
31
+ padding-inline: 8px;
32
+ }
33
+ .v-list--rounded {
34
+ border-radius: 4px;
35
+ }
36
+ .v-list--subheader {
37
+ padding-top: 0;
38
+ }
39
+
40
+ .v-list-img {
41
+ border-radius: inherit;
42
+ display: flex;
43
+ height: 100%;
44
+ left: 0;
45
+ overflow: hidden;
46
+ position: absolute;
47
+ top: 0;
48
+ width: 100%;
49
+ z-index: -1;
50
+ }
51
+
52
+ .v-list-subheader {
53
+ align-items: center;
54
+ background: inherit;
55
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
56
+ display: flex;
57
+ font-size: 0.875rem;
58
+ font-weight: 400;
59
+ line-height: 1.375rem;
60
+ padding-inline-end: 16px;
61
+ min-height: 40px;
62
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
63
+ }
64
+ .v-list-subheader__text {
65
+ overflow: hidden;
66
+ text-overflow: ellipsis;
67
+ white-space: nowrap;
68
+ }
69
+ .v-list--density-default .v-list-subheader {
70
+ min-height: 40px;
71
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
72
+ }
73
+
74
+ .v-list--density-comfortable .v-list-subheader {
75
+ min-height: 36px;
76
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
77
+ }
78
+
79
+ .v-list--density-compact .v-list-subheader {
80
+ min-height: 32px;
81
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
82
+ }
83
+
84
+ .v-list-subheader--inset {
85
+ --indent-padding: 56px;
86
+ }
87
+ .v-list--nav .v-list-subheader {
88
+ font-size: 0.75rem;
89
+ }
90
+ .v-list-subheader--sticky {
91
+ background: inherit;
92
+ left: 0;
93
+ position: sticky;
94
+ top: 0;
95
+ z-index: 1;
96
+ }
97
+
98
+ .v-list__overlay {
99
+ background-color: currentColor;
100
+ border-radius: inherit;
101
+ bottom: 0;
102
+ left: 0;
103
+ opacity: 0;
104
+ pointer-events: none;
105
+ position: absolute;
106
+ right: 0;
107
+ top: 0;
108
+ transition: opacity 0.2s ease-in-out;
109
+ }
110
+ .v-list-item {
111
+ align-items: center;
112
+ display: grid;
113
+ flex: none;
114
+ grid-template-areas: "prepend content append";
115
+ grid-template-columns: max-content 1fr auto;
116
+ outline: none;
117
+ max-width: 100%;
118
+ padding: 4px 16px;
119
+ position: relative;
120
+ text-decoration: none;
121
+ }
122
+ .v-list-item {
123
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
124
+ border-style: solid;
125
+ border-width: 0;
126
+ }
127
+ .v-list-item--border {
128
+ border-width: thin;
129
+ box-shadow: none;
130
+ }
131
+ .v-list-item:hover > .v-list-item__overlay {
132
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
133
+ }
134
+ .v-list-item:focus-visible > .v-list-item__overlay {
135
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
136
+ }
137
+ @supports not selector(:focus-visible) {
138
+ .v-list-item:focus > .v-list-item__overlay {
139
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
140
+ }
141
+ }
142
+ .v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
143
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
144
+ }
145
+ .v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
146
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
147
+ }
148
+ .v-list-item--active:focus-visible > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-list-item__overlay {
149
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
150
+ }
151
+ @supports not selector(:focus-visible) {
152
+ .v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
153
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
154
+ }
155
+ }
156
+ .v-list-item {
157
+ border-radius: 0;
158
+ }
159
+ .v-list-item--variant-plain, .v-list-item--variant-outlined, .v-list-item--variant-text, .v-list-item--variant-tonal {
160
+ background: transparent;
161
+ color: inherit;
162
+ }
163
+ .v-list-item--variant-plain {
164
+ opacity: 0.62;
165
+ }
166
+ .v-list-item--variant-plain:focus, .v-list-item--variant-plain:hover {
167
+ opacity: 1;
168
+ }
169
+ .v-list-item--variant-plain .v-list-item__overlay {
170
+ display: none;
171
+ }
172
+ .v-list-item--variant-elevated, .v-list-item--variant-flat {
173
+ background: rgba(var(--v-theme-surface));
174
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
175
+ }
176
+ .v-list-item--variant-elevated {
177
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
178
+ }
179
+ .v-list-item--variant-flat {
180
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
181
+ }
182
+ .v-list-item--variant-outlined {
183
+ border: thin solid currentColor;
184
+ }
185
+ .v-list-item--variant-text .v-list-item__overlay {
186
+ background: currentColor;
187
+ }
188
+ .v-list-item--variant-tonal .v-list-item__underlay {
189
+ background: currentColor;
190
+ opacity: var(--v-activated-opacity);
191
+ border-radius: inherit;
192
+ top: 0;
193
+ right: 0;
194
+ bottom: 0;
195
+ left: 0;
196
+ pointer-events: none;
197
+ }
198
+ .v-list-item .v-list-item__underlay {
199
+ position: absolute;
200
+ }
201
+ @supports selector(:focus-visible) {
202
+ .v-list-item::after {
203
+ pointer-events: none;
204
+ border: 2px solid currentColor;
205
+ border-radius: 4px;
206
+ opacity: 0;
207
+ transition: opacity 0.2s ease-in-out;
208
+ }
209
+ .v-list-item::after {
210
+ content: "";
211
+ position: absolute;
212
+ top: 0;
213
+ left: 0;
214
+ width: 100%;
215
+ height: 100%;
216
+ }
217
+ .v-list-item:focus-visible::after {
218
+ opacity: calc(0.15 * var(--v-theme-overlay-multiplier));
219
+ }
220
+ }
221
+ .v-list-item__prepend > .v-badge .v-icon,
222
+ .v-list-item__prepend > .v-icon, .v-list-item__append > .v-badge .v-icon,
223
+ .v-list-item__append > .v-icon {
224
+ opacity: var(--v-medium-emphasis-opacity);
225
+ }
226
+ .v-list-item--active .v-list-item__prepend > .v-badge .v-icon,
227
+ .v-list-item--active .v-list-item__prepend > .v-icon,
228
+ .v-list-item--active .v-list-item__append > .v-badge .v-icon,
229
+ .v-list-item--active .v-list-item__append > .v-icon {
230
+ opacity: 1;
231
+ }
232
+ .v-list-item--active:not(.v-list-item--link) .v-list-item__overlay {
233
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
234
+ }
235
+ .v-list-item--rounded {
236
+ border-radius: 4px;
237
+ }
238
+ .v-list-item--disabled {
239
+ pointer-events: none;
240
+ user-select: none;
241
+ opacity: 0.6;
242
+ }
243
+ .v-list-item--link {
244
+ cursor: pointer;
245
+ }
246
+ .v-navigation-drawer--rail:not(.v-navigation-drawer--expand-on-hover) .v-list-item .v-avatar, .v-navigation-drawer--rail.v-navigation-drawer--expand-on-hover:not(.v-navigation-drawer--is-hovering) .v-list-item .v-avatar {
247
+ --v-avatar-height: 24px;
248
+ }
249
+
250
+ .v-list-item__prepend {
251
+ align-items: center;
252
+ align-self: center;
253
+ display: flex;
254
+ grid-area: prepend;
255
+ }
256
+ .v-list-item__prepend > .v-badge ~ .v-list-item__spacer,
257
+ .v-list-item__prepend > .v-icon ~ .v-list-item__spacer,
258
+ .v-list-item__prepend > .v-tooltip ~ .v-list-item__spacer {
259
+ width: 32px;
260
+ }
261
+ .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
262
+ width: 16px;
263
+ }
264
+ .v-list-item__prepend > .v-list-item-action ~ .v-list-item__spacer {
265
+ width: 16px;
266
+ }
267
+ .v-list-item--slim .v-list-item__prepend > .v-badge ~ .v-list-item__spacer,
268
+ .v-list-item--slim .v-list-item__prepend > .v-icon ~ .v-list-item__spacer,
269
+ .v-list-item--slim .v-list-item__prepend > .v-tooltip ~ .v-list-item__spacer {
270
+ width: 20px;
271
+ }
272
+ .v-list-item--slim .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
273
+ width: 4px;
274
+ }
275
+ .v-list-item--slim .v-list-item__prepend > .v-list-item-action ~ .v-list-item__spacer {
276
+ width: 4px;
277
+ }
278
+ .v-list-item--three-line .v-list-item__prepend {
279
+ align-self: start;
280
+ }
281
+
282
+ .v-list-item__append {
283
+ align-self: center;
284
+ display: flex;
285
+ align-items: center;
286
+ grid-area: append;
287
+ }
288
+ .v-list-item__append .v-list-item__spacer {
289
+ order: -1;
290
+ transition: 150ms width cubic-bezier(0.4, 0, 0.2, 1);
291
+ }
292
+ .v-list-item__append > .v-badge ~ .v-list-item__spacer,
293
+ .v-list-item__append > .v-icon ~ .v-list-item__spacer,
294
+ .v-list-item__append > .v-tooltip ~ .v-list-item__spacer {
295
+ width: 32px;
296
+ }
297
+ .v-list-item__append > .v-avatar ~ .v-list-item__spacer {
298
+ width: 16px;
299
+ }
300
+ .v-list-item__append > .v-list-item-action ~ .v-list-item__spacer {
301
+ width: 16px;
302
+ }
303
+ .v-list-item--slim .v-list-item__append > .v-badge ~ .v-list-item__spacer,
304
+ .v-list-item--slim .v-list-item__append > .v-icon ~ .v-list-item__spacer,
305
+ .v-list-item--slim .v-list-item__append > .v-tooltip ~ .v-list-item__spacer {
306
+ width: 20px;
307
+ }
308
+ .v-list-item--slim .v-list-item__append > .v-avatar ~ .v-list-item__spacer {
309
+ width: 4px;
310
+ }
311
+ .v-list-item--slim .v-list-item__append > .v-list-item-action ~ .v-list-item__spacer {
312
+ width: 4px;
313
+ }
314
+ .v-list-item--three-line .v-list-item__append {
315
+ align-self: start;
316
+ }
317
+
318
+ .v-list-item__content {
319
+ align-self: center;
320
+ grid-area: content;
321
+ overflow: hidden;
322
+ }
323
+
324
+ .v-list-item-action {
325
+ align-self: center;
326
+ display: flex;
327
+ align-items: center;
328
+ flex: none;
329
+ transition: inherit;
330
+ transition-property: height, width;
331
+ }
332
+ .v-list-item-action--start {
333
+ margin-inline-end: 8px;
334
+ margin-inline-start: -8px;
335
+ }
336
+ .v-list-item-action--end {
337
+ margin-inline-start: 8px;
338
+ margin-inline-end: -8px;
339
+ }
340
+
341
+ .v-list-item-media {
342
+ margin-top: 0;
343
+ margin-bottom: 0;
344
+ }
345
+ .v-list-item-media--start {
346
+ margin-inline-end: 16px;
347
+ }
348
+ .v-list-item-media--end {
349
+ margin-inline-start: 16px;
350
+ }
351
+ .v-list-item--two-line .v-list-item-media {
352
+ margin-top: -4px;
353
+ margin-bottom: -4px;
354
+ }
355
+ .v-list-item--three-line .v-list-item-media {
356
+ margin-top: 0;
357
+ margin-bottom: 0;
358
+ }
359
+
360
+ .v-list-item-subtitle {
361
+ -webkit-box-orient: vertical;
362
+ display: -webkit-box;
363
+ opacity: var(--v-list-item-subtitle-opacity, var(--v-medium-emphasis-opacity));
364
+ overflow: hidden;
365
+ padding: 0;
366
+ text-overflow: ellipsis;
367
+ overflow-wrap: break-word;
368
+ word-break: initial;
369
+ }
370
+ .v-list-item--one-line .v-list-item-subtitle {
371
+ -webkit-line-clamp: 1;
372
+ }
373
+ .v-list-item--two-line .v-list-item-subtitle {
374
+ -webkit-line-clamp: 2;
375
+ }
376
+ .v-list-item--three-line .v-list-item-subtitle {
377
+ -webkit-line-clamp: 3;
378
+ }
379
+ .v-list-item-subtitle {
380
+ font-size: 0.875rem;
381
+ font-weight: 400;
382
+ letter-spacing: 0.0178571429em;
383
+ line-height: 1rem;
384
+ text-transform: none;
385
+ }
386
+ .v-list-item--nav .v-list-item-subtitle {
387
+ font-size: 0.75rem;
388
+ font-weight: 400;
389
+ letter-spacing: 0.0178571429em;
390
+ line-height: 1rem;
391
+ }
392
+
393
+ .v-list-item-title {
394
+ hyphens: auto;
395
+ overflow-wrap: normal;
396
+ overflow: hidden;
397
+ padding: 0;
398
+ white-space: nowrap;
399
+ text-overflow: ellipsis;
400
+ word-break: normal;
401
+ word-wrap: break-word;
402
+ }
403
+ .v-list-item-title {
404
+ font-size: 1rem;
405
+ font-weight: 400;
406
+ letter-spacing: 0.009375em;
407
+ line-height: 1.5;
408
+ text-transform: none;
409
+ }
410
+ .v-list-item--nav .v-list-item-title {
411
+ font-size: 0.8125rem;
412
+ font-weight: 500;
413
+ letter-spacing: normal;
414
+ line-height: 1rem;
415
+ }
416
+
417
+ .v-list-item--density-default {
418
+ min-height: 40px;
419
+ }
420
+ .v-list-item--density-default.v-list-item--one-line {
421
+ min-height: 48px;
422
+ padding-top: 4px;
423
+ padding-bottom: 4px;
424
+ }
425
+ .v-list-item--density-default.v-list-item--two-line {
426
+ min-height: 64px;
427
+ padding-top: 12px;
428
+ padding-bottom: 12px;
429
+ }
430
+ .v-list-item--density-default.v-list-item--three-line {
431
+ min-height: 88px;
432
+ padding-top: 16px;
433
+ padding-bottom: 16px;
434
+ }
435
+ .v-list-item--density-default.v-list-item--three-line .v-list-item__prepend,
436
+ .v-list-item--density-default.v-list-item--three-line .v-list-item__append {
437
+ padding-top: 8px;
438
+ }
439
+ .v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line {
440
+ padding-inline: 16px;
441
+ }
442
+ .v-list-item--density-default:not(.v-list-item--nav).v-list-item--two-line {
443
+ padding-inline: 16px;
444
+ }
445
+ .v-list-item--density-default:not(.v-list-item--nav).v-list-item--three-line {
446
+ padding-inline: 16px;
447
+ }
448
+
449
+ .v-list-item--density-comfortable {
450
+ min-height: 36px;
451
+ }
452
+ .v-list-item--density-comfortable.v-list-item--one-line {
453
+ min-height: 44px;
454
+ }
455
+ .v-list-item--density-comfortable.v-list-item--two-line {
456
+ min-height: 60px;
457
+ padding-top: 8px;
458
+ padding-bottom: 8px;
459
+ }
460
+ .v-list-item--density-comfortable.v-list-item--three-line {
461
+ min-height: 84px;
462
+ padding-top: 12px;
463
+ padding-bottom: 12px;
464
+ }
465
+ .v-list-item--density-comfortable.v-list-item--three-line .v-list-item__prepend,
466
+ .v-list-item--density-comfortable.v-list-item--three-line .v-list-item__append {
467
+ padding-top: 6px;
468
+ }
469
+ .v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line {
470
+ padding-inline: 16px;
471
+ }
472
+ .v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--two-line {
473
+ padding-inline: 16px;
474
+ }
475
+ .v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--three-line {
476
+ padding-inline: 16px;
477
+ }
478
+
479
+ .v-list-item--density-compact {
480
+ min-height: 32px;
481
+ }
482
+ .v-list-item--density-compact.v-list-item--one-line {
483
+ min-height: 40px;
484
+ }
485
+ .v-list-item--density-compact.v-list-item--two-line {
486
+ min-height: 56px;
487
+ padding-top: 4px;
488
+ padding-bottom: 4px;
489
+ }
490
+ .v-list-item--density-compact.v-list-item--three-line {
491
+ min-height: 80px;
492
+ padding-top: 8px;
493
+ padding-bottom: 8px;
494
+ }
495
+ .v-list-item--density-compact.v-list-item--three-line .v-list-item__prepend,
496
+ .v-list-item--density-compact.v-list-item--three-line .v-list-item__append {
497
+ padding-top: 4px;
498
+ }
499
+ .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line {
500
+ padding-inline: 16px;
501
+ }
502
+ .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line {
503
+ padding-inline: 16px;
504
+ }
505
+ .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line {
506
+ padding-inline: 16px;
507
+ }
508
+
509
+ .v-list-item--nav {
510
+ padding-inline: 8px;
511
+ }
512
+ .v-list .v-list-item--nav:not(:only-child) {
513
+ margin-bottom: 4px;
514
+ }
515
+
516
+ .v-list-item__underlay {
517
+ position: absolute;
518
+ }
519
+
520
+ .v-list-item__overlay {
521
+ background-color: currentColor;
522
+ border-radius: inherit;
523
+ bottom: 0;
524
+ left: 0;
525
+ opacity: 0;
526
+ pointer-events: none;
527
+ position: absolute;
528
+ right: 0;
529
+ top: 0;
530
+ transition: opacity 0.2s ease-in-out;
531
+ }
532
+ .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
533
+ --v-theme-overlay-multiplier: 0;
534
+ }
535
+
536
+ .v-list {
537
+ --indent-padding: 0px;
538
+ }
539
+ .v-list--nav {
540
+ --indent-padding: -8px;
541
+ }
542
+
543
+ .v-list-group {
544
+ --list-indent-size: 16px;
545
+ --parent-padding: var(--indent-padding);
546
+ --prepend-width: 40px;
547
+ }
548
+ .v-list--slim .v-list-group {
549
+ --prepend-width: 28px;
550
+ }
551
+ .v-list-group--fluid {
552
+ --list-indent-size: 0px;
553
+ }
554
+ .v-list-group--prepend {
555
+ --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
556
+ }
557
+ .v-list-group--fluid.v-list-group--prepend {
558
+ --parent-padding: var(--indent-padding);
559
+ }
560
+
561
+ .v-list-group__items {
562
+ --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
563
+ }
564
+
565
+ .v-list-group__items .v-list-item {
566
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
567
+ }
568
+
569
+ .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
570
+ opacity: 0;
571
+ }
572
+ .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
573
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
574
+ }
575
+
@@ -0,0 +1,110 @@
1
+ .v-navigation-drawer {
2
+ -webkit-overflow-scrolling: touch;
3
+ background: rgb(var(--v-theme-surface));
4
+ display: flex;
5
+ flex-direction: column;
6
+ height: 100%;
7
+ max-width: 100%;
8
+ pointer-events: auto;
9
+ transition-duration: 0.2s;
10
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
11
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
12
+ position: absolute;
13
+ }
14
+ .v-navigation-drawer {
15
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
16
+ border-style: solid;
17
+ border-width: 0;
18
+ }
19
+ .v-navigation-drawer--border {
20
+ border-width: thin;
21
+ box-shadow: none;
22
+ }
23
+ .v-navigation-drawer {
24
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25
+ }
26
+ .v-navigation-drawer {
27
+ background: rgb(var(--v-theme-surface));
28
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
29
+ }
30
+ .v-navigation-drawer--rounded {
31
+ border-radius: 4px;
32
+ }
33
+ .v-navigation-drawer--top, .v-navigation-drawer--bottom {
34
+ max-height: -webkit-fill-available;
35
+ overflow-y: auto;
36
+ }
37
+ .v-navigation-drawer--top {
38
+ top: 0;
39
+ border-bottom-width: thin;
40
+ }
41
+ .v-navigation-drawer--bottom {
42
+ left: 0;
43
+ border-top-width: thin;
44
+ }
45
+ .v-navigation-drawer--left {
46
+ top: 0;
47
+ left: 0;
48
+ right: auto;
49
+ border-right-width: thin;
50
+ }
51
+ .v-navigation-drawer--right {
52
+ top: 0;
53
+ left: auto;
54
+ right: 0;
55
+ border-left-width: thin;
56
+ }
57
+ .v-navigation-drawer--floating {
58
+ border: none;
59
+ }
60
+ .v-navigation-drawer--temporary.v-navigation-drawer--active {
61
+ box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
62
+ }
63
+ .v-navigation-drawer--sticky {
64
+ height: auto;
65
+ transition: box-shadow, transform, visibility, width, height, left, right;
66
+ }
67
+ .v-navigation-drawer .v-list {
68
+ overflow: hidden;
69
+ }
70
+
71
+ .v-navigation-drawer__content {
72
+ flex: 0 1 auto;
73
+ height: 100%;
74
+ max-width: 100%;
75
+ overflow-x: hidden;
76
+ overflow-y: auto;
77
+ }
78
+
79
+ .v-navigation-drawer__img {
80
+ height: 100%;
81
+ left: 0;
82
+ position: absolute;
83
+ top: 0;
84
+ width: 100%;
85
+ z-index: -1;
86
+ }
87
+ .v-navigation-drawer__img img:not(.v-img__img) {
88
+ height: inherit;
89
+ object-fit: cover;
90
+ width: inherit;
91
+ }
92
+
93
+ .v-navigation-drawer__scrim {
94
+ position: absolute;
95
+ top: 0;
96
+ left: 0;
97
+ width: 100%;
98
+ height: 100%;
99
+ background: black;
100
+ opacity: 0.2;
101
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
102
+ z-index: 1;
103
+ }
104
+
105
+ .v-navigation-drawer__prepend,
106
+ .v-navigation-drawer__append {
107
+ flex: none;
108
+ overflow: hidden;
109
+ }
110
+