@vuetify/nightly 3.7.4-master.2024-11-28 → 3.7.4-master.2024-11-29
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/dist/json/attributes.json +2725 -2725
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +160 -160
- package/dist/json/web-types.json +5145 -5145
- package/dist/vuetify-labs.css +2697 -2697
- package/dist/vuetify-labs.esm.js +6 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1382 -1382
- package/dist/vuetify.d.ts +51 -51
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- package/lib/labs/VTreeview/VTreeviewItem.mjs +3 -4
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.4-master.2024-11-
|
2
|
+
* Vuetify v3.7.4-master.2024-11-29
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -18307,6 +18307,83 @@ html.overflow-y-hidden {
|
|
18307
18307
|
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18308
18308
|
opacity: var(--v-high-emphasis-opacity);
|
18309
18309
|
transform: rotate(180deg);
|
18310
|
+
}.v-badge {
|
18311
|
+
display: inline-block;
|
18312
|
+
line-height: 1;
|
18313
|
+
}
|
18314
|
+
|
18315
|
+
.v-badge__badge {
|
18316
|
+
align-items: center;
|
18317
|
+
display: inline-flex;
|
18318
|
+
border-radius: 10px;
|
18319
|
+
font-family: "Roboto", sans-serif;
|
18320
|
+
font-size: 0.75rem;
|
18321
|
+
font-weight: 500;
|
18322
|
+
height: 1.25rem;
|
18323
|
+
justify-content: center;
|
18324
|
+
min-width: 20px;
|
18325
|
+
padding: 4px 6px;
|
18326
|
+
pointer-events: auto;
|
18327
|
+
position: absolute;
|
18328
|
+
text-align: center;
|
18329
|
+
text-indent: 0;
|
18330
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18331
|
+
white-space: nowrap;
|
18332
|
+
}
|
18333
|
+
.v-badge__badge {
|
18334
|
+
background: rgb(var(--v-theme-surface-variant));
|
18335
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18336
|
+
}
|
18337
|
+
.v-badge__badge:has(.v-icon) {
|
18338
|
+
padding: 4px 6px;
|
18339
|
+
}
|
18340
|
+
.v-badge--bordered .v-badge__badge::after {
|
18341
|
+
border-radius: inherit;
|
18342
|
+
border-style: solid;
|
18343
|
+
border-width: 2px;
|
18344
|
+
bottom: 0;
|
18345
|
+
color: rgb(var(--v-theme-background));
|
18346
|
+
content: "";
|
18347
|
+
left: 0;
|
18348
|
+
position: absolute;
|
18349
|
+
right: 0;
|
18350
|
+
top: 0;
|
18351
|
+
transform: scale(1.05);
|
18352
|
+
}
|
18353
|
+
.v-badge--dot .v-badge__badge {
|
18354
|
+
border-radius: 4.5px;
|
18355
|
+
height: 9px;
|
18356
|
+
min-width: 0;
|
18357
|
+
padding: 0;
|
18358
|
+
width: 9px;
|
18359
|
+
}
|
18360
|
+
.v-badge--dot .v-badge__badge::after {
|
18361
|
+
border-width: 1.5px;
|
18362
|
+
}
|
18363
|
+
.v-badge--inline .v-badge__badge {
|
18364
|
+
position: relative;
|
18365
|
+
vertical-align: middle;
|
18366
|
+
}
|
18367
|
+
.v-badge__badge .v-icon {
|
18368
|
+
color: inherit;
|
18369
|
+
font-size: 0.75rem;
|
18370
|
+
margin: 0 -2px;
|
18371
|
+
}
|
18372
|
+
.v-badge__badge img,
|
18373
|
+
.v-badge__badge .v-img {
|
18374
|
+
height: 100%;
|
18375
|
+
width: 100%;
|
18376
|
+
}
|
18377
|
+
|
18378
|
+
.v-badge__wrapper {
|
18379
|
+
display: flex;
|
18380
|
+
position: relative;
|
18381
|
+
}
|
18382
|
+
.v-badge--inline .v-badge__wrapper {
|
18383
|
+
align-items: center;
|
18384
|
+
display: inline-flex;
|
18385
|
+
justify-content: center;
|
18386
|
+
margin: 0 4px;
|
18310
18387
|
}.v-avatar {
|
18311
18388
|
flex: none;
|
18312
18389
|
align-items: center;
|
@@ -18413,83 +18490,6 @@ html.overflow-y-hidden {
|
|
18413
18490
|
.v-avatar .v-img {
|
18414
18491
|
height: 100%;
|
18415
18492
|
width: 100%;
|
18416
|
-
}.v-badge {
|
18417
|
-
display: inline-block;
|
18418
|
-
line-height: 1;
|
18419
|
-
}
|
18420
|
-
|
18421
|
-
.v-badge__badge {
|
18422
|
-
align-items: center;
|
18423
|
-
display: inline-flex;
|
18424
|
-
border-radius: 10px;
|
18425
|
-
font-family: "Roboto", sans-serif;
|
18426
|
-
font-size: 0.75rem;
|
18427
|
-
font-weight: 500;
|
18428
|
-
height: 1.25rem;
|
18429
|
-
justify-content: center;
|
18430
|
-
min-width: 20px;
|
18431
|
-
padding: 4px 6px;
|
18432
|
-
pointer-events: auto;
|
18433
|
-
position: absolute;
|
18434
|
-
text-align: center;
|
18435
|
-
text-indent: 0;
|
18436
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18437
|
-
white-space: nowrap;
|
18438
|
-
}
|
18439
|
-
.v-badge__badge {
|
18440
|
-
background: rgb(var(--v-theme-surface-variant));
|
18441
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18442
|
-
}
|
18443
|
-
.v-badge__badge:has(.v-icon) {
|
18444
|
-
padding: 4px 6px;
|
18445
|
-
}
|
18446
|
-
.v-badge--bordered .v-badge__badge::after {
|
18447
|
-
border-radius: inherit;
|
18448
|
-
border-style: solid;
|
18449
|
-
border-width: 2px;
|
18450
|
-
bottom: 0;
|
18451
|
-
color: rgb(var(--v-theme-background));
|
18452
|
-
content: "";
|
18453
|
-
left: 0;
|
18454
|
-
position: absolute;
|
18455
|
-
right: 0;
|
18456
|
-
top: 0;
|
18457
|
-
transform: scale(1.05);
|
18458
|
-
}
|
18459
|
-
.v-badge--dot .v-badge__badge {
|
18460
|
-
border-radius: 4.5px;
|
18461
|
-
height: 9px;
|
18462
|
-
min-width: 0;
|
18463
|
-
padding: 0;
|
18464
|
-
width: 9px;
|
18465
|
-
}
|
18466
|
-
.v-badge--dot .v-badge__badge::after {
|
18467
|
-
border-width: 1.5px;
|
18468
|
-
}
|
18469
|
-
.v-badge--inline .v-badge__badge {
|
18470
|
-
position: relative;
|
18471
|
-
vertical-align: middle;
|
18472
|
-
}
|
18473
|
-
.v-badge__badge .v-icon {
|
18474
|
-
color: inherit;
|
18475
|
-
font-size: 0.75rem;
|
18476
|
-
margin: 0 -2px;
|
18477
|
-
}
|
18478
|
-
.v-badge__badge img,
|
18479
|
-
.v-badge__badge .v-img {
|
18480
|
-
height: 100%;
|
18481
|
-
width: 100%;
|
18482
|
-
}
|
18483
|
-
|
18484
|
-
.v-badge__wrapper {
|
18485
|
-
display: flex;
|
18486
|
-
position: relative;
|
18487
|
-
}
|
18488
|
-
.v-badge--inline .v-badge__wrapper {
|
18489
|
-
align-items: center;
|
18490
|
-
display: inline-flex;
|
18491
|
-
justify-content: center;
|
18492
|
-
margin: 0 4px;
|
18493
18493
|
}.v-banner {
|
18494
18494
|
display: grid;
|
18495
18495
|
flex: 1 1;
|
@@ -18719,6 +18719,97 @@ html.overflow-y-hidden {
|
|
18719
18719
|
}
|
18720
18720
|
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18721
18721
|
transform: translateY(0.5rem);
|
18722
|
+
}.bottom-sheet-transition-enter-from {
|
18723
|
+
transform: translateY(100%);
|
18724
|
+
}
|
18725
|
+
.bottom-sheet-transition-leave-to {
|
18726
|
+
transform: translateY(100%);
|
18727
|
+
}
|
18728
|
+
|
18729
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18730
|
+
align-self: flex-end;
|
18731
|
+
border-radius: 0;
|
18732
|
+
flex: 0 1 auto;
|
18733
|
+
left: 0;
|
18734
|
+
right: 0;
|
18735
|
+
margin-inline: 0;
|
18736
|
+
margin-bottom: 0;
|
18737
|
+
transition-duration: 0.2s;
|
18738
|
+
width: 100%;
|
18739
|
+
max-width: 100%;
|
18740
|
+
overflow: visible;
|
18741
|
+
}
|
18742
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18743
|
+
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18744
|
+
}
|
18745
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18746
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18747
|
+
border-radius: 0;
|
18748
|
+
}
|
18749
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18750
|
+
max-width: none;
|
18751
|
+
}
|
18752
|
+
@media (min-width: 600px) {
|
18753
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18754
|
+
max-width: 70%;
|
18755
|
+
}
|
18756
|
+
}.v-breadcrumbs {
|
18757
|
+
display: flex;
|
18758
|
+
align-items: center;
|
18759
|
+
line-height: 1.6;
|
18760
|
+
padding: 16px 12px;
|
18761
|
+
}
|
18762
|
+
.v-breadcrumbs--rounded {
|
18763
|
+
border-radius: 4px;
|
18764
|
+
}
|
18765
|
+
.v-breadcrumbs--density-default {
|
18766
|
+
padding-top: 16px;
|
18767
|
+
padding-bottom: 16px;
|
18768
|
+
}
|
18769
|
+
|
18770
|
+
.v-breadcrumbs--density-comfortable {
|
18771
|
+
padding-top: 12px;
|
18772
|
+
padding-bottom: 12px;
|
18773
|
+
}
|
18774
|
+
|
18775
|
+
.v-breadcrumbs--density-compact {
|
18776
|
+
padding-top: 8px;
|
18777
|
+
padding-bottom: 8px;
|
18778
|
+
}
|
18779
|
+
|
18780
|
+
.v-breadcrumbs__prepend {
|
18781
|
+
align-items: center;
|
18782
|
+
display: inline-flex;
|
18783
|
+
}
|
18784
|
+
|
18785
|
+
.v-breadcrumbs-item {
|
18786
|
+
align-items: center;
|
18787
|
+
color: inherit;
|
18788
|
+
display: inline-flex;
|
18789
|
+
padding: 0 4px;
|
18790
|
+
text-decoration: none;
|
18791
|
+
vertical-align: middle;
|
18792
|
+
}
|
18793
|
+
.v-breadcrumbs-item--disabled {
|
18794
|
+
opacity: var(--v-disabled-opacity);
|
18795
|
+
pointer-events: none;
|
18796
|
+
}
|
18797
|
+
.v-breadcrumbs-item--link {
|
18798
|
+
color: inherit;
|
18799
|
+
text-decoration: none;
|
18800
|
+
}
|
18801
|
+
.v-breadcrumbs-item--link:hover {
|
18802
|
+
text-decoration: underline;
|
18803
|
+
}
|
18804
|
+
.v-breadcrumbs-item .v-icon {
|
18805
|
+
font-size: 1rem;
|
18806
|
+
margin-inline: -4px 2px;
|
18807
|
+
}
|
18808
|
+
|
18809
|
+
.v-breadcrumbs-divider {
|
18810
|
+
display: inline-block;
|
18811
|
+
padding: 0 8px;
|
18812
|
+
vertical-align: middle;
|
18722
18813
|
}.v-btn {
|
18723
18814
|
align-items: center;
|
18724
18815
|
border-radius: 4px;
|
@@ -19143,120 +19234,13 @@ html.overflow-y-hidden {
|
|
19143
19234
|
}
|
19144
19235
|
.v-pagination .v-pagination__item--is-active .v-btn__overlay {
|
19145
19236
|
opacity: var(--v-border-opacity);
|
19146
|
-
}.
|
19147
|
-
|
19148
|
-
|
19149
|
-
|
19150
|
-
|
19151
|
-
|
19152
|
-
|
19153
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
19154
|
-
align-self: flex-end;
|
19155
|
-
border-radius: 0;
|
19156
|
-
flex: 0 1 auto;
|
19157
|
-
left: 0;
|
19158
|
-
right: 0;
|
19159
|
-
margin-inline: 0;
|
19160
|
-
margin-bottom: 0;
|
19161
|
-
transition-duration: 0.2s;
|
19162
|
-
width: 100%;
|
19163
|
-
max-width: 100%;
|
19164
|
-
overflow: visible;
|
19165
|
-
}
|
19166
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
19167
|
-
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19168
|
-
}
|
19169
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
19170
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
19171
|
-
border-radius: 0;
|
19172
|
-
}
|
19173
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
19174
|
-
max-width: none;
|
19175
|
-
}
|
19176
|
-
@media (min-width: 600px) {
|
19177
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
19178
|
-
max-width: 70%;
|
19179
|
-
}
|
19180
|
-
}.v-breadcrumbs {
|
19181
|
-
display: flex;
|
19182
|
-
align-items: center;
|
19183
|
-
line-height: 1.6;
|
19184
|
-
padding: 16px 12px;
|
19185
|
-
}
|
19186
|
-
.v-breadcrumbs--rounded {
|
19187
|
-
border-radius: 4px;
|
19188
|
-
}
|
19189
|
-
.v-breadcrumbs--density-default {
|
19190
|
-
padding-top: 16px;
|
19191
|
-
padding-bottom: 16px;
|
19192
|
-
}
|
19193
|
-
|
19194
|
-
.v-breadcrumbs--density-comfortable {
|
19195
|
-
padding-top: 12px;
|
19196
|
-
padding-bottom: 12px;
|
19197
|
-
}
|
19198
|
-
|
19199
|
-
.v-breadcrumbs--density-compact {
|
19200
|
-
padding-top: 8px;
|
19201
|
-
padding-bottom: 8px;
|
19202
|
-
}
|
19203
|
-
|
19204
|
-
.v-breadcrumbs__prepend {
|
19205
|
-
align-items: center;
|
19206
|
-
display: inline-flex;
|
19207
|
-
}
|
19208
|
-
|
19209
|
-
.v-breadcrumbs-item {
|
19210
|
-
align-items: center;
|
19211
|
-
color: inherit;
|
19212
|
-
display: inline-flex;
|
19213
|
-
padding: 0 4px;
|
19214
|
-
text-decoration: none;
|
19215
|
-
vertical-align: middle;
|
19216
|
-
}
|
19217
|
-
.v-breadcrumbs-item--disabled {
|
19218
|
-
opacity: var(--v-disabled-opacity);
|
19219
|
-
pointer-events: none;
|
19220
|
-
}
|
19221
|
-
.v-breadcrumbs-item--link {
|
19222
|
-
color: inherit;
|
19223
|
-
text-decoration: none;
|
19224
|
-
}
|
19225
|
-
.v-breadcrumbs-item--link:hover {
|
19226
|
-
text-decoration: underline;
|
19227
|
-
}
|
19228
|
-
.v-breadcrumbs-item .v-icon {
|
19229
|
-
font-size: 1rem;
|
19230
|
-
margin-inline: -4px 2px;
|
19231
|
-
}
|
19232
|
-
|
19233
|
-
.v-breadcrumbs-divider {
|
19234
|
-
display: inline-block;
|
19235
|
-
padding: 0 8px;
|
19236
|
-
vertical-align: middle;
|
19237
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19238
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19239
|
-
}
|
19240
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19241
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19242
|
-
}
|
19243
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19244
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19245
|
-
}
|
19246
|
-
@supports not selector(:focus-visible) {
|
19247
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19248
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19249
|
-
}
|
19250
|
-
}
|
19251
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19252
|
-
opacity: 1;
|
19253
|
-
}.v-btn-group {
|
19254
|
-
display: inline-flex;
|
19255
|
-
flex-wrap: nowrap;
|
19256
|
-
max-width: 100%;
|
19257
|
-
min-width: 0;
|
19258
|
-
overflow: hidden;
|
19259
|
-
vertical-align: middle;
|
19237
|
+
}.v-btn-group {
|
19238
|
+
display: inline-flex;
|
19239
|
+
flex-wrap: nowrap;
|
19240
|
+
max-width: 100%;
|
19241
|
+
min-width: 0;
|
19242
|
+
overflow: hidden;
|
19243
|
+
vertical-align: middle;
|
19260
19244
|
}
|
19261
19245
|
.v-btn-group {
|
19262
19246
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
@@ -19314,6 +19298,22 @@ html.overflow-y-hidden {
|
|
19314
19298
|
}
|
19315
19299
|
.v-btn-group--tile {
|
19316
19300
|
border-radius: 0;
|
19301
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19302
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19303
|
+
}
|
19304
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19305
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19306
|
+
}
|
19307
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19308
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19309
|
+
}
|
19310
|
+
@supports not selector(:focus-visible) {
|
19311
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19312
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19313
|
+
}
|
19314
|
+
}
|
19315
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19316
|
+
opacity: 1;
|
19317
19317
|
}.v-card {
|
19318
19318
|
display: block;
|
19319
19319
|
overflow: hidden;
|
@@ -20128,6 +20128,28 @@ html.overflow-y-hidden {
|
|
20128
20128
|
white-space: normal;
|
20129
20129
|
flex-wrap: wrap;
|
20130
20130
|
max-width: 100%;
|
20131
|
+
}.v-color-picker {
|
20132
|
+
align-self: flex-start;
|
20133
|
+
contain: content;
|
20134
|
+
}
|
20135
|
+
.v-color-picker.v-sheet {
|
20136
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20137
|
+
}
|
20138
|
+
.v-color-picker.v-sheet {
|
20139
|
+
border-radius: 4px;
|
20140
|
+
}
|
20141
|
+
|
20142
|
+
.v-color-picker__controls {
|
20143
|
+
display: flex;
|
20144
|
+
flex-direction: column;
|
20145
|
+
padding: 16px;
|
20146
|
+
}
|
20147
|
+
|
20148
|
+
.v-color-picker--flat {
|
20149
|
+
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));
|
20150
|
+
}
|
20151
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20152
|
+
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));
|
20131
20153
|
}.v-combobox .v-field .v-text-field__prefix,
|
20132
20154
|
.v-combobox .v-field .v-text-field__suffix,
|
20133
20155
|
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
@@ -20213,28 +20235,6 @@ html.overflow-y-hidden {
|
|
20213
20235
|
.v-combobox--active-menu .v-combobox__menu-icon {
|
20214
20236
|
opacity: var(--v-high-emphasis-opacity);
|
20215
20237
|
transform: rotate(180deg);
|
20216
|
-
}.v-color-picker {
|
20217
|
-
align-self: flex-start;
|
20218
|
-
contain: content;
|
20219
|
-
}
|
20220
|
-
.v-color-picker.v-sheet {
|
20221
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20222
|
-
}
|
20223
|
-
.v-color-picker.v-sheet {
|
20224
|
-
border-radius: 4px;
|
20225
|
-
}
|
20226
|
-
|
20227
|
-
.v-color-picker__controls {
|
20228
|
-
display: flex;
|
20229
|
-
flex-direction: column;
|
20230
|
-
padding: 16px;
|
20231
|
-
}
|
20232
|
-
|
20233
|
-
.v-color-picker--flat {
|
20234
|
-
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));
|
20235
|
-
}
|
20236
|
-
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20237
|
-
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));
|
20238
20238
|
}.v-counter {
|
20239
20239
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20240
20240
|
flex: 0 1 auto;
|
@@ -20464,62 +20464,6 @@ html.overflow-y-hidden {
|
|
20464
20464
|
}
|
20465
20465
|
.v-date-picker--show-week {
|
20466
20466
|
width: 368px;
|
20467
|
-
}.v-date-picker-controls {
|
20468
|
-
display: flex;
|
20469
|
-
align-items: center;
|
20470
|
-
justify-content: space-between;
|
20471
|
-
font-size: 0.875rem;
|
20472
|
-
padding-top: 4px;
|
20473
|
-
padding-bottom: 4px;
|
20474
|
-
padding-inline-start: 6px;
|
20475
|
-
padding-inline-end: 12px;
|
20476
|
-
}
|
20477
|
-
.v-date-picker-controls > .v-btn:first-child {
|
20478
|
-
text-transform: none;
|
20479
|
-
font-weight: 400;
|
20480
|
-
line-height: initial;
|
20481
|
-
letter-spacing: initial;
|
20482
|
-
}
|
20483
|
-
.v-date-picker-controls--variant-classic {
|
20484
|
-
padding-inline-start: 12px;
|
20485
|
-
}
|
20486
|
-
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
20487
|
-
opacity: 0.7;
|
20488
|
-
}
|
20489
|
-
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20490
|
-
cursor: pointer;
|
20491
|
-
}
|
20492
|
-
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20493
|
-
opacity: 1;
|
20494
|
-
}
|
20495
|
-
.v-date-picker-controls .v-btn:last-child {
|
20496
|
-
margin-inline-start: 4px;
|
20497
|
-
}
|
20498
|
-
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
20499
|
-
transform: rotate(180deg);
|
20500
|
-
}
|
20501
|
-
|
20502
|
-
.v-date-picker-controls__date {
|
20503
|
-
margin-inline-end: 4px;
|
20504
|
-
}
|
20505
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
20506
|
-
margin: auto;
|
20507
|
-
text-align: center;
|
20508
|
-
}
|
20509
|
-
|
20510
|
-
.v-date-picker-controls__month {
|
20511
|
-
display: flex;
|
20512
|
-
}
|
20513
|
-
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
20514
|
-
flex-direction: row-reverse;
|
20515
|
-
}
|
20516
|
-
|
20517
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
20518
|
-
flex: 1 0 auto;
|
20519
|
-
}
|
20520
|
-
|
20521
|
-
.v-date-picker__title {
|
20522
|
-
display: inline-block;
|
20523
20467
|
}.v-date-picker-header {
|
20524
20468
|
align-items: flex-end;
|
20525
20469
|
height: 70px;
|
@@ -20580,30 +20524,67 @@ html.overflow-y-hidden {
|
|
20580
20524
|
.date-picker-header-reverse-transition-leave-to {
|
20581
20525
|
opacity: 0;
|
20582
20526
|
transform: translate(0, 100%);
|
20583
|
-
}.v-date-picker-
|
20584
|
-
|
20585
|
-
}
|
20586
|
-
|
20587
|
-
.v-date-picker-months__content {
|
20527
|
+
}.v-date-picker-controls {
|
20528
|
+
display: flex;
|
20588
20529
|
align-items: center;
|
20589
|
-
|
20590
|
-
|
20591
|
-
|
20592
|
-
|
20593
|
-
|
20594
|
-
|
20595
|
-
padding-inline-start: 36px;
|
20596
|
-
padding-inline-end: 36px;
|
20530
|
+
justify-content: space-between;
|
20531
|
+
font-size: 0.875rem;
|
20532
|
+
padding-top: 4px;
|
20533
|
+
padding-bottom: 4px;
|
20534
|
+
padding-inline-start: 6px;
|
20535
|
+
padding-inline-end: 12px;
|
20597
20536
|
}
|
20598
|
-
.v-date-picker-
|
20537
|
+
.v-date-picker-controls > .v-btn:first-child {
|
20599
20538
|
text-transform: none;
|
20600
|
-
|
20601
|
-
|
20602
|
-
|
20603
|
-
|
20604
|
-
|
20605
|
-
padding:
|
20606
|
-
|
20539
|
+
font-weight: 400;
|
20540
|
+
line-height: initial;
|
20541
|
+
letter-spacing: initial;
|
20542
|
+
}
|
20543
|
+
.v-date-picker-controls--variant-classic {
|
20544
|
+
padding-inline-start: 12px;
|
20545
|
+
}
|
20546
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
20547
|
+
opacity: 0.7;
|
20548
|
+
}
|
20549
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20550
|
+
cursor: pointer;
|
20551
|
+
}
|
20552
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20553
|
+
opacity: 1;
|
20554
|
+
}
|
20555
|
+
.v-date-picker-controls .v-btn:last-child {
|
20556
|
+
margin-inline-start: 4px;
|
20557
|
+
}
|
20558
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
20559
|
+
transform: rotate(180deg);
|
20560
|
+
}
|
20561
|
+
|
20562
|
+
.v-date-picker-controls__date {
|
20563
|
+
margin-inline-end: 4px;
|
20564
|
+
}
|
20565
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
20566
|
+
margin: auto;
|
20567
|
+
text-align: center;
|
20568
|
+
}
|
20569
|
+
|
20570
|
+
.v-date-picker-controls__month {
|
20571
|
+
display: flex;
|
20572
|
+
}
|
20573
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
20574
|
+
flex-direction: row-reverse;
|
20575
|
+
}
|
20576
|
+
|
20577
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
20578
|
+
flex: 1 0 auto;
|
20579
|
+
}
|
20580
|
+
|
20581
|
+
.v-date-picker__title {
|
20582
|
+
display: inline-block;
|
20583
|
+
}.v-date-picker-month {
|
20584
|
+
display: flex;
|
20585
|
+
justify-content: center;
|
20586
|
+
padding: 0 12px 8px;
|
20587
|
+
--v-date-picker-month-day-diff: 4px;
|
20607
20588
|
}
|
20608
20589
|
|
20609
20590
|
.v-date-picker-month__weeks {
|
@@ -20654,6 +20635,25 @@ html.overflow-y-hidden {
|
|
20654
20635
|
|
20655
20636
|
.v-date-picker-month__day--hide-adjacent {
|
20656
20637
|
opacity: 0;
|
20638
|
+
}.v-date-picker-months {
|
20639
|
+
height: 288px;
|
20640
|
+
}
|
20641
|
+
|
20642
|
+
.v-date-picker-months__content {
|
20643
|
+
align-items: center;
|
20644
|
+
display: grid;
|
20645
|
+
flex: 1 1;
|
20646
|
+
height: inherit;
|
20647
|
+
justify-content: space-around;
|
20648
|
+
grid-template-columns: repeat(2, 1fr);
|
20649
|
+
grid-gap: 0px 24px;
|
20650
|
+
padding-inline-start: 36px;
|
20651
|
+
padding-inline-end: 36px;
|
20652
|
+
}
|
20653
|
+
.v-date-picker-months__content .v-btn {
|
20654
|
+
text-transform: none;
|
20655
|
+
padding-inline-start: 8px;
|
20656
|
+
padding-inline-end: 8px;
|
20657
20657
|
}.v-date-picker-years {
|
20658
20658
|
height: 288px;
|
20659
20659
|
overflow-y: scroll;
|
@@ -21033,75 +21033,73 @@ html.overflow-y-hidden {
|
|
21033
21033
|
}
|
21034
21034
|
.v-expansion-panels--tile > .v-expansion-panel {
|
21035
21035
|
border-radius: 0;
|
21036
|
-
}.v-
|
21036
|
+
}.v-empty-state {
|
21037
21037
|
align-items: center;
|
21038
|
-
display: inline-flex;
|
21039
|
-
flex: 1 1 auto;
|
21040
|
-
pointer-events: none;
|
21041
|
-
position: relative;
|
21042
|
-
transition-duration: 0.2s;
|
21043
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21044
|
-
vertical-align: middle;
|
21045
|
-
}
|
21046
|
-
.v-fab .v-btn {
|
21047
|
-
pointer-events: auto;
|
21048
|
-
}
|
21049
|
-
.v-fab .v-btn--variant-elevated {
|
21050
|
-
box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21051
|
-
}
|
21052
|
-
.v-fab--app, .v-fab--absolute {
|
21053
21038
|
display: flex;
|
21039
|
+
flex-direction: column;
|
21040
|
+
justify-content: center;
|
21041
|
+
min-height: 100%;
|
21042
|
+
padding: 16px;
|
21054
21043
|
}
|
21055
|
-
.v-
|
21056
|
-
|
21044
|
+
.v-empty-state--start {
|
21045
|
+
align-items: flex-start;
|
21057
21046
|
}
|
21058
|
-
.v-
|
21047
|
+
.v-empty-state--center {
|
21059
21048
|
align-items: center;
|
21060
|
-
justify-content: center;
|
21061
|
-
}
|
21062
|
-
.v-fab--end, .v-fab--right {
|
21063
|
-
justify-content: flex-end;
|
21064
21049
|
}
|
21065
|
-
.v-
|
21050
|
+
.v-empty-state--end {
|
21066
21051
|
align-items: flex-end;
|
21067
21052
|
}
|
21068
|
-
.v-fab--top {
|
21069
|
-
align-items: flex-start;
|
21070
|
-
}
|
21071
|
-
.v-fab--extended .v-btn {
|
21072
|
-
border-radius: 9999px !important;
|
21073
|
-
}
|
21074
21053
|
|
21075
|
-
.v-
|
21076
|
-
align
|
21077
|
-
|
21078
|
-
position: absolute;
|
21079
|
-
vertical-align: middle;
|
21054
|
+
.v-empty-state__media {
|
21055
|
+
text-align: center;
|
21056
|
+
width: 100%;
|
21080
21057
|
}
|
21081
|
-
.v-
|
21082
|
-
|
21058
|
+
.v-empty-state__media .v-icon {
|
21059
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21083
21060
|
}
|
21084
|
-
|
21085
|
-
|
21086
|
-
|
21061
|
+
|
21062
|
+
.v-empty-state__headline {
|
21063
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21064
|
+
font-size: 3.75rem;
|
21065
|
+
font-weight: 300;
|
21066
|
+
line-height: 1;
|
21067
|
+
text-align: center;
|
21068
|
+
margin-bottom: 8px;
|
21087
21069
|
}
|
21088
|
-
.v-
|
21089
|
-
|
21070
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
21071
|
+
font-size: 2.125rem;
|
21090
21072
|
}
|
21091
|
-
|
21092
|
-
|
21073
|
+
|
21074
|
+
.v-empty-state__title {
|
21075
|
+
font-size: 1.25rem;
|
21076
|
+
font-weight: 500;
|
21077
|
+
line-height: 1.6;
|
21078
|
+
margin-bottom: 4px;
|
21079
|
+
text-align: center;
|
21093
21080
|
}
|
21094
|
-
|
21095
|
-
|
21081
|
+
|
21082
|
+
.v-empty-state__text {
|
21083
|
+
font-size: 0.875rem;
|
21084
|
+
font-weight: 400;
|
21085
|
+
line-height: 1.425;
|
21086
|
+
padding: 0 16px;
|
21087
|
+
text-align: center;
|
21096
21088
|
}
|
21097
|
-
|
21098
|
-
|
21089
|
+
|
21090
|
+
.v-empty-state__content {
|
21091
|
+
padding: 24px 0;
|
21099
21092
|
}
|
21100
|
-
|
21101
|
-
|
21093
|
+
|
21094
|
+
.v-empty-state__actions {
|
21095
|
+
display: flex;
|
21096
|
+
gap: 8px;
|
21097
|
+
padding: 16px;
|
21102
21098
|
}
|
21103
|
-
|
21104
|
-
|
21099
|
+
|
21100
|
+
.v-empty-state__action-btn.v-btn {
|
21101
|
+
background-color: initial;
|
21102
|
+
color: initial;
|
21105
21103
|
}/* region INPUT */
|
21106
21104
|
.v-field {
|
21107
21105
|
display: grid;
|
@@ -21685,7 +21683,76 @@ textarea.v-field__input::placeholder {
|
|
21685
21683
|
opacity: 0;
|
21686
21684
|
}
|
21687
21685
|
|
21688
|
-
/* endregion */.v-
|
21686
|
+
/* endregion */.v-fab {
|
21687
|
+
align-items: center;
|
21688
|
+
display: inline-flex;
|
21689
|
+
flex: 1 1 auto;
|
21690
|
+
pointer-events: none;
|
21691
|
+
position: relative;
|
21692
|
+
transition-duration: 0.2s;
|
21693
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21694
|
+
vertical-align: middle;
|
21695
|
+
}
|
21696
|
+
.v-fab .v-btn {
|
21697
|
+
pointer-events: auto;
|
21698
|
+
}
|
21699
|
+
.v-fab .v-btn--variant-elevated {
|
21700
|
+
box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
21701
|
+
}
|
21702
|
+
.v-fab--app, .v-fab--absolute {
|
21703
|
+
display: flex;
|
21704
|
+
}
|
21705
|
+
.v-fab--start, .v-fab--left {
|
21706
|
+
justify-content: flex-start;
|
21707
|
+
}
|
21708
|
+
.v-fab--center {
|
21709
|
+
align-items: center;
|
21710
|
+
justify-content: center;
|
21711
|
+
}
|
21712
|
+
.v-fab--end, .v-fab--right {
|
21713
|
+
justify-content: flex-end;
|
21714
|
+
}
|
21715
|
+
.v-fab--bottom {
|
21716
|
+
align-items: flex-end;
|
21717
|
+
}
|
21718
|
+
.v-fab--top {
|
21719
|
+
align-items: flex-start;
|
21720
|
+
}
|
21721
|
+
.v-fab--extended .v-btn {
|
21722
|
+
border-radius: 9999px !important;
|
21723
|
+
}
|
21724
|
+
|
21725
|
+
.v-fab__container {
|
21726
|
+
align-self: center;
|
21727
|
+
display: inline-flex;
|
21728
|
+
position: absolute;
|
21729
|
+
vertical-align: middle;
|
21730
|
+
}
|
21731
|
+
.v-fab--app .v-fab__container {
|
21732
|
+
margin: 12px;
|
21733
|
+
}
|
21734
|
+
.v-fab--absolute .v-fab__container {
|
21735
|
+
position: absolute;
|
21736
|
+
z-index: 4;
|
21737
|
+
}
|
21738
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
21739
|
+
transform: translateY(-50%);
|
21740
|
+
}
|
21741
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21742
|
+
transform: translateY(50%);
|
21743
|
+
}
|
21744
|
+
.v-fab--top .v-fab__container {
|
21745
|
+
top: 0;
|
21746
|
+
}
|
21747
|
+
.v-fab--bottom .v-fab__container {
|
21748
|
+
bottom: 0;
|
21749
|
+
}
|
21750
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21751
|
+
left: 0;
|
21752
|
+
}
|
21753
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21754
|
+
right: 0;
|
21755
|
+
}.v-file-input--hide.v-input .v-field,
|
21689
21756
|
.v-file-input--hide.v-input .v-input__control,
|
21690
21757
|
.v-file-input--hide.v-input .v-input__details {
|
21691
21758
|
display: none;
|
@@ -21714,18 +21781,54 @@ textarea.v-field__input::placeholder {
|
|
21714
21781
|
}
|
21715
21782
|
.v-input--plain-underlined.v-file-input .v-input__details {
|
21716
21783
|
padding-inline: 0;
|
21717
|
-
}.v-
|
21718
|
-
|
21719
|
-
|
21720
|
-
|
21721
|
-
|
21722
|
-
|
21723
|
-
|
21724
|
-
|
21725
|
-
max-width: 900px;
|
21726
|
-
}
|
21784
|
+
}.v-footer {
|
21785
|
+
align-items: center;
|
21786
|
+
display: flex;
|
21787
|
+
flex: 1 1 auto;
|
21788
|
+
padding: 8px 16px;
|
21789
|
+
position: relative;
|
21790
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21791
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
21727
21792
|
}
|
21728
|
-
|
21793
|
+
.v-footer {
|
21794
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21795
|
+
border-style: solid;
|
21796
|
+
border-width: 0;
|
21797
|
+
}
|
21798
|
+
.v-footer--border {
|
21799
|
+
border-width: thin;
|
21800
|
+
box-shadow: none;
|
21801
|
+
}
|
21802
|
+
.v-footer {
|
21803
|
+
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));
|
21804
|
+
}
|
21805
|
+
.v-footer--absolute {
|
21806
|
+
position: absolute;
|
21807
|
+
}
|
21808
|
+
.v-footer--fixed {
|
21809
|
+
position: fixed;
|
21810
|
+
}
|
21811
|
+
.v-footer {
|
21812
|
+
border-radius: 0;
|
21813
|
+
}
|
21814
|
+
.v-footer {
|
21815
|
+
background: rgb(var(--v-theme-surface));
|
21816
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21817
|
+
}
|
21818
|
+
.v-footer--rounded {
|
21819
|
+
border-radius: 4px;
|
21820
|
+
}.v-container {
|
21821
|
+
width: 100%;
|
21822
|
+
padding: 16px;
|
21823
|
+
margin-right: auto;
|
21824
|
+
margin-left: auto;
|
21825
|
+
}
|
21826
|
+
@media (min-width: 960px) {
|
21827
|
+
.v-container {
|
21828
|
+
max-width: 900px;
|
21829
|
+
}
|
21830
|
+
}
|
21831
|
+
@media (min-width: 1280px) {
|
21729
21832
|
.v-container {
|
21730
21833
|
max-width: 1200px;
|
21731
21834
|
}
|
@@ -22386,42 +22489,57 @@ textarea.v-field__input::placeholder {
|
|
22386
22489
|
.offset-xxl-11 {
|
22387
22490
|
margin-inline-start: 91.6666666667%;
|
22388
22491
|
}
|
22389
|
-
}.v-
|
22390
|
-
|
22391
|
-
|
22392
|
-
flex: 1 1 auto;
|
22393
|
-
padding: 8px 16px;
|
22394
|
-
position: relative;
|
22395
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22396
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22492
|
+
}.v-img {
|
22493
|
+
--v-theme-overlay-multiplier: 3;
|
22494
|
+
z-index: 0;
|
22397
22495
|
}
|
22398
|
-
.v-
|
22399
|
-
|
22400
|
-
|
22401
|
-
|
22496
|
+
.v-img.v-img--absolute {
|
22497
|
+
height: 100%;
|
22498
|
+
left: 0;
|
22499
|
+
overflow: hidden;
|
22500
|
+
position: absolute;
|
22501
|
+
top: 0;
|
22502
|
+
width: 100%;
|
22503
|
+
z-index: -1;
|
22402
22504
|
}
|
22403
|
-
.v-
|
22404
|
-
|
22405
|
-
box-shadow: none;
|
22505
|
+
.v-img--booting .v-responsive__sizer {
|
22506
|
+
transition: none;
|
22406
22507
|
}
|
22407
|
-
.v-
|
22408
|
-
|
22508
|
+
.v-img--rounded {
|
22509
|
+
border-radius: 4px;
|
22409
22510
|
}
|
22410
|
-
|
22511
|
+
|
22512
|
+
.v-img__img,
|
22513
|
+
.v-img__picture,
|
22514
|
+
.v-img__gradient,
|
22515
|
+
.v-img__placeholder,
|
22516
|
+
.v-img__error {
|
22517
|
+
z-index: -1;
|
22518
|
+
}
|
22519
|
+
.v-img__img,
|
22520
|
+
.v-img__picture,
|
22521
|
+
.v-img__gradient,
|
22522
|
+
.v-img__placeholder,
|
22523
|
+
.v-img__error {
|
22411
22524
|
position: absolute;
|
22525
|
+
top: 0;
|
22526
|
+
left: 0;
|
22527
|
+
width: 100%;
|
22528
|
+
height: 100%;
|
22412
22529
|
}
|
22413
|
-
|
22414
|
-
|
22530
|
+
|
22531
|
+
.v-img__img--preload {
|
22532
|
+
filter: blur(4px);
|
22415
22533
|
}
|
22416
|
-
.v-
|
22417
|
-
|
22534
|
+
.v-img__img--contain {
|
22535
|
+
object-fit: contain;
|
22418
22536
|
}
|
22419
|
-
.v-
|
22420
|
-
|
22421
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22537
|
+
.v-img__img--cover {
|
22538
|
+
object-fit: cover;
|
22422
22539
|
}
|
22423
|
-
|
22424
|
-
|
22540
|
+
|
22541
|
+
.v-img__gradient {
|
22542
|
+
background-repeat: no-repeat;
|
22425
22543
|
}.v-icon {
|
22426
22544
|
--v-icon-size-multiplier: 1;
|
22427
22545
|
align-items: center;
|
@@ -22475,57 +22593,6 @@ textarea.v-field__input::placeholder {
|
|
22475
22593
|
|
22476
22594
|
.v-icon--end {
|
22477
22595
|
margin-inline-start: 8px;
|
22478
|
-
}.v-img {
|
22479
|
-
--v-theme-overlay-multiplier: 3;
|
22480
|
-
z-index: 0;
|
22481
|
-
}
|
22482
|
-
.v-img.v-img--absolute {
|
22483
|
-
height: 100%;
|
22484
|
-
left: 0;
|
22485
|
-
overflow: hidden;
|
22486
|
-
position: absolute;
|
22487
|
-
top: 0;
|
22488
|
-
width: 100%;
|
22489
|
-
z-index: -1;
|
22490
|
-
}
|
22491
|
-
.v-img--booting .v-responsive__sizer {
|
22492
|
-
transition: none;
|
22493
|
-
}
|
22494
|
-
.v-img--rounded {
|
22495
|
-
border-radius: 4px;
|
22496
|
-
}
|
22497
|
-
|
22498
|
-
.v-img__img,
|
22499
|
-
.v-img__picture,
|
22500
|
-
.v-img__gradient,
|
22501
|
-
.v-img__placeholder,
|
22502
|
-
.v-img__error {
|
22503
|
-
z-index: -1;
|
22504
|
-
}
|
22505
|
-
.v-img__img,
|
22506
|
-
.v-img__picture,
|
22507
|
-
.v-img__gradient,
|
22508
|
-
.v-img__placeholder,
|
22509
|
-
.v-img__error {
|
22510
|
-
position: absolute;
|
22511
|
-
top: 0;
|
22512
|
-
left: 0;
|
22513
|
-
width: 100%;
|
22514
|
-
height: 100%;
|
22515
|
-
}
|
22516
|
-
|
22517
|
-
.v-img__img--preload {
|
22518
|
-
filter: blur(4px);
|
22519
|
-
}
|
22520
|
-
.v-img__img--contain {
|
22521
|
-
object-fit: contain;
|
22522
|
-
}
|
22523
|
-
.v-img__img--cover {
|
22524
|
-
object-fit: cover;
|
22525
|
-
}
|
22526
|
-
|
22527
|
-
.v-img__gradient {
|
22528
|
-
background-repeat: no-repeat;
|
22529
22596
|
}.v-infinite-scroll--horizontal {
|
22530
22597
|
display: flex;
|
22531
22598
|
flex-direction: row;
|
@@ -22740,98 +22807,209 @@ textarea.v-field__input::placeholder {
|
|
22740
22807
|
|
22741
22808
|
.v-layout-item--absolute {
|
22742
22809
|
position: absolute;
|
22743
|
-
}.v-
|
22744
|
-
|
22745
|
-
|
22746
|
-
|
22747
|
-
|
22748
|
-
grid-template-columns: max-content 1fr auto;
|
22749
|
-
outline: none;
|
22750
|
-
max-width: 100%;
|
22751
|
-
padding: 4px 16px;
|
22810
|
+
}.v-locale-provider {
|
22811
|
+
display: contents;
|
22812
|
+
}.v-list {
|
22813
|
+
overflow: auto;
|
22814
|
+
padding: 8px 0;
|
22752
22815
|
position: relative;
|
22753
|
-
|
22816
|
+
outline: none;
|
22754
22817
|
}
|
22755
|
-
.v-list
|
22818
|
+
.v-list {
|
22756
22819
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22757
22820
|
border-style: solid;
|
22758
22821
|
border-width: 0;
|
22759
22822
|
}
|
22760
|
-
.v-list
|
22823
|
+
.v-list--border {
|
22761
22824
|
border-width: thin;
|
22762
22825
|
box-shadow: none;
|
22763
22826
|
}
|
22764
|
-
.v-list
|
22765
|
-
|
22766
|
-
}
|
22767
|
-
.v-list-item:focus-visible > .v-list-item__overlay {
|
22768
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
22769
|
-
}
|
22770
|
-
@supports not selector(:focus-visible) {
|
22771
|
-
.v-list-item:focus > .v-list-item__overlay {
|
22772
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
22773
|
-
}
|
22774
|
-
}
|
22775
|
-
.v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
|
22776
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
22777
|
-
}
|
22778
|
-
.v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
|
22779
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22780
|
-
}
|
22781
|
-
.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 {
|
22782
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22783
|
-
}
|
22784
|
-
@supports not selector(:focus-visible) {
|
22785
|
-
.v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
|
22786
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22787
|
-
}
|
22827
|
+
.v-list {
|
22828
|
+
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));
|
22788
22829
|
}
|
22789
|
-
.v-list
|
22830
|
+
.v-list {
|
22790
22831
|
border-radius: 0;
|
22791
22832
|
}
|
22792
|
-
.v-list
|
22793
|
-
background: transparent;
|
22794
|
-
color: inherit;
|
22795
|
-
}
|
22796
|
-
.v-list-item--variant-plain {
|
22797
|
-
opacity: 0.62;
|
22798
|
-
}
|
22799
|
-
.v-list-item--variant-plain:focus, .v-list-item--variant-plain:hover {
|
22800
|
-
opacity: 1;
|
22801
|
-
}
|
22802
|
-
.v-list-item--variant-plain .v-list-item__overlay {
|
22803
|
-
display: none;
|
22804
|
-
}
|
22805
|
-
.v-list-item--variant-elevated, .v-list-item--variant-flat {
|
22833
|
+
.v-list {
|
22806
22834
|
background: rgba(var(--v-theme-surface));
|
22807
22835
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22808
22836
|
}
|
22809
|
-
.v-list
|
22810
|
-
|
22837
|
+
.v-list--disabled {
|
22838
|
+
pointer-events: none;
|
22839
|
+
-webkit-user-select: none;
|
22840
|
+
user-select: none;
|
22811
22841
|
}
|
22812
|
-
.v-list
|
22813
|
-
|
22842
|
+
.v-list--nav {
|
22843
|
+
padding-inline: 8px;
|
22814
22844
|
}
|
22815
|
-
.v-list
|
22816
|
-
border:
|
22845
|
+
.v-list--rounded {
|
22846
|
+
border-radius: 4px;
|
22817
22847
|
}
|
22818
|
-
.v-list
|
22819
|
-
|
22848
|
+
.v-list--subheader {
|
22849
|
+
padding-top: 0;
|
22820
22850
|
}
|
22821
|
-
|
22822
|
-
|
22823
|
-
opacity: var(--v-activated-opacity);
|
22851
|
+
|
22852
|
+
.v-list-img {
|
22824
22853
|
border-radius: inherit;
|
22825
|
-
|
22826
|
-
|
22827
|
-
bottom: 0;
|
22854
|
+
display: flex;
|
22855
|
+
height: 100%;
|
22828
22856
|
left: 0;
|
22829
|
-
|
22830
|
-
}
|
22831
|
-
.v-list-item .v-list-item__underlay {
|
22857
|
+
overflow: hidden;
|
22832
22858
|
position: absolute;
|
22833
|
-
|
22834
|
-
|
22859
|
+
top: 0;
|
22860
|
+
width: 100%;
|
22861
|
+
z-index: -1;
|
22862
|
+
}
|
22863
|
+
|
22864
|
+
.v-list-subheader {
|
22865
|
+
align-items: center;
|
22866
|
+
background: inherit;
|
22867
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
22868
|
+
display: flex;
|
22869
|
+
font-size: 0.875rem;
|
22870
|
+
font-weight: 400;
|
22871
|
+
line-height: 1.375rem;
|
22872
|
+
padding-inline-end: 16px;
|
22873
|
+
min-height: 40px;
|
22874
|
+
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
22875
|
+
}
|
22876
|
+
.v-list-subheader__text {
|
22877
|
+
overflow: hidden;
|
22878
|
+
text-overflow: ellipsis;
|
22879
|
+
white-space: nowrap;
|
22880
|
+
}
|
22881
|
+
.v-list--density-default .v-list-subheader {
|
22882
|
+
min-height: 40px;
|
22883
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
22884
|
+
}
|
22885
|
+
|
22886
|
+
.v-list--density-comfortable .v-list-subheader {
|
22887
|
+
min-height: 36px;
|
22888
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
22889
|
+
}
|
22890
|
+
|
22891
|
+
.v-list--density-compact .v-list-subheader {
|
22892
|
+
min-height: 32px;
|
22893
|
+
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
22894
|
+
}
|
22895
|
+
|
22896
|
+
.v-list-subheader--inset {
|
22897
|
+
--indent-padding: 56px;
|
22898
|
+
}
|
22899
|
+
.v-list--nav .v-list-subheader {
|
22900
|
+
font-size: 0.75rem;
|
22901
|
+
}
|
22902
|
+
.v-list-subheader--sticky {
|
22903
|
+
background: inherit;
|
22904
|
+
left: 0;
|
22905
|
+
position: sticky;
|
22906
|
+
top: 0;
|
22907
|
+
z-index: 1;
|
22908
|
+
}
|
22909
|
+
|
22910
|
+
.v-list__overlay {
|
22911
|
+
background-color: currentColor;
|
22912
|
+
border-radius: inherit;
|
22913
|
+
bottom: 0;
|
22914
|
+
left: 0;
|
22915
|
+
opacity: 0;
|
22916
|
+
pointer-events: none;
|
22917
|
+
position: absolute;
|
22918
|
+
right: 0;
|
22919
|
+
top: 0;
|
22920
|
+
transition: opacity 0.2s ease-in-out;
|
22921
|
+
}.v-list-item {
|
22922
|
+
align-items: center;
|
22923
|
+
display: grid;
|
22924
|
+
flex: none;
|
22925
|
+
grid-template-areas: "prepend content append";
|
22926
|
+
grid-template-columns: max-content 1fr auto;
|
22927
|
+
outline: none;
|
22928
|
+
max-width: 100%;
|
22929
|
+
padding: 4px 16px;
|
22930
|
+
position: relative;
|
22931
|
+
text-decoration: none;
|
22932
|
+
}
|
22933
|
+
.v-list-item {
|
22934
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22935
|
+
border-style: solid;
|
22936
|
+
border-width: 0;
|
22937
|
+
}
|
22938
|
+
.v-list-item--border {
|
22939
|
+
border-width: thin;
|
22940
|
+
box-shadow: none;
|
22941
|
+
}
|
22942
|
+
.v-list-item:hover > .v-list-item__overlay {
|
22943
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
22944
|
+
}
|
22945
|
+
.v-list-item:focus-visible > .v-list-item__overlay {
|
22946
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
22947
|
+
}
|
22948
|
+
@supports not selector(:focus-visible) {
|
22949
|
+
.v-list-item:focus > .v-list-item__overlay {
|
22950
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
22951
|
+
}
|
22952
|
+
}
|
22953
|
+
.v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
|
22954
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
22955
|
+
}
|
22956
|
+
.v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
|
22957
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22958
|
+
}
|
22959
|
+
.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 {
|
22960
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22961
|
+
}
|
22962
|
+
@supports not selector(:focus-visible) {
|
22963
|
+
.v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
|
22964
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22965
|
+
}
|
22966
|
+
}
|
22967
|
+
.v-list-item {
|
22968
|
+
border-radius: 0;
|
22969
|
+
}
|
22970
|
+
.v-list-item--variant-plain, .v-list-item--variant-outlined, .v-list-item--variant-text, .v-list-item--variant-tonal {
|
22971
|
+
background: transparent;
|
22972
|
+
color: inherit;
|
22973
|
+
}
|
22974
|
+
.v-list-item--variant-plain {
|
22975
|
+
opacity: 0.62;
|
22976
|
+
}
|
22977
|
+
.v-list-item--variant-plain:focus, .v-list-item--variant-plain:hover {
|
22978
|
+
opacity: 1;
|
22979
|
+
}
|
22980
|
+
.v-list-item--variant-plain .v-list-item__overlay {
|
22981
|
+
display: none;
|
22982
|
+
}
|
22983
|
+
.v-list-item--variant-elevated, .v-list-item--variant-flat {
|
22984
|
+
background: rgba(var(--v-theme-surface));
|
22985
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22986
|
+
}
|
22987
|
+
.v-list-item--variant-elevated {
|
22988
|
+
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));
|
22989
|
+
}
|
22990
|
+
.v-list-item--variant-flat {
|
22991
|
+
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));
|
22992
|
+
}
|
22993
|
+
.v-list-item--variant-outlined {
|
22994
|
+
border: thin solid currentColor;
|
22995
|
+
}
|
22996
|
+
.v-list-item--variant-text .v-list-item__overlay {
|
22997
|
+
background: currentColor;
|
22998
|
+
}
|
22999
|
+
.v-list-item--variant-tonal .v-list-item__underlay {
|
23000
|
+
background: currentColor;
|
23001
|
+
opacity: var(--v-activated-opacity);
|
23002
|
+
border-radius: inherit;
|
23003
|
+
top: 0;
|
23004
|
+
right: 0;
|
23005
|
+
bottom: 0;
|
23006
|
+
left: 0;
|
23007
|
+
pointer-events: none;
|
23008
|
+
}
|
23009
|
+
.v-list-item .v-list-item__underlay {
|
23010
|
+
position: absolute;
|
23011
|
+
}
|
23012
|
+
@supports selector(:focus-visible) {
|
22835
23013
|
.v-list-item::after {
|
22836
23014
|
pointer-events: none;
|
22837
23015
|
border: 2px solid currentColor;
|
@@ -23207,182 +23385,160 @@ textarea.v-field__input::placeholder {
|
|
23207
23385
|
}
|
23208
23386
|
.v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23209
23387
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23210
|
-
}.v-
|
23211
|
-
|
23212
|
-
|
23388
|
+
}.v-main {
|
23389
|
+
flex: 1 0 auto;
|
23390
|
+
max-width: 100%;
|
23391
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23392
|
+
padding-left: var(--v-layout-left);
|
23393
|
+
padding-right: var(--v-layout-right);
|
23394
|
+
padding-top: var(--v-layout-top);
|
23395
|
+
padding-bottom: var(--v-layout-bottom);
|
23396
|
+
}
|
23397
|
+
.v-main__scroller {
|
23398
|
+
max-width: 100%;
|
23213
23399
|
position: relative;
|
23214
|
-
outline: none;
|
23215
23400
|
}
|
23216
|
-
.v-
|
23401
|
+
.v-main--scrollable {
|
23402
|
+
display: flex;
|
23403
|
+
}
|
23404
|
+
.v-main--scrollable {
|
23405
|
+
position: absolute;
|
23406
|
+
top: 0;
|
23407
|
+
left: 0;
|
23408
|
+
width: 100%;
|
23409
|
+
height: 100%;
|
23410
|
+
}
|
23411
|
+
.v-main--scrollable > .v-main__scroller {
|
23412
|
+
flex: 1 1 auto;
|
23413
|
+
overflow-y: auto;
|
23414
|
+
--v-layout-left: 0px;
|
23415
|
+
--v-layout-right: 0px;
|
23416
|
+
--v-layout-top: 0px;
|
23417
|
+
--v-layout-bottom: 0px;
|
23418
|
+
}.v-messages {
|
23419
|
+
flex: 1 1 auto;
|
23420
|
+
font-size: 12px;
|
23421
|
+
min-height: 14px;
|
23422
|
+
min-width: 1px;
|
23423
|
+
opacity: var(--v-medium-emphasis-opacity);
|
23424
|
+
position: relative;
|
23425
|
+
}
|
23426
|
+
.v-messages__message {
|
23427
|
+
line-height: 12px;
|
23428
|
+
word-break: break-word;
|
23429
|
+
overflow-wrap: break-word;
|
23430
|
+
word-wrap: break-word;
|
23431
|
+
-webkit-hyphens: auto;
|
23432
|
+
hyphens: auto;
|
23433
|
+
transition-duration: 150ms;
|
23434
|
+
}.v-navigation-drawer {
|
23435
|
+
-webkit-overflow-scrolling: touch;
|
23436
|
+
background: rgb(var(--v-theme-surface));
|
23437
|
+
display: flex;
|
23438
|
+
flex-direction: column;
|
23439
|
+
height: 100%;
|
23440
|
+
max-width: 100%;
|
23441
|
+
pointer-events: auto;
|
23442
|
+
transition-duration: 0.2s;
|
23443
|
+
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
23444
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
23445
|
+
position: absolute;
|
23446
|
+
}
|
23447
|
+
.v-navigation-drawer {
|
23217
23448
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23218
23449
|
border-style: solid;
|
23219
23450
|
border-width: 0;
|
23220
23451
|
}
|
23221
|
-
.v-
|
23452
|
+
.v-navigation-drawer--border {
|
23222
23453
|
border-width: thin;
|
23223
23454
|
box-shadow: none;
|
23224
23455
|
}
|
23225
|
-
.v-
|
23456
|
+
.v-navigation-drawer {
|
23226
23457
|
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));
|
23227
23458
|
}
|
23228
|
-
.v-
|
23229
|
-
|
23230
|
-
}
|
23231
|
-
.v-list {
|
23232
|
-
background: rgba(var(--v-theme-surface));
|
23459
|
+
.v-navigation-drawer {
|
23460
|
+
background: rgb(var(--v-theme-surface));
|
23233
23461
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23234
23462
|
}
|
23235
|
-
.v-
|
23236
|
-
pointer-events: none;
|
23237
|
-
-webkit-user-select: none;
|
23238
|
-
user-select: none;
|
23239
|
-
}
|
23240
|
-
.v-list--nav {
|
23241
|
-
padding-inline: 8px;
|
23242
|
-
}
|
23243
|
-
.v-list--rounded {
|
23463
|
+
.v-navigation-drawer--rounded {
|
23244
23464
|
border-radius: 4px;
|
23245
23465
|
}
|
23246
|
-
.v-
|
23247
|
-
|
23466
|
+
.v-navigation-drawer--top, .v-navigation-drawer--bottom {
|
23467
|
+
max-height: -webkit-fill-available;
|
23468
|
+
overflow-y: auto;
|
23248
23469
|
}
|
23249
|
-
|
23250
|
-
.v-list-img {
|
23251
|
-
border-radius: inherit;
|
23252
|
-
display: flex;
|
23253
|
-
height: 100%;
|
23254
|
-
left: 0;
|
23255
|
-
overflow: hidden;
|
23256
|
-
position: absolute;
|
23470
|
+
.v-navigation-drawer--top {
|
23257
23471
|
top: 0;
|
23258
|
-
width:
|
23259
|
-
z-index: -1;
|
23472
|
+
border-bottom-width: thin;
|
23260
23473
|
}
|
23261
|
-
|
23262
|
-
|
23263
|
-
|
23264
|
-
background: inherit;
|
23265
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
23266
|
-
display: flex;
|
23267
|
-
font-size: 0.875rem;
|
23268
|
-
font-weight: 400;
|
23269
|
-
line-height: 1.375rem;
|
23270
|
-
padding-inline-end: 16px;
|
23271
|
-
min-height: 40px;
|
23272
|
-
transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
23474
|
+
.v-navigation-drawer--bottom {
|
23475
|
+
left: 0;
|
23476
|
+
border-top-width: thin;
|
23273
23477
|
}
|
23274
|
-
.v-
|
23275
|
-
|
23276
|
-
|
23277
|
-
|
23478
|
+
.v-navigation-drawer--left {
|
23479
|
+
top: 0;
|
23480
|
+
left: 0;
|
23481
|
+
right: auto;
|
23482
|
+
border-right-width: thin;
|
23278
23483
|
}
|
23279
|
-
.v-
|
23280
|
-
|
23281
|
-
|
23484
|
+
.v-navigation-drawer--right {
|
23485
|
+
top: 0;
|
23486
|
+
left: auto;
|
23487
|
+
right: 0;
|
23488
|
+
border-left-width: thin;
|
23282
23489
|
}
|
23283
|
-
|
23284
|
-
|
23285
|
-
min-height: 36px;
|
23286
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23490
|
+
.v-navigation-drawer--floating {
|
23491
|
+
border: none;
|
23287
23492
|
}
|
23288
|
-
|
23289
|
-
|
23290
|
-
min-height: 32px;
|
23291
|
-
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
23493
|
+
.v-navigation-drawer--temporary.v-navigation-drawer--active {
|
23494
|
+
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));
|
23292
23495
|
}
|
23293
|
-
|
23294
|
-
|
23295
|
-
|
23496
|
+
.v-navigation-drawer--sticky {
|
23497
|
+
height: auto;
|
23498
|
+
transition: box-shadow, transform, visibility, width, height, left, right;
|
23296
23499
|
}
|
23297
|
-
.v-
|
23298
|
-
|
23500
|
+
.v-navigation-drawer .v-list {
|
23501
|
+
overflow: hidden;
|
23299
23502
|
}
|
23300
|
-
|
23301
|
-
|
23302
|
-
|
23303
|
-
|
23304
|
-
|
23305
|
-
|
23503
|
+
|
23504
|
+
.v-navigation-drawer__content {
|
23505
|
+
flex: 0 1 auto;
|
23506
|
+
height: 100%;
|
23507
|
+
max-width: 100%;
|
23508
|
+
overflow-x: hidden;
|
23509
|
+
overflow-y: auto;
|
23306
23510
|
}
|
23307
23511
|
|
23308
|
-
.v-
|
23309
|
-
|
23310
|
-
border-radius: inherit;
|
23311
|
-
bottom: 0;
|
23512
|
+
.v-navigation-drawer__img {
|
23513
|
+
height: 100%;
|
23312
23514
|
left: 0;
|
23313
|
-
opacity: 0;
|
23314
|
-
pointer-events: none;
|
23315
23515
|
position: absolute;
|
23316
|
-
right: 0;
|
23317
23516
|
top: 0;
|
23318
|
-
|
23319
|
-
|
23320
|
-
flex: 1 0 auto;
|
23321
|
-
max-width: 100%;
|
23322
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23323
|
-
padding-left: var(--v-layout-left);
|
23324
|
-
padding-right: var(--v-layout-right);
|
23325
|
-
padding-top: var(--v-layout-top);
|
23326
|
-
padding-bottom: var(--v-layout-bottom);
|
23327
|
-
}
|
23328
|
-
.v-main__scroller {
|
23329
|
-
max-width: 100%;
|
23330
|
-
position: relative;
|
23517
|
+
width: 100%;
|
23518
|
+
z-index: -1;
|
23331
23519
|
}
|
23332
|
-
.v-
|
23333
|
-
|
23520
|
+
.v-navigation-drawer__img img:not(.v-img__img) {
|
23521
|
+
height: inherit;
|
23522
|
+
object-fit: cover;
|
23523
|
+
width: inherit;
|
23334
23524
|
}
|
23335
|
-
|
23525
|
+
|
23526
|
+
.v-navigation-drawer__scrim {
|
23336
23527
|
position: absolute;
|
23337
23528
|
top: 0;
|
23338
23529
|
left: 0;
|
23339
23530
|
width: 100%;
|
23340
23531
|
height: 100%;
|
23532
|
+
background: black;
|
23533
|
+
opacity: 0.2;
|
23534
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23535
|
+
z-index: 1;
|
23341
23536
|
}
|
23342
|
-
|
23343
|
-
|
23344
|
-
|
23345
|
-
|
23346
|
-
|
23347
|
-
--v-layout-top: 0px;
|
23348
|
-
--v-layout-bottom: 0px;
|
23349
|
-
}.v-locale-provider {
|
23350
|
-
display: contents;
|
23351
|
-
}.v-menu > .v-overlay__content {
|
23352
|
-
display: flex;
|
23353
|
-
flex-direction: column;
|
23354
|
-
}
|
23355
|
-
.v-menu > .v-overlay__content {
|
23356
|
-
border-radius: 4px;
|
23357
|
-
}
|
23358
|
-
.v-menu > .v-overlay__content > .v-card,
|
23359
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
23360
|
-
.v-menu > .v-overlay__content > .v-list {
|
23361
|
-
background: rgb(var(--v-theme-surface));
|
23362
|
-
border-radius: inherit;
|
23363
|
-
overflow: auto;
|
23364
|
-
height: 100%;
|
23365
|
-
}
|
23366
|
-
.v-menu > .v-overlay__content > .v-card,
|
23367
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
23368
|
-
.v-menu > .v-overlay__content > .v-list {
|
23369
|
-
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
23370
|
-
}.v-messages {
|
23371
|
-
flex: 1 1 auto;
|
23372
|
-
font-size: 12px;
|
23373
|
-
min-height: 14px;
|
23374
|
-
min-width: 1px;
|
23375
|
-
opacity: var(--v-medium-emphasis-opacity);
|
23376
|
-
position: relative;
|
23377
|
-
}
|
23378
|
-
.v-messages__message {
|
23379
|
-
line-height: 12px;
|
23380
|
-
word-break: break-word;
|
23381
|
-
overflow-wrap: break-word;
|
23382
|
-
word-wrap: break-word;
|
23383
|
-
-webkit-hyphens: auto;
|
23384
|
-
hyphens: auto;
|
23385
|
-
transition-duration: 150ms;
|
23537
|
+
|
23538
|
+
.v-navigation-drawer__prepend,
|
23539
|
+
.v-navigation-drawer__append {
|
23540
|
+
flex: none;
|
23541
|
+
overflow: hidden;
|
23386
23542
|
}.v-otp-input {
|
23387
23543
|
align-items: center;
|
23388
23544
|
display: flex;
|
@@ -23441,191 +23597,185 @@ textarea.v-field__input::placeholder {
|
|
23441
23597
|
}
|
23442
23598
|
.v-otp-input__loader .v-progress-linear {
|
23443
23599
|
position: absolute;
|
23444
|
-
}.v-
|
23445
|
-
|
23446
|
-
|
23447
|
-
|
23448
|
-
flex-direction: column;
|
23449
|
-
height: 100%;
|
23450
|
-
max-width: 100%;
|
23451
|
-
pointer-events: auto;
|
23452
|
-
transition-duration: 0.2s;
|
23453
|
-
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
23454
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
23600
|
+
}.v-overlay-container {
|
23601
|
+
contain: layout;
|
23602
|
+
left: 0;
|
23603
|
+
pointer-events: none;
|
23455
23604
|
position: absolute;
|
23605
|
+
top: 0;
|
23606
|
+
display: contents;
|
23456
23607
|
}
|
23457
|
-
|
23458
|
-
|
23459
|
-
|
23460
|
-
border-width: 0;
|
23461
|
-
}
|
23462
|
-
.v-navigation-drawer--border {
|
23463
|
-
border-width: thin;
|
23464
|
-
box-shadow: none;
|
23465
|
-
}
|
23466
|
-
.v-navigation-drawer {
|
23467
|
-
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));
|
23468
|
-
}
|
23469
|
-
.v-navigation-drawer {
|
23470
|
-
background: rgb(var(--v-theme-surface));
|
23471
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23472
|
-
}
|
23473
|
-
.v-navigation-drawer--rounded {
|
23474
|
-
border-radius: 4px;
|
23475
|
-
}
|
23476
|
-
.v-navigation-drawer--top, .v-navigation-drawer--bottom {
|
23477
|
-
max-height: -webkit-fill-available;
|
23478
|
-
overflow-y: auto;
|
23608
|
+
|
23609
|
+
.v-overlay-scroll-blocked {
|
23610
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
23479
23611
|
}
|
23480
|
-
.v-
|
23481
|
-
|
23482
|
-
border-bottom-width: thin;
|
23612
|
+
.v-overlay-scroll-blocked:not(html) {
|
23613
|
+
overflow-y: hidden !important;
|
23483
23614
|
}
|
23484
|
-
.v-
|
23485
|
-
|
23486
|
-
|
23615
|
+
html.v-overlay-scroll-blocked {
|
23616
|
+
position: fixed;
|
23617
|
+
top: var(--v-body-scroll-y);
|
23618
|
+
left: var(--v-body-scroll-x);
|
23619
|
+
width: 100%;
|
23620
|
+
height: 100%;
|
23487
23621
|
}
|
23488
|
-
|
23489
|
-
|
23622
|
+
|
23623
|
+
.v-overlay {
|
23624
|
+
border-radius: inherit;
|
23625
|
+
display: flex;
|
23490
23626
|
left: 0;
|
23491
|
-
|
23492
|
-
|
23493
|
-
}
|
23494
|
-
.v-navigation-drawer--right {
|
23627
|
+
pointer-events: none;
|
23628
|
+
position: fixed;
|
23495
23629
|
top: 0;
|
23496
|
-
|
23630
|
+
bottom: 0;
|
23497
23631
|
right: 0;
|
23498
|
-
border-left-width: thin;
|
23499
23632
|
}
|
23500
|
-
|
23501
|
-
|
23633
|
+
|
23634
|
+
.v-overlay__content {
|
23635
|
+
outline: none;
|
23636
|
+
position: absolute;
|
23637
|
+
pointer-events: auto;
|
23638
|
+
contain: layout;
|
23502
23639
|
}
|
23503
|
-
|
23504
|
-
|
23640
|
+
|
23641
|
+
.v-overlay__scrim {
|
23642
|
+
pointer-events: auto;
|
23643
|
+
background: rgb(var(--v-theme-on-surface));
|
23644
|
+
border-radius: inherit;
|
23645
|
+
bottom: 0;
|
23646
|
+
left: 0;
|
23647
|
+
opacity: var(--v-overlay-opacity, 0.32);
|
23648
|
+
position: fixed;
|
23649
|
+
right: 0;
|
23650
|
+
top: 0;
|
23505
23651
|
}
|
23506
|
-
|
23507
|
-
|
23508
|
-
|
23652
|
+
|
23653
|
+
.v-overlay--absolute {
|
23654
|
+
position: absolute;
|
23509
23655
|
}
|
23510
|
-
|
23511
|
-
|
23656
|
+
|
23657
|
+
.v-overlay--contained .v-overlay__scrim {
|
23658
|
+
position: absolute;
|
23512
23659
|
}
|
23513
23660
|
|
23514
|
-
.v-
|
23515
|
-
|
23516
|
-
|
23517
|
-
|
23518
|
-
overflow
|
23519
|
-
overflow-y: auto;
|
23661
|
+
.v-overlay--scroll-blocked {
|
23662
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
23663
|
+
}.v-parallax {
|
23664
|
+
position: relative;
|
23665
|
+
overflow: hidden;
|
23520
23666
|
}
|
23521
|
-
|
23522
|
-
|
23523
|
-
|
23524
|
-
|
23525
|
-
|
23526
|
-
|
23667
|
+
.v-parallax--active > .v-img__img {
|
23668
|
+
will-change: transform;
|
23669
|
+
}.v-pagination__list {
|
23670
|
+
display: inline-flex;
|
23671
|
+
list-style-type: none;
|
23672
|
+
justify-content: center;
|
23527
23673
|
width: 100%;
|
23528
|
-
z-index: -1;
|
23529
23674
|
}
|
23530
|
-
.v-
|
23531
|
-
|
23532
|
-
|
23533
|
-
|
23675
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23676
|
+
margin: 0.3rem;
|
23677
|
+
}.v-progress-circular {
|
23678
|
+
align-items: center;
|
23679
|
+
display: inline-flex;
|
23680
|
+
justify-content: center;
|
23681
|
+
position: relative;
|
23682
|
+
vertical-align: middle;
|
23534
23683
|
}
|
23535
|
-
|
23536
|
-
|
23684
|
+
.v-progress-circular > svg {
|
23685
|
+
width: 100%;
|
23686
|
+
height: 100%;
|
23687
|
+
margin: auto;
|
23537
23688
|
position: absolute;
|
23538
23689
|
top: 0;
|
23690
|
+
bottom: 0;
|
23539
23691
|
left: 0;
|
23540
|
-
|
23541
|
-
|
23542
|
-
|
23543
|
-
|
23544
|
-
|
23692
|
+
right: 0;
|
23693
|
+
z-index: 0;
|
23694
|
+
}
|
23695
|
+
|
23696
|
+
.v-progress-circular__content {
|
23697
|
+
align-items: center;
|
23698
|
+
display: flex;
|
23699
|
+
justify-content: center;
|
23700
|
+
}
|
23701
|
+
|
23702
|
+
.v-progress-circular__underlay {
|
23703
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23704
|
+
stroke: currentColor;
|
23545
23705
|
z-index: 1;
|
23546
23706
|
}
|
23547
23707
|
|
23548
|
-
.v-
|
23549
|
-
|
23550
|
-
|
23551
|
-
|
23552
|
-
}.v-overlay-container {
|
23553
|
-
contain: layout;
|
23554
|
-
left: 0;
|
23555
|
-
pointer-events: none;
|
23556
|
-
position: absolute;
|
23557
|
-
top: 0;
|
23558
|
-
display: contents;
|
23708
|
+
.v-progress-circular__overlay {
|
23709
|
+
stroke: currentColor;
|
23710
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23711
|
+
z-index: 2;
|
23559
23712
|
}
|
23560
23713
|
|
23561
|
-
.v-
|
23562
|
-
|
23714
|
+
.v-progress-circular--size-x-small {
|
23715
|
+
height: 16px;
|
23716
|
+
width: 16px;
|
23563
23717
|
}
|
23564
|
-
.v-
|
23565
|
-
|
23718
|
+
.v-progress-circular--size-small {
|
23719
|
+
height: 24px;
|
23720
|
+
width: 24px;
|
23566
23721
|
}
|
23567
|
-
|
23568
|
-
|
23569
|
-
|
23570
|
-
left: var(--v-body-scroll-x);
|
23571
|
-
width: 100%;
|
23572
|
-
height: 100%;
|
23722
|
+
.v-progress-circular--size-default {
|
23723
|
+
height: 32px;
|
23724
|
+
width: 32px;
|
23573
23725
|
}
|
23574
|
-
|
23575
|
-
|
23576
|
-
|
23577
|
-
display: flex;
|
23578
|
-
left: 0;
|
23579
|
-
pointer-events: none;
|
23580
|
-
position: fixed;
|
23581
|
-
top: 0;
|
23582
|
-
bottom: 0;
|
23583
|
-
right: 0;
|
23726
|
+
.v-progress-circular--size-large {
|
23727
|
+
height: 48px;
|
23728
|
+
width: 48px;
|
23584
23729
|
}
|
23585
|
-
|
23586
|
-
|
23587
|
-
|
23588
|
-
position: absolute;
|
23589
|
-
pointer-events: auto;
|
23590
|
-
contain: layout;
|
23730
|
+
.v-progress-circular--size-x-large {
|
23731
|
+
height: 64px;
|
23732
|
+
width: 64px;
|
23591
23733
|
}
|
23592
23734
|
|
23593
|
-
.v-
|
23594
|
-
|
23595
|
-
|
23596
|
-
|
23597
|
-
bottom: 0;
|
23598
|
-
left: 0;
|
23599
|
-
opacity: var(--v-overlay-opacity, 0.32);
|
23600
|
-
position: fixed;
|
23601
|
-
right: 0;
|
23602
|
-
top: 0;
|
23735
|
+
.v-progress-circular--indeterminate > svg {
|
23736
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
23737
|
+
transform-origin: center center;
|
23738
|
+
transition: all 0.2s ease-in-out;
|
23603
23739
|
}
|
23604
|
-
|
23605
|
-
.
|
23606
|
-
|
23740
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23741
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23742
|
+
stroke-dasharray: 25, 200;
|
23743
|
+
stroke-dashoffset: 0;
|
23744
|
+
stroke-linecap: round;
|
23745
|
+
transform-origin: center center;
|
23746
|
+
transform: rotate(-90deg);
|
23607
23747
|
}
|
23608
23748
|
|
23609
|
-
.v-
|
23610
|
-
|
23749
|
+
.v-progress-circular--disable-shrink > svg {
|
23750
|
+
animation-duration: 0.7s;
|
23751
|
+
}
|
23752
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23753
|
+
animation: none;
|
23611
23754
|
}
|
23612
23755
|
|
23613
|
-
.v-
|
23614
|
-
|
23615
|
-
|
23616
|
-
position: relative;
|
23617
|
-
overflow: hidden;
|
23756
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23757
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23758
|
+
animation-play-state: paused !important;
|
23618
23759
|
}
|
23619
|
-
|
23620
|
-
|
23621
|
-
|
23622
|
-
|
23623
|
-
|
23624
|
-
|
23625
|
-
|
23760
|
+
|
23761
|
+
@keyframes progress-circular-dash {
|
23762
|
+
0% {
|
23763
|
+
stroke-dasharray: 1, 200;
|
23764
|
+
stroke-dashoffset: 0px;
|
23765
|
+
}
|
23766
|
+
50% {
|
23767
|
+
stroke-dasharray: 100, 200;
|
23768
|
+
stroke-dashoffset: -15px;
|
23769
|
+
}
|
23770
|
+
100% {
|
23771
|
+
stroke-dasharray: 100, 200;
|
23772
|
+
stroke-dashoffset: -124px;
|
23773
|
+
}
|
23626
23774
|
}
|
23627
|
-
|
23628
|
-
|
23775
|
+
@keyframes progress-circular-rotate {
|
23776
|
+
100% {
|
23777
|
+
transform: rotate(270deg);
|
23778
|
+
}
|
23629
23779
|
}.v-progress-linear {
|
23630
23780
|
background: transparent;
|
23631
23781
|
overflow: hidden;
|
@@ -23854,169 +24004,67 @@ html.v-overlay-scroll-blocked {
|
|
23854
24004
|
0% {
|
23855
24005
|
background-position-x: var(--v-progress-linear-height);
|
23856
24006
|
}
|
23857
|
-
}.v-
|
23858
|
-
|
23859
|
-
display: inline-flex;
|
23860
|
-
justify-content: center;
|
23861
|
-
position: relative;
|
23862
|
-
vertical-align: middle;
|
24007
|
+
}.v-radio-group > .v-input__control {
|
24008
|
+
flex-direction: column;
|
23863
24009
|
}
|
23864
|
-
.v-
|
24010
|
+
.v-radio-group > .v-input__control > .v-label {
|
24011
|
+
margin-inline-start: 16px;
|
24012
|
+
}
|
24013
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24014
|
+
padding-inline-start: 6px;
|
24015
|
+
margin-top: 8px;
|
24016
|
+
}
|
24017
|
+
.v-radio-group .v-input__details {
|
24018
|
+
padding-inline: 16px;
|
24019
|
+
}.v-slider .v-slider__container input {
|
24020
|
+
cursor: default;
|
24021
|
+
padding: 0;
|
24022
|
+
width: 100%;
|
24023
|
+
display: none;
|
24024
|
+
}
|
24025
|
+
.v-slider > .v-input__append,
|
24026
|
+
.v-slider > .v-input__prepend {
|
24027
|
+
padding: 0;
|
24028
|
+
}
|
24029
|
+
|
24030
|
+
.v-slider__container {
|
24031
|
+
position: relative;
|
24032
|
+
min-height: inherit;
|
23865
24033
|
width: 100%;
|
23866
24034
|
height: 100%;
|
23867
|
-
|
23868
|
-
|
23869
|
-
|
23870
|
-
|
23871
|
-
|
23872
|
-
|
23873
|
-
|
24035
|
+
display: flex;
|
24036
|
+
justify-content: center;
|
24037
|
+
align-items: center;
|
24038
|
+
cursor: pointer;
|
24039
|
+
}
|
24040
|
+
.v-input--disabled .v-slider__container {
|
24041
|
+
opacity: var(--v-disabled-opacity);
|
24042
|
+
}
|
24043
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
24044
|
+
color: rgb(var(--v-theme-error));
|
23874
24045
|
}
|
23875
24046
|
|
23876
|
-
.v-
|
24047
|
+
.v-slider.v-input--horizontal {
|
23877
24048
|
align-items: center;
|
24049
|
+
margin-inline: 8px 8px;
|
24050
|
+
}
|
24051
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
24052
|
+
min-height: 32px;
|
23878
24053
|
display: flex;
|
23879
|
-
|
24054
|
+
align-items: center;
|
23880
24055
|
}
|
23881
24056
|
|
23882
|
-
.v-
|
23883
|
-
|
23884
|
-
|
23885
|
-
|
24057
|
+
.v-slider.v-input--vertical {
|
24058
|
+
justify-content: center;
|
24059
|
+
margin-top: 12px;
|
24060
|
+
margin-bottom: 12px;
|
24061
|
+
}
|
24062
|
+
.v-slider.v-input--vertical > .v-input__control {
|
24063
|
+
min-height: 300px;
|
23886
24064
|
}
|
23887
24065
|
|
23888
|
-
.v-
|
23889
|
-
|
23890
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23891
|
-
z-index: 2;
|
23892
|
-
}
|
23893
|
-
|
23894
|
-
.v-progress-circular--size-x-small {
|
23895
|
-
height: 16px;
|
23896
|
-
width: 16px;
|
23897
|
-
}
|
23898
|
-
.v-progress-circular--size-small {
|
23899
|
-
height: 24px;
|
23900
|
-
width: 24px;
|
23901
|
-
}
|
23902
|
-
.v-progress-circular--size-default {
|
23903
|
-
height: 32px;
|
23904
|
-
width: 32px;
|
23905
|
-
}
|
23906
|
-
.v-progress-circular--size-large {
|
23907
|
-
height: 48px;
|
23908
|
-
width: 48px;
|
23909
|
-
}
|
23910
|
-
.v-progress-circular--size-x-large {
|
23911
|
-
height: 64px;
|
23912
|
-
width: 64px;
|
23913
|
-
}
|
23914
|
-
|
23915
|
-
.v-progress-circular--indeterminate > svg {
|
23916
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
23917
|
-
transform-origin: center center;
|
23918
|
-
transition: all 0.2s ease-in-out;
|
23919
|
-
}
|
23920
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23921
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23922
|
-
stroke-dasharray: 25, 200;
|
23923
|
-
stroke-dashoffset: 0;
|
23924
|
-
stroke-linecap: round;
|
23925
|
-
transform-origin: center center;
|
23926
|
-
transform: rotate(-90deg);
|
23927
|
-
}
|
23928
|
-
|
23929
|
-
.v-progress-circular--disable-shrink > svg {
|
23930
|
-
animation-duration: 0.7s;
|
23931
|
-
}
|
23932
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23933
|
-
animation: none;
|
23934
|
-
}
|
23935
|
-
|
23936
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23937
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23938
|
-
animation-play-state: paused !important;
|
23939
|
-
}
|
23940
|
-
|
23941
|
-
@keyframes progress-circular-dash {
|
23942
|
-
0% {
|
23943
|
-
stroke-dasharray: 1, 200;
|
23944
|
-
stroke-dashoffset: 0px;
|
23945
|
-
}
|
23946
|
-
50% {
|
23947
|
-
stroke-dasharray: 100, 200;
|
23948
|
-
stroke-dashoffset: -15px;
|
23949
|
-
}
|
23950
|
-
100% {
|
23951
|
-
stroke-dasharray: 100, 200;
|
23952
|
-
stroke-dashoffset: -124px;
|
23953
|
-
}
|
23954
|
-
}
|
23955
|
-
@keyframes progress-circular-rotate {
|
23956
|
-
100% {
|
23957
|
-
transform: rotate(270deg);
|
23958
|
-
}
|
23959
|
-
}.v-radio-group > .v-input__control {
|
23960
|
-
flex-direction: column;
|
23961
|
-
}
|
23962
|
-
.v-radio-group > .v-input__control > .v-label {
|
23963
|
-
margin-inline-start: 16px;
|
23964
|
-
}
|
23965
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
23966
|
-
padding-inline-start: 6px;
|
23967
|
-
margin-top: 8px;
|
23968
|
-
}
|
23969
|
-
.v-radio-group .v-input__details {
|
23970
|
-
padding-inline: 16px;
|
23971
|
-
}.v-slider .v-slider__container input {
|
23972
|
-
cursor: default;
|
23973
|
-
padding: 0;
|
23974
|
-
width: 100%;
|
23975
|
-
display: none;
|
23976
|
-
}
|
23977
|
-
.v-slider > .v-input__append,
|
23978
|
-
.v-slider > .v-input__prepend {
|
23979
|
-
padding: 0;
|
23980
|
-
}
|
23981
|
-
|
23982
|
-
.v-slider__container {
|
23983
|
-
position: relative;
|
23984
|
-
min-height: inherit;
|
23985
|
-
width: 100%;
|
23986
|
-
height: 100%;
|
23987
|
-
display: flex;
|
23988
|
-
justify-content: center;
|
23989
|
-
align-items: center;
|
23990
|
-
cursor: pointer;
|
23991
|
-
}
|
23992
|
-
.v-input--disabled .v-slider__container {
|
23993
|
-
opacity: var(--v-disabled-opacity);
|
23994
|
-
}
|
23995
|
-
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
23996
|
-
color: rgb(var(--v-theme-error));
|
23997
|
-
}
|
23998
|
-
|
23999
|
-
.v-slider.v-input--horizontal {
|
24000
|
-
align-items: center;
|
24001
|
-
margin-inline: 8px 8px;
|
24002
|
-
}
|
24003
|
-
.v-slider.v-input--horizontal > .v-input__control {
|
24004
|
-
min-height: 32px;
|
24005
|
-
display: flex;
|
24006
|
-
align-items: center;
|
24007
|
-
}
|
24008
|
-
|
24009
|
-
.v-slider.v-input--vertical {
|
24010
|
-
justify-content: center;
|
24011
|
-
margin-top: 12px;
|
24012
|
-
margin-bottom: 12px;
|
24013
|
-
}
|
24014
|
-
.v-slider.v-input--vertical > .v-input__control {
|
24015
|
-
min-height: 300px;
|
24016
|
-
}
|
24017
|
-
|
24018
|
-
.v-slider.v-input--disabled {
|
24019
|
-
pointer-events: none;
|
24066
|
+
.v-slider.v-input--disabled {
|
24067
|
+
pointer-events: none;
|
24020
24068
|
}
|
24021
24069
|
|
24022
24070
|
.v-slider--has-labels > .v-input__control {
|
@@ -24764,91 +24812,273 @@ html.v-overlay-scroll-blocked {
|
|
24764
24812
|
}
|
24765
24813
|
.v-speed-dial__content > *:nth-child(10) {
|
24766
24814
|
transition-delay: 0.45s;
|
24767
|
-
}.v-
|
24768
|
-
|
24769
|
-
}
|
24770
|
-
.v-stepper.v-sheet {
|
24771
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
24772
|
-
}
|
24773
|
-
.v-stepper.v-sheet {
|
24774
|
-
border-radius: 4px;
|
24775
|
-
}
|
24776
|
-
.v-stepper.v-sheet.v-stepper--flat {
|
24777
|
-
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));
|
24815
|
+
}.v-switch .v-label {
|
24816
|
+
padding-inline-start: 10px;
|
24778
24817
|
}
|
24779
24818
|
|
24780
|
-
.v-
|
24781
|
-
align-items: center;
|
24819
|
+
.v-switch__loader {
|
24782
24820
|
display: flex;
|
24783
|
-
position: relative;
|
24784
|
-
overflow-x: auto;
|
24785
|
-
justify-content: space-between;
|
24786
|
-
z-index: 1;
|
24787
24821
|
}
|
24788
|
-
.v-
|
24789
|
-
|
24790
|
-
}
|
24791
|
-
.v-stepper-header .v-divider {
|
24792
|
-
margin: 0 -16px;
|
24822
|
+
.v-switch__loader .v-progress-circular {
|
24823
|
+
color: rgb(var(--v-theme-surface));
|
24793
24824
|
}
|
24794
|
-
|
24795
|
-
|
24825
|
+
|
24826
|
+
.v-switch__track,
|
24827
|
+
.v-switch__thumb {
|
24828
|
+
transition: none;
|
24796
24829
|
}
|
24797
|
-
.v-
|
24798
|
-
|
24830
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
24831
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
24832
|
+
background-color: rgb(var(--v-theme-error));
|
24833
|
+
color: rgb(var(--v-theme-on-error));
|
24799
24834
|
}
|
24800
|
-
|
24801
|
-
|
24835
|
+
|
24836
|
+
.v-switch__track-true {
|
24837
|
+
margin-inline-end: auto;
|
24802
24838
|
}
|
24803
|
-
.v-
|
24804
|
-
|
24805
|
-
margin: 35px -67px 0;
|
24839
|
+
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
|
24840
|
+
opacity: 0;
|
24806
24841
|
}
|
24807
24842
|
|
24808
|
-
.v-
|
24809
|
-
margin:
|
24843
|
+
.v-switch__track-false {
|
24844
|
+
margin-inline-start: auto;
|
24845
|
+
}
|
24846
|
+
.v-selection-control--dirty .v-switch__track-false {
|
24847
|
+
opacity: 0;
|
24810
24848
|
}
|
24811
24849
|
|
24812
|
-
.v-
|
24813
|
-
display: flex;
|
24850
|
+
.v-switch__track {
|
24851
|
+
display: inline-flex;
|
24814
24852
|
align-items: center;
|
24815
|
-
|
24816
|
-
padding:
|
24853
|
+
font-size: 0.5rem;
|
24854
|
+
padding: 0 5px;
|
24855
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
24856
|
+
border-radius: 9999px;
|
24857
|
+
height: 14px;
|
24858
|
+
opacity: 0.6;
|
24859
|
+
min-width: 36px;
|
24860
|
+
cursor: pointer;
|
24861
|
+
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
24817
24862
|
}
|
24818
|
-
.v-
|
24819
|
-
|
24863
|
+
.v-switch--inset .v-switch__track {
|
24864
|
+
border-radius: 9999px;
|
24865
|
+
font-size: 0.75rem;
|
24866
|
+
height: 32px;
|
24867
|
+
min-width: 52px;
|
24820
24868
|
}
|
24821
|
-
|
24822
|
-
|
24823
|
-
}.v-stepper-item {
|
24869
|
+
|
24870
|
+
.v-switch__thumb {
|
24824
24871
|
align-items: center;
|
24825
|
-
|
24826
|
-
|
24827
|
-
|
24828
|
-
|
24829
|
-
|
24830
|
-
|
24872
|
+
background-color: rgb(var(--v-theme-surface-bright));
|
24873
|
+
color: rgb(var(--v-theme-on-surface-bright));
|
24874
|
+
border-radius: 50%;
|
24875
|
+
display: flex;
|
24876
|
+
font-size: 0.75rem;
|
24877
|
+
height: 20px;
|
24878
|
+
justify-content: center;
|
24879
|
+
width: 20px;
|
24880
|
+
pointer-events: none;
|
24881
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
24831
24882
|
position: relative;
|
24832
|
-
|
24833
|
-
transition-property: opacity;
|
24834
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
24883
|
+
overflow: hidden;
|
24835
24884
|
}
|
24836
|
-
.v-
|
24837
|
-
|
24885
|
+
.v-switch:not(.v-switch--inset) .v-switch__thumb {
|
24886
|
+
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
24838
24887
|
}
|
24839
|
-
.v-
|
24840
|
-
|
24888
|
+
.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
|
24889
|
+
background: rgb(var(--v-theme-surface-variant));
|
24890
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
24841
24891
|
}
|
24842
|
-
|
24843
|
-
.v-
|
24844
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24845
|
-
}
|
24892
|
+
.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
|
24893
|
+
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));
|
24846
24894
|
}
|
24847
|
-
.v-
|
24848
|
-
|
24895
|
+
.v-switch--inset .v-switch__thumb {
|
24896
|
+
height: 24px;
|
24897
|
+
width: 24px;
|
24898
|
+
transform: scale(0.6666666667);
|
24849
24899
|
}
|
24850
|
-
.v-
|
24851
|
-
|
24900
|
+
.v-switch--inset .v-switch__thumb--filled {
|
24901
|
+
transform: none;
|
24902
|
+
}
|
24903
|
+
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
24904
|
+
transform: none;
|
24905
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
24906
|
+
}
|
24907
|
+
|
24908
|
+
.v-switch.v-input {
|
24909
|
+
flex: 0 1 auto;
|
24910
|
+
}
|
24911
|
+
.v-switch .v-selection-control {
|
24912
|
+
min-height: var(--v-input-control-height);
|
24913
|
+
}
|
24914
|
+
.v-switch .v-selection-control__input {
|
24915
|
+
border-radius: 50%;
|
24916
|
+
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
24917
|
+
position: absolute;
|
24918
|
+
}
|
24919
|
+
.v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
|
24920
|
+
transform: translateX(-10px);
|
24921
|
+
}
|
24922
|
+
|
24923
|
+
.v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
|
24924
|
+
transform: translateX(10px);
|
24925
|
+
}
|
24926
|
+
|
24927
|
+
.v-switch .v-selection-control__input .v-icon {
|
24928
|
+
position: absolute;
|
24929
|
+
}
|
24930
|
+
.v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
|
24931
|
+
transform: translateX(10px);
|
24932
|
+
}
|
24933
|
+
|
24934
|
+
.v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
|
24935
|
+
transform: translateX(-10px);
|
24936
|
+
}
|
24937
|
+
|
24938
|
+
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
24939
|
+
transform: scale(0.8);
|
24940
|
+
}
|
24941
|
+
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
24942
|
+
transform: scale(0.75);
|
24943
|
+
box-shadow: none;
|
24944
|
+
}
|
24945
|
+
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
24946
|
+
width: auto;
|
24947
|
+
}
|
24948
|
+
.v-switch.v-input--vertical .v-label {
|
24949
|
+
min-width: max-content;
|
24950
|
+
}
|
24951
|
+
.v-switch.v-input--vertical .v-selection-control__wrapper {
|
24952
|
+
transform: rotate(-90deg);
|
24953
|
+
}
|
24954
|
+
|
24955
|
+
@media (forced-colors: active) {
|
24956
|
+
.v-switch .v-switch__loader .v-progress-circular {
|
24957
|
+
color: currentColor;
|
24958
|
+
}
|
24959
|
+
.v-switch .v-switch__thumb {
|
24960
|
+
background-color: buttontext;
|
24961
|
+
}
|
24962
|
+
.v-switch .v-switch__track,
|
24963
|
+
.v-switch .v-switch__thumb {
|
24964
|
+
border: 1px solid;
|
24965
|
+
color: buttontext;
|
24966
|
+
}
|
24967
|
+
.v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
|
24968
|
+
background-color: highlight;
|
24969
|
+
}
|
24970
|
+
.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
|
24971
|
+
background-color: highlight;
|
24972
|
+
}
|
24973
|
+
.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
|
24974
|
+
.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
|
24975
|
+
color: highlight;
|
24976
|
+
}
|
24977
|
+
.v-switch.v-switch--inset .v-switch__track {
|
24978
|
+
border-width: 2px;
|
24979
|
+
}
|
24980
|
+
.v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
|
24981
|
+
background-color: highlighttext;
|
24982
|
+
color: highlighttext;
|
24983
|
+
}
|
24984
|
+
.v-switch.v-input--disabled .v-switch__thumb {
|
24985
|
+
background-color: graytext;
|
24986
|
+
}
|
24987
|
+
.v-switch.v-input--disabled .v-switch__track,
|
24988
|
+
.v-switch.v-input--disabled .v-switch__thumb {
|
24989
|
+
color: graytext;
|
24990
|
+
}
|
24991
|
+
.v-switch.v-switch--loading .v-switch__thumb {
|
24992
|
+
background-color: canvas;
|
24993
|
+
}
|
24994
|
+
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
24995
|
+
border-width: 0;
|
24996
|
+
}
|
24997
|
+
}.v-stepper.v-sheet {
|
24998
|
+
overflow: hidden;
|
24999
|
+
}
|
25000
|
+
.v-stepper.v-sheet {
|
25001
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
25002
|
+
}
|
25003
|
+
.v-stepper.v-sheet {
|
25004
|
+
border-radius: 4px;
|
25005
|
+
}
|
25006
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
25007
|
+
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));
|
25008
|
+
}
|
25009
|
+
|
25010
|
+
.v-stepper-header {
|
25011
|
+
align-items: center;
|
25012
|
+
display: flex;
|
25013
|
+
position: relative;
|
25014
|
+
overflow-x: auto;
|
25015
|
+
justify-content: space-between;
|
25016
|
+
z-index: 1;
|
25017
|
+
}
|
25018
|
+
.v-stepper-header {
|
25019
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
25020
|
+
}
|
25021
|
+
.v-stepper-header .v-divider {
|
25022
|
+
margin: 0 -16px;
|
25023
|
+
}
|
25024
|
+
.v-stepper-header .v-divider:last-child {
|
25025
|
+
margin-inline-end: 0;
|
25026
|
+
}
|
25027
|
+
.v-stepper-header .v-divider:first-child {
|
25028
|
+
margin-inline-start: 0;
|
25029
|
+
}
|
25030
|
+
.v-stepper--alt-labels .v-stepper-header {
|
25031
|
+
height: auto;
|
25032
|
+
}
|
25033
|
+
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
25034
|
+
align-self: flex-start;
|
25035
|
+
margin: 35px -67px 0;
|
25036
|
+
}
|
25037
|
+
|
25038
|
+
.v-stepper-window {
|
25039
|
+
margin: 1.5rem;
|
25040
|
+
}
|
25041
|
+
|
25042
|
+
.v-stepper-actions {
|
25043
|
+
display: flex;
|
25044
|
+
align-items: center;
|
25045
|
+
justify-content: space-between;
|
25046
|
+
padding: 1rem;
|
25047
|
+
}
|
25048
|
+
.v-stepper .v-stepper-actions {
|
25049
|
+
padding: 0 1.5rem 1rem;
|
25050
|
+
}
|
25051
|
+
.v-stepper-window-item .v-stepper-actions {
|
25052
|
+
padding: 1.5rem 0 0;
|
25053
|
+
}.v-stepper-item {
|
25054
|
+
align-items: center;
|
25055
|
+
align-self: stretch;
|
25056
|
+
display: inline-flex;
|
25057
|
+
flex: none;
|
25058
|
+
outline: none;
|
25059
|
+
opacity: var(--v-medium-emphasis-opacity);
|
25060
|
+
padding: 1.5rem;
|
25061
|
+
position: relative;
|
25062
|
+
transition-duration: 0.2s;
|
25063
|
+
transition-property: opacity;
|
25064
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25065
|
+
}
|
25066
|
+
.v-stepper-item:hover > .v-stepper-item__overlay {
|
25067
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
25068
|
+
}
|
25069
|
+
.v-stepper-item:focus-visible > .v-stepper-item__overlay {
|
25070
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
25071
|
+
}
|
25072
|
+
@supports not selector(:focus-visible) {
|
25073
|
+
.v-stepper-item:focus > .v-stepper-item__overlay {
|
25074
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
25075
|
+
}
|
25076
|
+
}
|
25077
|
+
.v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
|
25078
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
25079
|
+
}
|
25080
|
+
.v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
|
25081
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
24852
25082
|
}
|
24853
25083
|
.v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
|
24854
25084
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
@@ -24939,6 +25169,49 @@ html.v-overlay-scroll-blocked {
|
|
24939
25169
|
left: 0;
|
24940
25170
|
width: 100%;
|
24941
25171
|
height: 100%;
|
25172
|
+
}.v-system-bar {
|
25173
|
+
align-items: center;
|
25174
|
+
display: flex;
|
25175
|
+
flex: 1 1 auto;
|
25176
|
+
height: 24px;
|
25177
|
+
justify-content: flex-end;
|
25178
|
+
max-width: 100%;
|
25179
|
+
padding-inline: 8px;
|
25180
|
+
position: relative;
|
25181
|
+
text-align: end;
|
25182
|
+
width: 100%;
|
25183
|
+
}
|
25184
|
+
.v-system-bar .v-icon {
|
25185
|
+
opacity: var(--v-medium-emphasis-opacity);
|
25186
|
+
}
|
25187
|
+
.v-system-bar {
|
25188
|
+
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));
|
25189
|
+
}
|
25190
|
+
.v-system-bar--absolute {
|
25191
|
+
position: absolute;
|
25192
|
+
}
|
25193
|
+
.v-system-bar--fixed {
|
25194
|
+
position: fixed;
|
25195
|
+
}
|
25196
|
+
.v-system-bar {
|
25197
|
+
background: rgba(var(--v-theme-surface-light));
|
25198
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25199
|
+
}
|
25200
|
+
.v-system-bar {
|
25201
|
+
font-size: 0.75rem;
|
25202
|
+
font-weight: 400;
|
25203
|
+
letter-spacing: 0.0333333333em;
|
25204
|
+
line-height: 1.667;
|
25205
|
+
text-transform: none;
|
25206
|
+
}
|
25207
|
+
.v-system-bar--rounded {
|
25208
|
+
border-radius: 0;
|
25209
|
+
}
|
25210
|
+
.v-system-bar--window {
|
25211
|
+
height: 32px;
|
25212
|
+
}
|
25213
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25214
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
24942
25215
|
}.v-tab.v-tab.v-btn {
|
24943
25216
|
height: var(--v-tabs-height);
|
24944
25217
|
border-radius: 0;
|
@@ -24968,188 +25241,6 @@ html.v-overlay-scroll-blocked {
|
|
24968
25241
|
top: 0;
|
24969
25242
|
height: 100%;
|
24970
25243
|
width: 2px;
|
24971
|
-
}.v-switch .v-label {
|
24972
|
-
padding-inline-start: 10px;
|
24973
|
-
}
|
24974
|
-
|
24975
|
-
.v-switch__loader {
|
24976
|
-
display: flex;
|
24977
|
-
}
|
24978
|
-
.v-switch__loader .v-progress-circular {
|
24979
|
-
color: rgb(var(--v-theme-surface));
|
24980
|
-
}
|
24981
|
-
|
24982
|
-
.v-switch__track,
|
24983
|
-
.v-switch__thumb {
|
24984
|
-
transition: none;
|
24985
|
-
}
|
24986
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
|
24987
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
|
24988
|
-
background-color: rgb(var(--v-theme-error));
|
24989
|
-
color: rgb(var(--v-theme-on-error));
|
24990
|
-
}
|
24991
|
-
|
24992
|
-
.v-switch__track-true {
|
24993
|
-
margin-inline-end: auto;
|
24994
|
-
}
|
24995
|
-
.v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
|
24996
|
-
opacity: 0;
|
24997
|
-
}
|
24998
|
-
|
24999
|
-
.v-switch__track-false {
|
25000
|
-
margin-inline-start: auto;
|
25001
|
-
}
|
25002
|
-
.v-selection-control--dirty .v-switch__track-false {
|
25003
|
-
opacity: 0;
|
25004
|
-
}
|
25005
|
-
|
25006
|
-
.v-switch__track {
|
25007
|
-
display: inline-flex;
|
25008
|
-
align-items: center;
|
25009
|
-
font-size: 0.5rem;
|
25010
|
-
padding: 0 5px;
|
25011
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
25012
|
-
border-radius: 9999px;
|
25013
|
-
height: 14px;
|
25014
|
-
opacity: 0.6;
|
25015
|
-
min-width: 36px;
|
25016
|
-
cursor: pointer;
|
25017
|
-
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
25018
|
-
}
|
25019
|
-
.v-switch--inset .v-switch__track {
|
25020
|
-
border-radius: 9999px;
|
25021
|
-
font-size: 0.75rem;
|
25022
|
-
height: 32px;
|
25023
|
-
min-width: 52px;
|
25024
|
-
}
|
25025
|
-
|
25026
|
-
.v-switch__thumb {
|
25027
|
-
align-items: center;
|
25028
|
-
background-color: rgb(var(--v-theme-surface-bright));
|
25029
|
-
color: rgb(var(--v-theme-on-surface-bright));
|
25030
|
-
border-radius: 50%;
|
25031
|
-
display: flex;
|
25032
|
-
font-size: 0.75rem;
|
25033
|
-
height: 20px;
|
25034
|
-
justify-content: center;
|
25035
|
-
width: 20px;
|
25036
|
-
pointer-events: none;
|
25037
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
25038
|
-
position: relative;
|
25039
|
-
overflow: hidden;
|
25040
|
-
}
|
25041
|
-
.v-switch:not(.v-switch--inset) .v-switch__thumb {
|
25042
|
-
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
25043
|
-
}
|
25044
|
-
.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
|
25045
|
-
background: rgb(var(--v-theme-surface-variant));
|
25046
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25047
|
-
}
|
25048
|
-
.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
|
25049
|
-
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));
|
25050
|
-
}
|
25051
|
-
.v-switch--inset .v-switch__thumb {
|
25052
|
-
height: 24px;
|
25053
|
-
width: 24px;
|
25054
|
-
transform: scale(0.6666666667);
|
25055
|
-
}
|
25056
|
-
.v-switch--inset .v-switch__thumb--filled {
|
25057
|
-
transform: none;
|
25058
|
-
}
|
25059
|
-
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
25060
|
-
transform: none;
|
25061
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
25062
|
-
}
|
25063
|
-
|
25064
|
-
.v-switch.v-input {
|
25065
|
-
flex: 0 1 auto;
|
25066
|
-
}
|
25067
|
-
.v-switch .v-selection-control {
|
25068
|
-
min-height: var(--v-input-control-height);
|
25069
|
-
}
|
25070
|
-
.v-switch .v-selection-control__input {
|
25071
|
-
border-radius: 50%;
|
25072
|
-
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
25073
|
-
position: absolute;
|
25074
|
-
}
|
25075
|
-
.v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
|
25076
|
-
transform: translateX(-10px);
|
25077
|
-
}
|
25078
|
-
|
25079
|
-
.v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
|
25080
|
-
transform: translateX(10px);
|
25081
|
-
}
|
25082
|
-
|
25083
|
-
.v-switch .v-selection-control__input .v-icon {
|
25084
|
-
position: absolute;
|
25085
|
-
}
|
25086
|
-
.v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
|
25087
|
-
transform: translateX(10px);
|
25088
|
-
}
|
25089
|
-
|
25090
|
-
.v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
|
25091
|
-
transform: translateX(-10px);
|
25092
|
-
}
|
25093
|
-
|
25094
|
-
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
25095
|
-
transform: scale(0.8);
|
25096
|
-
}
|
25097
|
-
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
25098
|
-
transform: scale(0.75);
|
25099
|
-
box-shadow: none;
|
25100
|
-
}
|
25101
|
-
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
25102
|
-
width: auto;
|
25103
|
-
}
|
25104
|
-
.v-switch.v-input--vertical .v-label {
|
25105
|
-
min-width: max-content;
|
25106
|
-
}
|
25107
|
-
.v-switch.v-input--vertical .v-selection-control__wrapper {
|
25108
|
-
transform: rotate(-90deg);
|
25109
|
-
}
|
25110
|
-
|
25111
|
-
@media (forced-colors: active) {
|
25112
|
-
.v-switch .v-switch__loader .v-progress-circular {
|
25113
|
-
color: currentColor;
|
25114
|
-
}
|
25115
|
-
.v-switch .v-switch__thumb {
|
25116
|
-
background-color: buttontext;
|
25117
|
-
}
|
25118
|
-
.v-switch .v-switch__track,
|
25119
|
-
.v-switch .v-switch__thumb {
|
25120
|
-
border: 1px solid;
|
25121
|
-
color: buttontext;
|
25122
|
-
}
|
25123
|
-
.v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
|
25124
|
-
background-color: highlight;
|
25125
|
-
}
|
25126
|
-
.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
|
25127
|
-
background-color: highlight;
|
25128
|
-
}
|
25129
|
-
.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
|
25130
|
-
.v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
|
25131
|
-
color: highlight;
|
25132
|
-
}
|
25133
|
-
.v-switch.v-switch--inset .v-switch__track {
|
25134
|
-
border-width: 2px;
|
25135
|
-
}
|
25136
|
-
.v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
|
25137
|
-
background-color: highlighttext;
|
25138
|
-
color: highlighttext;
|
25139
|
-
}
|
25140
|
-
.v-switch.v-input--disabled .v-switch__thumb {
|
25141
|
-
background-color: graytext;
|
25142
|
-
}
|
25143
|
-
.v-switch.v-input--disabled .v-switch__track,
|
25144
|
-
.v-switch.v-input--disabled .v-switch__thumb {
|
25145
|
-
color: graytext;
|
25146
|
-
}
|
25147
|
-
.v-switch.v-switch--loading .v-switch__thumb {
|
25148
|
-
background-color: canvas;
|
25149
|
-
}
|
25150
|
-
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
25151
|
-
border-width: 0;
|
25152
|
-
}
|
25153
25244
|
}.v-tabs {
|
25154
25245
|
display: flex;
|
25155
25246
|
height: var(--v-tabs-height);
|
@@ -25208,57 +25299,14 @@ html.v-overlay-scroll-blocked {
|
|
25208
25299
|
.v-tabs--align-tabs-end .v-tab:last-child {
|
25209
25300
|
margin-inline-end: 0;
|
25210
25301
|
}
|
25211
|
-
|
25212
|
-
@media (max-width: 1279.98px) {
|
25213
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25214
|
-
margin-inline-start: 52px;
|
25215
|
-
}
|
25216
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25217
|
-
margin-inline-end: 52px;
|
25218
|
-
}
|
25219
|
-
}.v-system-bar {
|
25220
|
-
align-items: center;
|
25221
|
-
display: flex;
|
25222
|
-
flex: 1 1 auto;
|
25223
|
-
height: 24px;
|
25224
|
-
justify-content: flex-end;
|
25225
|
-
max-width: 100%;
|
25226
|
-
padding-inline: 8px;
|
25227
|
-
position: relative;
|
25228
|
-
text-align: end;
|
25229
|
-
width: 100%;
|
25230
|
-
}
|
25231
|
-
.v-system-bar .v-icon {
|
25232
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25233
|
-
}
|
25234
|
-
.v-system-bar {
|
25235
|
-
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));
|
25236
|
-
}
|
25237
|
-
.v-system-bar--absolute {
|
25238
|
-
position: absolute;
|
25239
|
-
}
|
25240
|
-
.v-system-bar--fixed {
|
25241
|
-
position: fixed;
|
25242
|
-
}
|
25243
|
-
.v-system-bar {
|
25244
|
-
background: rgba(var(--v-theme-surface-light));
|
25245
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25246
|
-
}
|
25247
|
-
.v-system-bar {
|
25248
|
-
font-size: 0.75rem;
|
25249
|
-
font-weight: 400;
|
25250
|
-
letter-spacing: 0.0333333333em;
|
25251
|
-
line-height: 1.667;
|
25252
|
-
text-transform: none;
|
25253
|
-
}
|
25254
|
-
.v-system-bar--rounded {
|
25255
|
-
border-radius: 0;
|
25256
|
-
}
|
25257
|
-
.v-system-bar--window {
|
25258
|
-
height: 32px;
|
25259
|
-
}
|
25260
|
-
.v-system-bar:not(.v-system-bar--absolute) {
|
25261
|
-
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25302
|
+
|
25303
|
+
@media (max-width: 1279.98px) {
|
25304
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25305
|
+
margin-inline-start: 52px;
|
25306
|
+
}
|
25307
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25308
|
+
margin-inline-end: 52px;
|
25309
|
+
}
|
25262
25310
|
}.v-table {
|
25263
25311
|
font-size: 0.875rem;
|
25264
25312
|
transition-duration: 0.28s;
|
@@ -25510,28 +25558,6 @@ html.v-overlay-scroll-blocked {
|
|
25510
25558
|
}.v-theme-provider {
|
25511
25559
|
background: rgb(var(--v-theme-background));
|
25512
25560
|
color: rgb(var(--v-theme-on-background));
|
25513
|
-
}.v-tooltip > .v-overlay__content {
|
25514
|
-
background: rgb(var(--v-theme-surface-variant));
|
25515
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25516
|
-
border-radius: 4px;
|
25517
|
-
font-size: 0.875rem;
|
25518
|
-
line-height: 1.6;
|
25519
|
-
display: inline-block;
|
25520
|
-
padding: 5px 16px;
|
25521
|
-
text-transform: initial;
|
25522
|
-
width: auto;
|
25523
|
-
opacity: 1;
|
25524
|
-
pointer-events: none;
|
25525
|
-
transition-property: opacity, transform;
|
25526
|
-
overflow-wrap: break-word;
|
25527
|
-
}
|
25528
|
-
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
25529
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
25530
|
-
transition-duration: 150ms;
|
25531
|
-
}
|
25532
|
-
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
25533
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
25534
|
-
transition-duration: 75ms;
|
25535
25561
|
}.v-timeline .v-timeline-divider__dot {
|
25536
25562
|
background: rgb(var(--v-theme-surface-light));
|
25537
25563
|
}
|
@@ -26093,6 +26119,28 @@ html.v-overlay-scroll-blocked {
|
|
26093
26119
|
}
|
26094
26120
|
.v-toolbar-items > .v-btn {
|
26095
26121
|
border-radius: 0;
|
26122
|
+
}.v-tooltip > .v-overlay__content {
|
26123
|
+
background: rgb(var(--v-theme-surface-variant));
|
26124
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26125
|
+
border-radius: 4px;
|
26126
|
+
font-size: 0.875rem;
|
26127
|
+
line-height: 1.6;
|
26128
|
+
display: inline-block;
|
26129
|
+
padding: 5px 16px;
|
26130
|
+
text-transform: initial;
|
26131
|
+
width: auto;
|
26132
|
+
opacity: 1;
|
26133
|
+
pointer-events: none;
|
26134
|
+
transition-property: opacity, transform;
|
26135
|
+
overflow-wrap: break-word;
|
26136
|
+
}
|
26137
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
26138
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
26139
|
+
transition-duration: 150ms;
|
26140
|
+
}
|
26141
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26142
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26143
|
+
transition-duration: 75ms;
|
26096
26144
|
}.v-virtual-scroll {
|
26097
26145
|
display: block;
|
26098
26146
|
flex: 1 1 auto;
|
@@ -26172,73 +26220,25 @@ html.v-overlay-scroll-blocked {
|
|
26172
26220
|
}
|
26173
26221
|
.v-window-y-reverse-transition-leave-to {
|
26174
26222
|
transform: translateY(100%);
|
26175
|
-
}.v-
|
26176
|
-
align-items: center;
|
26223
|
+
}.v-menu > .v-overlay__content {
|
26177
26224
|
display: flex;
|
26178
26225
|
flex-direction: column;
|
26179
|
-
justify-content: center;
|
26180
|
-
min-height: 100%;
|
26181
|
-
padding: 16px;
|
26182
|
-
}
|
26183
|
-
.v-empty-state--start {
|
26184
|
-
align-items: flex-start;
|
26185
|
-
}
|
26186
|
-
.v-empty-state--center {
|
26187
|
-
align-items: center;
|
26188
|
-
}
|
26189
|
-
.v-empty-state--end {
|
26190
|
-
align-items: flex-end;
|
26191
|
-
}
|
26192
|
-
|
26193
|
-
.v-empty-state__media {
|
26194
|
-
text-align: center;
|
26195
|
-
width: 100%;
|
26196
|
-
}
|
26197
|
-
.v-empty-state__media .v-icon {
|
26198
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
26199
|
-
}
|
26200
|
-
|
26201
|
-
.v-empty-state__headline {
|
26202
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
26203
|
-
font-size: 3.75rem;
|
26204
|
-
font-weight: 300;
|
26205
|
-
line-height: 1;
|
26206
|
-
text-align: center;
|
26207
|
-
margin-bottom: 8px;
|
26208
|
-
}
|
26209
|
-
.v-empty-state--mobile .v-empty-state__headline {
|
26210
|
-
font-size: 2.125rem;
|
26211
|
-
}
|
26212
|
-
|
26213
|
-
.v-empty-state__title {
|
26214
|
-
font-size: 1.25rem;
|
26215
|
-
font-weight: 500;
|
26216
|
-
line-height: 1.6;
|
26217
|
-
margin-bottom: 4px;
|
26218
|
-
text-align: center;
|
26219
|
-
}
|
26220
|
-
|
26221
|
-
.v-empty-state__text {
|
26222
|
-
font-size: 0.875rem;
|
26223
|
-
font-weight: 400;
|
26224
|
-
line-height: 1.425;
|
26225
|
-
padding: 0 16px;
|
26226
|
-
text-align: center;
|
26227
26226
|
}
|
26228
|
-
|
26229
|
-
|
26230
|
-
padding: 24px 0;
|
26227
|
+
.v-menu > .v-overlay__content {
|
26228
|
+
border-radius: 4px;
|
26231
26229
|
}
|
26232
|
-
|
26233
|
-
.v-
|
26234
|
-
|
26235
|
-
|
26236
|
-
|
26230
|
+
.v-menu > .v-overlay__content > .v-card,
|
26231
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
26232
|
+
.v-menu > .v-overlay__content > .v-list {
|
26233
|
+
background: rgb(var(--v-theme-surface));
|
26234
|
+
border-radius: inherit;
|
26235
|
+
overflow: auto;
|
26236
|
+
height: 100%;
|
26237
26237
|
}
|
26238
|
-
|
26239
|
-
.v-
|
26240
|
-
|
26241
|
-
|
26238
|
+
.v-menu > .v-overlay__content > .v-card,
|
26239
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
26240
|
+
.v-menu > .v-overlay__content > .v-list {
|
26241
|
+
box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
26242
26242
|
}.v-color-picker-canvas {
|
26243
26243
|
display: flex;
|
26244
26244
|
position: relative;
|
@@ -26261,6 +26261,69 @@ html.v-overlay-scroll-blocked {
|
|
26261
26261
|
}
|
26262
26262
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26263
26263
|
will-change: transform;
|
26264
|
+
}.v-color-picker-edit {
|
26265
|
+
display: flex;
|
26266
|
+
margin-top: 24px;
|
26267
|
+
}
|
26268
|
+
|
26269
|
+
.v-color-picker-edit__input {
|
26270
|
+
width: 100%;
|
26271
|
+
display: flex;
|
26272
|
+
flex-wrap: wrap;
|
26273
|
+
justify-content: center;
|
26274
|
+
text-align: center;
|
26275
|
+
}
|
26276
|
+
.v-color-picker-edit__input:not(:last-child) {
|
26277
|
+
margin-inline-end: 8px;
|
26278
|
+
}
|
26279
|
+
.v-color-picker-edit__input input {
|
26280
|
+
border-radius: 4px;
|
26281
|
+
margin-bottom: 8px;
|
26282
|
+
min-width: 0;
|
26283
|
+
outline: none;
|
26284
|
+
text-align: center;
|
26285
|
+
width: 100%;
|
26286
|
+
height: 32px;
|
26287
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26288
|
+
color: rgba(var(--v-theme-on-surface));
|
26289
|
+
}
|
26290
|
+
.v-color-picker-edit__input span {
|
26291
|
+
font-size: 0.75rem;
|
26292
|
+
}.v-color-picker-swatches {
|
26293
|
+
overflow-y: auto;
|
26294
|
+
}
|
26295
|
+
.v-color-picker-swatches > div {
|
26296
|
+
display: flex;
|
26297
|
+
flex-wrap: wrap;
|
26298
|
+
justify-content: center;
|
26299
|
+
padding: 8px;
|
26300
|
+
}
|
26301
|
+
|
26302
|
+
.v-color-picker-swatches__swatch {
|
26303
|
+
display: flex;
|
26304
|
+
flex-direction: column;
|
26305
|
+
margin-bottom: 10px;
|
26306
|
+
}
|
26307
|
+
|
26308
|
+
.v-color-picker-swatches__color {
|
26309
|
+
position: relative;
|
26310
|
+
height: 18px;
|
26311
|
+
max-height: 18px;
|
26312
|
+
width: 45px;
|
26313
|
+
margin: 2px 4px;
|
26314
|
+
border-radius: 2px;
|
26315
|
+
-webkit-user-select: none;
|
26316
|
+
user-select: none;
|
26317
|
+
overflow: hidden;
|
26318
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26319
|
+
cursor: pointer;
|
26320
|
+
}
|
26321
|
+
.v-color-picker-swatches__color > div {
|
26322
|
+
display: flex;
|
26323
|
+
align-items: center;
|
26324
|
+
justify-content: center;
|
26325
|
+
width: 100%;
|
26326
|
+
height: 100%;
|
26264
26327
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26265
26328
|
background-color: transparent !important;
|
26266
26329
|
}
|
@@ -26331,69 +26394,6 @@ html.v-overlay-scroll-blocked {
|
|
26331
26394
|
.v-color-picker-preview__eye-dropper {
|
26332
26395
|
position: relative;
|
26333
26396
|
margin-right: 12px;
|
26334
|
-
}.v-color-picker-edit {
|
26335
|
-
display: flex;
|
26336
|
-
margin-top: 24px;
|
26337
|
-
}
|
26338
|
-
|
26339
|
-
.v-color-picker-edit__input {
|
26340
|
-
width: 100%;
|
26341
|
-
display: flex;
|
26342
|
-
flex-wrap: wrap;
|
26343
|
-
justify-content: center;
|
26344
|
-
text-align: center;
|
26345
|
-
}
|
26346
|
-
.v-color-picker-edit__input:not(:last-child) {
|
26347
|
-
margin-inline-end: 8px;
|
26348
|
-
}
|
26349
|
-
.v-color-picker-edit__input input {
|
26350
|
-
border-radius: 4px;
|
26351
|
-
margin-bottom: 8px;
|
26352
|
-
min-width: 0;
|
26353
|
-
outline: none;
|
26354
|
-
text-align: center;
|
26355
|
-
width: 100%;
|
26356
|
-
height: 32px;
|
26357
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26358
|
-
color: rgba(var(--v-theme-on-surface));
|
26359
|
-
}
|
26360
|
-
.v-color-picker-edit__input span {
|
26361
|
-
font-size: 0.75rem;
|
26362
|
-
}.v-color-picker-swatches {
|
26363
|
-
overflow-y: auto;
|
26364
|
-
}
|
26365
|
-
.v-color-picker-swatches > div {
|
26366
|
-
display: flex;
|
26367
|
-
flex-wrap: wrap;
|
26368
|
-
justify-content: center;
|
26369
|
-
padding: 8px;
|
26370
|
-
}
|
26371
|
-
|
26372
|
-
.v-color-picker-swatches__swatch {
|
26373
|
-
display: flex;
|
26374
|
-
flex-direction: column;
|
26375
|
-
margin-bottom: 10px;
|
26376
|
-
}
|
26377
|
-
|
26378
|
-
.v-color-picker-swatches__color {
|
26379
|
-
position: relative;
|
26380
|
-
height: 18px;
|
26381
|
-
max-height: 18px;
|
26382
|
-
width: 45px;
|
26383
|
-
margin: 2px 4px;
|
26384
|
-
border-radius: 2px;
|
26385
|
-
-webkit-user-select: none;
|
26386
|
-
user-select: none;
|
26387
|
-
overflow: hidden;
|
26388
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26389
|
-
cursor: pointer;
|
26390
|
-
}
|
26391
|
-
.v-color-picker-swatches__color > div {
|
26392
|
-
display: flex;
|
26393
|
-
align-items: center;
|
26394
|
-
justify-content: center;
|
26395
|
-
width: 100%;
|
26396
|
-
height: 100%;
|
26397
26397
|
}.v-picker.v-sheet {
|
26398
26398
|
display: grid;
|
26399
26399
|
grid-auto-rows: min-content;
|