@vuetify/nightly 3.7.4-master.2024-11-06 → 3.7.4-master.2024-11-10
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 +2881 -2881
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +5762 -5762
- package/dist/vuetify-labs.css +5752 -5752
- package/dist/vuetify-labs.esm.js +3 -3
- package/dist/vuetify-labs.js +3 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1240 -1240
- 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/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-10
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17978,6 +17978,18 @@ html.overflow-y-hidden {
|
|
17978
17978
|
.v-ripple__animation--out {
|
17979
17979
|
transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
|
17980
17980
|
opacity: 0;
|
17981
|
+
}.v-app-bar {
|
17982
|
+
display: flex;
|
17983
|
+
}
|
17984
|
+
.v-app-bar.v-toolbar {
|
17985
|
+
background: rgb(var(--v-theme-surface));
|
17986
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
17987
|
+
}
|
17988
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
17989
|
+
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));
|
17990
|
+
}
|
17991
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
17992
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
17981
17993
|
}.v-application {
|
17982
17994
|
display: flex;
|
17983
17995
|
background: rgb(var(--v-theme-background));
|
@@ -18210,18 +18222,6 @@ html.overflow-y-hidden {
|
|
18210
18222
|
text-transform: none;
|
18211
18223
|
word-break: normal;
|
18212
18224
|
word-wrap: break-word;
|
18213
|
-
}.v-app-bar {
|
18214
|
-
display: flex;
|
18215
|
-
}
|
18216
|
-
.v-app-bar.v-toolbar {
|
18217
|
-
background: rgb(var(--v-theme-surface));
|
18218
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18219
|
-
}
|
18220
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
18221
|
-
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));
|
18222
|
-
}
|
18223
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
18224
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
18225
18225
|
}.v-autocomplete .v-field .v-text-field__prefix,
|
18226
18226
|
.v-autocomplete .v-field .v-text-field__suffix,
|
18227
18227
|
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
@@ -18380,6 +18380,112 @@ html.overflow-y-hidden {
|
|
18380
18380
|
display: inline-flex;
|
18381
18381
|
justify-content: center;
|
18382
18382
|
margin: 0 4px;
|
18383
|
+
}.v-avatar {
|
18384
|
+
flex: none;
|
18385
|
+
align-items: center;
|
18386
|
+
display: inline-flex;
|
18387
|
+
justify-content: center;
|
18388
|
+
line-height: normal;
|
18389
|
+
overflow: hidden;
|
18390
|
+
position: relative;
|
18391
|
+
text-align: center;
|
18392
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18393
|
+
transition-property: width, height;
|
18394
|
+
vertical-align: middle;
|
18395
|
+
}
|
18396
|
+
.v-avatar.v-avatar--size-x-small {
|
18397
|
+
--v-avatar-height: 24px;
|
18398
|
+
}
|
18399
|
+
.v-avatar.v-avatar--size-small {
|
18400
|
+
--v-avatar-height: 32px;
|
18401
|
+
}
|
18402
|
+
.v-avatar.v-avatar--size-default {
|
18403
|
+
--v-avatar-height: 40px;
|
18404
|
+
}
|
18405
|
+
.v-avatar.v-avatar--size-large {
|
18406
|
+
--v-avatar-height: 48px;
|
18407
|
+
}
|
18408
|
+
.v-avatar.v-avatar--size-x-large {
|
18409
|
+
--v-avatar-height: 56px;
|
18410
|
+
}
|
18411
|
+
.v-avatar.v-avatar--density-default {
|
18412
|
+
height: calc(var(--v-avatar-height) + 0px);
|
18413
|
+
width: calc(var(--v-avatar-height) + 0px);
|
18414
|
+
}
|
18415
|
+
.v-avatar.v-avatar--density-comfortable {
|
18416
|
+
height: calc(var(--v-avatar-height) + -4px);
|
18417
|
+
width: calc(var(--v-avatar-height) + -4px);
|
18418
|
+
}
|
18419
|
+
.v-avatar.v-avatar--density-compact {
|
18420
|
+
height: calc(var(--v-avatar-height) + -8px);
|
18421
|
+
width: calc(var(--v-avatar-height) + -8px);
|
18422
|
+
}
|
18423
|
+
.v-avatar {
|
18424
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18425
|
+
border-style: solid;
|
18426
|
+
border-width: 0;
|
18427
|
+
}
|
18428
|
+
.v-avatar--border {
|
18429
|
+
border-width: thin;
|
18430
|
+
box-shadow: none;
|
18431
|
+
}
|
18432
|
+
.v-avatar {
|
18433
|
+
border-radius: 50%;
|
18434
|
+
}
|
18435
|
+
.v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
|
18436
|
+
background: transparent;
|
18437
|
+
color: inherit;
|
18438
|
+
}
|
18439
|
+
.v-avatar--variant-plain {
|
18440
|
+
opacity: 0.62;
|
18441
|
+
}
|
18442
|
+
.v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
|
18443
|
+
opacity: 1;
|
18444
|
+
}
|
18445
|
+
.v-avatar--variant-plain .v-avatar__overlay {
|
18446
|
+
display: none;
|
18447
|
+
}
|
18448
|
+
.v-avatar--variant-elevated, .v-avatar--variant-flat {
|
18449
|
+
background: var(--v-theme-surface);
|
18450
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
18451
|
+
}
|
18452
|
+
.v-avatar--variant-elevated {
|
18453
|
+
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));
|
18454
|
+
}
|
18455
|
+
.v-avatar--variant-flat {
|
18456
|
+
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));
|
18457
|
+
}
|
18458
|
+
.v-avatar--variant-outlined {
|
18459
|
+
border: thin solid currentColor;
|
18460
|
+
}
|
18461
|
+
.v-avatar--variant-text .v-avatar__overlay {
|
18462
|
+
background: currentColor;
|
18463
|
+
}
|
18464
|
+
.v-avatar--variant-tonal .v-avatar__underlay {
|
18465
|
+
background: currentColor;
|
18466
|
+
opacity: var(--v-activated-opacity);
|
18467
|
+
border-radius: inherit;
|
18468
|
+
top: 0;
|
18469
|
+
right: 0;
|
18470
|
+
bottom: 0;
|
18471
|
+
left: 0;
|
18472
|
+
pointer-events: none;
|
18473
|
+
}
|
18474
|
+
.v-avatar .v-avatar__underlay {
|
18475
|
+
position: absolute;
|
18476
|
+
}
|
18477
|
+
.v-avatar--rounded {
|
18478
|
+
border-radius: 4px;
|
18479
|
+
}
|
18480
|
+
.v-avatar--start {
|
18481
|
+
margin-inline-end: 8px;
|
18482
|
+
}
|
18483
|
+
.v-avatar--end {
|
18484
|
+
margin-inline-start: 8px;
|
18485
|
+
}
|
18486
|
+
.v-avatar .v-img {
|
18487
|
+
height: 100%;
|
18488
|
+
width: 100%;
|
18383
18489
|
}.v-banner {
|
18384
18490
|
display: grid;
|
18385
18491
|
flex: 1 1;
|
@@ -18546,112 +18652,6 @@ html.overflow-y-hidden {
|
|
18546
18652
|
}
|
18547
18653
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18548
18654
|
align-self: flex-start;
|
18549
|
-
}.v-avatar {
|
18550
|
-
flex: none;
|
18551
|
-
align-items: center;
|
18552
|
-
display: inline-flex;
|
18553
|
-
justify-content: center;
|
18554
|
-
line-height: normal;
|
18555
|
-
overflow: hidden;
|
18556
|
-
position: relative;
|
18557
|
-
text-align: center;
|
18558
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18559
|
-
transition-property: width, height;
|
18560
|
-
vertical-align: middle;
|
18561
|
-
}
|
18562
|
-
.v-avatar.v-avatar--size-x-small {
|
18563
|
-
--v-avatar-height: 24px;
|
18564
|
-
}
|
18565
|
-
.v-avatar.v-avatar--size-small {
|
18566
|
-
--v-avatar-height: 32px;
|
18567
|
-
}
|
18568
|
-
.v-avatar.v-avatar--size-default {
|
18569
|
-
--v-avatar-height: 40px;
|
18570
|
-
}
|
18571
|
-
.v-avatar.v-avatar--size-large {
|
18572
|
-
--v-avatar-height: 48px;
|
18573
|
-
}
|
18574
|
-
.v-avatar.v-avatar--size-x-large {
|
18575
|
-
--v-avatar-height: 56px;
|
18576
|
-
}
|
18577
|
-
.v-avatar.v-avatar--density-default {
|
18578
|
-
height: calc(var(--v-avatar-height) + 0px);
|
18579
|
-
width: calc(var(--v-avatar-height) + 0px);
|
18580
|
-
}
|
18581
|
-
.v-avatar.v-avatar--density-comfortable {
|
18582
|
-
height: calc(var(--v-avatar-height) + -4px);
|
18583
|
-
width: calc(var(--v-avatar-height) + -4px);
|
18584
|
-
}
|
18585
|
-
.v-avatar.v-avatar--density-compact {
|
18586
|
-
height: calc(var(--v-avatar-height) + -8px);
|
18587
|
-
width: calc(var(--v-avatar-height) + -8px);
|
18588
|
-
}
|
18589
|
-
.v-avatar {
|
18590
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18591
|
-
border-style: solid;
|
18592
|
-
border-width: 0;
|
18593
|
-
}
|
18594
|
-
.v-avatar--border {
|
18595
|
-
border-width: thin;
|
18596
|
-
box-shadow: none;
|
18597
|
-
}
|
18598
|
-
.v-avatar {
|
18599
|
-
border-radius: 50%;
|
18600
|
-
}
|
18601
|
-
.v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
|
18602
|
-
background: transparent;
|
18603
|
-
color: inherit;
|
18604
|
-
}
|
18605
|
-
.v-avatar--variant-plain {
|
18606
|
-
opacity: 0.62;
|
18607
|
-
}
|
18608
|
-
.v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
|
18609
|
-
opacity: 1;
|
18610
|
-
}
|
18611
|
-
.v-avatar--variant-plain .v-avatar__overlay {
|
18612
|
-
display: none;
|
18613
|
-
}
|
18614
|
-
.v-avatar--variant-elevated, .v-avatar--variant-flat {
|
18615
|
-
background: var(--v-theme-surface);
|
18616
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
18617
|
-
}
|
18618
|
-
.v-avatar--variant-elevated {
|
18619
|
-
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));
|
18620
|
-
}
|
18621
|
-
.v-avatar--variant-flat {
|
18622
|
-
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));
|
18623
|
-
}
|
18624
|
-
.v-avatar--variant-outlined {
|
18625
|
-
border: thin solid currentColor;
|
18626
|
-
}
|
18627
|
-
.v-avatar--variant-text .v-avatar__overlay {
|
18628
|
-
background: currentColor;
|
18629
|
-
}
|
18630
|
-
.v-avatar--variant-tonal .v-avatar__underlay {
|
18631
|
-
background: currentColor;
|
18632
|
-
opacity: var(--v-activated-opacity);
|
18633
|
-
border-radius: inherit;
|
18634
|
-
top: 0;
|
18635
|
-
right: 0;
|
18636
|
-
bottom: 0;
|
18637
|
-
left: 0;
|
18638
|
-
pointer-events: none;
|
18639
|
-
}
|
18640
|
-
.v-avatar .v-avatar__underlay {
|
18641
|
-
position: absolute;
|
18642
|
-
}
|
18643
|
-
.v-avatar--rounded {
|
18644
|
-
border-radius: 4px;
|
18645
|
-
}
|
18646
|
-
.v-avatar--start {
|
18647
|
-
margin-inline-end: 8px;
|
18648
|
-
}
|
18649
|
-
.v-avatar--end {
|
18650
|
-
margin-inline-start: 8px;
|
18651
|
-
}
|
18652
|
-
.v-avatar .v-img {
|
18653
|
-
height: 100%;
|
18654
|
-
width: 100%;
|
18655
18655
|
}.v-bottom-navigation {
|
18656
18656
|
display: flex;
|
18657
18657
|
max-width: 100%;
|
@@ -18715,18 +18715,75 @@ html.overflow-y-hidden {
|
|
18715
18715
|
}
|
18716
18716
|
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18717
18717
|
transform: translateY(0.5rem);
|
18718
|
-
}.
|
18719
|
-
|
18718
|
+
}.v-breadcrumbs {
|
18719
|
+
display: flex;
|
18720
|
+
align-items: center;
|
18721
|
+
line-height: 1.6;
|
18722
|
+
padding: 16px 12px;
|
18720
18723
|
}
|
18721
|
-
.
|
18722
|
-
|
18724
|
+
.v-breadcrumbs--rounded {
|
18725
|
+
border-radius: 4px;
|
18726
|
+
}
|
18727
|
+
.v-breadcrumbs--density-default {
|
18728
|
+
padding-top: 16px;
|
18729
|
+
padding-bottom: 16px;
|
18723
18730
|
}
|
18724
18731
|
|
18725
|
-
.v-
|
18726
|
-
|
18727
|
-
|
18728
|
-
|
18729
|
-
|
18732
|
+
.v-breadcrumbs--density-comfortable {
|
18733
|
+
padding-top: 12px;
|
18734
|
+
padding-bottom: 12px;
|
18735
|
+
}
|
18736
|
+
|
18737
|
+
.v-breadcrumbs--density-compact {
|
18738
|
+
padding-top: 8px;
|
18739
|
+
padding-bottom: 8px;
|
18740
|
+
}
|
18741
|
+
|
18742
|
+
.v-breadcrumbs__prepend {
|
18743
|
+
align-items: center;
|
18744
|
+
display: inline-flex;
|
18745
|
+
}
|
18746
|
+
|
18747
|
+
.v-breadcrumbs-item {
|
18748
|
+
align-items: center;
|
18749
|
+
color: inherit;
|
18750
|
+
display: inline-flex;
|
18751
|
+
padding: 0 4px;
|
18752
|
+
text-decoration: none;
|
18753
|
+
vertical-align: middle;
|
18754
|
+
}
|
18755
|
+
.v-breadcrumbs-item--disabled {
|
18756
|
+
opacity: var(--v-disabled-opacity);
|
18757
|
+
pointer-events: none;
|
18758
|
+
}
|
18759
|
+
.v-breadcrumbs-item--link {
|
18760
|
+
color: inherit;
|
18761
|
+
text-decoration: none;
|
18762
|
+
}
|
18763
|
+
.v-breadcrumbs-item--link:hover {
|
18764
|
+
text-decoration: underline;
|
18765
|
+
}
|
18766
|
+
.v-breadcrumbs-item .v-icon {
|
18767
|
+
font-size: 1rem;
|
18768
|
+
margin-inline: -4px 2px;
|
18769
|
+
}
|
18770
|
+
|
18771
|
+
.v-breadcrumbs-divider {
|
18772
|
+
display: inline-block;
|
18773
|
+
padding: 0 8px;
|
18774
|
+
vertical-align: middle;
|
18775
|
+
}.bottom-sheet-transition-enter-from {
|
18776
|
+
transform: translateY(100%);
|
18777
|
+
}
|
18778
|
+
.bottom-sheet-transition-leave-to {
|
18779
|
+
transform: translateY(100%);
|
18780
|
+
}
|
18781
|
+
|
18782
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18783
|
+
align-self: flex-end;
|
18784
|
+
border-radius: 0;
|
18785
|
+
flex: 0 1 auto;
|
18786
|
+
left: 0;
|
18730
18787
|
right: 0;
|
18731
18788
|
margin-inline: 0;
|
18732
18789
|
margin-bottom: 0;
|
@@ -19173,63 +19230,6 @@ html.overflow-y-hidden {
|
|
19173
19230
|
}
|
19174
19231
|
.v-pagination .v-pagination__item--is-active .v-btn__overlay {
|
19175
19232
|
opacity: var(--v-border-opacity);
|
19176
|
-
}.v-breadcrumbs {
|
19177
|
-
display: flex;
|
19178
|
-
align-items: center;
|
19179
|
-
line-height: 1.6;
|
19180
|
-
padding: 16px 12px;
|
19181
|
-
}
|
19182
|
-
.v-breadcrumbs--rounded {
|
19183
|
-
border-radius: 4px;
|
19184
|
-
}
|
19185
|
-
.v-breadcrumbs--density-default {
|
19186
|
-
padding-top: 16px;
|
19187
|
-
padding-bottom: 16px;
|
19188
|
-
}
|
19189
|
-
|
19190
|
-
.v-breadcrumbs--density-comfortable {
|
19191
|
-
padding-top: 12px;
|
19192
|
-
padding-bottom: 12px;
|
19193
|
-
}
|
19194
|
-
|
19195
|
-
.v-breadcrumbs--density-compact {
|
19196
|
-
padding-top: 8px;
|
19197
|
-
padding-bottom: 8px;
|
19198
|
-
}
|
19199
|
-
|
19200
|
-
.v-breadcrumbs__prepend {
|
19201
|
-
align-items: center;
|
19202
|
-
display: inline-flex;
|
19203
|
-
}
|
19204
|
-
|
19205
|
-
.v-breadcrumbs-item {
|
19206
|
-
align-items: center;
|
19207
|
-
color: inherit;
|
19208
|
-
display: inline-flex;
|
19209
|
-
padding: 0 4px;
|
19210
|
-
text-decoration: none;
|
19211
|
-
vertical-align: middle;
|
19212
|
-
}
|
19213
|
-
.v-breadcrumbs-item--disabled {
|
19214
|
-
opacity: var(--v-disabled-opacity);
|
19215
|
-
pointer-events: none;
|
19216
|
-
}
|
19217
|
-
.v-breadcrumbs-item--link {
|
19218
|
-
color: inherit;
|
19219
|
-
text-decoration: none;
|
19220
|
-
}
|
19221
|
-
.v-breadcrumbs-item--link:hover {
|
19222
|
-
text-decoration: underline;
|
19223
|
-
}
|
19224
|
-
.v-breadcrumbs-item .v-icon {
|
19225
|
-
font-size: 1rem;
|
19226
|
-
margin-inline: -4px 2px;
|
19227
|
-
}
|
19228
|
-
|
19229
|
-
.v-breadcrumbs-divider {
|
19230
|
-
display: inline-block;
|
19231
|
-
padding: 0 8px;
|
19232
|
-
vertical-align: middle;
|
19233
19233
|
}.v-btn-group {
|
19234
19234
|
display: inline-flex;
|
19235
19235
|
flex-wrap: nowrap;
|
@@ -19294,11 +19294,22 @@ html.overflow-y-hidden {
|
|
19294
19294
|
}
|
19295
19295
|
.v-btn-group--tile {
|
19296
19296
|
border-radius: 0;
|
19297
|
-
}.v-
|
19298
|
-
|
19297
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19298
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19299
19299
|
}
|
19300
|
-
.v-
|
19301
|
-
|
19300
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19301
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19302
|
+
}
|
19303
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19304
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19305
|
+
}
|
19306
|
+
@supports not selector(:focus-visible) {
|
19307
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19308
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19309
|
+
}
|
19310
|
+
}
|
19311
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19312
|
+
opacity: 1;
|
19302
19313
|
}.v-card {
|
19303
19314
|
display: block;
|
19304
19315
|
overflow: hidden;
|
@@ -19607,22 +19618,6 @@ html.overflow-y-hidden {
|
|
19607
19618
|
pointer-events: none;
|
19608
19619
|
opacity: 0;
|
19609
19620
|
transition: opacity 0.2s ease-in-out;
|
19610
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19611
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19612
|
-
}
|
19613
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19614
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19615
|
-
}
|
19616
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19617
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19618
|
-
}
|
19619
|
-
@supports not selector(:focus-visible) {
|
19620
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19621
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19622
|
-
}
|
19623
|
-
}
|
19624
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19625
|
-
opacity: 1;
|
19626
19621
|
}.v-carousel {
|
19627
19622
|
overflow: hidden;
|
19628
19623
|
position: relative;
|
@@ -19688,6 +19683,29 @@ html.overflow-y-hidden {
|
|
19688
19683
|
flex-direction: column;
|
19689
19684
|
height: 100% !important;
|
19690
19685
|
width: 50px;
|
19686
|
+
}.v-checkbox.v-input {
|
19687
|
+
flex: 0 1 auto;
|
19688
|
+
}
|
19689
|
+
.v-checkbox .v-selection-control {
|
19690
|
+
min-height: var(--v-input-control-height);
|
19691
|
+
}.v-chip-group {
|
19692
|
+
display: flex;
|
19693
|
+
max-width: 100%;
|
19694
|
+
min-width: 0;
|
19695
|
+
overflow-x: auto;
|
19696
|
+
padding: 4px 0;
|
19697
|
+
}
|
19698
|
+
.v-chip-group .v-chip {
|
19699
|
+
margin: 4px 8px 4px 0;
|
19700
|
+
}
|
19701
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
19702
|
+
opacity: var(--v-activated-opacity);
|
19703
|
+
}
|
19704
|
+
|
19705
|
+
.v-chip-group--column .v-slide-group__content {
|
19706
|
+
white-space: normal;
|
19707
|
+
flex-wrap: wrap;
|
19708
|
+
max-width: 100%;
|
19691
19709
|
}.v-chip {
|
19692
19710
|
align-items: center;
|
19693
19711
|
display: inline-flex;
|
@@ -20106,6 +20124,91 @@ html.overflow-y-hidden {
|
|
20106
20124
|
|
20107
20125
|
.v-chip--label {
|
20108
20126
|
border-radius: 4px;
|
20127
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
20128
|
+
.v-combobox .v-field .v-text-field__suffix,
|
20129
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20130
|
+
cursor: text;
|
20131
|
+
}
|
20132
|
+
.v-combobox .v-field .v-field__input > input {
|
20133
|
+
flex: 1 1;
|
20134
|
+
}
|
20135
|
+
.v-combobox .v-field input {
|
20136
|
+
min-width: 64px;
|
20137
|
+
}
|
20138
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
20139
|
+
min-width: 0;
|
20140
|
+
}
|
20141
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
20142
|
+
margin-inline-end: 2px;
|
20143
|
+
}
|
20144
|
+
.v-combobox .v-combobox__selection-text {
|
20145
|
+
overflow: hidden;
|
20146
|
+
text-overflow: ellipsis;
|
20147
|
+
white-space: nowrap;
|
20148
|
+
}
|
20149
|
+
|
20150
|
+
.v-combobox__content {
|
20151
|
+
overflow: hidden;
|
20152
|
+
}
|
20153
|
+
.v-combobox__content {
|
20154
|
+
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));
|
20155
|
+
}
|
20156
|
+
.v-combobox__content {
|
20157
|
+
border-radius: 4px;
|
20158
|
+
}
|
20159
|
+
.v-combobox__mask {
|
20160
|
+
background: rgb(var(--v-theme-surface-light));
|
20161
|
+
}
|
20162
|
+
.v-combobox__selection {
|
20163
|
+
display: inline-flex;
|
20164
|
+
align-items: center;
|
20165
|
+
height: 1.5rem;
|
20166
|
+
letter-spacing: inherit;
|
20167
|
+
line-height: inherit;
|
20168
|
+
max-width: calc(100% - 2px - 2px);
|
20169
|
+
}
|
20170
|
+
.v-combobox__selection:first-child {
|
20171
|
+
margin-inline-start: 0;
|
20172
|
+
}
|
20173
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20174
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20175
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20176
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20177
|
+
top: 0px;
|
20178
|
+
}
|
20179
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
20180
|
+
opacity: var(--v-medium-emphasis-opacity);
|
20181
|
+
}
|
20182
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20183
|
+
opacity: 1;
|
20184
|
+
}
|
20185
|
+
.v-combobox--selecting-index .v-field__input > input {
|
20186
|
+
caret-color: transparent;
|
20187
|
+
}
|
20188
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20189
|
+
flex: 1 1;
|
20190
|
+
position: absolute;
|
20191
|
+
left: 0;
|
20192
|
+
right: 0;
|
20193
|
+
width: 100%;
|
20194
|
+
padding-inline: inherit;
|
20195
|
+
}
|
20196
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20197
|
+
transition: none;
|
20198
|
+
}
|
20199
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20200
|
+
opacity: 0;
|
20201
|
+
}
|
20202
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20203
|
+
opacity: 0;
|
20204
|
+
}
|
20205
|
+
.v-combobox__menu-icon {
|
20206
|
+
margin-inline-start: 4px;
|
20207
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20208
|
+
}
|
20209
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
20210
|
+
opacity: var(--v-high-emphasis-opacity);
|
20211
|
+
transform: rotate(180deg);
|
20109
20212
|
}.v-color-picker {
|
20110
20213
|
align-self: flex-start;
|
20111
20214
|
contain: content;
|
@@ -20128,24 +20231,6 @@ html.overflow-y-hidden {
|
|
20128
20231
|
}
|
20129
20232
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20130
20233
|
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
|
-
}.v-chip-group {
|
20132
|
-
display: flex;
|
20133
|
-
max-width: 100%;
|
20134
|
-
min-width: 0;
|
20135
|
-
overflow-x: auto;
|
20136
|
-
padding: 4px 0;
|
20137
|
-
}
|
20138
|
-
.v-chip-group .v-chip {
|
20139
|
-
margin: 4px 8px 4px 0;
|
20140
|
-
}
|
20141
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20142
|
-
opacity: var(--v-activated-opacity);
|
20143
|
-
}
|
20144
|
-
|
20145
|
-
.v-chip-group--column .v-slide-group__content {
|
20146
|
-
white-space: normal;
|
20147
|
-
flex-wrap: wrap;
|
20148
|
-
max-width: 100%;
|
20149
20234
|
}.v-counter {
|
20150
20235
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20151
20236
|
flex: 0 1 auto;
|
@@ -20369,6 +20454,102 @@ html.overflow-y-hidden {
|
|
20369
20454
|
}
|
20370
20455
|
.v-data-table-footer__page {
|
20371
20456
|
padding: 0 8px;
|
20457
|
+
}.v-dialog {
|
20458
|
+
align-items: center;
|
20459
|
+
justify-content: center;
|
20460
|
+
margin: auto;
|
20461
|
+
}
|
20462
|
+
.v-dialog > .v-overlay__content {
|
20463
|
+
max-height: calc(100% - 48px);
|
20464
|
+
width: calc(100% - 48px);
|
20465
|
+
max-width: calc(100% - 48px);
|
20466
|
+
margin: 24px;
|
20467
|
+
}
|
20468
|
+
.v-dialog > .v-overlay__content,
|
20469
|
+
.v-dialog > .v-overlay__content > form {
|
20470
|
+
display: flex;
|
20471
|
+
flex-direction: column;
|
20472
|
+
min-height: 0;
|
20473
|
+
}
|
20474
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20475
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
20476
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
20477
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20478
|
+
--v-scrollbar-offset: 0px;
|
20479
|
+
border-radius: 4px;
|
20480
|
+
overflow-y: auto;
|
20481
|
+
flex: 1 1 100%;
|
20482
|
+
}
|
20483
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20484
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
20485
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
20486
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20487
|
+
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20488
|
+
}
|
20489
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20490
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
20491
|
+
display: flex;
|
20492
|
+
flex-direction: column;
|
20493
|
+
}
|
20494
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
20495
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
20496
|
+
padding: 16px 24px;
|
20497
|
+
}
|
20498
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
20499
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
20500
|
+
padding-top: 0;
|
20501
|
+
}
|
20502
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
20503
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
20504
|
+
font-size: inherit;
|
20505
|
+
letter-spacing: 0.03125em;
|
20506
|
+
line-height: inherit;
|
20507
|
+
padding: 16px 24px 24px;
|
20508
|
+
}
|
20509
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-actions,
|
20510
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
|
20511
|
+
justify-content: flex-end;
|
20512
|
+
}
|
20513
|
+
|
20514
|
+
.v-dialog--fullscreen {
|
20515
|
+
--v-scrollbar-offset: 0px;
|
20516
|
+
}
|
20517
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
20518
|
+
border-radius: 0;
|
20519
|
+
margin: 0;
|
20520
|
+
padding: 0;
|
20521
|
+
width: 100%;
|
20522
|
+
height: 100%;
|
20523
|
+
max-width: 100%;
|
20524
|
+
max-height: 100%;
|
20525
|
+
overflow-y: auto;
|
20526
|
+
top: 0;
|
20527
|
+
left: 0;
|
20528
|
+
}
|
20529
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
20530
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
20531
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
20532
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
20533
|
+
min-height: 100%;
|
20534
|
+
min-width: 100%;
|
20535
|
+
border-radius: 0;
|
20536
|
+
}
|
20537
|
+
|
20538
|
+
.v-dialog--scrollable > .v-overlay__content,
|
20539
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
20540
|
+
.v-dialog--scrollable > .v-overlay__content > form,
|
20541
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
20542
|
+
display: flex;
|
20543
|
+
flex: 1 1 100%;
|
20544
|
+
flex-direction: column;
|
20545
|
+
max-height: 100%;
|
20546
|
+
max-width: 100%;
|
20547
|
+
}
|
20548
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
20549
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
20550
|
+
-webkit-backface-visibility: hidden;
|
20551
|
+
backface-visibility: hidden;
|
20552
|
+
overflow-y: auto;
|
20372
20553
|
}.v-date-picker {
|
20373
20554
|
overflow: hidden;
|
20374
20555
|
width: 328px;
|
@@ -20431,6 +20612,61 @@ html.overflow-y-hidden {
|
|
20431
20612
|
|
20432
20613
|
.v-date-picker__title {
|
20433
20614
|
display: inline-block;
|
20615
|
+
}.v-date-picker-month {
|
20616
|
+
display: flex;
|
20617
|
+
justify-content: center;
|
20618
|
+
padding: 0 12px 8px;
|
20619
|
+
--v-date-picker-month-day-diff: 4px;
|
20620
|
+
}
|
20621
|
+
|
20622
|
+
.v-date-picker-month__weeks {
|
20623
|
+
display: grid;
|
20624
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
20625
|
+
column-gap: 4px;
|
20626
|
+
font-size: 0.85rem;
|
20627
|
+
}
|
20628
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
20629
|
+
grid-row-gap: 0;
|
20630
|
+
}
|
20631
|
+
|
20632
|
+
.v-date-picker-month__weekday {
|
20633
|
+
font-size: 0.85rem;
|
20634
|
+
}
|
20635
|
+
|
20636
|
+
.v-date-picker-month__days {
|
20637
|
+
display: grid;
|
20638
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
20639
|
+
column-gap: 4px;
|
20640
|
+
flex: 1 1;
|
20641
|
+
justify-content: space-around;
|
20642
|
+
}
|
20643
|
+
|
20644
|
+
.v-date-picker-month__day {
|
20645
|
+
align-items: center;
|
20646
|
+
display: flex;
|
20647
|
+
justify-content: center;
|
20648
|
+
position: relative;
|
20649
|
+
height: 40px;
|
20650
|
+
width: 40px;
|
20651
|
+
}
|
20652
|
+
.v-date-picker-month__day--selected .v-btn {
|
20653
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
20654
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
20655
|
+
}
|
20656
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
20657
|
+
--v-btn-height: 24px;
|
20658
|
+
--v-btn-size: 0.85rem;
|
20659
|
+
}
|
20660
|
+
.v-date-picker-month__day--week {
|
20661
|
+
font-size: var(--v-btn-size);
|
20662
|
+
}
|
20663
|
+
|
20664
|
+
.v-date-picker-month__day--adjacent {
|
20665
|
+
opacity: 0.5;
|
20666
|
+
}
|
20667
|
+
|
20668
|
+
.v-date-picker-month__day--hide-adjacent {
|
20669
|
+
opacity: 0;
|
20434
20670
|
}.v-date-picker-header {
|
20435
20671
|
align-items: flex-end;
|
20436
20672
|
height: 70px;
|
@@ -20491,61 +20727,6 @@ html.overflow-y-hidden {
|
|
20491
20727
|
.date-picker-header-reverse-transition-leave-to {
|
20492
20728
|
opacity: 0;
|
20493
20729
|
transform: translate(0, 100%);
|
20494
|
-
}.v-date-picker-month {
|
20495
|
-
display: flex;
|
20496
|
-
justify-content: center;
|
20497
|
-
padding: 0 12px 8px;
|
20498
|
-
--v-date-picker-month-day-diff: 4px;
|
20499
|
-
}
|
20500
|
-
|
20501
|
-
.v-date-picker-month__weeks {
|
20502
|
-
display: grid;
|
20503
|
-
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
20504
|
-
column-gap: 4px;
|
20505
|
-
font-size: 0.85rem;
|
20506
|
-
}
|
20507
|
-
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
20508
|
-
grid-row-gap: 0;
|
20509
|
-
}
|
20510
|
-
|
20511
|
-
.v-date-picker-month__weekday {
|
20512
|
-
font-size: 0.85rem;
|
20513
|
-
}
|
20514
|
-
|
20515
|
-
.v-date-picker-month__days {
|
20516
|
-
display: grid;
|
20517
|
-
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
20518
|
-
column-gap: 4px;
|
20519
|
-
flex: 1 1;
|
20520
|
-
justify-content: space-around;
|
20521
|
-
}
|
20522
|
-
|
20523
|
-
.v-date-picker-month__day {
|
20524
|
-
align-items: center;
|
20525
|
-
display: flex;
|
20526
|
-
justify-content: center;
|
20527
|
-
position: relative;
|
20528
|
-
height: 40px;
|
20529
|
-
width: 40px;
|
20530
|
-
}
|
20531
|
-
.v-date-picker-month__day--selected .v-btn {
|
20532
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
20533
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
20534
|
-
}
|
20535
|
-
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
20536
|
-
--v-btn-height: 24px;
|
20537
|
-
--v-btn-size: 0.85rem;
|
20538
|
-
}
|
20539
|
-
.v-date-picker-month__day--week {
|
20540
|
-
font-size: var(--v-btn-size);
|
20541
|
-
}
|
20542
|
-
|
20543
|
-
.v-date-picker-month__day--adjacent {
|
20544
|
-
opacity: 0.5;
|
20545
|
-
}
|
20546
|
-
|
20547
|
-
.v-date-picker-month__day--hide-adjacent {
|
20548
|
-
opacity: 0;
|
20549
20730
|
}.v-date-picker-months {
|
20550
20731
|
height: 288px;
|
20551
20732
|
}
|
@@ -20580,102 +20761,58 @@ html.overflow-y-hidden {
|
|
20580
20761
|
}
|
20581
20762
|
.v-date-picker-years__content .v-btn {
|
20582
20763
|
padding-inline: 8px;
|
20583
|
-
}.v-
|
20584
|
-
|
20585
|
-
justify-content: center;
|
20586
|
-
margin: auto;
|
20587
|
-
}
|
20588
|
-
.v-dialog > .v-overlay__content {
|
20589
|
-
max-height: calc(100% - 48px);
|
20590
|
-
width: calc(100% - 48px);
|
20591
|
-
max-width: calc(100% - 48px);
|
20592
|
-
margin: 24px;
|
20593
|
-
}
|
20594
|
-
.v-dialog > .v-overlay__content,
|
20595
|
-
.v-dialog > .v-overlay__content > form {
|
20596
|
-
display: flex;
|
20597
|
-
flex-direction: column;
|
20598
|
-
min-height: 0;
|
20599
|
-
}
|
20600
|
-
.v-dialog > .v-overlay__content > .v-card,
|
20601
|
-
.v-dialog > .v-overlay__content > .v-sheet,
|
20602
|
-
.v-dialog > .v-overlay__content > form > .v-card,
|
20603
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20604
|
-
--v-scrollbar-offset: 0px;
|
20605
|
-
border-radius: 4px;
|
20606
|
-
overflow-y: auto;
|
20764
|
+
}.v-divider {
|
20765
|
+
display: block;
|
20607
20766
|
flex: 1 1 100%;
|
20767
|
+
height: 0px;
|
20768
|
+
max-height: 0px;
|
20769
|
+
opacity: var(--v-border-opacity);
|
20770
|
+
transition: inherit;
|
20608
20771
|
}
|
20609
|
-
.v-
|
20610
|
-
|
20611
|
-
|
20612
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20613
|
-
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20614
|
-
}
|
20615
|
-
.v-dialog > .v-overlay__content > .v-card,
|
20616
|
-
.v-dialog > .v-overlay__content > form > .v-card {
|
20617
|
-
display: flex;
|
20618
|
-
flex-direction: column;
|
20619
|
-
}
|
20620
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
20621
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
20622
|
-
padding: 16px 24px;
|
20772
|
+
.v-divider {
|
20773
|
+
border-style: solid;
|
20774
|
+
border-width: thin 0 0 0;
|
20623
20775
|
}
|
20624
|
-
.v-
|
20625
|
-
|
20626
|
-
|
20776
|
+
.v-divider--vertical {
|
20777
|
+
align-self: stretch;
|
20778
|
+
border-width: 0 thin 0 0;
|
20779
|
+
display: inline-flex;
|
20780
|
+
height: auto;
|
20781
|
+
margin-left: -1px;
|
20782
|
+
max-height: 100%;
|
20783
|
+
max-width: 0px;
|
20784
|
+
vertical-align: text-bottom;
|
20785
|
+
width: 0px;
|
20627
20786
|
}
|
20628
|
-
.v-
|
20629
|
-
|
20630
|
-
|
20631
|
-
letter-spacing: 0.03125em;
|
20632
|
-
line-height: inherit;
|
20633
|
-
padding: 16px 24px 24px;
|
20787
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
20788
|
+
max-width: calc(100% - 72px);
|
20789
|
+
margin-inline-start: 72px;
|
20634
20790
|
}
|
20635
|
-
.v-
|
20636
|
-
|
20637
|
-
|
20791
|
+
.v-divider--inset.v-divider--vertical {
|
20792
|
+
margin-bottom: 8px;
|
20793
|
+
margin-top: 8px;
|
20794
|
+
max-height: calc(100% - 16px);
|
20638
20795
|
}
|
20639
20796
|
|
20640
|
-
.v-
|
20641
|
-
|
20642
|
-
|
20643
|
-
.v-dialog--fullscreen > .v-overlay__content {
|
20644
|
-
border-radius: 0;
|
20645
|
-
margin: 0;
|
20646
|
-
padding: 0;
|
20647
|
-
width: 100%;
|
20648
|
-
height: 100%;
|
20649
|
-
max-width: 100%;
|
20650
|
-
max-height: 100%;
|
20651
|
-
overflow-y: auto;
|
20652
|
-
top: 0;
|
20653
|
-
left: 0;
|
20797
|
+
.v-divider__content {
|
20798
|
+
padding: 0 16px;
|
20799
|
+
text-wrap: nowrap;
|
20654
20800
|
}
|
20655
|
-
.v-
|
20656
|
-
|
20657
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
20658
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
20659
|
-
min-height: 100%;
|
20660
|
-
min-width: 100%;
|
20661
|
-
border-radius: 0;
|
20801
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
20802
|
+
padding: 4px 0;
|
20662
20803
|
}
|
20663
20804
|
|
20664
|
-
.v-
|
20665
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
20666
|
-
.v-dialog--scrollable > .v-overlay__content > form,
|
20667
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
20805
|
+
.v-divider__wrapper {
|
20668
20806
|
display: flex;
|
20669
|
-
|
20807
|
+
align-items: center;
|
20808
|
+
justify-content: center;
|
20809
|
+
}
|
20810
|
+
.v-divider__wrapper--vertical {
|
20670
20811
|
flex-direction: column;
|
20671
|
-
|
20672
|
-
max-width: 100%;
|
20812
|
+
height: 100%;
|
20673
20813
|
}
|
20674
|
-
.v-
|
20675
|
-
|
20676
|
-
-webkit-backface-visibility: hidden;
|
20677
|
-
backface-visibility: hidden;
|
20678
|
-
overflow-y: auto;
|
20814
|
+
.v-divider__wrapper--vertical .v-divider {
|
20815
|
+
margin: 0 auto;
|
20679
20816
|
}.v-empty-state {
|
20680
20817
|
align-items: center;
|
20681
20818
|
display: flex;
|
@@ -20743,212 +20880,6 @@ html.overflow-y-hidden {
|
|
20743
20880
|
.v-empty-state__action-btn.v-btn {
|
20744
20881
|
background-color: initial;
|
20745
20882
|
color: initial;
|
20746
|
-
}.v-combobox .v-field .v-text-field__prefix,
|
20747
|
-
.v-combobox .v-field .v-text-field__suffix,
|
20748
|
-
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20749
|
-
cursor: text;
|
20750
|
-
}
|
20751
|
-
.v-combobox .v-field .v-field__input > input {
|
20752
|
-
flex: 1 1;
|
20753
|
-
}
|
20754
|
-
.v-combobox .v-field input {
|
20755
|
-
min-width: 64px;
|
20756
|
-
}
|
20757
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
20758
|
-
min-width: 0;
|
20759
|
-
}
|
20760
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
20761
|
-
margin-inline-end: 2px;
|
20762
|
-
}
|
20763
|
-
.v-combobox .v-combobox__selection-text {
|
20764
|
-
overflow: hidden;
|
20765
|
-
text-overflow: ellipsis;
|
20766
|
-
white-space: nowrap;
|
20767
|
-
}
|
20768
|
-
|
20769
|
-
.v-combobox__content {
|
20770
|
-
overflow: hidden;
|
20771
|
-
}
|
20772
|
-
.v-combobox__content {
|
20773
|
-
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));
|
20774
|
-
}
|
20775
|
-
.v-combobox__content {
|
20776
|
-
border-radius: 4px;
|
20777
|
-
}
|
20778
|
-
.v-combobox__mask {
|
20779
|
-
background: rgb(var(--v-theme-surface-light));
|
20780
|
-
}
|
20781
|
-
.v-combobox__selection {
|
20782
|
-
display: inline-flex;
|
20783
|
-
align-items: center;
|
20784
|
-
height: 1.5rem;
|
20785
|
-
letter-spacing: inherit;
|
20786
|
-
line-height: inherit;
|
20787
|
-
max-width: calc(100% - 2px - 2px);
|
20788
|
-
}
|
20789
|
-
.v-combobox__selection:first-child {
|
20790
|
-
margin-inline-start: 0;
|
20791
|
-
}
|
20792
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20793
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20794
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20795
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20796
|
-
top: 0px;
|
20797
|
-
}
|
20798
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
20799
|
-
opacity: var(--v-medium-emphasis-opacity);
|
20800
|
-
}
|
20801
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20802
|
-
opacity: 1;
|
20803
|
-
}
|
20804
|
-
.v-combobox--selecting-index .v-field__input > input {
|
20805
|
-
caret-color: transparent;
|
20806
|
-
}
|
20807
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20808
|
-
flex: 1 1;
|
20809
|
-
position: absolute;
|
20810
|
-
left: 0;
|
20811
|
-
right: 0;
|
20812
|
-
width: 100%;
|
20813
|
-
padding-inline: inherit;
|
20814
|
-
}
|
20815
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20816
|
-
transition: none;
|
20817
|
-
}
|
20818
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20819
|
-
opacity: 0;
|
20820
|
-
}
|
20821
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20822
|
-
opacity: 0;
|
20823
|
-
}
|
20824
|
-
.v-combobox__menu-icon {
|
20825
|
-
margin-inline-start: 4px;
|
20826
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20827
|
-
}
|
20828
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
20829
|
-
opacity: var(--v-high-emphasis-opacity);
|
20830
|
-
transform: rotate(180deg);
|
20831
|
-
}.v-divider {
|
20832
|
-
display: block;
|
20833
|
-
flex: 1 1 100%;
|
20834
|
-
height: 0px;
|
20835
|
-
max-height: 0px;
|
20836
|
-
opacity: var(--v-border-opacity);
|
20837
|
-
transition: inherit;
|
20838
|
-
}
|
20839
|
-
.v-divider {
|
20840
|
-
border-style: solid;
|
20841
|
-
border-width: thin 0 0 0;
|
20842
|
-
}
|
20843
|
-
.v-divider--vertical {
|
20844
|
-
align-self: stretch;
|
20845
|
-
border-width: 0 thin 0 0;
|
20846
|
-
display: inline-flex;
|
20847
|
-
height: auto;
|
20848
|
-
margin-left: -1px;
|
20849
|
-
max-height: 100%;
|
20850
|
-
max-width: 0px;
|
20851
|
-
vertical-align: text-bottom;
|
20852
|
-
width: 0px;
|
20853
|
-
}
|
20854
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
20855
|
-
max-width: calc(100% - 72px);
|
20856
|
-
margin-inline-start: 72px;
|
20857
|
-
}
|
20858
|
-
.v-divider--inset.v-divider--vertical {
|
20859
|
-
margin-bottom: 8px;
|
20860
|
-
margin-top: 8px;
|
20861
|
-
max-height: calc(100% - 16px);
|
20862
|
-
}
|
20863
|
-
|
20864
|
-
.v-divider__content {
|
20865
|
-
padding: 0 16px;
|
20866
|
-
text-wrap: nowrap;
|
20867
|
-
}
|
20868
|
-
.v-divider__wrapper--vertical .v-divider__content {
|
20869
|
-
padding: 4px 0;
|
20870
|
-
}
|
20871
|
-
|
20872
|
-
.v-divider__wrapper {
|
20873
|
-
display: flex;
|
20874
|
-
align-items: center;
|
20875
|
-
justify-content: center;
|
20876
|
-
}
|
20877
|
-
.v-divider__wrapper--vertical {
|
20878
|
-
flex-direction: column;
|
20879
|
-
height: 100%;
|
20880
|
-
}
|
20881
|
-
.v-divider__wrapper--vertical .v-divider {
|
20882
|
-
margin: 0 auto;
|
20883
|
-
}.v-fab {
|
20884
|
-
align-items: center;
|
20885
|
-
display: inline-flex;
|
20886
|
-
flex: 1 1 auto;
|
20887
|
-
pointer-events: none;
|
20888
|
-
position: relative;
|
20889
|
-
transition-duration: 0.2s;
|
20890
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20891
|
-
vertical-align: middle;
|
20892
|
-
}
|
20893
|
-
.v-fab .v-btn {
|
20894
|
-
pointer-events: auto;
|
20895
|
-
}
|
20896
|
-
.v-fab .v-btn--variant-elevated {
|
20897
|
-
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));
|
20898
|
-
}
|
20899
|
-
.v-fab--app, .v-fab--absolute {
|
20900
|
-
display: flex;
|
20901
|
-
}
|
20902
|
-
.v-fab--start, .v-fab--left {
|
20903
|
-
justify-content: flex-start;
|
20904
|
-
}
|
20905
|
-
.v-fab--center {
|
20906
|
-
align-items: center;
|
20907
|
-
justify-content: center;
|
20908
|
-
}
|
20909
|
-
.v-fab--end, .v-fab--right {
|
20910
|
-
justify-content: flex-end;
|
20911
|
-
}
|
20912
|
-
.v-fab--bottom {
|
20913
|
-
align-items: flex-end;
|
20914
|
-
}
|
20915
|
-
.v-fab--top {
|
20916
|
-
align-items: flex-start;
|
20917
|
-
}
|
20918
|
-
.v-fab--extended .v-btn {
|
20919
|
-
border-radius: 9999px !important;
|
20920
|
-
}
|
20921
|
-
|
20922
|
-
.v-fab__container {
|
20923
|
-
align-self: center;
|
20924
|
-
display: inline-flex;
|
20925
|
-
position: absolute;
|
20926
|
-
vertical-align: middle;
|
20927
|
-
}
|
20928
|
-
.v-fab--app .v-fab__container {
|
20929
|
-
margin: 12px;
|
20930
|
-
}
|
20931
|
-
.v-fab--absolute .v-fab__container {
|
20932
|
-
position: absolute;
|
20933
|
-
z-index: 4;
|
20934
|
-
}
|
20935
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
20936
|
-
transform: translateY(-50%);
|
20937
|
-
}
|
20938
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
20939
|
-
transform: translateY(50%);
|
20940
|
-
}
|
20941
|
-
.v-fab--top .v-fab__container {
|
20942
|
-
top: 0;
|
20943
|
-
}
|
20944
|
-
.v-fab--bottom .v-fab__container {
|
20945
|
-
bottom: 0;
|
20946
|
-
}
|
20947
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
20948
|
-
left: 0;
|
20949
|
-
}
|
20950
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
20951
|
-
right: 0;
|
20952
20883
|
}.v-expansion-panel {
|
20953
20884
|
background-color: rgb(var(--v-theme-surface));
|
20954
20885
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -21165,6 +21096,75 @@ html.overflow-y-hidden {
|
|
21165
21096
|
}
|
21166
21097
|
.v-expansion-panels--tile > .v-expansion-panel {
|
21167
21098
|
border-radius: 0;
|
21099
|
+
}.v-fab {
|
21100
|
+
align-items: center;
|
21101
|
+
display: inline-flex;
|
21102
|
+
flex: 1 1 auto;
|
21103
|
+
pointer-events: none;
|
21104
|
+
position: relative;
|
21105
|
+
transition-duration: 0.2s;
|
21106
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21107
|
+
vertical-align: middle;
|
21108
|
+
}
|
21109
|
+
.v-fab .v-btn {
|
21110
|
+
pointer-events: auto;
|
21111
|
+
}
|
21112
|
+
.v-fab .v-btn--variant-elevated {
|
21113
|
+
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));
|
21114
|
+
}
|
21115
|
+
.v-fab--app, .v-fab--absolute {
|
21116
|
+
display: flex;
|
21117
|
+
}
|
21118
|
+
.v-fab--start, .v-fab--left {
|
21119
|
+
justify-content: flex-start;
|
21120
|
+
}
|
21121
|
+
.v-fab--center {
|
21122
|
+
align-items: center;
|
21123
|
+
justify-content: center;
|
21124
|
+
}
|
21125
|
+
.v-fab--end, .v-fab--right {
|
21126
|
+
justify-content: flex-end;
|
21127
|
+
}
|
21128
|
+
.v-fab--bottom {
|
21129
|
+
align-items: flex-end;
|
21130
|
+
}
|
21131
|
+
.v-fab--top {
|
21132
|
+
align-items: flex-start;
|
21133
|
+
}
|
21134
|
+
.v-fab--extended .v-btn {
|
21135
|
+
border-radius: 9999px !important;
|
21136
|
+
}
|
21137
|
+
|
21138
|
+
.v-fab__container {
|
21139
|
+
align-self: center;
|
21140
|
+
display: inline-flex;
|
21141
|
+
position: absolute;
|
21142
|
+
vertical-align: middle;
|
21143
|
+
}
|
21144
|
+
.v-fab--app .v-fab__container {
|
21145
|
+
margin: 12px;
|
21146
|
+
}
|
21147
|
+
.v-fab--absolute .v-fab__container {
|
21148
|
+
position: absolute;
|
21149
|
+
z-index: 4;
|
21150
|
+
}
|
21151
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
21152
|
+
transform: translateY(-50%);
|
21153
|
+
}
|
21154
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21155
|
+
transform: translateY(50%);
|
21156
|
+
}
|
21157
|
+
.v-fab--top .v-fab__container {
|
21158
|
+
top: 0;
|
21159
|
+
}
|
21160
|
+
.v-fab--bottom .v-fab__container {
|
21161
|
+
bottom: 0;
|
21162
|
+
}
|
21163
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21164
|
+
left: 0;
|
21165
|
+
}
|
21166
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21167
|
+
right: 0;
|
21168
21168
|
}/* region INPUT */
|
21169
21169
|
.v-field {
|
21170
21170
|
display: grid;
|
@@ -21748,36 +21748,7 @@ textarea.v-field__input::placeholder {
|
|
21748
21748
|
opacity: 0;
|
21749
21749
|
}
|
21750
21750
|
|
21751
|
-
/* endregion */.v-
|
21752
|
-
.v-file-input--hide.v-input .v-input__control,
|
21753
|
-
.v-file-input--hide.v-input .v-input__details {
|
21754
|
-
display: none;
|
21755
|
-
}
|
21756
|
-
.v-file-input--hide.v-input .v-input__prepend {
|
21757
|
-
grid-area: control;
|
21758
|
-
margin: 0 auto;
|
21759
|
-
}
|
21760
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21761
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21762
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21763
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21764
|
-
top: 0px;
|
21765
|
-
}
|
21766
|
-
.v-file-input input[type=file] {
|
21767
|
-
height: 100%;
|
21768
|
-
left: 0;
|
21769
|
-
opacity: 0;
|
21770
|
-
position: absolute;
|
21771
|
-
top: 0;
|
21772
|
-
width: 100%;
|
21773
|
-
z-index: 1;
|
21774
|
-
}
|
21775
|
-
.v-file-input .v-input__details {
|
21776
|
-
padding-inline: 16px;
|
21777
|
-
}
|
21778
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
21779
|
-
padding-inline: 0;
|
21780
|
-
}.v-footer {
|
21751
|
+
/* endregion */.v-footer {
|
21781
21752
|
align-items: center;
|
21782
21753
|
display: flex;
|
21783
21754
|
flex: 1 1 auto;
|
@@ -22485,6 +22456,59 @@ textarea.v-field__input::placeholder {
|
|
22485
22456
|
.offset-xxl-11 {
|
22486
22457
|
margin-inline-start: 91.6666666667%;
|
22487
22458
|
}
|
22459
|
+
}.v-icon {
|
22460
|
+
--v-icon-size-multiplier: 1;
|
22461
|
+
align-items: center;
|
22462
|
+
display: inline-flex;
|
22463
|
+
font-feature-settings: "liga";
|
22464
|
+
height: 1em;
|
22465
|
+
justify-content: center;
|
22466
|
+
letter-spacing: normal;
|
22467
|
+
line-height: 1;
|
22468
|
+
position: relative;
|
22469
|
+
text-indent: 0;
|
22470
|
+
text-align: center;
|
22471
|
+
-webkit-user-select: none;
|
22472
|
+
user-select: none;
|
22473
|
+
vertical-align: middle;
|
22474
|
+
width: 1em;
|
22475
|
+
min-width: 1em;
|
22476
|
+
}
|
22477
|
+
.v-icon--clickable {
|
22478
|
+
cursor: pointer;
|
22479
|
+
}
|
22480
|
+
.v-icon--disabled {
|
22481
|
+
pointer-events: none;
|
22482
|
+
opacity: 0.38;
|
22483
|
+
}
|
22484
|
+
.v-icon--size-x-small {
|
22485
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22486
|
+
}
|
22487
|
+
.v-icon--size-small {
|
22488
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22489
|
+
}
|
22490
|
+
.v-icon--size-default {
|
22491
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22492
|
+
}
|
22493
|
+
.v-icon--size-large {
|
22494
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22495
|
+
}
|
22496
|
+
.v-icon--size-x-large {
|
22497
|
+
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22498
|
+
}
|
22499
|
+
|
22500
|
+
.v-icon__svg {
|
22501
|
+
fill: currentColor;
|
22502
|
+
width: 100%;
|
22503
|
+
height: 100%;
|
22504
|
+
}
|
22505
|
+
|
22506
|
+
.v-icon--start {
|
22507
|
+
margin-inline-end: 8px;
|
22508
|
+
}
|
22509
|
+
|
22510
|
+
.v-icon--end {
|
22511
|
+
margin-inline-start: 8px;
|
22488
22512
|
}.v-infinite-scroll--horizontal {
|
22489
22513
|
display: flex;
|
22490
22514
|
flex-direction: row;
|
@@ -22715,79 +22739,11 @@ textarea.v-field__input::placeholder {
|
|
22715
22739
|
|
22716
22740
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22717
22741
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22718
|
-
}.v-icon {
|
22719
|
-
--v-icon-size-multiplier: 1;
|
22720
|
-
align-items: center;
|
22721
|
-
display: inline-flex;
|
22722
|
-
font-feature-settings: "liga";
|
22723
|
-
height: 1em;
|
22724
|
-
justify-content: center;
|
22725
|
-
letter-spacing: normal;
|
22726
|
-
line-height: 1;
|
22727
|
-
position: relative;
|
22728
|
-
text-indent: 0;
|
22729
|
-
text-align: center;
|
22730
|
-
-webkit-user-select: none;
|
22731
|
-
user-select: none;
|
22732
|
-
vertical-align: middle;
|
22733
|
-
width: 1em;
|
22734
|
-
min-width: 1em;
|
22735
|
-
}
|
22736
|
-
.v-icon--clickable {
|
22737
|
-
cursor: pointer;
|
22738
|
-
}
|
22739
|
-
.v-icon--disabled {
|
22740
|
-
pointer-events: none;
|
22741
|
-
opacity: 0.38;
|
22742
|
-
}
|
22743
|
-
.v-icon--size-x-small {
|
22744
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22745
|
-
}
|
22746
|
-
.v-icon--size-small {
|
22747
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22748
|
-
}
|
22749
|
-
.v-icon--size-default {
|
22750
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22751
|
-
}
|
22752
|
-
.v-icon--size-large {
|
22753
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22754
|
-
}
|
22755
|
-
.v-icon--size-x-large {
|
22756
|
-
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22757
|
-
}
|
22758
|
-
|
22759
|
-
.v-icon__svg {
|
22760
|
-
fill: currentColor;
|
22761
|
-
width: 100%;
|
22762
|
-
height: 100%;
|
22763
|
-
}
|
22764
|
-
|
22765
|
-
.v-icon--start {
|
22766
|
-
margin-inline-end: 8px;
|
22767
|
-
}
|
22768
|
-
|
22769
|
-
.v-icon--end {
|
22770
|
-
margin-inline-start: 8px;
|
22771
22742
|
}.v-item-group {
|
22772
22743
|
flex: 0 1 auto;
|
22773
22744
|
max-width: 100%;
|
22774
22745
|
position: relative;
|
22775
22746
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22776
|
-
}.v-layout-item {
|
22777
|
-
position: absolute;
|
22778
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22779
|
-
}
|
22780
|
-
|
22781
|
-
.v-layout-item--absolute {
|
22782
|
-
position: absolute;
|
22783
|
-
}.v-layout {
|
22784
|
-
--v-scrollbar-offset: 0px;
|
22785
|
-
display: flex;
|
22786
|
-
flex: 1 1 auto;
|
22787
|
-
}
|
22788
|
-
.v-layout--full-height {
|
22789
|
-
--v-scrollbar-offset: inherit;
|
22790
|
-
height: 100%;
|
22791
22747
|
}.v-label {
|
22792
22748
|
align-items: center;
|
22793
22749
|
color: inherit;
|
@@ -22803,6 +22759,21 @@ textarea.v-field__input::placeholder {
|
|
22803
22759
|
|
22804
22760
|
.v-label--clickable {
|
22805
22761
|
cursor: pointer;
|
22762
|
+
}.v-layout-item {
|
22763
|
+
position: absolute;
|
22764
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22765
|
+
}
|
22766
|
+
|
22767
|
+
.v-layout-item--absolute {
|
22768
|
+
position: absolute;
|
22769
|
+
}.v-layout {
|
22770
|
+
--v-scrollbar-offset: 0px;
|
22771
|
+
display: flex;
|
22772
|
+
flex: 1 1 auto;
|
22773
|
+
}
|
22774
|
+
.v-layout--full-height {
|
22775
|
+
--v-scrollbar-offset: inherit;
|
22776
|
+
height: 100%;
|
22806
22777
|
}.v-list {
|
22807
22778
|
overflow: auto;
|
22808
22779
|
padding: 8px 0;
|
@@ -23381,25 +23352,6 @@ textarea.v-field__input::placeholder {
|
|
23381
23352
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23382
23353
|
}.v-locale-provider {
|
23383
23354
|
display: contents;
|
23384
|
-
}.v-menu > .v-overlay__content {
|
23385
|
-
display: flex;
|
23386
|
-
flex-direction: column;
|
23387
|
-
}
|
23388
|
-
.v-menu > .v-overlay__content {
|
23389
|
-
border-radius: 4px;
|
23390
|
-
}
|
23391
|
-
.v-menu > .v-overlay__content > .v-card,
|
23392
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
23393
|
-
.v-menu > .v-overlay__content > .v-list {
|
23394
|
-
background: rgb(var(--v-theme-surface));
|
23395
|
-
border-radius: inherit;
|
23396
|
-
overflow: auto;
|
23397
|
-
height: 100%;
|
23398
|
-
}
|
23399
|
-
.v-menu > .v-overlay__content > .v-card,
|
23400
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
23401
|
-
.v-menu > .v-overlay__content > .v-list {
|
23402
|
-
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));
|
23403
23355
|
}.v-main {
|
23404
23356
|
flex: 1 0 auto;
|
23405
23357
|
max-width: 100%;
|
@@ -23430,6 +23382,25 @@ textarea.v-field__input::placeholder {
|
|
23430
23382
|
--v-layout-right: 0px;
|
23431
23383
|
--v-layout-top: 0px;
|
23432
23384
|
--v-layout-bottom: 0px;
|
23385
|
+
}.v-menu > .v-overlay__content {
|
23386
|
+
display: flex;
|
23387
|
+
flex-direction: column;
|
23388
|
+
}
|
23389
|
+
.v-menu > .v-overlay__content {
|
23390
|
+
border-radius: 4px;
|
23391
|
+
}
|
23392
|
+
.v-menu > .v-overlay__content > .v-card,
|
23393
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
23394
|
+
.v-menu > .v-overlay__content > .v-list {
|
23395
|
+
background: rgb(var(--v-theme-surface));
|
23396
|
+
border-radius: inherit;
|
23397
|
+
overflow: auto;
|
23398
|
+
height: 100%;
|
23399
|
+
}
|
23400
|
+
.v-menu > .v-overlay__content > .v-card,
|
23401
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
23402
|
+
.v-menu > .v-overlay__content > .v-list {
|
23403
|
+
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));
|
23433
23404
|
}.v-messages {
|
23434
23405
|
flex: 1 1 auto;
|
23435
23406
|
font-size: 12px;
|
@@ -23675,12 +23646,6 @@ html.v-overlay-scroll-blocked {
|
|
23675
23646
|
|
23676
23647
|
.v-overlay--scroll-blocked {
|
23677
23648
|
padding-inline-end: var(--v-scrollbar-offset);
|
23678
|
-
}.v-parallax {
|
23679
|
-
position: relative;
|
23680
|
-
overflow: hidden;
|
23681
|
-
}
|
23682
|
-
.v-parallax--active > .v-img__img {
|
23683
|
-
will-change: transform;
|
23684
23649
|
}.v-pagination__list {
|
23685
23650
|
display: inline-flex;
|
23686
23651
|
list-style-type: none;
|
@@ -23689,6 +23654,12 @@ html.v-overlay-scroll-blocked {
|
|
23689
23654
|
}
|
23690
23655
|
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23691
23656
|
margin: 0.3rem;
|
23657
|
+
}.v-parallax {
|
23658
|
+
position: relative;
|
23659
|
+
overflow: hidden;
|
23660
|
+
}
|
23661
|
+
.v-parallax--active > .v-img__img {
|
23662
|
+
will-change: transform;
|
23692
23663
|
}.v-progress-linear {
|
23693
23664
|
background: transparent;
|
23694
23665
|
overflow: hidden;
|
@@ -24031,6 +24002,63 @@ html.v-overlay-scroll-blocked {
|
|
24031
24002
|
}
|
24032
24003
|
.v-radio-group .v-input__details {
|
24033
24004
|
padding-inline: 16px;
|
24005
|
+
}.v-slider .v-slider__container input {
|
24006
|
+
cursor: default;
|
24007
|
+
padding: 0;
|
24008
|
+
width: 100%;
|
24009
|
+
display: none;
|
24010
|
+
}
|
24011
|
+
.v-slider > .v-input__append,
|
24012
|
+
.v-slider > .v-input__prepend {
|
24013
|
+
padding: 0;
|
24014
|
+
}
|
24015
|
+
|
24016
|
+
.v-slider__container {
|
24017
|
+
position: relative;
|
24018
|
+
min-height: inherit;
|
24019
|
+
width: 100%;
|
24020
|
+
height: 100%;
|
24021
|
+
display: flex;
|
24022
|
+
justify-content: center;
|
24023
|
+
align-items: center;
|
24024
|
+
cursor: pointer;
|
24025
|
+
}
|
24026
|
+
.v-input--disabled .v-slider__container {
|
24027
|
+
opacity: var(--v-disabled-opacity);
|
24028
|
+
}
|
24029
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
24030
|
+
color: rgb(var(--v-theme-error));
|
24031
|
+
}
|
24032
|
+
|
24033
|
+
.v-slider.v-input--horizontal {
|
24034
|
+
align-items: center;
|
24035
|
+
margin-inline: 8px 8px;
|
24036
|
+
}
|
24037
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
24038
|
+
min-height: 32px;
|
24039
|
+
display: flex;
|
24040
|
+
align-items: center;
|
24041
|
+
}
|
24042
|
+
|
24043
|
+
.v-slider.v-input--vertical {
|
24044
|
+
justify-content: center;
|
24045
|
+
margin-top: 12px;
|
24046
|
+
margin-bottom: 12px;
|
24047
|
+
}
|
24048
|
+
.v-slider.v-input--vertical > .v-input__control {
|
24049
|
+
min-height: 300px;
|
24050
|
+
}
|
24051
|
+
|
24052
|
+
.v-slider.v-input--disabled {
|
24053
|
+
pointer-events: none;
|
24054
|
+
}
|
24055
|
+
|
24056
|
+
.v-slider--has-labels > .v-input__control {
|
24057
|
+
margin-bottom: 4px;
|
24058
|
+
}
|
24059
|
+
|
24060
|
+
.v-slider__label {
|
24061
|
+
margin-inline-end: 12px;
|
24034
24062
|
}.v-rating {
|
24035
24063
|
max-width: 100%;
|
24036
24064
|
display: inline-flex;
|
@@ -24072,75 +24100,44 @@ html.v-overlay-scroll-blocked {
|
|
24072
24100
|
.v-rating__item--half {
|
24073
24101
|
overflow: hidden;
|
24074
24102
|
position: absolute;
|
24075
|
-
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24076
|
-
z-index: 1;
|
24077
|
-
}
|
24078
|
-
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24079
|
-
opacity: 0;
|
24080
|
-
}
|
24081
|
-
|
24082
|
-
.v-rating__hidden {
|
24083
|
-
height: 0;
|
24084
|
-
opacity: 0;
|
24085
|
-
position: absolute;
|
24086
|
-
width: 0;
|
24087
|
-
}.v-slider .v-slider__container input {
|
24088
|
-
cursor: default;
|
24089
|
-
padding: 0;
|
24090
|
-
width: 100%;
|
24091
|
-
display: none;
|
24092
|
-
}
|
24093
|
-
.v-slider > .v-input__append,
|
24094
|
-
.v-slider > .v-input__prepend {
|
24095
|
-
padding: 0;
|
24096
|
-
}
|
24097
|
-
|
24098
|
-
.v-slider__container {
|
24099
|
-
position: relative;
|
24100
|
-
min-height: inherit;
|
24101
|
-
width: 100%;
|
24102
|
-
height: 100%;
|
24103
|
-
display: flex;
|
24104
|
-
justify-content: center;
|
24105
|
-
align-items: center;
|
24106
|
-
cursor: pointer;
|
24107
|
-
}
|
24108
|
-
.v-input--disabled .v-slider__container {
|
24109
|
-
opacity: var(--v-disabled-opacity);
|
24110
|
-
}
|
24111
|
-
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
24112
|
-
color: rgb(var(--v-theme-error));
|
24113
|
-
}
|
24114
|
-
|
24115
|
-
.v-slider.v-input--horizontal {
|
24116
|
-
align-items: center;
|
24117
|
-
margin-inline: 8px 8px;
|
24103
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24104
|
+
z-index: 1;
|
24118
24105
|
}
|
24119
|
-
.v-
|
24120
|
-
|
24121
|
-
display: flex;
|
24122
|
-
align-items: center;
|
24106
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24107
|
+
opacity: 0;
|
24123
24108
|
}
|
24124
24109
|
|
24125
|
-
.v-
|
24126
|
-
|
24127
|
-
|
24128
|
-
|
24110
|
+
.v-rating__hidden {
|
24111
|
+
height: 0;
|
24112
|
+
opacity: 0;
|
24113
|
+
position: absolute;
|
24114
|
+
width: 0;
|
24115
|
+
}.v-responsive {
|
24116
|
+
display: flex;
|
24117
|
+
flex: 1 0 auto;
|
24118
|
+
max-height: 100%;
|
24119
|
+
max-width: 100%;
|
24120
|
+
overflow: hidden;
|
24121
|
+
position: relative;
|
24129
24122
|
}
|
24130
|
-
.v-
|
24131
|
-
|
24123
|
+
.v-responsive--inline {
|
24124
|
+
display: inline-flex;
|
24125
|
+
flex: 0 0 auto;
|
24132
24126
|
}
|
24133
24127
|
|
24134
|
-
.v-
|
24135
|
-
|
24128
|
+
.v-responsive__content {
|
24129
|
+
flex: 1 0 0px;
|
24130
|
+
max-width: 100%;
|
24136
24131
|
}
|
24137
24132
|
|
24138
|
-
.v-
|
24139
|
-
margin-
|
24133
|
+
.v-responsive__sizer ~ .v-responsive__content {
|
24134
|
+
margin-inline-start: -100%;
|
24140
24135
|
}
|
24141
24136
|
|
24142
|
-
.v-
|
24143
|
-
|
24137
|
+
.v-responsive__sizer {
|
24138
|
+
flex: 1 0 0px;
|
24139
|
+
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24140
|
+
pointer-events: none;
|
24144
24141
|
}.v-select .v-field .v-text-field__prefix,
|
24145
24142
|
.v-select .v-field .v-text-field__suffix,
|
24146
24143
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
@@ -24193,32 +24190,6 @@ html.v-overlay-scroll-blocked {
|
|
24193
24190
|
.v-select--active-menu .v-select__menu-icon {
|
24194
24191
|
opacity: var(--v-high-emphasis-opacity);
|
24195
24192
|
transform: rotate(180deg);
|
24196
|
-
}.v-responsive {
|
24197
|
-
display: flex;
|
24198
|
-
flex: 1 0 auto;
|
24199
|
-
max-height: 100%;
|
24200
|
-
max-width: 100%;
|
24201
|
-
overflow: hidden;
|
24202
|
-
position: relative;
|
24203
|
-
}
|
24204
|
-
.v-responsive--inline {
|
24205
|
-
display: inline-flex;
|
24206
|
-
flex: 0 0 auto;
|
24207
|
-
}
|
24208
|
-
|
24209
|
-
.v-responsive__content {
|
24210
|
-
flex: 1 0 0px;
|
24211
|
-
max-width: 100%;
|
24212
|
-
}
|
24213
|
-
|
24214
|
-
.v-responsive__sizer ~ .v-responsive__content {
|
24215
|
-
margin-inline-start: -100%;
|
24216
|
-
}
|
24217
|
-
|
24218
|
-
.v-responsive__sizer {
|
24219
|
-
flex: 1 0 0px;
|
24220
|
-
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24221
|
-
pointer-events: none;
|
24222
24193
|
}.v-selection-control {
|
24223
24194
|
align-items: center;
|
24224
24195
|
contain: layout;
|
@@ -24322,6 +24293,50 @@ html.v-overlay-scroll-blocked {
|
|
24322
24293
|
}
|
24323
24294
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24324
24295
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24296
|
+
}.v-sheet {
|
24297
|
+
display: block;
|
24298
|
+
}
|
24299
|
+
.v-sheet {
|
24300
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24301
|
+
border-style: solid;
|
24302
|
+
border-width: 0;
|
24303
|
+
}
|
24304
|
+
.v-sheet--border {
|
24305
|
+
border-width: thin;
|
24306
|
+
box-shadow: none;
|
24307
|
+
}
|
24308
|
+
.v-sheet {
|
24309
|
+
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));
|
24310
|
+
}
|
24311
|
+
.v-sheet--absolute {
|
24312
|
+
position: absolute;
|
24313
|
+
}
|
24314
|
+
.v-sheet--fixed {
|
24315
|
+
position: fixed;
|
24316
|
+
}
|
24317
|
+
.v-sheet--relative {
|
24318
|
+
position: relative;
|
24319
|
+
}
|
24320
|
+
.v-sheet--sticky {
|
24321
|
+
position: sticky;
|
24322
|
+
}
|
24323
|
+
.v-sheet {
|
24324
|
+
border-radius: 0;
|
24325
|
+
}
|
24326
|
+
.v-sheet {
|
24327
|
+
background: rgb(var(--v-theme-surface));
|
24328
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24329
|
+
}
|
24330
|
+
.v-sheet--rounded {
|
24331
|
+
border-radius: 4px;
|
24332
|
+
}.v-selection-control-group {
|
24333
|
+
grid-area: control;
|
24334
|
+
display: flex;
|
24335
|
+
flex-direction: column;
|
24336
|
+
}
|
24337
|
+
.v-selection-control-group--inline {
|
24338
|
+
flex-direction: row;
|
24339
|
+
flex-wrap: wrap;
|
24325
24340
|
}.v-skeleton-loader {
|
24326
24341
|
align-items: center;
|
24327
24342
|
background: rgb(var(--v-theme-surface));
|
@@ -24602,50 +24617,6 @@ html.v-overlay-scroll-blocked {
|
|
24602
24617
|
.v-slide-group--vertical .v-slide-group__container {
|
24603
24618
|
overflow-x: hidden;
|
24604
24619
|
overflow-y: auto;
|
24605
|
-
}.v-selection-control-group {
|
24606
|
-
grid-area: control;
|
24607
|
-
display: flex;
|
24608
|
-
flex-direction: column;
|
24609
|
-
}
|
24610
|
-
.v-selection-control-group--inline {
|
24611
|
-
flex-direction: row;
|
24612
|
-
flex-wrap: wrap;
|
24613
|
-
}.v-sheet {
|
24614
|
-
display: block;
|
24615
|
-
}
|
24616
|
-
.v-sheet {
|
24617
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24618
|
-
border-style: solid;
|
24619
|
-
border-width: 0;
|
24620
|
-
}
|
24621
|
-
.v-sheet--border {
|
24622
|
-
border-width: thin;
|
24623
|
-
box-shadow: none;
|
24624
|
-
}
|
24625
|
-
.v-sheet {
|
24626
|
-
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));
|
24627
|
-
}
|
24628
|
-
.v-sheet--absolute {
|
24629
|
-
position: absolute;
|
24630
|
-
}
|
24631
|
-
.v-sheet--fixed {
|
24632
|
-
position: fixed;
|
24633
|
-
}
|
24634
|
-
.v-sheet--relative {
|
24635
|
-
position: relative;
|
24636
|
-
}
|
24637
|
-
.v-sheet--sticky {
|
24638
|
-
position: sticky;
|
24639
|
-
}
|
24640
|
-
.v-sheet {
|
24641
|
-
border-radius: 0;
|
24642
|
-
}
|
24643
|
-
.v-sheet {
|
24644
|
-
background: rgb(var(--v-theme-surface));
|
24645
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24646
|
-
}
|
24647
|
-
.v-sheet--rounded {
|
24648
|
-
border-radius: 4px;
|
24649
24620
|
}.v-snackbar {
|
24650
24621
|
justify-content: center;
|
24651
24622
|
z-index: 10000;
|
@@ -24786,6 +24757,47 @@ html.v-overlay-scroll-blocked {
|
|
24786
24757
|
}
|
24787
24758
|
.v-snackbar-transition-leave-to {
|
24788
24759
|
opacity: 0;
|
24760
|
+
}.v-speed-dial__content {
|
24761
|
+
gap: 8px;
|
24762
|
+
}
|
24763
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
|
24764
|
+
flex-direction: row;
|
24765
|
+
}
|
24766
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
|
24767
|
+
flex-direction: row-reverse;
|
24768
|
+
}
|
24769
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
|
24770
|
+
flex-direction: column-reverse;
|
24771
|
+
}
|
24772
|
+
.v-speed-dial__content > *:nth-child(1) {
|
24773
|
+
transition-delay: 0s;
|
24774
|
+
}
|
24775
|
+
.v-speed-dial__content > *:nth-child(2) {
|
24776
|
+
transition-delay: 0.05s;
|
24777
|
+
}
|
24778
|
+
.v-speed-dial__content > *:nth-child(3) {
|
24779
|
+
transition-delay: 0.1s;
|
24780
|
+
}
|
24781
|
+
.v-speed-dial__content > *:nth-child(4) {
|
24782
|
+
transition-delay: 0.15s;
|
24783
|
+
}
|
24784
|
+
.v-speed-dial__content > *:nth-child(5) {
|
24785
|
+
transition-delay: 0.2s;
|
24786
|
+
}
|
24787
|
+
.v-speed-dial__content > *:nth-child(6) {
|
24788
|
+
transition-delay: 0.25s;
|
24789
|
+
}
|
24790
|
+
.v-speed-dial__content > *:nth-child(7) {
|
24791
|
+
transition-delay: 0.3s;
|
24792
|
+
}
|
24793
|
+
.v-speed-dial__content > *:nth-child(8) {
|
24794
|
+
transition-delay: 0.35s;
|
24795
|
+
}
|
24796
|
+
.v-speed-dial__content > *:nth-child(9) {
|
24797
|
+
transition-delay: 0.4s;
|
24798
|
+
}
|
24799
|
+
.v-speed-dial__content > *:nth-child(10) {
|
24800
|
+
transition-delay: 0.45s;
|
24789
24801
|
}.v-stepper.v-sheet {
|
24790
24802
|
overflow: hidden;
|
24791
24803
|
}
|
@@ -24930,78 +24942,37 @@ html.v-overlay-scroll-blocked {
|
|
24930
24942
|
display: none;
|
24931
24943
|
}
|
24932
24944
|
|
24933
|
-
.v-stepper-item__subtitle {
|
24934
|
-
font-size: 0.75rem;
|
24935
|
-
text-align: left;
|
24936
|
-
line-height: 1;
|
24937
|
-
opacity: var(--v-medium-emphasis-opacity);
|
24938
|
-
}
|
24939
|
-
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
24940
|
-
text-align: center;
|
24941
|
-
}
|
24942
|
-
.v-stepper--mobile .v-stepper-item__subtitle {
|
24943
|
-
display: none;
|
24944
|
-
}
|
24945
|
-
|
24946
|
-
.v-stepper-item__overlay {
|
24947
|
-
background-color: currentColor;
|
24948
|
-
border-radius: inherit;
|
24949
|
-
opacity: 0;
|
24950
|
-
transition: opacity 0.2s ease-in-out;
|
24951
|
-
}
|
24952
|
-
|
24953
|
-
.v-stepper-item__overlay,
|
24954
|
-
.v-stepper-item__underlay {
|
24955
|
-
pointer-events: none;
|
24956
|
-
}
|
24957
|
-
.v-stepper-item__overlay,
|
24958
|
-
.v-stepper-item__underlay {
|
24959
|
-
position: absolute;
|
24960
|
-
top: 0;
|
24961
|
-
left: 0;
|
24962
|
-
width: 100%;
|
24963
|
-
height: 100%;
|
24964
|
-
}.v-speed-dial__content {
|
24965
|
-
gap: 8px;
|
24966
|
-
}
|
24967
|
-
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
|
24968
|
-
flex-direction: row;
|
24969
|
-
}
|
24970
|
-
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
|
24971
|
-
flex-direction: row-reverse;
|
24972
|
-
}
|
24973
|
-
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
|
24974
|
-
flex-direction: column-reverse;
|
24975
|
-
}
|
24976
|
-
.v-speed-dial__content > *:nth-child(1) {
|
24977
|
-
transition-delay: 0s;
|
24978
|
-
}
|
24979
|
-
.v-speed-dial__content > *:nth-child(2) {
|
24980
|
-
transition-delay: 0.05s;
|
24981
|
-
}
|
24982
|
-
.v-speed-dial__content > *:nth-child(3) {
|
24983
|
-
transition-delay: 0.1s;
|
24984
|
-
}
|
24985
|
-
.v-speed-dial__content > *:nth-child(4) {
|
24986
|
-
transition-delay: 0.15s;
|
24987
|
-
}
|
24988
|
-
.v-speed-dial__content > *:nth-child(5) {
|
24989
|
-
transition-delay: 0.2s;
|
24945
|
+
.v-stepper-item__subtitle {
|
24946
|
+
font-size: 0.75rem;
|
24947
|
+
text-align: left;
|
24948
|
+
line-height: 1;
|
24949
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24990
24950
|
}
|
24991
|
-
.v-
|
24992
|
-
|
24951
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
24952
|
+
text-align: center;
|
24993
24953
|
}
|
24994
|
-
.v-
|
24995
|
-
|
24954
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
24955
|
+
display: none;
|
24996
24956
|
}
|
24997
|
-
|
24998
|
-
|
24957
|
+
|
24958
|
+
.v-stepper-item__overlay {
|
24959
|
+
background-color: currentColor;
|
24960
|
+
border-radius: inherit;
|
24961
|
+
opacity: 0;
|
24962
|
+
transition: opacity 0.2s ease-in-out;
|
24999
24963
|
}
|
25000
|
-
|
25001
|
-
|
24964
|
+
|
24965
|
+
.v-stepper-item__overlay,
|
24966
|
+
.v-stepper-item__underlay {
|
24967
|
+
pointer-events: none;
|
25002
24968
|
}
|
25003
|
-
.v-
|
25004
|
-
|
24969
|
+
.v-stepper-item__overlay,
|
24970
|
+
.v-stepper-item__underlay {
|
24971
|
+
position: absolute;
|
24972
|
+
top: 0;
|
24973
|
+
left: 0;
|
24974
|
+
width: 100%;
|
24975
|
+
height: 100%;
|
25005
24976
|
}.v-switch .v-label {
|
25006
24977
|
padding-inline-start: 10px;
|
25007
24978
|
}
|
@@ -25322,113 +25293,7 @@ html.v-overlay-scroll-blocked {
|
|
25322
25293
|
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25323
25294
|
margin-inline-end: 52px;
|
25324
25295
|
}
|
25325
|
-
}.v-
|
25326
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
25327
|
-
}
|
25328
|
-
.v-textarea .v-field__field {
|
25329
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
25330
|
-
}
|
25331
|
-
.v-textarea .v-field__input {
|
25332
|
-
flex: 1 1 auto;
|
25333
|
-
outline: none;
|
25334
|
-
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
25335
|
-
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
25336
|
-
}
|
25337
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
25338
|
-
visibility: hidden;
|
25339
|
-
position: absolute;
|
25340
|
-
top: 0;
|
25341
|
-
left: 0;
|
25342
|
-
height: 0 !important;
|
25343
|
-
min-height: 0 !important;
|
25344
|
-
pointer-events: none;
|
25345
|
-
}
|
25346
|
-
.v-textarea--no-resize .v-field__input {
|
25347
|
-
resize: none;
|
25348
|
-
}
|
25349
|
-
.v-textarea .v-field--no-label textarea,
|
25350
|
-
.v-textarea .v-field--active textarea {
|
25351
|
-
opacity: 1;
|
25352
|
-
}
|
25353
|
-
.v-textarea textarea {
|
25354
|
-
opacity: 0;
|
25355
|
-
flex: 1;
|
25356
|
-
min-width: 0;
|
25357
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25358
|
-
}
|
25359
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25360
|
-
outline: none;
|
25361
|
-
}
|
25362
|
-
.v-textarea textarea:invalid {
|
25363
|
-
box-shadow: none;
|
25364
|
-
}/* region BLOCK */
|
25365
|
-
.v-text-field input {
|
25366
|
-
color: inherit;
|
25367
|
-
opacity: 0;
|
25368
|
-
flex: 1;
|
25369
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25370
|
-
min-width: 0;
|
25371
|
-
}
|
25372
|
-
.v-text-field input:focus, .v-text-field input:active {
|
25373
|
-
outline: none;
|
25374
|
-
}
|
25375
|
-
.v-text-field input:invalid {
|
25376
|
-
box-shadow: none;
|
25377
|
-
}
|
25378
|
-
.v-text-field .v-field {
|
25379
|
-
cursor: text;
|
25380
|
-
}
|
25381
|
-
.v-text-field--prefixed.v-text-field .v-field__input {
|
25382
|
-
--v-field-padding-start: 6px;
|
25383
|
-
}
|
25384
|
-
|
25385
|
-
.v-text-field--suffixed.v-text-field .v-field__input {
|
25386
|
-
--v-field-padding-end: 0;
|
25387
|
-
}
|
25388
|
-
|
25389
|
-
.v-text-field .v-input__details {
|
25390
|
-
padding-inline: 16px;
|
25391
|
-
}
|
25392
|
-
.v-input--plain-underlined.v-text-field .v-input__details {
|
25393
|
-
padding-inline: 0;
|
25394
|
-
}
|
25395
|
-
|
25396
|
-
.v-text-field .v-field--no-label input,
|
25397
|
-
.v-text-field .v-field--active input {
|
25398
|
-
opacity: 1;
|
25399
|
-
}
|
25400
|
-
.v-text-field .v-field--single-line input {
|
25401
|
-
transition: none;
|
25402
|
-
}
|
25403
|
-
|
25404
|
-
/* endregion */
|
25405
|
-
/* region ELEMENTS */
|
25406
|
-
.v-text-field__prefix, .v-text-field__suffix {
|
25407
|
-
align-items: center;
|
25408
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25409
|
-
cursor: default;
|
25410
|
-
display: flex;
|
25411
|
-
opacity: 0;
|
25412
|
-
transition: inherit;
|
25413
|
-
white-space: nowrap;
|
25414
|
-
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25415
|
-
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25416
|
-
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25417
|
-
}
|
25418
|
-
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25419
|
-
opacity: 1;
|
25420
|
-
}
|
25421
|
-
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25422
|
-
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25423
|
-
}
|
25424
|
-
.v-text-field__prefix {
|
25425
|
-
padding-inline-start: var(--v-field-padding-start);
|
25426
|
-
}
|
25427
|
-
.v-text-field__suffix {
|
25428
|
-
padding-inline-end: var(--v-field-padding-end);
|
25429
|
-
}
|
25430
|
-
|
25431
|
-
/* endregion */.v-table {
|
25296
|
+
}.v-table {
|
25432
25297
|
font-size: 0.875rem;
|
25433
25298
|
transition-duration: 0.28s;
|
25434
25299
|
transition-property: box-shadow, opacity, background, height;
|
@@ -25552,25 +25417,131 @@ html.v-overlay-scroll-blocked {
|
|
25552
25417
|
.v-table--fixed-height > .v-table__wrapper {
|
25553
25418
|
overflow-y: auto;
|
25554
25419
|
}
|
25555
|
-
|
25556
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25557
|
-
position: sticky;
|
25558
|
-
top: 0;
|
25559
|
-
z-index: 2;
|
25420
|
+
|
25421
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25422
|
+
position: sticky;
|
25423
|
+
top: 0;
|
25424
|
+
z-index: 2;
|
25425
|
+
}
|
25426
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25427
|
+
border-bottom: 0px !important;
|
25428
|
+
}
|
25429
|
+
|
25430
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25431
|
+
position: sticky;
|
25432
|
+
bottom: 0;
|
25433
|
+
z-index: 1;
|
25434
|
+
}
|
25435
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25436
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25437
|
+
border-top: 0px !important;
|
25438
|
+
}.v-textarea .v-field {
|
25439
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
25440
|
+
}
|
25441
|
+
.v-textarea .v-field__field {
|
25442
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
25443
|
+
}
|
25444
|
+
.v-textarea .v-field__input {
|
25445
|
+
flex: 1 1 auto;
|
25446
|
+
outline: none;
|
25447
|
+
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
25448
|
+
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
25449
|
+
}
|
25450
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
25451
|
+
visibility: hidden;
|
25452
|
+
position: absolute;
|
25453
|
+
top: 0;
|
25454
|
+
left: 0;
|
25455
|
+
height: 0 !important;
|
25456
|
+
min-height: 0 !important;
|
25457
|
+
pointer-events: none;
|
25458
|
+
}
|
25459
|
+
.v-textarea--no-resize .v-field__input {
|
25460
|
+
resize: none;
|
25461
|
+
}
|
25462
|
+
.v-textarea .v-field--no-label textarea,
|
25463
|
+
.v-textarea .v-field--active textarea {
|
25464
|
+
opacity: 1;
|
25465
|
+
}
|
25466
|
+
.v-textarea textarea {
|
25467
|
+
opacity: 0;
|
25468
|
+
flex: 1;
|
25469
|
+
min-width: 0;
|
25470
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25471
|
+
}
|
25472
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25473
|
+
outline: none;
|
25474
|
+
}
|
25475
|
+
.v-textarea textarea:invalid {
|
25476
|
+
box-shadow: none;
|
25477
|
+
}/* region BLOCK */
|
25478
|
+
.v-text-field input {
|
25479
|
+
color: inherit;
|
25480
|
+
opacity: 0;
|
25481
|
+
flex: 1;
|
25482
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25483
|
+
min-width: 0;
|
25484
|
+
}
|
25485
|
+
.v-text-field input:focus, .v-text-field input:active {
|
25486
|
+
outline: none;
|
25487
|
+
}
|
25488
|
+
.v-text-field input:invalid {
|
25489
|
+
box-shadow: none;
|
25490
|
+
}
|
25491
|
+
.v-text-field .v-field {
|
25492
|
+
cursor: text;
|
25493
|
+
}
|
25494
|
+
.v-text-field--prefixed.v-text-field .v-field__input {
|
25495
|
+
--v-field-padding-start: 6px;
|
25496
|
+
}
|
25497
|
+
|
25498
|
+
.v-text-field--suffixed.v-text-field .v-field__input {
|
25499
|
+
--v-field-padding-end: 0;
|
25500
|
+
}
|
25501
|
+
|
25502
|
+
.v-text-field .v-input__details {
|
25503
|
+
padding-inline: 16px;
|
25504
|
+
}
|
25505
|
+
.v-input--plain-underlined.v-text-field .v-input__details {
|
25506
|
+
padding-inline: 0;
|
25507
|
+
}
|
25508
|
+
|
25509
|
+
.v-text-field .v-field--no-label input,
|
25510
|
+
.v-text-field .v-field--active input {
|
25511
|
+
opacity: 1;
|
25512
|
+
}
|
25513
|
+
.v-text-field .v-field--single-line input {
|
25514
|
+
transition: none;
|
25515
|
+
}
|
25516
|
+
|
25517
|
+
/* endregion */
|
25518
|
+
/* region ELEMENTS */
|
25519
|
+
.v-text-field__prefix, .v-text-field__suffix {
|
25520
|
+
align-items: center;
|
25521
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25522
|
+
cursor: default;
|
25523
|
+
display: flex;
|
25524
|
+
opacity: 0;
|
25525
|
+
transition: inherit;
|
25526
|
+
white-space: nowrap;
|
25527
|
+
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25528
|
+
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25529
|
+
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25530
|
+
}
|
25531
|
+
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25532
|
+
opacity: 1;
|
25533
|
+
}
|
25534
|
+
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25535
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25560
25536
|
}
|
25561
|
-
.v-
|
25562
|
-
|
25537
|
+
.v-text-field__prefix {
|
25538
|
+
padding-inline-start: var(--v-field-padding-start);
|
25563
25539
|
}
|
25564
|
-
|
25565
|
-
|
25566
|
-
position: sticky;
|
25567
|
-
bottom: 0;
|
25568
|
-
z-index: 1;
|
25540
|
+
.v-text-field__suffix {
|
25541
|
+
padding-inline-end: var(--v-field-padding-end);
|
25569
25542
|
}
|
25570
|
-
|
25571
|
-
|
25572
|
-
border-top: 0px !important;
|
25573
|
-
}.v-theme-provider {
|
25543
|
+
|
25544
|
+
/* endregion */.v-theme-provider {
|
25574
25545
|
background: rgb(var(--v-theme-background));
|
25575
25546
|
color: rgb(var(--v-theme-on-background));
|
25576
25547
|
}.v-timeline .v-timeline-divider__dot {
|
@@ -26235,34 +26206,35 @@ html.v-overlay-scroll-blocked {
|
|
26235
26206
|
}
|
26236
26207
|
.v-window-y-reverse-transition-leave-to {
|
26237
26208
|
transform: translateY(100%);
|
26238
|
-
}.v-
|
26239
|
-
|
26240
|
-
|
26209
|
+
}.v-file-input--hide.v-input .v-field,
|
26210
|
+
.v-file-input--hide.v-input .v-input__control,
|
26211
|
+
.v-file-input--hide.v-input .v-input__details {
|
26212
|
+
display: none;
|
26241
26213
|
}
|
26242
|
-
|
26243
|
-
|
26244
|
-
|
26245
|
-
display: flex;
|
26246
|
-
flex-wrap: wrap;
|
26247
|
-
justify-content: center;
|
26248
|
-
text-align: center;
|
26214
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
26215
|
+
grid-area: control;
|
26216
|
+
margin: 0 auto;
|
26249
26217
|
}
|
26250
|
-
.v-
|
26251
|
-
|
26218
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
26219
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
26220
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
26221
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
26222
|
+
top: 0px;
|
26252
26223
|
}
|
26253
|
-
.v-
|
26254
|
-
|
26255
|
-
|
26256
|
-
|
26257
|
-
|
26258
|
-
|
26224
|
+
.v-file-input input[type=file] {
|
26225
|
+
height: 100%;
|
26226
|
+
left: 0;
|
26227
|
+
opacity: 0;
|
26228
|
+
position: absolute;
|
26229
|
+
top: 0;
|
26259
26230
|
width: 100%;
|
26260
|
-
|
26261
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26262
|
-
color: rgba(var(--v-theme-on-surface));
|
26231
|
+
z-index: 1;
|
26263
26232
|
}
|
26264
|
-
.v-
|
26265
|
-
|
26233
|
+
.v-file-input .v-input__details {
|
26234
|
+
padding-inline: 16px;
|
26235
|
+
}
|
26236
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
26237
|
+
padding-inline: 0;
|
26266
26238
|
}.v-color-picker-canvas {
|
26267
26239
|
display: flex;
|
26268
26240
|
position: relative;
|
@@ -26355,6 +26327,34 @@ html.v-overlay-scroll-blocked {
|
|
26355
26327
|
.v-color-picker-preview__eye-dropper {
|
26356
26328
|
position: relative;
|
26357
26329
|
margin-right: 12px;
|
26330
|
+
}.v-color-picker-edit {
|
26331
|
+
display: flex;
|
26332
|
+
margin-top: 24px;
|
26333
|
+
}
|
26334
|
+
|
26335
|
+
.v-color-picker-edit__input {
|
26336
|
+
width: 100%;
|
26337
|
+
display: flex;
|
26338
|
+
flex-wrap: wrap;
|
26339
|
+
justify-content: center;
|
26340
|
+
text-align: center;
|
26341
|
+
}
|
26342
|
+
.v-color-picker-edit__input:not(:last-child) {
|
26343
|
+
margin-inline-end: 8px;
|
26344
|
+
}
|
26345
|
+
.v-color-picker-edit__input input {
|
26346
|
+
border-radius: 4px;
|
26347
|
+
margin-bottom: 8px;
|
26348
|
+
min-width: 0;
|
26349
|
+
outline: none;
|
26350
|
+
text-align: center;
|
26351
|
+
width: 100%;
|
26352
|
+
height: 32px;
|
26353
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26354
|
+
color: rgba(var(--v-theme-on-surface));
|
26355
|
+
}
|
26356
|
+
.v-color-picker-edit__input span {
|
26357
|
+
font-size: 0.75rem;
|
26358
26358
|
}.v-color-picker-swatches {
|
26359
26359
|
overflow-y: auto;
|
26360
26360
|
}
|
@@ -26380,232 +26380,73 @@ html.v-overlay-scroll-blocked {
|
|
26380
26380
|
border-radius: 2px;
|
26381
26381
|
-webkit-user-select: none;
|
26382
26382
|
user-select: none;
|
26383
|
-
overflow: hidden;
|
26384
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26385
|
-
cursor: pointer;
|
26386
|
-
}
|
26387
|
-
.v-color-picker-swatches__color > div {
|
26388
|
-
display: flex;
|
26389
|
-
align-items: center;
|
26390
|
-
justify-content: center;
|
26391
|
-
width: 100%;
|
26392
|
-
height: 100%;
|
26393
|
-
}.v-picker.v-sheet {
|
26394
|
-
display: grid;
|
26395
|
-
grid-auto-rows: min-content;
|
26396
|
-
grid-template-areas: "title" "header" "body";
|
26397
|
-
overflow: hidden;
|
26398
|
-
}
|
26399
|
-
.v-picker.v-sheet {
|
26400
|
-
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));
|
26401
|
-
}
|
26402
|
-
.v-picker.v-sheet {
|
26403
|
-
border-radius: 4px;
|
26404
|
-
}
|
26405
|
-
.v-picker.v-sheet.v-picker--with-actions {
|
26406
|
-
grid-template-areas: "title" "header" "body" "actions";
|
26407
|
-
}
|
26408
|
-
|
26409
|
-
.v-picker__body {
|
26410
|
-
grid-area: body;
|
26411
|
-
overflow: hidden;
|
26412
|
-
position: relative;
|
26413
|
-
}
|
26414
|
-
|
26415
|
-
.v-picker__header {
|
26416
|
-
grid-area: header;
|
26417
|
-
}
|
26418
|
-
|
26419
|
-
.v-picker__actions {
|
26420
|
-
grid-area: actions;
|
26421
|
-
padding: 0 12px 12px;
|
26422
|
-
display: flex;
|
26423
|
-
align-items: center;
|
26424
|
-
justify-content: flex-end;
|
26425
|
-
}
|
26426
|
-
.v-picker__actions .v-btn {
|
26427
|
-
min-width: 48px;
|
26428
|
-
}
|
26429
|
-
.v-picker__actions .v-btn:not(:last-child) {
|
26430
|
-
margin-inline-end: 8px;
|
26431
|
-
}
|
26432
|
-
|
26433
|
-
.v-picker--landscape {
|
26434
|
-
grid-template-areas: "title" "header body" "header body";
|
26435
|
-
}
|
26436
|
-
|
26437
|
-
.v-picker--landscape.v-picker--with-actions {
|
26438
|
-
grid-template-areas: "title" "header body" "header actions";
|
26439
|
-
}
|
26440
|
-
|
26441
|
-
.v-picker-title {
|
26442
|
-
text-transform: uppercase;
|
26443
|
-
font-size: 0.75rem;
|
26444
|
-
grid-area: title;
|
26445
|
-
padding-inline: 24px 12px;
|
26446
|
-
padding-top: 16px;
|
26447
|
-
padding-bottom: 16px;
|
26448
|
-
font-weight: 400;
|
26449
|
-
letter-spacing: 0.1666666667em;
|
26450
|
-
}.v-slider-thumb {
|
26451
|
-
touch-action: none;
|
26452
|
-
color: rgb(var(--v-theme-surface-variant));
|
26453
|
-
}
|
26454
|
-
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26455
|
-
color: inherit;
|
26456
|
-
}
|
26457
|
-
|
26458
|
-
.v-slider-thumb__label {
|
26459
|
-
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26460
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
26461
|
-
}
|
26462
|
-
.v-slider-thumb__label::before {
|
26463
|
-
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26464
|
-
}
|
26465
|
-
|
26466
|
-
.v-slider-thumb {
|
26467
|
-
outline: none;
|
26468
|
-
position: absolute;
|
26469
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26470
|
-
}
|
26471
|
-
|
26472
|
-
.v-slider-thumb__surface {
|
26473
|
-
cursor: pointer;
|
26474
|
-
width: var(--v-slider-thumb-size);
|
26475
|
-
height: var(--v-slider-thumb-size);
|
26476
|
-
border-radius: 50%;
|
26477
|
-
-webkit-user-select: none;
|
26478
|
-
user-select: none;
|
26479
|
-
background-color: currentColor;
|
26480
|
-
}
|
26481
|
-
@media (forced-colors: active) {
|
26482
|
-
.v-slider-thumb__surface {
|
26483
|
-
background-color: highlight;
|
26484
|
-
}
|
26485
|
-
}
|
26486
|
-
.v-slider-thumb__surface::before {
|
26487
|
-
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26488
|
-
content: "";
|
26489
|
-
color: inherit;
|
26490
|
-
top: 0;
|
26491
|
-
left: 0;
|
26492
|
-
width: 100%;
|
26493
|
-
height: 100%;
|
26494
|
-
border-radius: 50%;
|
26495
|
-
background: currentColor;
|
26496
|
-
position: absolute;
|
26497
|
-
pointer-events: none;
|
26498
|
-
opacity: 0;
|
26499
|
-
}
|
26500
|
-
.v-slider-thumb__surface::after {
|
26501
|
-
content: "";
|
26502
|
-
width: 42px;
|
26503
|
-
height: 42px;
|
26504
|
-
position: absolute;
|
26505
|
-
top: 50%;
|
26506
|
-
left: 50%;
|
26507
|
-
transform: translate(-50%, -50%);
|
26508
|
-
}
|
26509
|
-
|
26510
|
-
.v-slider-thumb__label-container {
|
26511
|
-
position: absolute;
|
26512
|
-
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26513
|
-
}
|
26514
|
-
|
26515
|
-
.v-slider-thumb__label {
|
26516
|
-
display: flex;
|
26517
|
-
align-items: center;
|
26518
|
-
justify-content: center;
|
26519
|
-
font-size: 0.75rem;
|
26520
|
-
min-width: 35px;
|
26521
|
-
height: 25px;
|
26522
|
-
border-radius: 4px;
|
26523
|
-
padding: 6px;
|
26524
|
-
position: absolute;
|
26525
|
-
-webkit-user-select: none;
|
26526
|
-
user-select: none;
|
26527
|
-
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26528
|
-
}
|
26529
|
-
.v-slider-thumb__label::before {
|
26530
|
-
content: "";
|
26531
|
-
width: 0;
|
26532
|
-
height: 0;
|
26533
|
-
position: absolute;
|
26534
|
-
}
|
26535
|
-
|
26536
|
-
.v-slider-thumb__ripple {
|
26537
|
-
position: absolute;
|
26538
|
-
left: calc(var(--v-slider-thumb-size) / -2);
|
26539
|
-
top: calc(var(--v-slider-thumb-size) / -2);
|
26540
|
-
width: calc(var(--v-slider-thumb-size) * 2);
|
26541
|
-
height: calc(var(--v-slider-thumb-size) * 2);
|
26542
|
-
background: inherit;
|
26383
|
+
overflow: hidden;
|
26384
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26385
|
+
cursor: pointer;
|
26543
26386
|
}
|
26544
|
-
|
26545
|
-
|
26546
|
-
|
26547
|
-
|
26548
|
-
|
26387
|
+
.v-color-picker-swatches__color > div {
|
26388
|
+
display: flex;
|
26389
|
+
align-items: center;
|
26390
|
+
justify-content: center;
|
26391
|
+
width: 100%;
|
26392
|
+
height: 100%;
|
26393
|
+
}.v-picker.v-sheet {
|
26394
|
+
display: grid;
|
26395
|
+
grid-auto-rows: min-content;
|
26396
|
+
grid-template-areas: "title" "header" "body";
|
26397
|
+
overflow: hidden;
|
26549
26398
|
}
|
26550
|
-
.v-
|
26551
|
-
|
26552
|
-
top: 0;
|
26399
|
+
.v-picker.v-sheet {
|
26400
|
+
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));
|
26553
26401
|
}
|
26554
|
-
.v-
|
26555
|
-
|
26402
|
+
.v-picker.v-sheet {
|
26403
|
+
border-radius: 4px;
|
26556
26404
|
}
|
26557
|
-
.v-
|
26558
|
-
|
26405
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
26406
|
+
grid-template-areas: "title" "header" "body" "actions";
|
26559
26407
|
}
|
26560
26408
|
|
26561
|
-
.v-
|
26562
|
-
|
26409
|
+
.v-picker__body {
|
26410
|
+
grid-area: body;
|
26411
|
+
overflow: hidden;
|
26412
|
+
position: relative;
|
26563
26413
|
}
|
26564
26414
|
|
26565
|
-
.v-
|
26566
|
-
|
26567
|
-
border-right: 6px solid transparent;
|
26568
|
-
border-top: 6px solid currentColor;
|
26569
|
-
bottom: -6px;
|
26415
|
+
.v-picker__header {
|
26416
|
+
grid-area: header;
|
26570
26417
|
}
|
26571
26418
|
|
26572
|
-
.v-
|
26573
|
-
|
26574
|
-
|
26575
|
-
|
26576
|
-
|
26577
|
-
|
26419
|
+
.v-picker__actions {
|
26420
|
+
grid-area: actions;
|
26421
|
+
padding: 0 12px 12px;
|
26422
|
+
display: flex;
|
26423
|
+
align-items: center;
|
26424
|
+
justify-content: flex-end;
|
26578
26425
|
}
|
26579
|
-
.v-
|
26580
|
-
|
26581
|
-
left: calc(var(--v-slider-thumb-size) / 2);
|
26426
|
+
.v-picker__actions .v-btn {
|
26427
|
+
min-width: 48px;
|
26582
26428
|
}
|
26583
|
-
.v-
|
26584
|
-
|
26585
|
-
border-top: 6px solid transparent;
|
26586
|
-
border-bottom: 6px solid transparent;
|
26587
|
-
left: -6px;
|
26429
|
+
.v-picker__actions .v-btn:not(:last-child) {
|
26430
|
+
margin-inline-end: 8px;
|
26588
26431
|
}
|
26589
26432
|
|
26590
|
-
.v-
|
26591
|
-
|
26592
|
-
opacity: var(--v-focus-opacity);
|
26433
|
+
.v-picker--landscape {
|
26434
|
+
grid-template-areas: "title" "header body" "header body";
|
26593
26435
|
}
|
26594
26436
|
|
26595
|
-
.v-
|
26596
|
-
|
26597
|
-
}
|
26598
|
-
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26599
|
-
opacity: var(--v-pressed-opacity);
|
26437
|
+
.v-picker--landscape.v-picker--with-actions {
|
26438
|
+
grid-template-areas: "title" "header body" "header actions";
|
26600
26439
|
}
|
26601
26440
|
|
26602
|
-
|
26603
|
-
|
26604
|
-
|
26605
|
-
|
26606
|
-
|
26607
|
-
|
26608
|
-
|
26441
|
+
.v-picker-title {
|
26442
|
+
text-transform: uppercase;
|
26443
|
+
font-size: 0.75rem;
|
26444
|
+
grid-area: title;
|
26445
|
+
padding-inline: 24px 12px;
|
26446
|
+
padding-top: 16px;
|
26447
|
+
padding-bottom: 16px;
|
26448
|
+
font-weight: 400;
|
26449
|
+
letter-spacing: 0.1666666667em;
|
26609
26450
|
}.v-slider-track__background {
|
26610
26451
|
background-color: rgb(var(--v-theme-surface-variant));
|
26611
26452
|
}
|
@@ -26784,4 +26625,163 @@ html.v-overlay-scroll-blocked {
|
|
26784
26625
|
|
26785
26626
|
.v-slider-track__background--opacity {
|
26786
26627
|
opacity: 0.38;
|
26628
|
+
}.v-slider-thumb {
|
26629
|
+
touch-action: none;
|
26630
|
+
color: rgb(var(--v-theme-surface-variant));
|
26631
|
+
}
|
26632
|
+
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26633
|
+
color: inherit;
|
26634
|
+
}
|
26635
|
+
|
26636
|
+
.v-slider-thumb__label {
|
26637
|
+
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26638
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26639
|
+
}
|
26640
|
+
.v-slider-thumb__label::before {
|
26641
|
+
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26642
|
+
}
|
26643
|
+
|
26644
|
+
.v-slider-thumb {
|
26645
|
+
outline: none;
|
26646
|
+
position: absolute;
|
26647
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26648
|
+
}
|
26649
|
+
|
26650
|
+
.v-slider-thumb__surface {
|
26651
|
+
cursor: pointer;
|
26652
|
+
width: var(--v-slider-thumb-size);
|
26653
|
+
height: var(--v-slider-thumb-size);
|
26654
|
+
border-radius: 50%;
|
26655
|
+
-webkit-user-select: none;
|
26656
|
+
user-select: none;
|
26657
|
+
background-color: currentColor;
|
26658
|
+
}
|
26659
|
+
@media (forced-colors: active) {
|
26660
|
+
.v-slider-thumb__surface {
|
26661
|
+
background-color: highlight;
|
26662
|
+
}
|
26663
|
+
}
|
26664
|
+
.v-slider-thumb__surface::before {
|
26665
|
+
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26666
|
+
content: "";
|
26667
|
+
color: inherit;
|
26668
|
+
top: 0;
|
26669
|
+
left: 0;
|
26670
|
+
width: 100%;
|
26671
|
+
height: 100%;
|
26672
|
+
border-radius: 50%;
|
26673
|
+
background: currentColor;
|
26674
|
+
position: absolute;
|
26675
|
+
pointer-events: none;
|
26676
|
+
opacity: 0;
|
26677
|
+
}
|
26678
|
+
.v-slider-thumb__surface::after {
|
26679
|
+
content: "";
|
26680
|
+
width: 42px;
|
26681
|
+
height: 42px;
|
26682
|
+
position: absolute;
|
26683
|
+
top: 50%;
|
26684
|
+
left: 50%;
|
26685
|
+
transform: translate(-50%, -50%);
|
26686
|
+
}
|
26687
|
+
|
26688
|
+
.v-slider-thumb__label-container {
|
26689
|
+
position: absolute;
|
26690
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26691
|
+
}
|
26692
|
+
|
26693
|
+
.v-slider-thumb__label {
|
26694
|
+
display: flex;
|
26695
|
+
align-items: center;
|
26696
|
+
justify-content: center;
|
26697
|
+
font-size: 0.75rem;
|
26698
|
+
min-width: 35px;
|
26699
|
+
height: 25px;
|
26700
|
+
border-radius: 4px;
|
26701
|
+
padding: 6px;
|
26702
|
+
position: absolute;
|
26703
|
+
-webkit-user-select: none;
|
26704
|
+
user-select: none;
|
26705
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26706
|
+
}
|
26707
|
+
.v-slider-thumb__label::before {
|
26708
|
+
content: "";
|
26709
|
+
width: 0;
|
26710
|
+
height: 0;
|
26711
|
+
position: absolute;
|
26712
|
+
}
|
26713
|
+
|
26714
|
+
.v-slider-thumb__ripple {
|
26715
|
+
position: absolute;
|
26716
|
+
left: calc(var(--v-slider-thumb-size) / -2);
|
26717
|
+
top: calc(var(--v-slider-thumb-size) / -2);
|
26718
|
+
width: calc(var(--v-slider-thumb-size) * 2);
|
26719
|
+
height: calc(var(--v-slider-thumb-size) * 2);
|
26720
|
+
background: inherit;
|
26721
|
+
}
|
26722
|
+
|
26723
|
+
.v-slider.v-input--horizontal .v-slider-thumb {
|
26724
|
+
top: 50%;
|
26725
|
+
transform: translateY(-50%);
|
26726
|
+
inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26727
|
+
}
|
26728
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
26729
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26730
|
+
top: 0;
|
26731
|
+
}
|
26732
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
26733
|
+
bottom: calc(var(--v-slider-thumb-size) / 2);
|
26734
|
+
}
|
26735
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26736
|
+
transform: translateX(-50%);
|
26737
|
+
}
|
26738
|
+
|
26739
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26740
|
+
transform: translateX(50%);
|
26741
|
+
}
|
26742
|
+
|
26743
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
26744
|
+
border-left: 6px solid transparent;
|
26745
|
+
border-right: 6px solid transparent;
|
26746
|
+
border-top: 6px solid currentColor;
|
26747
|
+
bottom: -6px;
|
26748
|
+
}
|
26749
|
+
|
26750
|
+
.v-slider.v-input--vertical .v-slider-thumb {
|
26751
|
+
top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26752
|
+
}
|
26753
|
+
.v-slider.v-input--vertical .v-slider-thumb__label-container {
|
26754
|
+
top: calc(var(--v-slider-thumb-size) / 2);
|
26755
|
+
right: 0;
|
26756
|
+
}
|
26757
|
+
.v-slider.v-input--vertical .v-slider-thumb__label {
|
26758
|
+
top: -12.5px;
|
26759
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26760
|
+
}
|
26761
|
+
.v-slider.v-input--vertical .v-slider-thumb__label::before {
|
26762
|
+
border-right: 6px solid currentColor;
|
26763
|
+
border-top: 6px solid transparent;
|
26764
|
+
border-bottom: 6px solid transparent;
|
26765
|
+
left: -6px;
|
26766
|
+
}
|
26767
|
+
|
26768
|
+
.v-slider-thumb--focused .v-slider-thumb__surface::before {
|
26769
|
+
transform: scale(2);
|
26770
|
+
opacity: var(--v-focus-opacity);
|
26771
|
+
}
|
26772
|
+
|
26773
|
+
.v-slider-thumb--pressed {
|
26774
|
+
transition: none;
|
26775
|
+
}
|
26776
|
+
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26777
|
+
opacity: var(--v-pressed-opacity);
|
26778
|
+
}
|
26779
|
+
|
26780
|
+
@media (hover: hover) {
|
26781
|
+
.v-slider-thumb:hover .v-slider-thumb__surface::before {
|
26782
|
+
transform: scale(2);
|
26783
|
+
}
|
26784
|
+
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
26785
|
+
opacity: var(--v-hover-opacity);
|
26786
|
+
}
|
26787
26787
|
}
|