@vuetify/nightly 3.6.7-master.2024-05-28 → 3.6.7-master.2024-05-29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -2
- package/dist/json/attributes.json +39 -7
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +132 -132
- package/dist/json/tags.json +8 -0
- package/dist/json/web-types.json +82 -10
- package/dist/vuetify-labs.css +1493 -1490
- package/dist/vuetify-labs.d.ts +78 -18
- package/dist/vuetify-labs.esm.js +21 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +847 -844
- package/dist/vuetify.d.ts +86 -56
- package/dist/vuetify.esm.js +21 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDivider/VDivider.mjs +1 -1
- package/lib/components/VDivider/VDivider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +1 -1
- package/lib/components/VStepper/VStepper.mjs +18 -4
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.css +3 -0
- package/lib/components/VStepper/VStepperItem.sass +3 -0
- package/lib/components/VStepper/index.d.mts +43 -9
- package/lib/components/index.d.mts +39 -9
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +47 -47
- package/lib/labs/VStepperVertical/index.d.mts +43 -9
- package/lib/labs/components.d.mts +3752 -3718
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.7-master.2024-05-
|
2
|
+
* Vuetify v3.6.7-master.2024-05-29
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17777,6 +17777,77 @@ html.overflow-y-hidden {
|
|
17777
17777
|
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
17778
17778
|
opacity: var(--v-high-emphasis-opacity);
|
17779
17779
|
transform: rotate(180deg);
|
17780
|
+
}.v-badge {
|
17781
|
+
display: inline-block;
|
17782
|
+
line-height: 1;
|
17783
|
+
}
|
17784
|
+
|
17785
|
+
.v-badge__badge {
|
17786
|
+
align-items: center;
|
17787
|
+
display: inline-flex;
|
17788
|
+
border-radius: 10px;
|
17789
|
+
font-size: 0.75rem;
|
17790
|
+
font-weight: 500;
|
17791
|
+
height: 1.25rem;
|
17792
|
+
justify-content: center;
|
17793
|
+
min-width: 20px;
|
17794
|
+
padding: 4px 6px;
|
17795
|
+
pointer-events: auto;
|
17796
|
+
position: absolute;
|
17797
|
+
text-align: center;
|
17798
|
+
text-indent: 0;
|
17799
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
17800
|
+
white-space: nowrap;
|
17801
|
+
background: rgb(var(--v-theme-surface-variant));
|
17802
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
17803
|
+
}
|
17804
|
+
.v-badge--bordered .v-badge__badge::after {
|
17805
|
+
border-radius: inherit;
|
17806
|
+
border-style: solid;
|
17807
|
+
border-width: 2px;
|
17808
|
+
bottom: 0;
|
17809
|
+
color: rgb(var(--v-theme-background));
|
17810
|
+
content: "";
|
17811
|
+
left: 0;
|
17812
|
+
position: absolute;
|
17813
|
+
right: 0;
|
17814
|
+
top: 0;
|
17815
|
+
transform: scale(1.05);
|
17816
|
+
}
|
17817
|
+
.v-badge--dot .v-badge__badge {
|
17818
|
+
border-radius: 4.5px;
|
17819
|
+
height: 9px;
|
17820
|
+
min-width: 0;
|
17821
|
+
padding: 0;
|
17822
|
+
width: 9px;
|
17823
|
+
}
|
17824
|
+
.v-badge--dot .v-badge__badge::after {
|
17825
|
+
border-width: 1.5px;
|
17826
|
+
}
|
17827
|
+
.v-badge--inline .v-badge__badge {
|
17828
|
+
position: relative;
|
17829
|
+
vertical-align: middle;
|
17830
|
+
}
|
17831
|
+
.v-badge__badge .v-icon {
|
17832
|
+
color: inherit;
|
17833
|
+
font-size: 0.75rem;
|
17834
|
+
margin: 0 -2px;
|
17835
|
+
}
|
17836
|
+
.v-badge__badge img,
|
17837
|
+
.v-badge__badge .v-img {
|
17838
|
+
height: 100%;
|
17839
|
+
width: 100%;
|
17840
|
+
}
|
17841
|
+
|
17842
|
+
.v-badge__wrapper {
|
17843
|
+
display: flex;
|
17844
|
+
position: relative;
|
17845
|
+
}
|
17846
|
+
.v-badge--inline .v-badge__wrapper {
|
17847
|
+
align-items: center;
|
17848
|
+
display: inline-flex;
|
17849
|
+
justify-content: center;
|
17850
|
+
margin: 0 4px;
|
17780
17851
|
}.v-avatar {
|
17781
17852
|
flex: none;
|
17782
17853
|
align-items: center;
|
@@ -17872,77 +17943,6 @@ html.overflow-y-hidden {
|
|
17872
17943
|
.v-avatar .v-img {
|
17873
17944
|
height: 100%;
|
17874
17945
|
width: 100%;
|
17875
|
-
}.v-badge {
|
17876
|
-
display: inline-block;
|
17877
|
-
line-height: 1;
|
17878
|
-
}
|
17879
|
-
|
17880
|
-
.v-badge__badge {
|
17881
|
-
align-items: center;
|
17882
|
-
display: inline-flex;
|
17883
|
-
border-radius: 10px;
|
17884
|
-
font-size: 0.75rem;
|
17885
|
-
font-weight: 500;
|
17886
|
-
height: 1.25rem;
|
17887
|
-
justify-content: center;
|
17888
|
-
min-width: 20px;
|
17889
|
-
padding: 4px 6px;
|
17890
|
-
pointer-events: auto;
|
17891
|
-
position: absolute;
|
17892
|
-
text-align: center;
|
17893
|
-
text-indent: 0;
|
17894
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
17895
|
-
white-space: nowrap;
|
17896
|
-
background: rgb(var(--v-theme-surface-variant));
|
17897
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
17898
|
-
}
|
17899
|
-
.v-badge--bordered .v-badge__badge::after {
|
17900
|
-
border-radius: inherit;
|
17901
|
-
border-style: solid;
|
17902
|
-
border-width: 2px;
|
17903
|
-
bottom: 0;
|
17904
|
-
color: rgb(var(--v-theme-background));
|
17905
|
-
content: "";
|
17906
|
-
left: 0;
|
17907
|
-
position: absolute;
|
17908
|
-
right: 0;
|
17909
|
-
top: 0;
|
17910
|
-
transform: scale(1.05);
|
17911
|
-
}
|
17912
|
-
.v-badge--dot .v-badge__badge {
|
17913
|
-
border-radius: 4.5px;
|
17914
|
-
height: 9px;
|
17915
|
-
min-width: 0;
|
17916
|
-
padding: 0;
|
17917
|
-
width: 9px;
|
17918
|
-
}
|
17919
|
-
.v-badge--dot .v-badge__badge::after {
|
17920
|
-
border-width: 1.5px;
|
17921
|
-
}
|
17922
|
-
.v-badge--inline .v-badge__badge {
|
17923
|
-
position: relative;
|
17924
|
-
vertical-align: middle;
|
17925
|
-
}
|
17926
|
-
.v-badge__badge .v-icon {
|
17927
|
-
color: inherit;
|
17928
|
-
font-size: 0.75rem;
|
17929
|
-
margin: 0 -2px;
|
17930
|
-
}
|
17931
|
-
.v-badge__badge img,
|
17932
|
-
.v-badge__badge .v-img {
|
17933
|
-
height: 100%;
|
17934
|
-
width: 100%;
|
17935
|
-
}
|
17936
|
-
|
17937
|
-
.v-badge__wrapper {
|
17938
|
-
display: flex;
|
17939
|
-
position: relative;
|
17940
|
-
}
|
17941
|
-
.v-badge--inline .v-badge__wrapper {
|
17942
|
-
align-items: center;
|
17943
|
-
display: inline-flex;
|
17944
|
-
justify-content: center;
|
17945
|
-
margin: 0 4px;
|
17946
17946
|
}.v-banner {
|
17947
17947
|
display: grid;
|
17948
17948
|
flex: 1 1;
|
@@ -18155,6 +18155,38 @@ html.overflow-y-hidden {
|
|
18155
18155
|
}
|
18156
18156
|
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18157
18157
|
transform: translateY(0.5rem);
|
18158
|
+
}.bottom-sheet-transition-enter-from {
|
18159
|
+
transform: translateY(100%);
|
18160
|
+
}
|
18161
|
+
.bottom-sheet-transition-leave-to {
|
18162
|
+
transform: translateY(100%);
|
18163
|
+
}
|
18164
|
+
|
18165
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18166
|
+
align-self: flex-end;
|
18167
|
+
border-radius: 0;
|
18168
|
+
flex: 0 1 auto;
|
18169
|
+
left: 0;
|
18170
|
+
right: 0;
|
18171
|
+
margin-inline: 0;
|
18172
|
+
margin-bottom: 0;
|
18173
|
+
transition-duration: 0.2s;
|
18174
|
+
width: 100%;
|
18175
|
+
max-width: 100%;
|
18176
|
+
overflow: visible;
|
18177
|
+
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18178
|
+
}
|
18179
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18180
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18181
|
+
border-radius: 0;
|
18182
|
+
}
|
18183
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18184
|
+
max-width: none;
|
18185
|
+
}
|
18186
|
+
@media (min-width: 600px) {
|
18187
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18188
|
+
max-width: 70%;
|
18189
|
+
}
|
18158
18190
|
}.v-breadcrumbs {
|
18159
18191
|
display: flex;
|
18160
18192
|
align-items: center;
|
@@ -18212,38 +18244,6 @@ html.overflow-y-hidden {
|
|
18212
18244
|
display: inline-block;
|
18213
18245
|
padding: 0 8px;
|
18214
18246
|
vertical-align: middle;
|
18215
|
-
}.bottom-sheet-transition-enter-from {
|
18216
|
-
transform: translateY(100%);
|
18217
|
-
}
|
18218
|
-
.bottom-sheet-transition-leave-to {
|
18219
|
-
transform: translateY(100%);
|
18220
|
-
}
|
18221
|
-
|
18222
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18223
|
-
align-self: flex-end;
|
18224
|
-
border-radius: 0;
|
18225
|
-
flex: 0 1 auto;
|
18226
|
-
left: 0;
|
18227
|
-
right: 0;
|
18228
|
-
margin-inline: 0;
|
18229
|
-
margin-bottom: 0;
|
18230
|
-
transition-duration: 0.2s;
|
18231
|
-
width: 100%;
|
18232
|
-
max-width: 100%;
|
18233
|
-
overflow: visible;
|
18234
|
-
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18235
|
-
}
|
18236
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18237
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18238
|
-
border-radius: 0;
|
18239
|
-
}
|
18240
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18241
|
-
max-width: none;
|
18242
|
-
}
|
18243
|
-
@media (min-width: 600px) {
|
18244
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18245
|
-
max-width: 70%;
|
18246
|
-
}
|
18247
18247
|
}.v-btn {
|
18248
18248
|
align-items: center;
|
18249
18249
|
border-radius: 4px;
|
@@ -18662,19 +18662,6 @@ html.overflow-y-hidden {
|
|
18662
18662
|
}
|
18663
18663
|
.v-pagination__item--is-active .v-btn__overlay {
|
18664
18664
|
opacity: var(--v-border-opacity);
|
18665
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
18666
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
18667
|
-
}
|
18668
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
18669
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
18670
|
-
}
|
18671
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
18672
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18673
|
-
}
|
18674
|
-
@supports not selector(:focus-visible) {
|
18675
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
18676
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18677
|
-
}
|
18678
18665
|
}.v-btn-group {
|
18679
18666
|
display: inline-flex;
|
18680
18667
|
flex-wrap: nowrap;
|
@@ -18731,6 +18718,19 @@ html.overflow-y-hidden {
|
|
18731
18718
|
}
|
18732
18719
|
.v-btn-group--tile {
|
18733
18720
|
border-radius: 0;
|
18721
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
18722
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
18723
|
+
}
|
18724
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
18725
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
18726
|
+
}
|
18727
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
18728
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18729
|
+
}
|
18730
|
+
@supports not selector(:focus-visible) {
|
18731
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
18732
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18733
|
+
}
|
18734
18734
|
}.v-card {
|
18735
18735
|
display: block;
|
18736
18736
|
overflow: hidden;
|
@@ -19629,50 +19629,19 @@ html.overflow-y-hidden {
|
|
19629
19629
|
.v-combobox--active-menu .v-combobox__menu-icon {
|
19630
19630
|
opacity: var(--v-high-emphasis-opacity);
|
19631
19631
|
transform: rotate(180deg);
|
19632
|
-
}.v-
|
19633
|
-
|
19634
|
-
|
19635
|
-
|
19636
|
-
|
19637
|
-
|
19632
|
+
}.v-counter {
|
19633
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
19634
|
+
flex: 0 1 auto;
|
19635
|
+
font-size: 12px;
|
19636
|
+
transition-duration: 150ms;
|
19637
|
+
}.v-data-table {
|
19638
|
+
width: 100%;
|
19638
19639
|
}
|
19639
|
-
|
19640
|
-
|
19641
|
-
|
19642
|
-
|
19643
|
-
|
19644
|
-
.v-data-table-footer__items-per-page > span {
|
19645
|
-
padding-inline-end: 8px;
|
19646
|
-
}
|
19647
|
-
.v-data-table-footer__items-per-page > .v-select {
|
19648
|
-
width: 90px;
|
19649
|
-
}
|
19650
|
-
.v-data-table-footer__info {
|
19651
|
-
display: flex;
|
19652
|
-
justify-content: flex-end;
|
19653
|
-
min-width: 116px;
|
19654
|
-
padding: 0 16px;
|
19655
|
-
}
|
19656
|
-
.v-data-table-footer__paginationz {
|
19657
|
-
align-items: center;
|
19658
|
-
display: flex;
|
19659
|
-
margin-inline-start: 16px;
|
19660
|
-
}
|
19661
|
-
.v-data-table-footer__page {
|
19662
|
-
padding: 0 8px;
|
19663
|
-
}.v-counter {
|
19664
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
19665
|
-
flex: 0 1 auto;
|
19666
|
-
font-size: 12px;
|
19667
|
-
transition-duration: 150ms;
|
19668
|
-
}.v-data-table {
|
19669
|
-
width: 100%;
|
19670
|
-
}
|
19671
|
-
|
19672
|
-
.v-data-table__table {
|
19673
|
-
width: 100%;
|
19674
|
-
border-collapse: separate;
|
19675
|
-
border-spacing: 0;
|
19640
|
+
|
19641
|
+
.v-data-table__table {
|
19642
|
+
width: 100%;
|
19643
|
+
border-collapse: separate;
|
19644
|
+
border-spacing: 0;
|
19676
19645
|
}
|
19677
19646
|
|
19678
19647
|
.v-data-table__tr--focus {
|
@@ -19852,67 +19821,37 @@ html.overflow-y-hidden {
|
|
19852
19821
|
}
|
19853
19822
|
.v-data-table__td-sort-icon-active {
|
19854
19823
|
color: rgba(var(--v-theme-on-surface));
|
19855
|
-
}.v-
|
19856
|
-
|
19857
|
-
width: 328px;
|
19858
|
-
}
|
19859
|
-
.v-date-picker--show-week {
|
19860
|
-
width: 368px;
|
19861
|
-
}.v-date-picker-month {
|
19824
|
+
}.v-data-table-footer {
|
19825
|
+
align-items: center;
|
19862
19826
|
display: flex;
|
19863
|
-
|
19864
|
-
|
19865
|
-
|
19866
|
-
}
|
19867
|
-
|
19868
|
-
.v-date-picker-month__weeks {
|
19869
|
-
display: grid;
|
19870
|
-
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
19871
|
-
column-gap: 4px;
|
19872
|
-
font-size: 0.85rem;
|
19873
|
-
}
|
19874
|
-
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
19875
|
-
grid-row-gap: 0;
|
19876
|
-
}
|
19877
|
-
|
19878
|
-
.v-date-picker-month__weekday {
|
19879
|
-
font-size: 0.85rem;
|
19880
|
-
}
|
19881
|
-
|
19882
|
-
.v-date-picker-month__days {
|
19883
|
-
display: grid;
|
19884
|
-
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
19885
|
-
column-gap: 4px;
|
19886
|
-
flex: 1 1;
|
19887
|
-
justify-content: space-around;
|
19827
|
+
flex-wrap: wrap;
|
19828
|
+
justify-content: flex-end;
|
19829
|
+
padding: 8px 4px;
|
19888
19830
|
}
|
19889
|
-
|
19890
|
-
.v-date-picker-month__day {
|
19831
|
+
.v-data-table-footer__items-per-page {
|
19891
19832
|
align-items: center;
|
19892
19833
|
display: flex;
|
19893
19834
|
justify-content: center;
|
19894
|
-
position: relative;
|
19895
|
-
height: 40px;
|
19896
|
-
width: 40px;
|
19897
19835
|
}
|
19898
|
-
.v-
|
19899
|
-
|
19900
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
19836
|
+
.v-data-table-footer__items-per-page > span {
|
19837
|
+
padding-inline-end: 8px;
|
19901
19838
|
}
|
19902
|
-
.v-
|
19903
|
-
|
19904
|
-
--v-btn-size: 0.85rem;
|
19839
|
+
.v-data-table-footer__items-per-page > .v-select {
|
19840
|
+
width: 90px;
|
19905
19841
|
}
|
19906
|
-
.v-
|
19907
|
-
|
19842
|
+
.v-data-table-footer__info {
|
19843
|
+
display: flex;
|
19844
|
+
justify-content: flex-end;
|
19845
|
+
min-width: 116px;
|
19846
|
+
padding: 0 16px;
|
19908
19847
|
}
|
19909
|
-
|
19910
|
-
|
19911
|
-
|
19848
|
+
.v-data-table-footer__paginationz {
|
19849
|
+
align-items: center;
|
19850
|
+
display: flex;
|
19851
|
+
margin-inline-start: 16px;
|
19912
19852
|
}
|
19913
|
-
|
19914
|
-
|
19915
|
-
opacity: 0;
|
19853
|
+
.v-data-table-footer__page {
|
19854
|
+
padding: 0 8px;
|
19916
19855
|
}.v-date-picker-controls {
|
19917
19856
|
display: flex;
|
19918
19857
|
align-items: center;
|
@@ -20029,6 +19968,67 @@ html.overflow-y-hidden {
|
|
20029
19968
|
.date-picker-header-reverse-transition-leave-to {
|
20030
19969
|
opacity: 0;
|
20031
19970
|
transform: translate(0, 100%);
|
19971
|
+
}.v-date-picker {
|
19972
|
+
overflow: hidden;
|
19973
|
+
width: 328px;
|
19974
|
+
}
|
19975
|
+
.v-date-picker--show-week {
|
19976
|
+
width: 368px;
|
19977
|
+
}.v-date-picker-month {
|
19978
|
+
display: flex;
|
19979
|
+
justify-content: center;
|
19980
|
+
padding: 0 12px 8px;
|
19981
|
+
--v-date-picker-month-day-diff: 4px;
|
19982
|
+
}
|
19983
|
+
|
19984
|
+
.v-date-picker-month__weeks {
|
19985
|
+
display: grid;
|
19986
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
19987
|
+
column-gap: 4px;
|
19988
|
+
font-size: 0.85rem;
|
19989
|
+
}
|
19990
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
19991
|
+
grid-row-gap: 0;
|
19992
|
+
}
|
19993
|
+
|
19994
|
+
.v-date-picker-month__weekday {
|
19995
|
+
font-size: 0.85rem;
|
19996
|
+
}
|
19997
|
+
|
19998
|
+
.v-date-picker-month__days {
|
19999
|
+
display: grid;
|
20000
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
20001
|
+
column-gap: 4px;
|
20002
|
+
flex: 1 1;
|
20003
|
+
justify-content: space-around;
|
20004
|
+
}
|
20005
|
+
|
20006
|
+
.v-date-picker-month__day {
|
20007
|
+
align-items: center;
|
20008
|
+
display: flex;
|
20009
|
+
justify-content: center;
|
20010
|
+
position: relative;
|
20011
|
+
height: 40px;
|
20012
|
+
width: 40px;
|
20013
|
+
}
|
20014
|
+
.v-date-picker-month__day--selected .v-btn {
|
20015
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
20016
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
20017
|
+
}
|
20018
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
20019
|
+
--v-btn-height: 24px;
|
20020
|
+
--v-btn-size: 0.85rem;
|
20021
|
+
}
|
20022
|
+
.v-date-picker-month__day--week {
|
20023
|
+
font-size: var(--v-btn-size);
|
20024
|
+
}
|
20025
|
+
|
20026
|
+
.v-date-picker-month__day--adjacent {
|
20027
|
+
opacity: 0.5;
|
20028
|
+
}
|
20029
|
+
|
20030
|
+
.v-date-picker-month__day--hide-adjacent {
|
20031
|
+
opacity: 0;
|
20032
20032
|
}.v-date-picker-months {
|
20033
20033
|
height: 288px;
|
20034
20034
|
}
|
@@ -20063,56 +20063,6 @@ html.overflow-y-hidden {
|
|
20063
20063
|
}
|
20064
20064
|
.v-date-picker-years__content .v-btn {
|
20065
20065
|
padding-inline: 8px;
|
20066
|
-
}.v-divider {
|
20067
|
-
display: block;
|
20068
|
-
flex: 1 1 100%;
|
20069
|
-
height: 0px;
|
20070
|
-
max-height: 0px;
|
20071
|
-
opacity: var(--v-border-opacity);
|
20072
|
-
transition: inherit;
|
20073
|
-
border-style: solid;
|
20074
|
-
border-width: thin 0 0 0;
|
20075
|
-
}
|
20076
|
-
.v-divider--vertical {
|
20077
|
-
align-self: stretch;
|
20078
|
-
border-width: 0 thin 0 0;
|
20079
|
-
display: inline-flex;
|
20080
|
-
height: auto;
|
20081
|
-
margin-left: -1px;
|
20082
|
-
max-height: 100%;
|
20083
|
-
max-width: 0px;
|
20084
|
-
vertical-align: text-bottom;
|
20085
|
-
width: 0px;
|
20086
|
-
}
|
20087
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
20088
|
-
max-width: calc(100% - 72px);
|
20089
|
-
margin-inline-start: 72px;
|
20090
|
-
}
|
20091
|
-
.v-divider--inset.v-divider--vertical {
|
20092
|
-
margin-bottom: 8px;
|
20093
|
-
margin-top: 8px;
|
20094
|
-
max-height: calc(100% - 16px);
|
20095
|
-
}
|
20096
|
-
|
20097
|
-
.v-divider__content {
|
20098
|
-
padding: 0 16px;
|
20099
|
-
text-wrap: nowrap;
|
20100
|
-
}
|
20101
|
-
.v-divider__wrapper--vertical .v-divider__content {
|
20102
|
-
padding: 4px 0;
|
20103
|
-
}
|
20104
|
-
|
20105
|
-
.v-divider__wrapper {
|
20106
|
-
display: flex;
|
20107
|
-
align-items: center;
|
20108
|
-
justify-content: center;
|
20109
|
-
}
|
20110
|
-
.v-divider__wrapper--vertical {
|
20111
|
-
flex-direction: column;
|
20112
|
-
height: 100%;
|
20113
|
-
}
|
20114
|
-
.v-divider__wrapper--vertical .v-divider {
|
20115
|
-
margin: 0 auto;
|
20116
20066
|
}.v-dialog {
|
20117
20067
|
align-items: center;
|
20118
20068
|
justify-content: center;
|
@@ -20205,27 +20155,144 @@ html.overflow-y-hidden {
|
|
20205
20155
|
-webkit-backface-visibility: hidden;
|
20206
20156
|
backface-visibility: hidden;
|
20207
20157
|
overflow-y: auto;
|
20208
|
-
}.v-
|
20209
|
-
|
20210
|
-
|
20158
|
+
}.v-divider {
|
20159
|
+
display: block;
|
20160
|
+
flex: 1 1 100%;
|
20161
|
+
height: 0px;
|
20162
|
+
max-height: 0px;
|
20163
|
+
opacity: var(--v-border-opacity);
|
20164
|
+
transition: inherit;
|
20165
|
+
border-style: solid;
|
20166
|
+
border-width: thin 0 0 0;
|
20211
20167
|
}
|
20212
|
-
.v-
|
20213
|
-
|
20168
|
+
.v-divider--vertical {
|
20169
|
+
align-self: stretch;
|
20170
|
+
border-width: 0 thin 0 0;
|
20171
|
+
display: inline-flex;
|
20172
|
+
height: auto;
|
20173
|
+
margin-left: -1px;
|
20174
|
+
max-height: 100%;
|
20175
|
+
max-width: 0px;
|
20176
|
+
vertical-align: text-bottom;
|
20177
|
+
width: 0px;
|
20214
20178
|
}
|
20215
|
-
.v-
|
20216
|
-
|
20179
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
20180
|
+
max-width: calc(100% - 72px);
|
20181
|
+
margin-inline-start: 72px;
|
20217
20182
|
}
|
20218
|
-
.v-
|
20219
|
-
|
20183
|
+
.v-divider--inset.v-divider--vertical {
|
20184
|
+
margin-bottom: 8px;
|
20185
|
+
margin-top: 8px;
|
20186
|
+
max-height: calc(100% - 16px);
|
20220
20187
|
}
|
20221
20188
|
|
20222
|
-
.v-
|
20223
|
-
|
20224
|
-
|
20225
|
-
|
20226
|
-
|
20227
|
-
padding: 0;
|
20228
|
-
|
20189
|
+
.v-divider__content {
|
20190
|
+
padding: 0 16px;
|
20191
|
+
text-wrap: nowrap;
|
20192
|
+
}
|
20193
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
20194
|
+
padding: 4px 0;
|
20195
|
+
}
|
20196
|
+
|
20197
|
+
.v-divider__wrapper {
|
20198
|
+
display: flex;
|
20199
|
+
align-items: center;
|
20200
|
+
justify-content: center;
|
20201
|
+
}
|
20202
|
+
.v-divider__wrapper--vertical {
|
20203
|
+
flex-direction: column;
|
20204
|
+
height: 100%;
|
20205
|
+
}
|
20206
|
+
.v-divider__wrapper--vertical .v-divider {
|
20207
|
+
margin: 0 auto;
|
20208
|
+
}.v-empty-state {
|
20209
|
+
align-items: center;
|
20210
|
+
display: flex;
|
20211
|
+
flex-direction: column;
|
20212
|
+
justify-content: center;
|
20213
|
+
min-height: 100%;
|
20214
|
+
padding: 16px;
|
20215
|
+
}
|
20216
|
+
.v-empty-state--start {
|
20217
|
+
align-items: flex-start;
|
20218
|
+
}
|
20219
|
+
.v-empty-state--center {
|
20220
|
+
align-items: center;
|
20221
|
+
}
|
20222
|
+
.v-empty-state--end {
|
20223
|
+
align-items: flex-end;
|
20224
|
+
}
|
20225
|
+
|
20226
|
+
.v-empty-state__media {
|
20227
|
+
text-align: center;
|
20228
|
+
width: 100%;
|
20229
|
+
}
|
20230
|
+
.v-empty-state__media .v-icon {
|
20231
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20232
|
+
}
|
20233
|
+
|
20234
|
+
.v-empty-state__headline {
|
20235
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20236
|
+
font-size: 3.75rem;
|
20237
|
+
font-weight: 300;
|
20238
|
+
line-height: 1;
|
20239
|
+
text-align: center;
|
20240
|
+
margin-bottom: 8px;
|
20241
|
+
}
|
20242
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
20243
|
+
font-size: 2.125rem;
|
20244
|
+
}
|
20245
|
+
|
20246
|
+
.v-empty-state__title {
|
20247
|
+
font-size: 1.25rem;
|
20248
|
+
font-weight: 500;
|
20249
|
+
line-height: 1.6;
|
20250
|
+
margin-bottom: 4px;
|
20251
|
+
text-align: center;
|
20252
|
+
}
|
20253
|
+
|
20254
|
+
.v-empty-state__text {
|
20255
|
+
font-size: 0.875rem;
|
20256
|
+
font-weight: 400;
|
20257
|
+
line-height: 1.425;
|
20258
|
+
padding: 0 16px;
|
20259
|
+
text-align: center;
|
20260
|
+
}
|
20261
|
+
|
20262
|
+
.v-empty-state__content {
|
20263
|
+
padding: 24px 0;
|
20264
|
+
}
|
20265
|
+
|
20266
|
+
.v-empty-state__actions {
|
20267
|
+
display: flex;
|
20268
|
+
gap: 8px;
|
20269
|
+
padding: 16px;
|
20270
|
+
}
|
20271
|
+
|
20272
|
+
.v-empty-state__action-btn.v-btn {
|
20273
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
20274
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
20275
|
+
}.v-expansion-panel {
|
20276
|
+
background-color: rgb(var(--v-theme-surface));
|
20277
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
20278
|
+
}
|
20279
|
+
.v-expansion-panel:not(:first-child)::after {
|
20280
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
20281
|
+
}
|
20282
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
20283
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
20284
|
+
}
|
20285
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
20286
|
+
opacity: 0.4615384615;
|
20287
|
+
}
|
20288
|
+
|
20289
|
+
.v-expansion-panels {
|
20290
|
+
display: flex;
|
20291
|
+
flex-wrap: wrap;
|
20292
|
+
justify-content: center;
|
20293
|
+
list-style-type: none;
|
20294
|
+
padding: 0;
|
20295
|
+
width: 100%;
|
20229
20296
|
position: relative;
|
20230
20297
|
z-index: 1;
|
20231
20298
|
}
|
@@ -20415,73 +20482,6 @@ html.overflow-y-hidden {
|
|
20415
20482
|
}
|
20416
20483
|
.v-expansion-panels--tile > .v-expansion-panel {
|
20417
20484
|
border-radius: 0;
|
20418
|
-
}.v-empty-state {
|
20419
|
-
align-items: center;
|
20420
|
-
display: flex;
|
20421
|
-
flex-direction: column;
|
20422
|
-
justify-content: center;
|
20423
|
-
min-height: 100%;
|
20424
|
-
padding: 16px;
|
20425
|
-
}
|
20426
|
-
.v-empty-state--start {
|
20427
|
-
align-items: flex-start;
|
20428
|
-
}
|
20429
|
-
.v-empty-state--center {
|
20430
|
-
align-items: center;
|
20431
|
-
}
|
20432
|
-
.v-empty-state--end {
|
20433
|
-
align-items: flex-end;
|
20434
|
-
}
|
20435
|
-
|
20436
|
-
.v-empty-state__media {
|
20437
|
-
text-align: center;
|
20438
|
-
width: 100%;
|
20439
|
-
}
|
20440
|
-
.v-empty-state__media .v-icon {
|
20441
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20442
|
-
}
|
20443
|
-
|
20444
|
-
.v-empty-state__headline {
|
20445
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20446
|
-
font-size: 3.75rem;
|
20447
|
-
font-weight: 300;
|
20448
|
-
line-height: 1;
|
20449
|
-
text-align: center;
|
20450
|
-
margin-bottom: 8px;
|
20451
|
-
}
|
20452
|
-
.v-empty-state--mobile .v-empty-state__headline {
|
20453
|
-
font-size: 2.125rem;
|
20454
|
-
}
|
20455
|
-
|
20456
|
-
.v-empty-state__title {
|
20457
|
-
font-size: 1.25rem;
|
20458
|
-
font-weight: 500;
|
20459
|
-
line-height: 1.6;
|
20460
|
-
margin-bottom: 4px;
|
20461
|
-
text-align: center;
|
20462
|
-
}
|
20463
|
-
|
20464
|
-
.v-empty-state__text {
|
20465
|
-
font-size: 0.875rem;
|
20466
|
-
font-weight: 400;
|
20467
|
-
line-height: 1.425;
|
20468
|
-
padding: 0 16px;
|
20469
|
-
text-align: center;
|
20470
|
-
}
|
20471
|
-
|
20472
|
-
.v-empty-state__content {
|
20473
|
-
padding: 24px 0;
|
20474
|
-
}
|
20475
|
-
|
20476
|
-
.v-empty-state__actions {
|
20477
|
-
display: flex;
|
20478
|
-
gap: 8px;
|
20479
|
-
padding: 16px;
|
20480
|
-
}
|
20481
|
-
|
20482
|
-
.v-empty-state__action-btn.v-btn {
|
20483
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
20484
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
20485
20485
|
}.v-fab {
|
20486
20486
|
align-items: center;
|
20487
20487
|
display: inline-flex;
|
@@ -20551,6 +20551,35 @@ html.overflow-y-hidden {
|
|
20551
20551
|
}
|
20552
20552
|
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
20553
20553
|
right: 0;
|
20554
|
+
}.v-file-input--hide.v-input .v-field,
|
20555
|
+
.v-file-input--hide.v-input .v-input__control,
|
20556
|
+
.v-file-input--hide.v-input .v-input__details {
|
20557
|
+
display: none;
|
20558
|
+
}
|
20559
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
20560
|
+
grid-area: control;
|
20561
|
+
margin: 0 auto;
|
20562
|
+
}
|
20563
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20564
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20565
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20566
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20567
|
+
top: 0px;
|
20568
|
+
}
|
20569
|
+
.v-file-input input[type=file] {
|
20570
|
+
height: 100%;
|
20571
|
+
left: 0;
|
20572
|
+
opacity: 0;
|
20573
|
+
position: absolute;
|
20574
|
+
top: 0;
|
20575
|
+
width: 100%;
|
20576
|
+
z-index: 1;
|
20577
|
+
}
|
20578
|
+
.v-file-input .v-input__details {
|
20579
|
+
padding-inline: 16px;
|
20580
|
+
}
|
20581
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
20582
|
+
padding-inline: 0;
|
20554
20583
|
}/* region INPUT */
|
20555
20584
|
.v-field {
|
20556
20585
|
--v-theme-overlay-multiplier: 1;
|
@@ -21122,36 +21151,7 @@ textarea.v-field__input::placeholder {
|
|
21122
21151
|
opacity: 0;
|
21123
21152
|
}
|
21124
21153
|
|
21125
|
-
/* endregion */.v-
|
21126
|
-
.v-file-input--hide.v-input .v-input__control,
|
21127
|
-
.v-file-input--hide.v-input .v-input__details {
|
21128
|
-
display: none;
|
21129
|
-
}
|
21130
|
-
.v-file-input--hide.v-input .v-input__prepend {
|
21131
|
-
grid-area: control;
|
21132
|
-
margin: 0 auto;
|
21133
|
-
}
|
21134
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21135
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21136
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21137
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21138
|
-
top: 0px;
|
21139
|
-
}
|
21140
|
-
.v-file-input input[type=file] {
|
21141
|
-
height: 100%;
|
21142
|
-
left: 0;
|
21143
|
-
opacity: 0;
|
21144
|
-
position: absolute;
|
21145
|
-
top: 0;
|
21146
|
-
width: 100%;
|
21147
|
-
z-index: 1;
|
21148
|
-
}
|
21149
|
-
.v-file-input .v-input__details {
|
21150
|
-
padding-inline: 16px;
|
21151
|
-
}
|
21152
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
21153
|
-
padding-inline: 0;
|
21154
|
-
}.v-footer {
|
21154
|
+
/* endregion */.v-footer {
|
21155
21155
|
align-items: center;
|
21156
21156
|
display: flex;
|
21157
21157
|
flex: 1 1 auto;
|
@@ -21904,6 +21904,31 @@ textarea.v-field__input::placeholder {
|
|
21904
21904
|
|
21905
21905
|
.v-icon--end {
|
21906
21906
|
margin-inline-start: 8px;
|
21907
|
+
}.v-infinite-scroll--horizontal {
|
21908
|
+
display: flex;
|
21909
|
+
flex-direction: row;
|
21910
|
+
overflow-x: auto;
|
21911
|
+
}
|
21912
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
21913
|
+
height: 100%;
|
21914
|
+
width: 1px;
|
21915
|
+
}
|
21916
|
+
|
21917
|
+
.v-infinite-scroll--vertical {
|
21918
|
+
display: flex;
|
21919
|
+
flex-direction: column;
|
21920
|
+
overflow-y: auto;
|
21921
|
+
}
|
21922
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
21923
|
+
height: 1px;
|
21924
|
+
width: 100%;
|
21925
|
+
}
|
21926
|
+
|
21927
|
+
.v-infinite-scroll__side {
|
21928
|
+
align-items: center;
|
21929
|
+
display: flex;
|
21930
|
+
justify-content: center;
|
21931
|
+
padding: 8px;
|
21907
21932
|
}.v-img {
|
21908
21933
|
--v-theme-overlay-multiplier: 3;
|
21909
21934
|
z-index: 0;
|
@@ -21940,31 +21965,6 @@ textarea.v-field__input::placeholder {
|
|
21940
21965
|
|
21941
21966
|
.v-img__gradient {
|
21942
21967
|
background-repeat: no-repeat;
|
21943
|
-
}.v-infinite-scroll--horizontal {
|
21944
|
-
display: flex;
|
21945
|
-
flex-direction: row;
|
21946
|
-
overflow-x: auto;
|
21947
|
-
}
|
21948
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
21949
|
-
height: 100%;
|
21950
|
-
width: 1px;
|
21951
|
-
}
|
21952
|
-
|
21953
|
-
.v-infinite-scroll--vertical {
|
21954
|
-
display: flex;
|
21955
|
-
flex-direction: column;
|
21956
|
-
overflow-y: auto;
|
21957
|
-
}
|
21958
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
21959
|
-
height: 1px;
|
21960
|
-
width: 100%;
|
21961
|
-
}
|
21962
|
-
|
21963
|
-
.v-infinite-scroll__side {
|
21964
|
-
align-items: center;
|
21965
|
-
display: flex;
|
21966
|
-
justify-content: center;
|
21967
|
-
padding: 8px;
|
21968
21968
|
}.v-input {
|
21969
21969
|
display: grid;
|
21970
21970
|
flex: 1 1 auto;
|
@@ -22701,6 +22701,19 @@ textarea.v-field__input::placeholder {
|
|
22701
22701
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
22702
22702
|
}.v-locale-provider {
|
22703
22703
|
display: contents;
|
22704
|
+
}.v-menu > .v-overlay__content {
|
22705
|
+
display: flex;
|
22706
|
+
flex-direction: column;
|
22707
|
+
border-radius: 4px;
|
22708
|
+
}
|
22709
|
+
.v-menu > .v-overlay__content > .v-card,
|
22710
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
22711
|
+
.v-menu > .v-overlay__content > .v-list {
|
22712
|
+
background: rgb(var(--v-theme-surface));
|
22713
|
+
border-radius: inherit;
|
22714
|
+
overflow: auto;
|
22715
|
+
height: 100%;
|
22716
|
+
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));
|
22704
22717
|
}.v-main {
|
22705
22718
|
flex: 1 0 auto;
|
22706
22719
|
max-width: 100%;
|
@@ -22729,19 +22742,22 @@ textarea.v-field__input::placeholder {
|
|
22729
22742
|
--v-layout-right: 0px;
|
22730
22743
|
--v-layout-top: 0px;
|
22731
22744
|
--v-layout-bottom: 0px;
|
22732
|
-
}.v-
|
22733
|
-
|
22734
|
-
|
22735
|
-
|
22745
|
+
}.v-messages {
|
22746
|
+
flex: 1 1 auto;
|
22747
|
+
font-size: 12px;
|
22748
|
+
min-height: 14px;
|
22749
|
+
min-width: 1px;
|
22750
|
+
opacity: var(--v-medium-emphasis-opacity);
|
22751
|
+
position: relative;
|
22736
22752
|
}
|
22737
|
-
.v-
|
22738
|
-
|
22739
|
-
|
22740
|
-
|
22741
|
-
|
22742
|
-
|
22743
|
-
|
22744
|
-
|
22753
|
+
.v-messages__message {
|
22754
|
+
line-height: 12px;
|
22755
|
+
word-break: break-word;
|
22756
|
+
overflow-wrap: break-word;
|
22757
|
+
word-wrap: break-word;
|
22758
|
+
-webkit-hyphens: auto;
|
22759
|
+
hyphens: auto;
|
22760
|
+
transition-duration: 150ms;
|
22745
22761
|
}.v-navigation-drawer {
|
22746
22762
|
-webkit-overflow-scrolling: touch;
|
22747
22763
|
background: rgb(var(--v-theme-surface));
|
@@ -22977,6 +22993,108 @@ html.v-overlay-scroll-blocked {
|
|
22977
22993
|
}
|
22978
22994
|
.v-parallax--active > .v-img__img {
|
22979
22995
|
will-change: transform;
|
22996
|
+
}.v-progress-circular {
|
22997
|
+
align-items: center;
|
22998
|
+
display: inline-flex;
|
22999
|
+
justify-content: center;
|
23000
|
+
position: relative;
|
23001
|
+
vertical-align: middle;
|
23002
|
+
}
|
23003
|
+
.v-progress-circular > svg {
|
23004
|
+
width: 100%;
|
23005
|
+
height: 100%;
|
23006
|
+
margin: auto;
|
23007
|
+
position: absolute;
|
23008
|
+
top: 0;
|
23009
|
+
bottom: 0;
|
23010
|
+
left: 0;
|
23011
|
+
right: 0;
|
23012
|
+
z-index: 0;
|
23013
|
+
}
|
23014
|
+
|
23015
|
+
.v-progress-circular__content {
|
23016
|
+
align-items: center;
|
23017
|
+
display: flex;
|
23018
|
+
justify-content: center;
|
23019
|
+
}
|
23020
|
+
|
23021
|
+
.v-progress-circular__underlay {
|
23022
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23023
|
+
stroke: currentColor;
|
23024
|
+
z-index: 1;
|
23025
|
+
}
|
23026
|
+
|
23027
|
+
.v-progress-circular__overlay {
|
23028
|
+
stroke: currentColor;
|
23029
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23030
|
+
z-index: 2;
|
23031
|
+
}
|
23032
|
+
|
23033
|
+
.v-progress-circular--size-x-small {
|
23034
|
+
height: 16px;
|
23035
|
+
width: 16px;
|
23036
|
+
}
|
23037
|
+
.v-progress-circular--size-small {
|
23038
|
+
height: 24px;
|
23039
|
+
width: 24px;
|
23040
|
+
}
|
23041
|
+
.v-progress-circular--size-default {
|
23042
|
+
height: 32px;
|
23043
|
+
width: 32px;
|
23044
|
+
}
|
23045
|
+
.v-progress-circular--size-large {
|
23046
|
+
height: 48px;
|
23047
|
+
width: 48px;
|
23048
|
+
}
|
23049
|
+
.v-progress-circular--size-x-large {
|
23050
|
+
height: 64px;
|
23051
|
+
width: 64px;
|
23052
|
+
}
|
23053
|
+
|
23054
|
+
.v-progress-circular--indeterminate > svg {
|
23055
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
23056
|
+
transform-origin: center center;
|
23057
|
+
transition: all 0.2s ease-in-out;
|
23058
|
+
}
|
23059
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23060
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23061
|
+
stroke-dasharray: 25, 200;
|
23062
|
+
stroke-dashoffset: 0;
|
23063
|
+
stroke-linecap: round;
|
23064
|
+
transform-origin: center center;
|
23065
|
+
transform: rotate(-90deg);
|
23066
|
+
}
|
23067
|
+
|
23068
|
+
.v-progress-circular--disable-shrink > svg {
|
23069
|
+
animation-duration: 0.7s;
|
23070
|
+
}
|
23071
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23072
|
+
animation: none;
|
23073
|
+
}
|
23074
|
+
|
23075
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23076
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23077
|
+
animation-play-state: paused !important;
|
23078
|
+
}
|
23079
|
+
|
23080
|
+
@keyframes progress-circular-dash {
|
23081
|
+
0% {
|
23082
|
+
stroke-dasharray: 1, 200;
|
23083
|
+
stroke-dashoffset: 0px;
|
23084
|
+
}
|
23085
|
+
50% {
|
23086
|
+
stroke-dasharray: 100, 200;
|
23087
|
+
stroke-dashoffset: -15px;
|
23088
|
+
}
|
23089
|
+
100% {
|
23090
|
+
stroke-dasharray: 100, 200;
|
23091
|
+
stroke-dashoffset: -124px;
|
23092
|
+
}
|
23093
|
+
}
|
23094
|
+
@keyframes progress-circular-rotate {
|
23095
|
+
100% {
|
23096
|
+
transform: rotate(270deg);
|
23097
|
+
}
|
22980
23098
|
}.v-progress-linear {
|
22981
23099
|
background: transparent;
|
22982
23100
|
overflow: hidden;
|
@@ -23188,169 +23306,67 @@ html.v-overlay-scroll-blocked {
|
|
23188
23306
|
0% {
|
23189
23307
|
background-position-x: var(--v-progress-linear-height);
|
23190
23308
|
}
|
23191
|
-
}.v-
|
23192
|
-
|
23193
|
-
display: inline-flex;
|
23194
|
-
justify-content: center;
|
23195
|
-
position: relative;
|
23196
|
-
vertical-align: middle;
|
23309
|
+
}.v-radio-group > .v-input__control {
|
23310
|
+
flex-direction: column;
|
23197
23311
|
}
|
23198
|
-
.v-
|
23312
|
+
.v-radio-group > .v-input__control > .v-label {
|
23313
|
+
margin-inline-start: 16px;
|
23314
|
+
}
|
23315
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
23316
|
+
padding-inline-start: 6px;
|
23317
|
+
margin-top: 8px;
|
23318
|
+
}
|
23319
|
+
.v-radio-group .v-input__details {
|
23320
|
+
padding-inline: 16px;
|
23321
|
+
}.v-slider .v-slider__container input {
|
23322
|
+
cursor: default;
|
23323
|
+
padding: 0;
|
23199
23324
|
width: 100%;
|
23200
|
-
|
23201
|
-
|
23202
|
-
|
23203
|
-
|
23204
|
-
|
23205
|
-
left: 0;
|
23206
|
-
right: 0;
|
23207
|
-
z-index: 0;
|
23325
|
+
display: none;
|
23326
|
+
}
|
23327
|
+
.v-slider > .v-input__append,
|
23328
|
+
.v-slider > .v-input__prepend {
|
23329
|
+
padding: 0;
|
23208
23330
|
}
|
23209
23331
|
|
23210
|
-
.v-
|
23211
|
-
|
23332
|
+
.v-slider__container {
|
23333
|
+
position: relative;
|
23334
|
+
min-height: inherit;
|
23335
|
+
width: 100%;
|
23336
|
+
height: 100%;
|
23212
23337
|
display: flex;
|
23213
23338
|
justify-content: center;
|
23339
|
+
align-items: center;
|
23340
|
+
cursor: pointer;
|
23214
23341
|
}
|
23215
|
-
|
23216
|
-
|
23217
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23218
|
-
stroke: currentColor;
|
23219
|
-
z-index: 1;
|
23342
|
+
.v-input--disabled .v-slider__container {
|
23343
|
+
opacity: var(--v-disabled-opacity);
|
23220
23344
|
}
|
23221
|
-
|
23222
|
-
|
23223
|
-
stroke: currentColor;
|
23224
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23225
|
-
z-index: 2;
|
23345
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
23346
|
+
color: rgb(var(--v-theme-error));
|
23226
23347
|
}
|
23227
23348
|
|
23228
|
-
.v-
|
23229
|
-
|
23230
|
-
|
23349
|
+
.v-slider.v-input--horizontal {
|
23350
|
+
align-items: center;
|
23351
|
+
margin-inline: 8px 8px;
|
23231
23352
|
}
|
23232
|
-
.v-
|
23233
|
-
height:
|
23234
|
-
|
23353
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
23354
|
+
min-height: 32px;
|
23355
|
+
display: flex;
|
23356
|
+
align-items: center;
|
23235
23357
|
}
|
23236
|
-
|
23237
|
-
|
23238
|
-
|
23358
|
+
|
23359
|
+
.v-slider.v-input--vertical {
|
23360
|
+
justify-content: center;
|
23361
|
+
margin-top: 12px;
|
23362
|
+
margin-bottom: 12px;
|
23239
23363
|
}
|
23240
|
-
.v-
|
23241
|
-
height:
|
23242
|
-
width: 48px;
|
23364
|
+
.v-slider.v-input--vertical > .v-input__control {
|
23365
|
+
min-height: 300px;
|
23243
23366
|
}
|
23244
|
-
|
23245
|
-
|
23246
|
-
|
23247
|
-
}
|
23248
|
-
|
23249
|
-
.v-progress-circular--indeterminate > svg {
|
23250
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
23251
|
-
transform-origin: center center;
|
23252
|
-
transition: all 0.2s ease-in-out;
|
23253
|
-
}
|
23254
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23255
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23256
|
-
stroke-dasharray: 25, 200;
|
23257
|
-
stroke-dashoffset: 0;
|
23258
|
-
stroke-linecap: round;
|
23259
|
-
transform-origin: center center;
|
23260
|
-
transform: rotate(-90deg);
|
23261
|
-
}
|
23262
|
-
|
23263
|
-
.v-progress-circular--disable-shrink > svg {
|
23264
|
-
animation-duration: 0.7s;
|
23265
|
-
}
|
23266
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23267
|
-
animation: none;
|
23268
|
-
}
|
23269
|
-
|
23270
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23271
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23272
|
-
animation-play-state: paused !important;
|
23273
|
-
}
|
23274
|
-
|
23275
|
-
@keyframes progress-circular-dash {
|
23276
|
-
0% {
|
23277
|
-
stroke-dasharray: 1, 200;
|
23278
|
-
stroke-dashoffset: 0px;
|
23279
|
-
}
|
23280
|
-
50% {
|
23281
|
-
stroke-dasharray: 100, 200;
|
23282
|
-
stroke-dashoffset: -15px;
|
23283
|
-
}
|
23284
|
-
100% {
|
23285
|
-
stroke-dasharray: 100, 200;
|
23286
|
-
stroke-dashoffset: -124px;
|
23287
|
-
}
|
23288
|
-
}
|
23289
|
-
@keyframes progress-circular-rotate {
|
23290
|
-
100% {
|
23291
|
-
transform: rotate(270deg);
|
23292
|
-
}
|
23293
|
-
}.v-radio-group > .v-input__control {
|
23294
|
-
flex-direction: column;
|
23295
|
-
}
|
23296
|
-
.v-radio-group > .v-input__control > .v-label {
|
23297
|
-
margin-inline-start: 16px;
|
23298
|
-
}
|
23299
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
23300
|
-
padding-inline-start: 6px;
|
23301
|
-
margin-top: 8px;
|
23302
|
-
}
|
23303
|
-
.v-radio-group .v-input__details {
|
23304
|
-
padding-inline: 16px;
|
23305
|
-
}.v-slider .v-slider__container input {
|
23306
|
-
cursor: default;
|
23307
|
-
padding: 0;
|
23308
|
-
width: 100%;
|
23309
|
-
display: none;
|
23310
|
-
}
|
23311
|
-
.v-slider > .v-input__append,
|
23312
|
-
.v-slider > .v-input__prepend {
|
23313
|
-
padding: 0;
|
23314
|
-
}
|
23315
|
-
|
23316
|
-
.v-slider__container {
|
23317
|
-
position: relative;
|
23318
|
-
min-height: inherit;
|
23319
|
-
width: 100%;
|
23320
|
-
height: 100%;
|
23321
|
-
display: flex;
|
23322
|
-
justify-content: center;
|
23323
|
-
align-items: center;
|
23324
|
-
cursor: pointer;
|
23325
|
-
}
|
23326
|
-
.v-input--disabled .v-slider__container {
|
23327
|
-
opacity: var(--v-disabled-opacity);
|
23328
|
-
}
|
23329
|
-
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
23330
|
-
color: rgb(var(--v-theme-error));
|
23331
|
-
}
|
23332
|
-
|
23333
|
-
.v-slider.v-input--horizontal {
|
23334
|
-
align-items: center;
|
23335
|
-
margin-inline: 8px 8px;
|
23336
|
-
}
|
23337
|
-
.v-slider.v-input--horizontal > .v-input__control {
|
23338
|
-
min-height: 32px;
|
23339
|
-
display: flex;
|
23340
|
-
align-items: center;
|
23341
|
-
}
|
23342
|
-
|
23343
|
-
.v-slider.v-input--vertical {
|
23344
|
-
justify-content: center;
|
23345
|
-
margin-top: 12px;
|
23346
|
-
margin-bottom: 12px;
|
23347
|
-
}
|
23348
|
-
.v-slider.v-input--vertical > .v-input__control {
|
23349
|
-
min-height: 300px;
|
23350
|
-
}
|
23351
|
-
|
23352
|
-
.v-slider.v-input--disabled {
|
23353
|
-
pointer-events: none;
|
23367
|
+
|
23368
|
+
.v-slider.v-input--disabled {
|
23369
|
+
pointer-events: none;
|
23354
23370
|
}
|
23355
23371
|
|
23356
23372
|
.v-slider--has-labels > .v-input__control {
|
@@ -23909,7 +23925,7 @@ html.v-overlay-scroll-blocked {
|
|
23909
23925
|
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
23910
23926
|
padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
|
23911
23927
|
}
|
23912
|
-
.v-snackbar:not(.v-snackbar--
|
23928
|
+
.v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
|
23913
23929
|
align-items: flex-end;
|
23914
23930
|
}
|
23915
23931
|
.v-snackbar__wrapper {
|
@@ -24195,6 +24211,9 @@ html.v-overlay-scroll-blocked {
|
|
24195
24211
|
font-size: 0.75rem;
|
24196
24212
|
margin-inline-end: 8px;
|
24197
24213
|
}
|
24214
|
+
.v-stepper--mobile .v-stepper-item__avatar.v-avatar {
|
24215
|
+
margin-inline-end: 0;
|
24216
|
+
}
|
24198
24217
|
.v-stepper-item__avatar.v-avatar .v-icon {
|
24199
24218
|
font-size: 0.875rem;
|
24200
24219
|
}
|
@@ -24461,101 +24480,6 @@ html.v-overlay-scroll-blocked {
|
|
24461
24480
|
}
|
24462
24481
|
.v-system-bar:not(.v-system-bar--absolute) {
|
24463
24482
|
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
24464
|
-
}.v-tabs {
|
24465
|
-
display: flex;
|
24466
|
-
height: var(--v-tabs-height);
|
24467
|
-
}
|
24468
|
-
.v-tabs--density-default {
|
24469
|
-
--v-tabs-height: 48px;
|
24470
|
-
}
|
24471
|
-
.v-tabs--density-default.v-tabs--stacked {
|
24472
|
-
--v-tabs-height: 72px;
|
24473
|
-
}
|
24474
|
-
|
24475
|
-
.v-tabs--density-comfortable {
|
24476
|
-
--v-tabs-height: 44px;
|
24477
|
-
}
|
24478
|
-
.v-tabs--density-comfortable.v-tabs--stacked {
|
24479
|
-
--v-tabs-height: 68px;
|
24480
|
-
}
|
24481
|
-
|
24482
|
-
.v-tabs--density-compact {
|
24483
|
-
--v-tabs-height: 36px;
|
24484
|
-
}
|
24485
|
-
.v-tabs--density-compact.v-tabs--stacked {
|
24486
|
-
--v-tabs-height: 60px;
|
24487
|
-
}
|
24488
|
-
|
24489
|
-
.v-tabs.v-slide-group--vertical {
|
24490
|
-
height: auto;
|
24491
|
-
flex: none;
|
24492
|
-
--v-tabs-height: 48px;
|
24493
|
-
}
|
24494
|
-
|
24495
|
-
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
24496
|
-
margin-inline-start: 42px;
|
24497
|
-
}
|
24498
|
-
|
24499
|
-
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
24500
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
24501
|
-
margin-inline-end: auto;
|
24502
|
-
}
|
24503
|
-
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
24504
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
24505
|
-
margin-inline-start: auto;
|
24506
|
-
}
|
24507
|
-
|
24508
|
-
.v-tabs--grow {
|
24509
|
-
flex-grow: 1;
|
24510
|
-
}
|
24511
|
-
.v-tabs--grow .v-tab {
|
24512
|
-
flex: 1 0 auto;
|
24513
|
-
max-width: none;
|
24514
|
-
}
|
24515
|
-
|
24516
|
-
.v-tabs--align-tabs-end .v-tab:first-child {
|
24517
|
-
margin-inline-start: auto;
|
24518
|
-
}
|
24519
|
-
.v-tabs--align-tabs-end .v-tab:last-child {
|
24520
|
-
margin-inline-end: 0;
|
24521
|
-
}
|
24522
|
-
|
24523
|
-
@media (max-width: 1279.98px) {
|
24524
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
24525
|
-
margin-inline-start: 52px;
|
24526
|
-
}
|
24527
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
24528
|
-
margin-inline-end: 52px;
|
24529
|
-
}
|
24530
|
-
}.v-tab.v-tab.v-btn {
|
24531
|
-
height: var(--v-tabs-height);
|
24532
|
-
border-radius: 0;
|
24533
|
-
min-width: 90px;
|
24534
|
-
}
|
24535
|
-
.v-slide-group--horizontal .v-tab {
|
24536
|
-
max-width: 360px;
|
24537
|
-
}
|
24538
|
-
.v-slide-group--vertical .v-tab {
|
24539
|
-
justify-content: start;
|
24540
|
-
}
|
24541
|
-
|
24542
|
-
.v-tab__slider {
|
24543
|
-
position: absolute;
|
24544
|
-
bottom: 0;
|
24545
|
-
left: 0;
|
24546
|
-
height: 2px;
|
24547
|
-
width: 100%;
|
24548
|
-
background: currentColor;
|
24549
|
-
pointer-events: none;
|
24550
|
-
opacity: 0;
|
24551
|
-
}
|
24552
|
-
.v-tab--selected .v-tab__slider {
|
24553
|
-
opacity: 1;
|
24554
|
-
}
|
24555
|
-
.v-slide-group--vertical .v-tab__slider {
|
24556
|
-
top: 0;
|
24557
|
-
height: 100%;
|
24558
|
-
width: 2px;
|
24559
24483
|
}.v-table {
|
24560
24484
|
background: rgb(var(--v-theme-surface));
|
24561
24485
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -24694,6 +24618,101 @@ html.v-overlay-scroll-blocked {
|
|
24694
24618
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
24695
24619
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
24696
24620
|
border-top: 0px !important;
|
24621
|
+
}.v-tab.v-tab.v-btn {
|
24622
|
+
height: var(--v-tabs-height);
|
24623
|
+
border-radius: 0;
|
24624
|
+
min-width: 90px;
|
24625
|
+
}
|
24626
|
+
.v-slide-group--horizontal .v-tab {
|
24627
|
+
max-width: 360px;
|
24628
|
+
}
|
24629
|
+
.v-slide-group--vertical .v-tab {
|
24630
|
+
justify-content: start;
|
24631
|
+
}
|
24632
|
+
|
24633
|
+
.v-tab__slider {
|
24634
|
+
position: absolute;
|
24635
|
+
bottom: 0;
|
24636
|
+
left: 0;
|
24637
|
+
height: 2px;
|
24638
|
+
width: 100%;
|
24639
|
+
background: currentColor;
|
24640
|
+
pointer-events: none;
|
24641
|
+
opacity: 0;
|
24642
|
+
}
|
24643
|
+
.v-tab--selected .v-tab__slider {
|
24644
|
+
opacity: 1;
|
24645
|
+
}
|
24646
|
+
.v-slide-group--vertical .v-tab__slider {
|
24647
|
+
top: 0;
|
24648
|
+
height: 100%;
|
24649
|
+
width: 2px;
|
24650
|
+
}.v-tabs {
|
24651
|
+
display: flex;
|
24652
|
+
height: var(--v-tabs-height);
|
24653
|
+
}
|
24654
|
+
.v-tabs--density-default {
|
24655
|
+
--v-tabs-height: 48px;
|
24656
|
+
}
|
24657
|
+
.v-tabs--density-default.v-tabs--stacked {
|
24658
|
+
--v-tabs-height: 72px;
|
24659
|
+
}
|
24660
|
+
|
24661
|
+
.v-tabs--density-comfortable {
|
24662
|
+
--v-tabs-height: 44px;
|
24663
|
+
}
|
24664
|
+
.v-tabs--density-comfortable.v-tabs--stacked {
|
24665
|
+
--v-tabs-height: 68px;
|
24666
|
+
}
|
24667
|
+
|
24668
|
+
.v-tabs--density-compact {
|
24669
|
+
--v-tabs-height: 36px;
|
24670
|
+
}
|
24671
|
+
.v-tabs--density-compact.v-tabs--stacked {
|
24672
|
+
--v-tabs-height: 60px;
|
24673
|
+
}
|
24674
|
+
|
24675
|
+
.v-tabs.v-slide-group--vertical {
|
24676
|
+
height: auto;
|
24677
|
+
flex: none;
|
24678
|
+
--v-tabs-height: 48px;
|
24679
|
+
}
|
24680
|
+
|
24681
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
24682
|
+
margin-inline-start: 42px;
|
24683
|
+
}
|
24684
|
+
|
24685
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
24686
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
24687
|
+
margin-inline-end: auto;
|
24688
|
+
}
|
24689
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
24690
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
24691
|
+
margin-inline-start: auto;
|
24692
|
+
}
|
24693
|
+
|
24694
|
+
.v-tabs--grow {
|
24695
|
+
flex-grow: 1;
|
24696
|
+
}
|
24697
|
+
.v-tabs--grow .v-tab {
|
24698
|
+
flex: 1 0 auto;
|
24699
|
+
max-width: none;
|
24700
|
+
}
|
24701
|
+
|
24702
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
24703
|
+
margin-inline-start: auto;
|
24704
|
+
}
|
24705
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
24706
|
+
margin-inline-end: 0;
|
24707
|
+
}
|
24708
|
+
|
24709
|
+
@media (max-width: 1279.98px) {
|
24710
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
24711
|
+
margin-inline-start: 52px;
|
24712
|
+
}
|
24713
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
24714
|
+
margin-inline-end: 52px;
|
24715
|
+
}
|
24697
24716
|
}/* region BLOCK */
|
24698
24717
|
.v-text-field input {
|
24699
24718
|
color: inherit;
|
@@ -24789,17 +24808,146 @@ html.v-overlay-scroll-blocked {
|
|
24789
24808
|
.v-textarea .v-field--active textarea {
|
24790
24809
|
opacity: 1;
|
24791
24810
|
}
|
24792
|
-
.v-textarea textarea {
|
24793
|
-
opacity: 0;
|
24794
|
-
flex: 1;
|
24811
|
+
.v-textarea textarea {
|
24812
|
+
opacity: 0;
|
24813
|
+
flex: 1;
|
24814
|
+
min-width: 0;
|
24815
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
24816
|
+
}
|
24817
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
24818
|
+
outline: none;
|
24819
|
+
}
|
24820
|
+
.v-textarea textarea:invalid {
|
24821
|
+
box-shadow: none;
|
24822
|
+
}.v-toolbar {
|
24823
|
+
align-items: flex-start;
|
24824
|
+
display: flex;
|
24825
|
+
flex: none;
|
24826
|
+
flex-direction: column;
|
24827
|
+
justify-content: space-between;
|
24828
|
+
max-width: 100%;
|
24829
|
+
position: relative;
|
24830
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24831
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
24832
|
+
width: 100%;
|
24833
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24834
|
+
border-style: solid;
|
24835
|
+
border-width: 0;
|
24836
|
+
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));
|
24837
|
+
border-radius: 0;
|
24838
|
+
background: rgb(var(--v-theme-surface-light));
|
24839
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
24840
|
+
}
|
24841
|
+
.v-toolbar--border {
|
24842
|
+
border-width: thin;
|
24843
|
+
box-shadow: none;
|
24844
|
+
}
|
24845
|
+
.v-toolbar--absolute {
|
24846
|
+
position: absolute;
|
24847
|
+
}
|
24848
|
+
.v-toolbar--collapse {
|
24849
|
+
max-width: 112px;
|
24850
|
+
overflow: hidden;
|
24851
|
+
border-end-end-radius: 24px;
|
24852
|
+
}
|
24853
|
+
.v-toolbar--collapse .v-toolbar-title {
|
24854
|
+
display: none;
|
24855
|
+
}
|
24856
|
+
.v-toolbar--flat {
|
24857
|
+
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));
|
24858
|
+
}
|
24859
|
+
.v-toolbar--floating {
|
24860
|
+
display: inline-flex;
|
24861
|
+
}
|
24862
|
+
.v-toolbar--rounded {
|
24863
|
+
border-radius: 4px;
|
24864
|
+
}
|
24865
|
+
|
24866
|
+
.v-toolbar__content,
|
24867
|
+
.v-toolbar__extension {
|
24868
|
+
align-items: center;
|
24869
|
+
display: flex;
|
24870
|
+
flex: 0 0 auto;
|
24871
|
+
position: relative;
|
24872
|
+
transition: inherit;
|
24873
|
+
width: 100%;
|
24874
|
+
}
|
24875
|
+
|
24876
|
+
.v-toolbar__content {
|
24877
|
+
overflow: hidden;
|
24878
|
+
}
|
24879
|
+
.v-toolbar__content > .v-btn:first-child {
|
24880
|
+
margin-inline-start: 4px;
|
24881
|
+
}
|
24882
|
+
.v-toolbar__content > .v-btn:last-child {
|
24883
|
+
margin-inline-end: 4px;
|
24884
|
+
}
|
24885
|
+
.v-toolbar__content > .v-toolbar-title {
|
24886
|
+
margin-inline-start: 20px;
|
24887
|
+
}
|
24888
|
+
.v-toolbar--density-prominent .v-toolbar__content {
|
24889
|
+
align-items: flex-start;
|
24890
|
+
}
|
24891
|
+
|
24892
|
+
.v-toolbar__image {
|
24893
|
+
position: absolute;
|
24894
|
+
top: 0;
|
24895
|
+
left: 0;
|
24896
|
+
width: 100%;
|
24897
|
+
height: 100%;
|
24898
|
+
display: flex;
|
24899
|
+
opacity: var(--v-toolbar-image-opacity, 1);
|
24900
|
+
transition-property: opacity;
|
24901
|
+
}
|
24902
|
+
|
24903
|
+
.v-toolbar__prepend,
|
24904
|
+
.v-toolbar__append {
|
24905
|
+
align-items: center;
|
24906
|
+
align-self: stretch;
|
24907
|
+
display: flex;
|
24908
|
+
}
|
24909
|
+
|
24910
|
+
.v-toolbar__prepend {
|
24911
|
+
margin-inline: 4px auto;
|
24912
|
+
}
|
24913
|
+
|
24914
|
+
.v-toolbar__append {
|
24915
|
+
margin-inline: auto 4px;
|
24916
|
+
}
|
24917
|
+
|
24918
|
+
.v-toolbar-title {
|
24919
|
+
flex: 1 1;
|
24920
|
+
font-size: 1.25rem;
|
24795
24921
|
min-width: 0;
|
24796
|
-
|
24922
|
+
font-size: 1.25rem;
|
24923
|
+
font-weight: 400;
|
24924
|
+
letter-spacing: 0;
|
24925
|
+
line-height: 1.75rem;
|
24926
|
+
text-transform: none;
|
24797
24927
|
}
|
24798
|
-
.v-
|
24799
|
-
|
24928
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
24929
|
+
align-self: flex-end;
|
24930
|
+
padding-bottom: 6px;
|
24931
|
+
font-size: 1.5rem;
|
24932
|
+
font-weight: 400;
|
24933
|
+
letter-spacing: 0;
|
24934
|
+
line-height: 2.25rem;
|
24935
|
+
text-transform: none;
|
24800
24936
|
}
|
24801
|
-
|
24802
|
-
|
24937
|
+
|
24938
|
+
.v-toolbar-title__placeholder {
|
24939
|
+
overflow: hidden;
|
24940
|
+
text-overflow: ellipsis;
|
24941
|
+
white-space: nowrap;
|
24942
|
+
}
|
24943
|
+
|
24944
|
+
.v-toolbar-items {
|
24945
|
+
display: flex;
|
24946
|
+
height: inherit;
|
24947
|
+
align-self: stretch;
|
24948
|
+
}
|
24949
|
+
.v-toolbar-items > .v-btn {
|
24950
|
+
border-radius: 0;
|
24803
24951
|
}.v-theme-provider {
|
24804
24952
|
background: rgb(var(--v-theme-background));
|
24805
24953
|
color: rgb(var(--v-theme-on-background));
|
@@ -25219,135 +25367,6 @@ html.v-overlay-scroll-blocked {
|
|
25219
25367
|
|
25220
25368
|
.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
25221
25369
|
padding-inline-end: 0;
|
25222
|
-
}.v-toolbar {
|
25223
|
-
align-items: flex-start;
|
25224
|
-
display: flex;
|
25225
|
-
flex: none;
|
25226
|
-
flex-direction: column;
|
25227
|
-
justify-content: space-between;
|
25228
|
-
max-width: 100%;
|
25229
|
-
position: relative;
|
25230
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
25231
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
25232
|
-
width: 100%;
|
25233
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
25234
|
-
border-style: solid;
|
25235
|
-
border-width: 0;
|
25236
|
-
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));
|
25237
|
-
border-radius: 0;
|
25238
|
-
background: rgb(var(--v-theme-surface-light));
|
25239
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25240
|
-
}
|
25241
|
-
.v-toolbar--border {
|
25242
|
-
border-width: thin;
|
25243
|
-
box-shadow: none;
|
25244
|
-
}
|
25245
|
-
.v-toolbar--absolute {
|
25246
|
-
position: absolute;
|
25247
|
-
}
|
25248
|
-
.v-toolbar--collapse {
|
25249
|
-
max-width: 112px;
|
25250
|
-
overflow: hidden;
|
25251
|
-
border-end-end-radius: 24px;
|
25252
|
-
}
|
25253
|
-
.v-toolbar--collapse .v-toolbar-title {
|
25254
|
-
display: none;
|
25255
|
-
}
|
25256
|
-
.v-toolbar--flat {
|
25257
|
-
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));
|
25258
|
-
}
|
25259
|
-
.v-toolbar--floating {
|
25260
|
-
display: inline-flex;
|
25261
|
-
}
|
25262
|
-
.v-toolbar--rounded {
|
25263
|
-
border-radius: 4px;
|
25264
|
-
}
|
25265
|
-
|
25266
|
-
.v-toolbar__content,
|
25267
|
-
.v-toolbar__extension {
|
25268
|
-
align-items: center;
|
25269
|
-
display: flex;
|
25270
|
-
flex: 0 0 auto;
|
25271
|
-
position: relative;
|
25272
|
-
transition: inherit;
|
25273
|
-
width: 100%;
|
25274
|
-
}
|
25275
|
-
|
25276
|
-
.v-toolbar__content {
|
25277
|
-
overflow: hidden;
|
25278
|
-
}
|
25279
|
-
.v-toolbar__content > .v-btn:first-child {
|
25280
|
-
margin-inline-start: 4px;
|
25281
|
-
}
|
25282
|
-
.v-toolbar__content > .v-btn:last-child {
|
25283
|
-
margin-inline-end: 4px;
|
25284
|
-
}
|
25285
|
-
.v-toolbar__content > .v-toolbar-title {
|
25286
|
-
margin-inline-start: 20px;
|
25287
|
-
}
|
25288
|
-
.v-toolbar--density-prominent .v-toolbar__content {
|
25289
|
-
align-items: flex-start;
|
25290
|
-
}
|
25291
|
-
|
25292
|
-
.v-toolbar__image {
|
25293
|
-
position: absolute;
|
25294
|
-
top: 0;
|
25295
|
-
left: 0;
|
25296
|
-
width: 100%;
|
25297
|
-
height: 100%;
|
25298
|
-
display: flex;
|
25299
|
-
opacity: var(--v-toolbar-image-opacity, 1);
|
25300
|
-
transition-property: opacity;
|
25301
|
-
}
|
25302
|
-
|
25303
|
-
.v-toolbar__prepend,
|
25304
|
-
.v-toolbar__append {
|
25305
|
-
align-items: center;
|
25306
|
-
align-self: stretch;
|
25307
|
-
display: flex;
|
25308
|
-
}
|
25309
|
-
|
25310
|
-
.v-toolbar__prepend {
|
25311
|
-
margin-inline: 4px auto;
|
25312
|
-
}
|
25313
|
-
|
25314
|
-
.v-toolbar__append {
|
25315
|
-
margin-inline: auto 4px;
|
25316
|
-
}
|
25317
|
-
|
25318
|
-
.v-toolbar-title {
|
25319
|
-
flex: 1 1;
|
25320
|
-
font-size: 1.25rem;
|
25321
|
-
min-width: 0;
|
25322
|
-
font-size: 1.25rem;
|
25323
|
-
font-weight: 400;
|
25324
|
-
letter-spacing: 0;
|
25325
|
-
line-height: 1.75rem;
|
25326
|
-
text-transform: none;
|
25327
|
-
}
|
25328
|
-
.v-toolbar--density-prominent .v-toolbar-title {
|
25329
|
-
align-self: flex-end;
|
25330
|
-
padding-bottom: 6px;
|
25331
|
-
font-size: 1.5rem;
|
25332
|
-
font-weight: 400;
|
25333
|
-
letter-spacing: 0;
|
25334
|
-
line-height: 2.25rem;
|
25335
|
-
text-transform: none;
|
25336
|
-
}
|
25337
|
-
|
25338
|
-
.v-toolbar-title__placeholder {
|
25339
|
-
overflow: hidden;
|
25340
|
-
text-overflow: ellipsis;
|
25341
|
-
white-space: nowrap;
|
25342
|
-
}
|
25343
|
-
|
25344
|
-
.v-toolbar-items {
|
25345
|
-
display: flex;
|
25346
|
-
height: inherit;
|
25347
|
-
align-self: stretch;
|
25348
|
-
}
|
25349
|
-
.v-toolbar-items > .v-btn {
|
25350
|
-
border-radius: 0;
|
25351
25370
|
}.v-tooltip > .v-overlay__content {
|
25352
25371
|
background: rgb(var(--v-theme-surface-variant));
|
25353
25372
|
color: rgb(var(--v-theme-on-surface-variant));
|
@@ -25449,22 +25468,6 @@ html.v-overlay-scroll-blocked {
|
|
25449
25468
|
}
|
25450
25469
|
.v-window-y-reverse-transition-leave-to {
|
25451
25470
|
transform: translateY(100%);
|
25452
|
-
}.v-messages {
|
25453
|
-
flex: 1 1 auto;
|
25454
|
-
font-size: 12px;
|
25455
|
-
min-height: 14px;
|
25456
|
-
min-width: 1px;
|
25457
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25458
|
-
position: relative;
|
25459
|
-
}
|
25460
|
-
.v-messages__message {
|
25461
|
-
line-height: 12px;
|
25462
|
-
word-break: break-word;
|
25463
|
-
overflow-wrap: break-word;
|
25464
|
-
word-wrap: break-word;
|
25465
|
-
-webkit-hyphens: auto;
|
25466
|
-
hyphens: auto;
|
25467
|
-
transition-duration: 150ms;
|
25468
25471
|
}.v-color-picker-canvas {
|
25469
25472
|
display: flex;
|
25470
25473
|
position: relative;
|
@@ -25487,6 +25490,41 @@ html.v-overlay-scroll-blocked {
|
|
25487
25490
|
}
|
25488
25491
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
25489
25492
|
will-change: transform;
|
25493
|
+
}.v-color-picker-swatches {
|
25494
|
+
overflow-y: auto;
|
25495
|
+
}
|
25496
|
+
.v-color-picker-swatches > div {
|
25497
|
+
display: flex;
|
25498
|
+
flex-wrap: wrap;
|
25499
|
+
justify-content: center;
|
25500
|
+
padding: 8px;
|
25501
|
+
}
|
25502
|
+
|
25503
|
+
.v-color-picker-swatches__swatch {
|
25504
|
+
display: flex;
|
25505
|
+
flex-direction: column;
|
25506
|
+
margin-bottom: 10px;
|
25507
|
+
}
|
25508
|
+
|
25509
|
+
.v-color-picker-swatches__color {
|
25510
|
+
position: relative;
|
25511
|
+
height: 18px;
|
25512
|
+
max-height: 18px;
|
25513
|
+
width: 45px;
|
25514
|
+
margin: 2px 4px;
|
25515
|
+
border-radius: 2px;
|
25516
|
+
-webkit-user-select: none;
|
25517
|
+
user-select: none;
|
25518
|
+
overflow: hidden;
|
25519
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
25520
|
+
cursor: pointer;
|
25521
|
+
}
|
25522
|
+
.v-color-picker-swatches__color > div {
|
25523
|
+
display: flex;
|
25524
|
+
align-items: center;
|
25525
|
+
justify-content: center;
|
25526
|
+
width: 100%;
|
25527
|
+
height: 100%;
|
25490
25528
|
}.v-color-picker-edit {
|
25491
25529
|
display: flex;
|
25492
25530
|
margin-top: 24px;
|
@@ -25585,41 +25623,6 @@ html.v-overlay-scroll-blocked {
|
|
25585
25623
|
.v-color-picker-preview__eye-dropper {
|
25586
25624
|
position: relative;
|
25587
25625
|
margin-right: 12px;
|
25588
|
-
}.v-color-picker-swatches {
|
25589
|
-
overflow-y: auto;
|
25590
|
-
}
|
25591
|
-
.v-color-picker-swatches > div {
|
25592
|
-
display: flex;
|
25593
|
-
flex-wrap: wrap;
|
25594
|
-
justify-content: center;
|
25595
|
-
padding: 8px;
|
25596
|
-
}
|
25597
|
-
|
25598
|
-
.v-color-picker-swatches__swatch {
|
25599
|
-
display: flex;
|
25600
|
-
flex-direction: column;
|
25601
|
-
margin-bottom: 10px;
|
25602
|
-
}
|
25603
|
-
|
25604
|
-
.v-color-picker-swatches__color {
|
25605
|
-
position: relative;
|
25606
|
-
height: 18px;
|
25607
|
-
max-height: 18px;
|
25608
|
-
width: 45px;
|
25609
|
-
margin: 2px 4px;
|
25610
|
-
border-radius: 2px;
|
25611
|
-
-webkit-user-select: none;
|
25612
|
-
user-select: none;
|
25613
|
-
overflow: hidden;
|
25614
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
25615
|
-
cursor: pointer;
|
25616
|
-
}
|
25617
|
-
.v-color-picker-swatches__color > div {
|
25618
|
-
display: flex;
|
25619
|
-
align-items: center;
|
25620
|
-
justify-content: center;
|
25621
|
-
width: 100%;
|
25622
|
-
height: 100%;
|
25623
25626
|
}.v-picker.v-sheet {
|
25624
25627
|
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));
|
25625
25628
|
border-radius: 4px;
|