@vuetify/nightly 3.6.7-master.2024-05-29 → 3.6.8-master.2024-05-31
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 +4 -11
- package/dist/json/attributes.json +5 -5
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +36 -36
- package/dist/vuetify-labs.css +2940 -2939
- package/dist/vuetify-labs.d.ts +450 -1374
- package/dist/vuetify-labs.esm.js +128 -39
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +128 -39
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +706 -705
- package/dist/vuetify.d.ts +398 -1132
- package/dist/vuetify.esm.js +24 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +24 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +102 -336
- package/lib/components/VBanner/VBanner.css +1 -0
- package/lib/components/VBanner/VBanner.sass +1 -0
- package/lib/components/VBanner/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +102 -336
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +3 -0
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VEmptyState/VEmptyState.css +2 -2
- package/lib/components/VEmptyState/VEmptyState.mjs +1 -1
- package/lib/components/VEmptyState/VEmptyState.mjs.map +1 -1
- package/lib/components/VEmptyState/_variables.scss +2 -2
- package/lib/components/VList/VList.mjs +3 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +1 -0
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +2 -2
- package/lib/components/VList/VListItem.mjs +2 -0
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/VListItem.sass +1 -1
- package/lib/components/VList/index.d.mts +52 -66
- package/lib/components/VSelect/index.d.mts +102 -336
- package/lib/components/VSelectionControl/VSelectionControl.mjs +9 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VTabs/VTabs.mjs +2 -2
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/index.d.mts +340 -1074
- package/lib/composables/filter.mjs +1 -1
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +58 -58
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +30 -25
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +81 -10
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +110 -300
- package/lib/labs/components.d.mts +110 -300
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.8-master.2024-05-31
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17777,77 +17777,6 @@ 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;
|
17851
17780
|
}.v-avatar {
|
17852
17781
|
flex: none;
|
17853
17782
|
align-items: center;
|
@@ -17943,6 +17872,77 @@ html.overflow-y-hidden {
|
|
17943
17872
|
.v-avatar .v-img {
|
17944
17873
|
height: 100%;
|
17945
17874
|
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;
|
@@ -18058,6 +18058,7 @@ html.overflow-y-hidden {
|
|
18058
18058
|
|
18059
18059
|
.v-banner--sticky {
|
18060
18060
|
top: 0;
|
18061
|
+
z-index: 1;
|
18061
18062
|
}
|
18062
18063
|
|
18063
18064
|
.v-banner__content {
|
@@ -19093,11 +19094,6 @@ html.overflow-y-hidden {
|
|
19093
19094
|
flex-direction: column;
|
19094
19095
|
height: 100% !important;
|
19095
19096
|
width: 50px;
|
19096
|
-
}.v-checkbox.v-input {
|
19097
|
-
flex: 0 1 auto;
|
19098
|
-
}
|
19099
|
-
.v-checkbox .v-selection-control {
|
19100
|
-
min-height: var(--v-input-control-height);
|
19101
19097
|
}.v-chip {
|
19102
19098
|
align-items: center;
|
19103
19099
|
display: inline-flex;
|
@@ -19510,6 +19506,11 @@ html.overflow-y-hidden {
|
|
19510
19506
|
|
19511
19507
|
.v-chip--label {
|
19512
19508
|
border-radius: 4px;
|
19509
|
+
}.v-checkbox.v-input {
|
19510
|
+
flex: 0 1 auto;
|
19511
|
+
}
|
19512
|
+
.v-checkbox .v-selection-control {
|
19513
|
+
min-height: var(--v-input-control-height);
|
19513
19514
|
}.v-chip-group {
|
19514
19515
|
display: flex;
|
19515
19516
|
max-width: 100%;
|
@@ -20063,98 +20064,6 @@ html.overflow-y-hidden {
|
|
20063
20064
|
}
|
20064
20065
|
.v-date-picker-years__content .v-btn {
|
20065
20066
|
padding-inline: 8px;
|
20066
|
-
}.v-dialog {
|
20067
|
-
align-items: center;
|
20068
|
-
justify-content: center;
|
20069
|
-
margin: auto;
|
20070
|
-
}
|
20071
|
-
.v-dialog > .v-overlay__content {
|
20072
|
-
max-height: calc(100% - 48px);
|
20073
|
-
width: calc(100% - 48px);
|
20074
|
-
max-width: calc(100% - 48px);
|
20075
|
-
margin: 24px;
|
20076
|
-
}
|
20077
|
-
.v-dialog > .v-overlay__content,
|
20078
|
-
.v-dialog > .v-overlay__content > form {
|
20079
|
-
display: flex;
|
20080
|
-
flex-direction: column;
|
20081
|
-
min-height: 0;
|
20082
|
-
}
|
20083
|
-
.v-dialog > .v-overlay__content > .v-card,
|
20084
|
-
.v-dialog > .v-overlay__content > .v-sheet,
|
20085
|
-
.v-dialog > .v-overlay__content > form > .v-card,
|
20086
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20087
|
-
--v-scrollbar-offset: 0px;
|
20088
|
-
border-radius: 4px;
|
20089
|
-
overflow-y: auto;
|
20090
|
-
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));
|
20091
|
-
}
|
20092
|
-
.v-dialog > .v-overlay__content > .v-card,
|
20093
|
-
.v-dialog > .v-overlay__content > form > .v-card {
|
20094
|
-
display: flex;
|
20095
|
-
flex-direction: column;
|
20096
|
-
}
|
20097
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
20098
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
20099
|
-
padding: 16px 24px;
|
20100
|
-
}
|
20101
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
20102
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
20103
|
-
padding-top: 0;
|
20104
|
-
}
|
20105
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
20106
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
20107
|
-
font-size: inherit;
|
20108
|
-
letter-spacing: 0.03125em;
|
20109
|
-
line-height: inherit;
|
20110
|
-
padding: 16px 24px 24px;
|
20111
|
-
}
|
20112
|
-
.v-dialog > .v-overlay__content > .v-card > .v-card-actions,
|
20113
|
-
.v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
|
20114
|
-
justify-content: flex-end;
|
20115
|
-
}
|
20116
|
-
|
20117
|
-
.v-dialog--fullscreen {
|
20118
|
-
--v-scrollbar-offset: 0px;
|
20119
|
-
}
|
20120
|
-
.v-dialog--fullscreen > .v-overlay__content {
|
20121
|
-
border-radius: 0;
|
20122
|
-
margin: 0;
|
20123
|
-
padding: 0;
|
20124
|
-
width: 100%;
|
20125
|
-
height: 100%;
|
20126
|
-
max-width: 100%;
|
20127
|
-
max-height: 100%;
|
20128
|
-
overflow-y: auto;
|
20129
|
-
top: 0;
|
20130
|
-
left: 0;
|
20131
|
-
}
|
20132
|
-
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
20133
|
-
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
20134
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
20135
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
20136
|
-
min-height: 100%;
|
20137
|
-
min-width: 100%;
|
20138
|
-
border-radius: 0;
|
20139
|
-
}
|
20140
|
-
|
20141
|
-
.v-dialog--scrollable > .v-overlay__content,
|
20142
|
-
.v-dialog--scrollable > .v-overlay__content > form {
|
20143
|
-
display: flex;
|
20144
|
-
}
|
20145
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
20146
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
20147
|
-
display: flex;
|
20148
|
-
flex: 1 1 100%;
|
20149
|
-
flex-direction: column;
|
20150
|
-
max-height: 100%;
|
20151
|
-
max-width: 100%;
|
20152
|
-
}
|
20153
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
20154
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
20155
|
-
-webkit-backface-visibility: hidden;
|
20156
|
-
backface-visibility: hidden;
|
20157
|
-
overflow-y: auto;
|
20158
20067
|
}.v-divider {
|
20159
20068
|
display: block;
|
20160
20069
|
flex: 1 1 100%;
|
@@ -20270,14 +20179,175 @@ html.overflow-y-hidden {
|
|
20270
20179
|
}
|
20271
20180
|
|
20272
20181
|
.v-empty-state__action-btn.v-btn {
|
20273
|
-
background-color:
|
20274
|
-
color:
|
20275
|
-
}.v-
|
20276
|
-
|
20277
|
-
|
20182
|
+
background-color: initial;
|
20183
|
+
color: initial;
|
20184
|
+
}.v-dialog {
|
20185
|
+
align-items: center;
|
20186
|
+
justify-content: center;
|
20187
|
+
margin: auto;
|
20278
20188
|
}
|
20279
|
-
.v-
|
20280
|
-
|
20189
|
+
.v-dialog > .v-overlay__content {
|
20190
|
+
max-height: calc(100% - 48px);
|
20191
|
+
width: calc(100% - 48px);
|
20192
|
+
max-width: calc(100% - 48px);
|
20193
|
+
margin: 24px;
|
20194
|
+
}
|
20195
|
+
.v-dialog > .v-overlay__content,
|
20196
|
+
.v-dialog > .v-overlay__content > form {
|
20197
|
+
display: flex;
|
20198
|
+
flex-direction: column;
|
20199
|
+
min-height: 0;
|
20200
|
+
}
|
20201
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20202
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
20203
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
20204
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20205
|
+
--v-scrollbar-offset: 0px;
|
20206
|
+
border-radius: 4px;
|
20207
|
+
overflow-y: auto;
|
20208
|
+
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));
|
20209
|
+
}
|
20210
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20211
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
20212
|
+
display: flex;
|
20213
|
+
flex-direction: column;
|
20214
|
+
}
|
20215
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
20216
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
20217
|
+
padding: 16px 24px;
|
20218
|
+
}
|
20219
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
20220
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
20221
|
+
padding-top: 0;
|
20222
|
+
}
|
20223
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
20224
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
20225
|
+
font-size: inherit;
|
20226
|
+
letter-spacing: 0.03125em;
|
20227
|
+
line-height: inherit;
|
20228
|
+
padding: 16px 24px 24px;
|
20229
|
+
}
|
20230
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-actions,
|
20231
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
|
20232
|
+
justify-content: flex-end;
|
20233
|
+
}
|
20234
|
+
|
20235
|
+
.v-dialog--fullscreen {
|
20236
|
+
--v-scrollbar-offset: 0px;
|
20237
|
+
}
|
20238
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
20239
|
+
border-radius: 0;
|
20240
|
+
margin: 0;
|
20241
|
+
padding: 0;
|
20242
|
+
width: 100%;
|
20243
|
+
height: 100%;
|
20244
|
+
max-width: 100%;
|
20245
|
+
max-height: 100%;
|
20246
|
+
overflow-y: auto;
|
20247
|
+
top: 0;
|
20248
|
+
left: 0;
|
20249
|
+
}
|
20250
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
20251
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
20252
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
20253
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
20254
|
+
min-height: 100%;
|
20255
|
+
min-width: 100%;
|
20256
|
+
border-radius: 0;
|
20257
|
+
}
|
20258
|
+
|
20259
|
+
.v-dialog--scrollable > .v-overlay__content,
|
20260
|
+
.v-dialog--scrollable > .v-overlay__content > form {
|
20261
|
+
display: flex;
|
20262
|
+
}
|
20263
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
20264
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
20265
|
+
display: flex;
|
20266
|
+
flex: 1 1 100%;
|
20267
|
+
flex-direction: column;
|
20268
|
+
max-height: 100%;
|
20269
|
+
max-width: 100%;
|
20270
|
+
}
|
20271
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
20272
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
20273
|
+
-webkit-backface-visibility: hidden;
|
20274
|
+
backface-visibility: hidden;
|
20275
|
+
overflow-y: auto;
|
20276
|
+
}.v-fab {
|
20277
|
+
align-items: center;
|
20278
|
+
display: inline-flex;
|
20279
|
+
flex: 1 1 auto;
|
20280
|
+
pointer-events: none;
|
20281
|
+
position: relative;
|
20282
|
+
transition-duration: 0.2s;
|
20283
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20284
|
+
vertical-align: middle;
|
20285
|
+
}
|
20286
|
+
.v-fab .v-btn {
|
20287
|
+
pointer-events: auto;
|
20288
|
+
}
|
20289
|
+
.v-fab .v-btn--variant-elevated {
|
20290
|
+
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));
|
20291
|
+
}
|
20292
|
+
.v-fab--app, .v-fab--absolute {
|
20293
|
+
display: flex;
|
20294
|
+
}
|
20295
|
+
.v-fab--start, .v-fab--left {
|
20296
|
+
justify-content: flex-start;
|
20297
|
+
}
|
20298
|
+
.v-fab--center {
|
20299
|
+
align-items: center;
|
20300
|
+
justify-content: center;
|
20301
|
+
}
|
20302
|
+
.v-fab--end, .v-fab--right {
|
20303
|
+
justify-content: flex-end;
|
20304
|
+
}
|
20305
|
+
.v-fab--bottom {
|
20306
|
+
align-items: flex-end;
|
20307
|
+
}
|
20308
|
+
.v-fab--top {
|
20309
|
+
align-items: flex-start;
|
20310
|
+
}
|
20311
|
+
.v-fab--extended .v-btn {
|
20312
|
+
border-radius: 9999px !important;
|
20313
|
+
}
|
20314
|
+
|
20315
|
+
.v-fab__container {
|
20316
|
+
align-self: center;
|
20317
|
+
display: inline-flex;
|
20318
|
+
position: absolute;
|
20319
|
+
vertical-align: middle;
|
20320
|
+
}
|
20321
|
+
.v-fab--app .v-fab__container {
|
20322
|
+
margin: 12px;
|
20323
|
+
}
|
20324
|
+
.v-fab--absolute .v-fab__container {
|
20325
|
+
position: absolute;
|
20326
|
+
z-index: 4;
|
20327
|
+
}
|
20328
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
20329
|
+
transform: translateY(-50%);
|
20330
|
+
}
|
20331
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
20332
|
+
transform: translateY(50%);
|
20333
|
+
}
|
20334
|
+
.v-fab--top .v-fab__container {
|
20335
|
+
top: 0;
|
20336
|
+
}
|
20337
|
+
.v-fab--bottom .v-fab__container {
|
20338
|
+
bottom: 0;
|
20339
|
+
}
|
20340
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
20341
|
+
left: 0;
|
20342
|
+
}
|
20343
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
20344
|
+
right: 0;
|
20345
|
+
}.v-expansion-panel {
|
20346
|
+
background-color: rgb(var(--v-theme-surface));
|
20347
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
20348
|
+
}
|
20349
|
+
.v-expansion-panel:not(:first-child)::after {
|
20350
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
20281
20351
|
}
|
20282
20352
|
.v-expansion-panel--disabled .v-expansion-panel-title {
|
20283
20353
|
color: rgba(var(--v-theme-on-surface), 0.26);
|
@@ -20482,75 +20552,6 @@ html.overflow-y-hidden {
|
|
20482
20552
|
}
|
20483
20553
|
.v-expansion-panels--tile > .v-expansion-panel {
|
20484
20554
|
border-radius: 0;
|
20485
|
-
}.v-fab {
|
20486
|
-
align-items: center;
|
20487
|
-
display: inline-flex;
|
20488
|
-
flex: 1 1 auto;
|
20489
|
-
pointer-events: none;
|
20490
|
-
position: relative;
|
20491
|
-
transition-duration: 0.2s;
|
20492
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20493
|
-
vertical-align: middle;
|
20494
|
-
}
|
20495
|
-
.v-fab .v-btn {
|
20496
|
-
pointer-events: auto;
|
20497
|
-
}
|
20498
|
-
.v-fab .v-btn--variant-elevated {
|
20499
|
-
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));
|
20500
|
-
}
|
20501
|
-
.v-fab--app, .v-fab--absolute {
|
20502
|
-
display: flex;
|
20503
|
-
}
|
20504
|
-
.v-fab--start, .v-fab--left {
|
20505
|
-
justify-content: flex-start;
|
20506
|
-
}
|
20507
|
-
.v-fab--center {
|
20508
|
-
align-items: center;
|
20509
|
-
justify-content: center;
|
20510
|
-
}
|
20511
|
-
.v-fab--end, .v-fab--right {
|
20512
|
-
justify-content: flex-end;
|
20513
|
-
}
|
20514
|
-
.v-fab--bottom {
|
20515
|
-
align-items: flex-end;
|
20516
|
-
}
|
20517
|
-
.v-fab--top {
|
20518
|
-
align-items: flex-start;
|
20519
|
-
}
|
20520
|
-
.v-fab--extended .v-btn {
|
20521
|
-
border-radius: 9999px !important;
|
20522
|
-
}
|
20523
|
-
|
20524
|
-
.v-fab__container {
|
20525
|
-
align-self: center;
|
20526
|
-
display: inline-flex;
|
20527
|
-
position: absolute;
|
20528
|
-
vertical-align: middle;
|
20529
|
-
}
|
20530
|
-
.v-fab--app .v-fab__container {
|
20531
|
-
margin: 12px;
|
20532
|
-
}
|
20533
|
-
.v-fab--absolute .v-fab__container {
|
20534
|
-
position: absolute;
|
20535
|
-
z-index: 4;
|
20536
|
-
}
|
20537
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
20538
|
-
transform: translateY(-50%);
|
20539
|
-
}
|
20540
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
20541
|
-
transform: translateY(50%);
|
20542
|
-
}
|
20543
|
-
.v-fab--top .v-fab__container {
|
20544
|
-
top: 0;
|
20545
|
-
}
|
20546
|
-
.v-fab--bottom .v-fab__container {
|
20547
|
-
bottom: 0;
|
20548
|
-
}
|
20549
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
20550
|
-
left: 0;
|
20551
|
-
}
|
20552
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
20553
|
-
right: 0;
|
20554
20555
|
}.v-file-input--hide.v-input .v-field,
|
20555
20556
|
.v-file-input--hide.v-input .v-input__control,
|
20556
20557
|
.v-file-input--hide.v-input .v-input__details {
|
@@ -21151,44 +21152,16 @@ textarea.v-field__input::placeholder {
|
|
21151
21152
|
opacity: 0;
|
21152
21153
|
}
|
21153
21154
|
|
21154
|
-
/* endregion */.v-
|
21155
|
-
|
21156
|
-
|
21157
|
-
|
21158
|
-
|
21159
|
-
position: relative;
|
21160
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21161
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
21162
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21163
|
-
border-style: solid;
|
21164
|
-
border-width: 0;
|
21165
|
-
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));
|
21166
|
-
border-radius: 0;
|
21167
|
-
background: rgb(var(--v-theme-surface));
|
21168
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21155
|
+
/* endregion */.v-container {
|
21156
|
+
width: 100%;
|
21157
|
+
padding: 16px;
|
21158
|
+
margin-right: auto;
|
21159
|
+
margin-left: auto;
|
21169
21160
|
}
|
21170
|
-
|
21171
|
-
|
21172
|
-
|
21173
|
-
}
|
21174
|
-
.v-footer--absolute {
|
21175
|
-
position: absolute;
|
21176
|
-
}
|
21177
|
-
.v-footer--fixed {
|
21178
|
-
position: fixed;
|
21179
|
-
}
|
21180
|
-
.v-footer--rounded {
|
21181
|
-
border-radius: 4px;
|
21182
|
-
}.v-container {
|
21183
|
-
width: 100%;
|
21184
|
-
padding: 16px;
|
21185
|
-
margin-right: auto;
|
21186
|
-
margin-left: auto;
|
21187
|
-
}
|
21188
|
-
@media (min-width: 960px) {
|
21189
|
-
.v-container {
|
21190
|
-
max-width: 900px;
|
21191
|
-
}
|
21161
|
+
@media (min-width: 960px) {
|
21162
|
+
.v-container {
|
21163
|
+
max-width: 900px;
|
21164
|
+
}
|
21192
21165
|
}
|
21193
21166
|
@media (min-width: 1280px) {
|
21194
21167
|
.v-container {
|
@@ -21851,6 +21824,34 @@ textarea.v-field__input::placeholder {
|
|
21851
21824
|
.offset-xxl-11 {
|
21852
21825
|
margin-inline-start: 91.6666666667%;
|
21853
21826
|
}
|
21827
|
+
}.v-footer {
|
21828
|
+
align-items: center;
|
21829
|
+
display: flex;
|
21830
|
+
flex: 1 1 auto;
|
21831
|
+
padding: 8px 16px;
|
21832
|
+
position: relative;
|
21833
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21834
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
21835
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21836
|
+
border-style: solid;
|
21837
|
+
border-width: 0;
|
21838
|
+
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));
|
21839
|
+
border-radius: 0;
|
21840
|
+
background: rgb(var(--v-theme-surface));
|
21841
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21842
|
+
}
|
21843
|
+
.v-footer--border {
|
21844
|
+
border-width: thin;
|
21845
|
+
box-shadow: none;
|
21846
|
+
}
|
21847
|
+
.v-footer--absolute {
|
21848
|
+
position: absolute;
|
21849
|
+
}
|
21850
|
+
.v-footer--fixed {
|
21851
|
+
position: fixed;
|
21852
|
+
}
|
21853
|
+
.v-footer--rounded {
|
21854
|
+
border-radius: 4px;
|
21854
21855
|
}.v-icon {
|
21855
21856
|
--v-icon-size-multiplier: 1;
|
21856
21857
|
align-items: center;
|
@@ -21929,42 +21930,6 @@ textarea.v-field__input::placeholder {
|
|
21929
21930
|
display: flex;
|
21930
21931
|
justify-content: center;
|
21931
21932
|
padding: 8px;
|
21932
|
-
}.v-img {
|
21933
|
-
--v-theme-overlay-multiplier: 3;
|
21934
|
-
z-index: 0;
|
21935
|
-
}
|
21936
|
-
.v-img--booting .v-responsive__sizer {
|
21937
|
-
transition: none;
|
21938
|
-
}
|
21939
|
-
.v-img--rounded {
|
21940
|
-
border-radius: 4px;
|
21941
|
-
}
|
21942
|
-
|
21943
|
-
.v-img__img,
|
21944
|
-
.v-img__picture,
|
21945
|
-
.v-img__gradient,
|
21946
|
-
.v-img__placeholder,
|
21947
|
-
.v-img__error {
|
21948
|
-
z-index: -1;
|
21949
|
-
position: absolute;
|
21950
|
-
top: 0;
|
21951
|
-
left: 0;
|
21952
|
-
width: 100%;
|
21953
|
-
height: 100%;
|
21954
|
-
}
|
21955
|
-
|
21956
|
-
.v-img__img--preload {
|
21957
|
-
filter: blur(4px);
|
21958
|
-
}
|
21959
|
-
.v-img__img--contain {
|
21960
|
-
object-fit: contain;
|
21961
|
-
}
|
21962
|
-
.v-img__img--cover {
|
21963
|
-
object-fit: cover;
|
21964
|
-
}
|
21965
|
-
|
21966
|
-
.v-img__gradient {
|
21967
|
-
background-repeat: no-repeat;
|
21968
21933
|
}.v-input {
|
21969
21934
|
display: grid;
|
21970
21935
|
flex: 1 1 auto;
|
@@ -22107,6 +22072,42 @@ textarea.v-field__input::placeholder {
|
|
22107
22072
|
|
22108
22073
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22109
22074
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22075
|
+
}.v-img {
|
22076
|
+
--v-theme-overlay-multiplier: 3;
|
22077
|
+
z-index: 0;
|
22078
|
+
}
|
22079
|
+
.v-img--booting .v-responsive__sizer {
|
22080
|
+
transition: none;
|
22081
|
+
}
|
22082
|
+
.v-img--rounded {
|
22083
|
+
border-radius: 4px;
|
22084
|
+
}
|
22085
|
+
|
22086
|
+
.v-img__img,
|
22087
|
+
.v-img__picture,
|
22088
|
+
.v-img__gradient,
|
22089
|
+
.v-img__placeholder,
|
22090
|
+
.v-img__error {
|
22091
|
+
z-index: -1;
|
22092
|
+
position: absolute;
|
22093
|
+
top: 0;
|
22094
|
+
left: 0;
|
22095
|
+
width: 100%;
|
22096
|
+
height: 100%;
|
22097
|
+
}
|
22098
|
+
|
22099
|
+
.v-img__img--preload {
|
22100
|
+
filter: blur(4px);
|
22101
|
+
}
|
22102
|
+
.v-img__img--contain {
|
22103
|
+
object-fit: contain;
|
22104
|
+
}
|
22105
|
+
.v-img__img--cover {
|
22106
|
+
object-fit: cover;
|
22107
|
+
}
|
22108
|
+
|
22109
|
+
.v-img__gradient {
|
22110
|
+
background-repeat: no-repeat;
|
22110
22111
|
}.v-item-group {
|
22111
22112
|
flex: 0 1 auto;
|
22112
22113
|
max-width: 100%;
|
@@ -22142,6 +22143,8 @@ textarea.v-field__input::placeholder {
|
|
22142
22143
|
|
22143
22144
|
.v-layout-item--absolute {
|
22144
22145
|
position: absolute;
|
22146
|
+
}.v-locale-provider {
|
22147
|
+
display: contents;
|
22145
22148
|
}.v-list {
|
22146
22149
|
overflow: auto;
|
22147
22150
|
padding: 8px 0;
|
@@ -22694,26 +22697,11 @@ textarea.v-field__input::placeholder {
|
|
22694
22697
|
padding-inline-start: calc(16px + var(--indent-padding)) !important;
|
22695
22698
|
}
|
22696
22699
|
|
22697
|
-
.v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
|
22700
|
+
.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
|
22698
22701
|
opacity: 0;
|
22699
22702
|
}
|
22700
|
-
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
22703
|
+
.v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
22701
22704
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
22702
|
-
}.v-locale-provider {
|
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));
|
22717
22705
|
}.v-main {
|
22718
22706
|
flex: 1 0 auto;
|
22719
22707
|
max-width: 100%;
|
@@ -22742,6 +22730,19 @@ textarea.v-field__input::placeholder {
|
|
22742
22730
|
--v-layout-right: 0px;
|
22743
22731
|
--v-layout-top: 0px;
|
22744
22732
|
--v-layout-bottom: 0px;
|
22733
|
+
}.v-menu > .v-overlay__content {
|
22734
|
+
display: flex;
|
22735
|
+
flex-direction: column;
|
22736
|
+
border-radius: 4px;
|
22737
|
+
}
|
22738
|
+
.v-menu > .v-overlay__content > .v-card,
|
22739
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
22740
|
+
.v-menu > .v-overlay__content > .v-list {
|
22741
|
+
background: rgb(var(--v-theme-surface));
|
22742
|
+
border-radius: inherit;
|
22743
|
+
overflow: auto;
|
22744
|
+
height: 100%;
|
22745
|
+
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));
|
22745
22746
|
}.v-messages {
|
22746
22747
|
flex: 1 1 auto;
|
22747
22748
|
font-size: 12px;
|
@@ -22916,6 +22917,14 @@ textarea.v-field__input::placeholder {
|
|
22916
22917
|
}
|
22917
22918
|
.v-otp-input__loader .v-progress-linear {
|
22918
22919
|
position: absolute;
|
22920
|
+
}.v-pagination__list {
|
22921
|
+
display: inline-flex;
|
22922
|
+
list-style-type: none;
|
22923
|
+
justify-content: center;
|
22924
|
+
width: 100%;
|
22925
|
+
}
|
22926
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
22927
|
+
margin: 0.3rem;
|
22919
22928
|
}.v-overlay-container {
|
22920
22929
|
contain: layout;
|
22921
22930
|
left: 0;
|
@@ -22979,14 +22988,6 @@ html.v-overlay-scroll-blocked {
|
|
22979
22988
|
|
22980
22989
|
.v-overlay--scroll-blocked {
|
22981
22990
|
padding-inline-end: var(--v-scrollbar-offset);
|
22982
|
-
}.v-pagination__list {
|
22983
|
-
display: inline-flex;
|
22984
|
-
list-style-type: none;
|
22985
|
-
justify-content: center;
|
22986
|
-
width: 100%;
|
22987
|
-
}
|
22988
|
-
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
22989
|
-
margin: 0.3rem;
|
22990
22991
|
}.v-parallax {
|
22991
22992
|
position: relative;
|
22992
22993
|
overflow: hidden;
|
@@ -23455,54 +23456,6 @@ html.v-overlay-scroll-blocked {
|
|
23455
23456
|
flex: 1 0 0px;
|
23456
23457
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23457
23458
|
pointer-events: none;
|
23458
|
-
}.v-select .v-field .v-text-field__prefix,
|
23459
|
-
.v-select .v-field .v-text-field__suffix,
|
23460
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
23461
|
-
cursor: pointer;
|
23462
|
-
}
|
23463
|
-
.v-select .v-field .v-field__input > input {
|
23464
|
-
align-self: flex-start;
|
23465
|
-
opacity: 1;
|
23466
|
-
flex: 0 0;
|
23467
|
-
position: absolute;
|
23468
|
-
width: 100%;
|
23469
|
-
transition: none;
|
23470
|
-
pointer-events: none;
|
23471
|
-
caret-color: transparent;
|
23472
|
-
}
|
23473
|
-
.v-select .v-field--dirty .v-select__selection {
|
23474
|
-
margin-inline-end: 2px;
|
23475
|
-
}
|
23476
|
-
.v-select .v-select__selection-text {
|
23477
|
-
overflow: hidden;
|
23478
|
-
text-overflow: ellipsis;
|
23479
|
-
white-space: nowrap;
|
23480
|
-
}
|
23481
|
-
.v-select__content {
|
23482
|
-
overflow: hidden;
|
23483
|
-
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));
|
23484
|
-
border-radius: 4px;
|
23485
|
-
}
|
23486
|
-
.v-select__selection {
|
23487
|
-
display: inline-flex;
|
23488
|
-
align-items: center;
|
23489
|
-
letter-spacing: inherit;
|
23490
|
-
line-height: inherit;
|
23491
|
-
max-width: 100%;
|
23492
|
-
}
|
23493
|
-
.v-select .v-select__selection:first-child {
|
23494
|
-
margin-inline-start: 0;
|
23495
|
-
}
|
23496
|
-
.v-select--selected .v-field .v-field__input > input {
|
23497
|
-
opacity: 0;
|
23498
|
-
}
|
23499
|
-
.v-select__menu-icon {
|
23500
|
-
margin-inline-start: 4px;
|
23501
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23502
|
-
}
|
23503
|
-
.v-select--active-menu .v-select__menu-icon {
|
23504
|
-
opacity: var(--v-high-emphasis-opacity);
|
23505
|
-
transform: rotate(180deg);
|
23506
23459
|
}.v-selection-control {
|
23507
23460
|
align-items: center;
|
23508
23461
|
contain: layout;
|
@@ -23604,38 +23557,86 @@ html.v-overlay-scroll-blocked {
|
|
23604
23557
|
}
|
23605
23558
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
23606
23559
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
23607
|
-
}.v-
|
23608
|
-
|
23609
|
-
|
23610
|
-
|
23611
|
-
}
|
23612
|
-
.v-selection-control-group--inline {
|
23613
|
-
flex-direction: row;
|
23614
|
-
flex-wrap: wrap;
|
23615
|
-
}.v-sheet {
|
23616
|
-
display: block;
|
23617
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23618
|
-
border-style: solid;
|
23619
|
-
border-width: 0;
|
23620
|
-
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));
|
23621
|
-
border-radius: 0;
|
23622
|
-
background: rgb(var(--v-theme-surface));
|
23623
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23624
|
-
}
|
23625
|
-
.v-sheet--border {
|
23626
|
-
border-width: thin;
|
23627
|
-
box-shadow: none;
|
23560
|
+
}.v-select .v-field .v-text-field__prefix,
|
23561
|
+
.v-select .v-field .v-text-field__suffix,
|
23562
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
23563
|
+
cursor: pointer;
|
23628
23564
|
}
|
23629
|
-
.v-
|
23565
|
+
.v-select .v-field .v-field__input > input {
|
23566
|
+
align-self: flex-start;
|
23567
|
+
opacity: 1;
|
23568
|
+
flex: 0 0;
|
23630
23569
|
position: absolute;
|
23570
|
+
width: 100%;
|
23571
|
+
transition: none;
|
23572
|
+
pointer-events: none;
|
23573
|
+
caret-color: transparent;
|
23631
23574
|
}
|
23632
|
-
.v-
|
23633
|
-
|
23575
|
+
.v-select .v-field--dirty .v-select__selection {
|
23576
|
+
margin-inline-end: 2px;
|
23634
23577
|
}
|
23635
|
-
.v-
|
23636
|
-
|
23578
|
+
.v-select .v-select__selection-text {
|
23579
|
+
overflow: hidden;
|
23580
|
+
text-overflow: ellipsis;
|
23581
|
+
white-space: nowrap;
|
23637
23582
|
}
|
23638
|
-
.v-
|
23583
|
+
.v-select__content {
|
23584
|
+
overflow: hidden;
|
23585
|
+
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));
|
23586
|
+
border-radius: 4px;
|
23587
|
+
}
|
23588
|
+
.v-select__selection {
|
23589
|
+
display: inline-flex;
|
23590
|
+
align-items: center;
|
23591
|
+
letter-spacing: inherit;
|
23592
|
+
line-height: inherit;
|
23593
|
+
max-width: 100%;
|
23594
|
+
}
|
23595
|
+
.v-select .v-select__selection:first-child {
|
23596
|
+
margin-inline-start: 0;
|
23597
|
+
}
|
23598
|
+
.v-select--selected .v-field .v-field__input > input {
|
23599
|
+
opacity: 0;
|
23600
|
+
}
|
23601
|
+
.v-select__menu-icon {
|
23602
|
+
margin-inline-start: 4px;
|
23603
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23604
|
+
}
|
23605
|
+
.v-select--active-menu .v-select__menu-icon {
|
23606
|
+
opacity: var(--v-high-emphasis-opacity);
|
23607
|
+
transform: rotate(180deg);
|
23608
|
+
}.v-selection-control-group {
|
23609
|
+
grid-area: control;
|
23610
|
+
display: flex;
|
23611
|
+
flex-direction: column;
|
23612
|
+
}
|
23613
|
+
.v-selection-control-group--inline {
|
23614
|
+
flex-direction: row;
|
23615
|
+
flex-wrap: wrap;
|
23616
|
+
}.v-sheet {
|
23617
|
+
display: block;
|
23618
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23619
|
+
border-style: solid;
|
23620
|
+
border-width: 0;
|
23621
|
+
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));
|
23622
|
+
border-radius: 0;
|
23623
|
+
background: rgb(var(--v-theme-surface));
|
23624
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23625
|
+
}
|
23626
|
+
.v-sheet--border {
|
23627
|
+
border-width: thin;
|
23628
|
+
box-shadow: none;
|
23629
|
+
}
|
23630
|
+
.v-sheet--absolute {
|
23631
|
+
position: absolute;
|
23632
|
+
}
|
23633
|
+
.v-sheet--fixed {
|
23634
|
+
position: fixed;
|
23635
|
+
}
|
23636
|
+
.v-sheet--relative {
|
23637
|
+
position: relative;
|
23638
|
+
}
|
23639
|
+
.v-sheet--sticky {
|
23639
23640
|
position: sticky;
|
23640
23641
|
}
|
23641
23642
|
.v-sheet--rounded {
|
@@ -24480,6 +24481,101 @@ html.v-overlay-scroll-blocked {
|
|
24480
24481
|
}
|
24481
24482
|
.v-system-bar:not(.v-system-bar--absolute) {
|
24482
24483
|
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
24484
|
+
}.v-tabs {
|
24485
|
+
display: flex;
|
24486
|
+
height: var(--v-tabs-height);
|
24487
|
+
}
|
24488
|
+
.v-tabs--density-default {
|
24489
|
+
--v-tabs-height: 48px;
|
24490
|
+
}
|
24491
|
+
.v-tabs--density-default.v-tabs--stacked {
|
24492
|
+
--v-tabs-height: 72px;
|
24493
|
+
}
|
24494
|
+
|
24495
|
+
.v-tabs--density-comfortable {
|
24496
|
+
--v-tabs-height: 44px;
|
24497
|
+
}
|
24498
|
+
.v-tabs--density-comfortable.v-tabs--stacked {
|
24499
|
+
--v-tabs-height: 68px;
|
24500
|
+
}
|
24501
|
+
|
24502
|
+
.v-tabs--density-compact {
|
24503
|
+
--v-tabs-height: 36px;
|
24504
|
+
}
|
24505
|
+
.v-tabs--density-compact.v-tabs--stacked {
|
24506
|
+
--v-tabs-height: 60px;
|
24507
|
+
}
|
24508
|
+
|
24509
|
+
.v-tabs.v-slide-group--vertical {
|
24510
|
+
height: auto;
|
24511
|
+
flex: none;
|
24512
|
+
--v-tabs-height: 48px;
|
24513
|
+
}
|
24514
|
+
|
24515
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
24516
|
+
margin-inline-start: 42px;
|
24517
|
+
}
|
24518
|
+
|
24519
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
24520
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
24521
|
+
margin-inline-end: auto;
|
24522
|
+
}
|
24523
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
24524
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
24525
|
+
margin-inline-start: auto;
|
24526
|
+
}
|
24527
|
+
|
24528
|
+
.v-tabs--grow {
|
24529
|
+
flex-grow: 1;
|
24530
|
+
}
|
24531
|
+
.v-tabs--grow .v-tab {
|
24532
|
+
flex: 1 0 auto;
|
24533
|
+
max-width: none;
|
24534
|
+
}
|
24535
|
+
|
24536
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
24537
|
+
margin-inline-start: auto;
|
24538
|
+
}
|
24539
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
24540
|
+
margin-inline-end: 0;
|
24541
|
+
}
|
24542
|
+
|
24543
|
+
@media (max-width: 1279.98px) {
|
24544
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
24545
|
+
margin-inline-start: 52px;
|
24546
|
+
}
|
24547
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
24548
|
+
margin-inline-end: 52px;
|
24549
|
+
}
|
24550
|
+
}.v-tab.v-tab.v-btn {
|
24551
|
+
height: var(--v-tabs-height);
|
24552
|
+
border-radius: 0;
|
24553
|
+
min-width: 90px;
|
24554
|
+
}
|
24555
|
+
.v-slide-group--horizontal .v-tab {
|
24556
|
+
max-width: 360px;
|
24557
|
+
}
|
24558
|
+
.v-slide-group--vertical .v-tab {
|
24559
|
+
justify-content: start;
|
24560
|
+
}
|
24561
|
+
|
24562
|
+
.v-tab__slider {
|
24563
|
+
position: absolute;
|
24564
|
+
bottom: 0;
|
24565
|
+
left: 0;
|
24566
|
+
height: 2px;
|
24567
|
+
width: 100%;
|
24568
|
+
background: currentColor;
|
24569
|
+
pointer-events: none;
|
24570
|
+
opacity: 0;
|
24571
|
+
}
|
24572
|
+
.v-tab--selected .v-tab__slider {
|
24573
|
+
opacity: 1;
|
24574
|
+
}
|
24575
|
+
.v-slide-group--vertical .v-tab__slider {
|
24576
|
+
top: 0;
|
24577
|
+
height: 100%;
|
24578
|
+
width: 2px;
|
24483
24579
|
}.v-table {
|
24484
24580
|
background: rgb(var(--v-theme-surface));
|
24485
24581
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -24618,101 +24714,6 @@ html.v-overlay-scroll-blocked {
|
|
24618
24714
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
24619
24715
|
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
24620
24716
|
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
|
-
}
|
24716
24717
|
}/* region BLOCK */
|
24717
24718
|
.v-text-field input {
|
24718
24719
|
color: inherit;
|
@@ -24819,135 +24820,6 @@ html.v-overlay-scroll-blocked {
|
|
24819
24820
|
}
|
24820
24821
|
.v-textarea textarea:invalid {
|
24821
24822
|
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;
|
24921
|
-
min-width: 0;
|
24922
|
-
font-size: 1.25rem;
|
24923
|
-
font-weight: 400;
|
24924
|
-
letter-spacing: 0;
|
24925
|
-
line-height: 1.75rem;
|
24926
|
-
text-transform: none;
|
24927
|
-
}
|
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;
|
24936
|
-
}
|
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;
|
24951
24823
|
}.v-theme-provider {
|
24952
24824
|
background: rgb(var(--v-theme-background));
|
24953
24825
|
color: rgb(var(--v-theme-on-background));
|
@@ -25367,6 +25239,135 @@ html.v-overlay-scroll-blocked {
|
|
25367
25239
|
|
25368
25240
|
.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 {
|
25369
25241
|
padding-inline-end: 0;
|
25242
|
+
}.v-toolbar {
|
25243
|
+
align-items: flex-start;
|
25244
|
+
display: flex;
|
25245
|
+
flex: none;
|
25246
|
+
flex-direction: column;
|
25247
|
+
justify-content: space-between;
|
25248
|
+
max-width: 100%;
|
25249
|
+
position: relative;
|
25250
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
25251
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
25252
|
+
width: 100%;
|
25253
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
25254
|
+
border-style: solid;
|
25255
|
+
border-width: 0;
|
25256
|
+
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));
|
25257
|
+
border-radius: 0;
|
25258
|
+
background: rgb(var(--v-theme-surface-light));
|
25259
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25260
|
+
}
|
25261
|
+
.v-toolbar--border {
|
25262
|
+
border-width: thin;
|
25263
|
+
box-shadow: none;
|
25264
|
+
}
|
25265
|
+
.v-toolbar--absolute {
|
25266
|
+
position: absolute;
|
25267
|
+
}
|
25268
|
+
.v-toolbar--collapse {
|
25269
|
+
max-width: 112px;
|
25270
|
+
overflow: hidden;
|
25271
|
+
border-end-end-radius: 24px;
|
25272
|
+
}
|
25273
|
+
.v-toolbar--collapse .v-toolbar-title {
|
25274
|
+
display: none;
|
25275
|
+
}
|
25276
|
+
.v-toolbar--flat {
|
25277
|
+
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));
|
25278
|
+
}
|
25279
|
+
.v-toolbar--floating {
|
25280
|
+
display: inline-flex;
|
25281
|
+
}
|
25282
|
+
.v-toolbar--rounded {
|
25283
|
+
border-radius: 4px;
|
25284
|
+
}
|
25285
|
+
|
25286
|
+
.v-toolbar__content,
|
25287
|
+
.v-toolbar__extension {
|
25288
|
+
align-items: center;
|
25289
|
+
display: flex;
|
25290
|
+
flex: 0 0 auto;
|
25291
|
+
position: relative;
|
25292
|
+
transition: inherit;
|
25293
|
+
width: 100%;
|
25294
|
+
}
|
25295
|
+
|
25296
|
+
.v-toolbar__content {
|
25297
|
+
overflow: hidden;
|
25298
|
+
}
|
25299
|
+
.v-toolbar__content > .v-btn:first-child {
|
25300
|
+
margin-inline-start: 4px;
|
25301
|
+
}
|
25302
|
+
.v-toolbar__content > .v-btn:last-child {
|
25303
|
+
margin-inline-end: 4px;
|
25304
|
+
}
|
25305
|
+
.v-toolbar__content > .v-toolbar-title {
|
25306
|
+
margin-inline-start: 20px;
|
25307
|
+
}
|
25308
|
+
.v-toolbar--density-prominent .v-toolbar__content {
|
25309
|
+
align-items: flex-start;
|
25310
|
+
}
|
25311
|
+
|
25312
|
+
.v-toolbar__image {
|
25313
|
+
position: absolute;
|
25314
|
+
top: 0;
|
25315
|
+
left: 0;
|
25316
|
+
width: 100%;
|
25317
|
+
height: 100%;
|
25318
|
+
display: flex;
|
25319
|
+
opacity: var(--v-toolbar-image-opacity, 1);
|
25320
|
+
transition-property: opacity;
|
25321
|
+
}
|
25322
|
+
|
25323
|
+
.v-toolbar__prepend,
|
25324
|
+
.v-toolbar__append {
|
25325
|
+
align-items: center;
|
25326
|
+
align-self: stretch;
|
25327
|
+
display: flex;
|
25328
|
+
}
|
25329
|
+
|
25330
|
+
.v-toolbar__prepend {
|
25331
|
+
margin-inline: 4px auto;
|
25332
|
+
}
|
25333
|
+
|
25334
|
+
.v-toolbar__append {
|
25335
|
+
margin-inline: auto 4px;
|
25336
|
+
}
|
25337
|
+
|
25338
|
+
.v-toolbar-title {
|
25339
|
+
flex: 1 1;
|
25340
|
+
font-size: 1.25rem;
|
25341
|
+
min-width: 0;
|
25342
|
+
font-size: 1.25rem;
|
25343
|
+
font-weight: 400;
|
25344
|
+
letter-spacing: 0;
|
25345
|
+
line-height: 1.75rem;
|
25346
|
+
text-transform: none;
|
25347
|
+
}
|
25348
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
25349
|
+
align-self: flex-end;
|
25350
|
+
padding-bottom: 6px;
|
25351
|
+
font-size: 1.5rem;
|
25352
|
+
font-weight: 400;
|
25353
|
+
letter-spacing: 0;
|
25354
|
+
line-height: 2.25rem;
|
25355
|
+
text-transform: none;
|
25356
|
+
}
|
25357
|
+
|
25358
|
+
.v-toolbar-title__placeholder {
|
25359
|
+
overflow: hidden;
|
25360
|
+
text-overflow: ellipsis;
|
25361
|
+
white-space: nowrap;
|
25362
|
+
}
|
25363
|
+
|
25364
|
+
.v-toolbar-items {
|
25365
|
+
display: flex;
|
25366
|
+
height: inherit;
|
25367
|
+
align-self: stretch;
|
25368
|
+
}
|
25369
|
+
.v-toolbar-items > .v-btn {
|
25370
|
+
border-radius: 0;
|
25370
25371
|
}.v-tooltip > .v-overlay__content {
|
25371
25372
|
background: rgb(var(--v-theme-surface-variant));
|
25372
25373
|
color: rgb(var(--v-theme-on-surface-variant));
|
@@ -25490,69 +25491,6 @@ html.v-overlay-scroll-blocked {
|
|
25490
25491
|
}
|
25491
25492
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
25492
25493
|
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%;
|
25528
|
-
}.v-color-picker-edit {
|
25529
|
-
display: flex;
|
25530
|
-
margin-top: 24px;
|
25531
|
-
}
|
25532
|
-
|
25533
|
-
.v-color-picker-edit__input {
|
25534
|
-
width: 100%;
|
25535
|
-
display: flex;
|
25536
|
-
flex-wrap: wrap;
|
25537
|
-
justify-content: center;
|
25538
|
-
text-align: center;
|
25539
|
-
}
|
25540
|
-
.v-color-picker-edit__input:not(:last-child) {
|
25541
|
-
margin-inline-end: 8px;
|
25542
|
-
}
|
25543
|
-
.v-color-picker-edit__input input {
|
25544
|
-
border-radius: 4px;
|
25545
|
-
margin-bottom: 8px;
|
25546
|
-
min-width: 0;
|
25547
|
-
outline: none;
|
25548
|
-
text-align: center;
|
25549
|
-
width: 100%;
|
25550
|
-
height: 32px;
|
25551
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
25552
|
-
color: rgba(var(--v-theme-on-surface));
|
25553
|
-
}
|
25554
|
-
.v-color-picker-edit__input span {
|
25555
|
-
font-size: 0.75rem;
|
25556
25494
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
25557
25495
|
background-color: transparent !important;
|
25558
25496
|
}
|
@@ -25623,6 +25561,69 @@ html.v-overlay-scroll-blocked {
|
|
25623
25561
|
.v-color-picker-preview__eye-dropper {
|
25624
25562
|
position: relative;
|
25625
25563
|
margin-right: 12px;
|
25564
|
+
}.v-color-picker-edit {
|
25565
|
+
display: flex;
|
25566
|
+
margin-top: 24px;
|
25567
|
+
}
|
25568
|
+
|
25569
|
+
.v-color-picker-edit__input {
|
25570
|
+
width: 100%;
|
25571
|
+
display: flex;
|
25572
|
+
flex-wrap: wrap;
|
25573
|
+
justify-content: center;
|
25574
|
+
text-align: center;
|
25575
|
+
}
|
25576
|
+
.v-color-picker-edit__input:not(:last-child) {
|
25577
|
+
margin-inline-end: 8px;
|
25578
|
+
}
|
25579
|
+
.v-color-picker-edit__input input {
|
25580
|
+
border-radius: 4px;
|
25581
|
+
margin-bottom: 8px;
|
25582
|
+
min-width: 0;
|
25583
|
+
outline: none;
|
25584
|
+
text-align: center;
|
25585
|
+
width: 100%;
|
25586
|
+
height: 32px;
|
25587
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
25588
|
+
color: rgba(var(--v-theme-on-surface));
|
25589
|
+
}
|
25590
|
+
.v-color-picker-edit__input span {
|
25591
|
+
font-size: 0.75rem;
|
25592
|
+
}.v-color-picker-swatches {
|
25593
|
+
overflow-y: auto;
|
25594
|
+
}
|
25595
|
+
.v-color-picker-swatches > div {
|
25596
|
+
display: flex;
|
25597
|
+
flex-wrap: wrap;
|
25598
|
+
justify-content: center;
|
25599
|
+
padding: 8px;
|
25600
|
+
}
|
25601
|
+
|
25602
|
+
.v-color-picker-swatches__swatch {
|
25603
|
+
display: flex;
|
25604
|
+
flex-direction: column;
|
25605
|
+
margin-bottom: 10px;
|
25606
|
+
}
|
25607
|
+
|
25608
|
+
.v-color-picker-swatches__color {
|
25609
|
+
position: relative;
|
25610
|
+
height: 18px;
|
25611
|
+
max-height: 18px;
|
25612
|
+
width: 45px;
|
25613
|
+
margin: 2px 4px;
|
25614
|
+
border-radius: 2px;
|
25615
|
+
-webkit-user-select: none;
|
25616
|
+
user-select: none;
|
25617
|
+
overflow: hidden;
|
25618
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
25619
|
+
cursor: pointer;
|
25620
|
+
}
|
25621
|
+
.v-color-picker-swatches__color > div {
|
25622
|
+
display: flex;
|
25623
|
+
align-items: center;
|
25624
|
+
justify-content: center;
|
25625
|
+
width: 100%;
|
25626
|
+
height: 100%;
|
25626
25627
|
}.v-picker.v-sheet {
|
25627
25628
|
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));
|
25628
25629
|
border-radius: 4px;
|