@vuetify/nightly 3.6.8-master.2024-05-30 → 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 +8 -2
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2809 -2808
- package/dist/vuetify-labs.esm.js +4 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +4 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +883 -882
- package/dist/vuetify.d.ts +41 -41
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- 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/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/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +41 -41
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.8-master.2024-05-
|
2
|
+
* Vuetify v3.6.8-master.2024-05-31
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17872,6 +17872,77 @@ html.overflow-y-hidden {
|
|
17872
17872
|
.v-avatar .v-img {
|
17873
17873
|
height: 100%;
|
17874
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;
|
17875
17946
|
}.v-banner {
|
17876
17947
|
display: grid;
|
17877
17948
|
flex: 1 1;
|
@@ -17987,6 +18058,7 @@ html.overflow-y-hidden {
|
|
17987
18058
|
|
17988
18059
|
.v-banner--sticky {
|
17989
18060
|
top: 0;
|
18061
|
+
z-index: 1;
|
17990
18062
|
}
|
17991
18063
|
|
17992
18064
|
.v-banner__content {
|
@@ -18029,77 +18101,6 @@ html.overflow-y-hidden {
|
|
18029
18101
|
}
|
18030
18102
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18031
18103
|
align-self: flex-start;
|
18032
|
-
}.v-badge {
|
18033
|
-
display: inline-block;
|
18034
|
-
line-height: 1;
|
18035
|
-
}
|
18036
|
-
|
18037
|
-
.v-badge__badge {
|
18038
|
-
align-items: center;
|
18039
|
-
display: inline-flex;
|
18040
|
-
border-radius: 10px;
|
18041
|
-
font-size: 0.75rem;
|
18042
|
-
font-weight: 500;
|
18043
|
-
height: 1.25rem;
|
18044
|
-
justify-content: center;
|
18045
|
-
min-width: 20px;
|
18046
|
-
padding: 4px 6px;
|
18047
|
-
pointer-events: auto;
|
18048
|
-
position: absolute;
|
18049
|
-
text-align: center;
|
18050
|
-
text-indent: 0;
|
18051
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18052
|
-
white-space: nowrap;
|
18053
|
-
background: rgb(var(--v-theme-surface-variant));
|
18054
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18055
|
-
}
|
18056
|
-
.v-badge--bordered .v-badge__badge::after {
|
18057
|
-
border-radius: inherit;
|
18058
|
-
border-style: solid;
|
18059
|
-
border-width: 2px;
|
18060
|
-
bottom: 0;
|
18061
|
-
color: rgb(var(--v-theme-background));
|
18062
|
-
content: "";
|
18063
|
-
left: 0;
|
18064
|
-
position: absolute;
|
18065
|
-
right: 0;
|
18066
|
-
top: 0;
|
18067
|
-
transform: scale(1.05);
|
18068
|
-
}
|
18069
|
-
.v-badge--dot .v-badge__badge {
|
18070
|
-
border-radius: 4.5px;
|
18071
|
-
height: 9px;
|
18072
|
-
min-width: 0;
|
18073
|
-
padding: 0;
|
18074
|
-
width: 9px;
|
18075
|
-
}
|
18076
|
-
.v-badge--dot .v-badge__badge::after {
|
18077
|
-
border-width: 1.5px;
|
18078
|
-
}
|
18079
|
-
.v-badge--inline .v-badge__badge {
|
18080
|
-
position: relative;
|
18081
|
-
vertical-align: middle;
|
18082
|
-
}
|
18083
|
-
.v-badge__badge .v-icon {
|
18084
|
-
color: inherit;
|
18085
|
-
font-size: 0.75rem;
|
18086
|
-
margin: 0 -2px;
|
18087
|
-
}
|
18088
|
-
.v-badge__badge img,
|
18089
|
-
.v-badge__badge .v-img {
|
18090
|
-
height: 100%;
|
18091
|
-
width: 100%;
|
18092
|
-
}
|
18093
|
-
|
18094
|
-
.v-badge__wrapper {
|
18095
|
-
display: flex;
|
18096
|
-
position: relative;
|
18097
|
-
}
|
18098
|
-
.v-badge--inline .v-badge__wrapper {
|
18099
|
-
align-items: center;
|
18100
|
-
display: inline-flex;
|
18101
|
-
justify-content: center;
|
18102
|
-
margin: 0 4px;
|
18103
18104
|
}.v-bottom-navigation {
|
18104
18105
|
display: flex;
|
18105
18106
|
max-width: 100%;
|
@@ -18244,62 +18245,6 @@ html.overflow-y-hidden {
|
|
18244
18245
|
display: inline-block;
|
18245
18246
|
padding: 0 8px;
|
18246
18247
|
vertical-align: middle;
|
18247
|
-
}.v-btn-group {
|
18248
|
-
display: inline-flex;
|
18249
|
-
flex-wrap: nowrap;
|
18250
|
-
max-width: 100%;
|
18251
|
-
min-width: 0;
|
18252
|
-
overflow: hidden;
|
18253
|
-
vertical-align: middle;
|
18254
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18255
|
-
border-style: solid;
|
18256
|
-
border-width: 0;
|
18257
|
-
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));
|
18258
|
-
border-radius: 4px;
|
18259
|
-
background: transparent;
|
18260
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18261
|
-
}
|
18262
|
-
.v-btn-group--border {
|
18263
|
-
border-width: thin;
|
18264
|
-
box-shadow: none;
|
18265
|
-
}
|
18266
|
-
.v-btn-group--density-default.v-btn-group {
|
18267
|
-
height: 48px;
|
18268
|
-
}
|
18269
|
-
|
18270
|
-
.v-btn-group--density-comfortable.v-btn-group {
|
18271
|
-
height: 40px;
|
18272
|
-
}
|
18273
|
-
|
18274
|
-
.v-btn-group--density-compact.v-btn-group {
|
18275
|
-
height: 36px;
|
18276
|
-
}
|
18277
|
-
|
18278
|
-
.v-btn-group .v-btn {
|
18279
|
-
border-radius: 0;
|
18280
|
-
border-color: inherit;
|
18281
|
-
}
|
18282
|
-
.v-btn-group .v-btn:not(:last-child) {
|
18283
|
-
border-inline-end: none;
|
18284
|
-
}
|
18285
|
-
.v-btn-group .v-btn:not(:first-child) {
|
18286
|
-
border-inline-start: none;
|
18287
|
-
}
|
18288
|
-
.v-btn-group .v-btn:first-child {
|
18289
|
-
border-start-start-radius: inherit;
|
18290
|
-
border-end-start-radius: inherit;
|
18291
|
-
}
|
18292
|
-
.v-btn-group .v-btn:last-child {
|
18293
|
-
border-start-end-radius: inherit;
|
18294
|
-
border-end-end-radius: inherit;
|
18295
|
-
}
|
18296
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
18297
|
-
border-inline-end-width: thin;
|
18298
|
-
border-inline-end-style: solid;
|
18299
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18300
|
-
}
|
18301
|
-
.v-btn-group--tile {
|
18302
|
-
border-radius: 0;
|
18303
18248
|
}.v-btn {
|
18304
18249
|
align-items: center;
|
18305
18250
|
border-radius: 4px;
|
@@ -18718,6 +18663,62 @@ html.overflow-y-hidden {
|
|
18718
18663
|
}
|
18719
18664
|
.v-pagination__item--is-active .v-btn__overlay {
|
18720
18665
|
opacity: var(--v-border-opacity);
|
18666
|
+
}.v-btn-group {
|
18667
|
+
display: inline-flex;
|
18668
|
+
flex-wrap: nowrap;
|
18669
|
+
max-width: 100%;
|
18670
|
+
min-width: 0;
|
18671
|
+
overflow: hidden;
|
18672
|
+
vertical-align: middle;
|
18673
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18674
|
+
border-style: solid;
|
18675
|
+
border-width: 0;
|
18676
|
+
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));
|
18677
|
+
border-radius: 4px;
|
18678
|
+
background: transparent;
|
18679
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18680
|
+
}
|
18681
|
+
.v-btn-group--border {
|
18682
|
+
border-width: thin;
|
18683
|
+
box-shadow: none;
|
18684
|
+
}
|
18685
|
+
.v-btn-group--density-default.v-btn-group {
|
18686
|
+
height: 48px;
|
18687
|
+
}
|
18688
|
+
|
18689
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
18690
|
+
height: 40px;
|
18691
|
+
}
|
18692
|
+
|
18693
|
+
.v-btn-group--density-compact.v-btn-group {
|
18694
|
+
height: 36px;
|
18695
|
+
}
|
18696
|
+
|
18697
|
+
.v-btn-group .v-btn {
|
18698
|
+
border-radius: 0;
|
18699
|
+
border-color: inherit;
|
18700
|
+
}
|
18701
|
+
.v-btn-group .v-btn:not(:last-child) {
|
18702
|
+
border-inline-end: none;
|
18703
|
+
}
|
18704
|
+
.v-btn-group .v-btn:not(:first-child) {
|
18705
|
+
border-inline-start: none;
|
18706
|
+
}
|
18707
|
+
.v-btn-group .v-btn:first-child {
|
18708
|
+
border-start-start-radius: inherit;
|
18709
|
+
border-end-start-radius: inherit;
|
18710
|
+
}
|
18711
|
+
.v-btn-group .v-btn:last-child {
|
18712
|
+
border-start-end-radius: inherit;
|
18713
|
+
border-end-end-radius: inherit;
|
18714
|
+
}
|
18715
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
18716
|
+
border-inline-end-width: thin;
|
18717
|
+
border-inline-end-style: solid;
|
18718
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18719
|
+
}
|
18720
|
+
.v-btn-group--tile {
|
18721
|
+
border-radius: 0;
|
18721
18722
|
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
18722
18723
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
18723
18724
|
}
|
@@ -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%;
|
@@ -19852,67 +19853,6 @@ html.overflow-y-hidden {
|
|
19852
19853
|
}
|
19853
19854
|
.v-data-table-footer__page {
|
19854
19855
|
padding: 0 8px;
|
19855
|
-
}.v-date-picker {
|
19856
|
-
overflow: hidden;
|
19857
|
-
width: 328px;
|
19858
|
-
}
|
19859
|
-
.v-date-picker--show-week {
|
19860
|
-
width: 368px;
|
19861
|
-
}.v-date-picker-month {
|
19862
|
-
display: flex;
|
19863
|
-
justify-content: center;
|
19864
|
-
padding: 0 12px 8px;
|
19865
|
-
--v-date-picker-month-day-diff: 4px;
|
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;
|
19888
|
-
}
|
19889
|
-
|
19890
|
-
.v-date-picker-month__day {
|
19891
|
-
align-items: center;
|
19892
|
-
display: flex;
|
19893
|
-
justify-content: center;
|
19894
|
-
position: relative;
|
19895
|
-
height: 40px;
|
19896
|
-
width: 40px;
|
19897
|
-
}
|
19898
|
-
.v-date-picker-month__day--selected .v-btn {
|
19899
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
19900
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
19901
|
-
}
|
19902
|
-
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
19903
|
-
--v-btn-height: 24px;
|
19904
|
-
--v-btn-size: 0.85rem;
|
19905
|
-
}
|
19906
|
-
.v-date-picker-month__day--week {
|
19907
|
-
font-size: var(--v-btn-size);
|
19908
|
-
}
|
19909
|
-
|
19910
|
-
.v-date-picker-month__day--adjacent {
|
19911
|
-
opacity: 0.5;
|
19912
|
-
}
|
19913
|
-
|
19914
|
-
.v-date-picker-month__day--hide-adjacent {
|
19915
|
-
opacity: 0;
|
19916
19856
|
}.v-date-picker-controls {
|
19917
19857
|
display: flex;
|
19918
19858
|
align-items: center;
|
@@ -20029,6 +19969,67 @@ html.overflow-y-hidden {
|
|
20029
19969
|
.date-picker-header-reverse-transition-leave-to {
|
20030
19970
|
opacity: 0;
|
20031
19971
|
transform: translate(0, 100%);
|
19972
|
+
}.v-date-picker {
|
19973
|
+
overflow: hidden;
|
19974
|
+
width: 328px;
|
19975
|
+
}
|
19976
|
+
.v-date-picker--show-week {
|
19977
|
+
width: 368px;
|
19978
|
+
}.v-date-picker-month {
|
19979
|
+
display: flex;
|
19980
|
+
justify-content: center;
|
19981
|
+
padding: 0 12px 8px;
|
19982
|
+
--v-date-picker-month-day-diff: 4px;
|
19983
|
+
}
|
19984
|
+
|
19985
|
+
.v-date-picker-month__weeks {
|
19986
|
+
display: grid;
|
19987
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
19988
|
+
column-gap: 4px;
|
19989
|
+
font-size: 0.85rem;
|
19990
|
+
}
|
19991
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
19992
|
+
grid-row-gap: 0;
|
19993
|
+
}
|
19994
|
+
|
19995
|
+
.v-date-picker-month__weekday {
|
19996
|
+
font-size: 0.85rem;
|
19997
|
+
}
|
19998
|
+
|
19999
|
+
.v-date-picker-month__days {
|
20000
|
+
display: grid;
|
20001
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
20002
|
+
column-gap: 4px;
|
20003
|
+
flex: 1 1;
|
20004
|
+
justify-content: space-around;
|
20005
|
+
}
|
20006
|
+
|
20007
|
+
.v-date-picker-month__day {
|
20008
|
+
align-items: center;
|
20009
|
+
display: flex;
|
20010
|
+
justify-content: center;
|
20011
|
+
position: relative;
|
20012
|
+
height: 40px;
|
20013
|
+
width: 40px;
|
20014
|
+
}
|
20015
|
+
.v-date-picker-month__day--selected .v-btn {
|
20016
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
20017
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
20018
|
+
}
|
20019
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
20020
|
+
--v-btn-height: 24px;
|
20021
|
+
--v-btn-size: 0.85rem;
|
20022
|
+
}
|
20023
|
+
.v-date-picker-month__day--week {
|
20024
|
+
font-size: var(--v-btn-size);
|
20025
|
+
}
|
20026
|
+
|
20027
|
+
.v-date-picker-month__day--adjacent {
|
20028
|
+
opacity: 0.5;
|
20029
|
+
}
|
20030
|
+
|
20031
|
+
.v-date-picker-month__day--hide-adjacent {
|
20032
|
+
opacity: 0;
|
20032
20033
|
}.v-date-picker-months {
|
20033
20034
|
height: 288px;
|
20034
20035
|
}
|
@@ -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,20 +20179,181 @@ 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;
|
20281
20194
|
}
|
20282
|
-
.v-
|
20283
|
-
|
20195
|
+
.v-dialog > .v-overlay__content,
|
20196
|
+
.v-dialog > .v-overlay__content > form {
|
20197
|
+
display: flex;
|
20198
|
+
flex-direction: column;
|
20199
|
+
min-height: 0;
|
20284
20200
|
}
|
20285
|
-
.v-
|
20286
|
-
|
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));
|
20351
|
+
}
|
20352
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
20353
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
20354
|
+
}
|
20355
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
20356
|
+
opacity: 0.4615384615;
|
20287
20357
|
}
|
20288
20358
|
|
20289
20359
|
.v-expansion-panels {
|
@@ -20482,75 +20552,35 @@ html.overflow-y-hidden {
|
|
20482
20552
|
}
|
20483
20553
|
.v-expansion-panels--tile > .v-expansion-panel {
|
20484
20554
|
border-radius: 0;
|
20485
|
-
}.v-
|
20486
|
-
|
20487
|
-
|
20488
|
-
|
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;
|
20555
|
+
}.v-file-input--hide.v-input .v-field,
|
20556
|
+
.v-file-input--hide.v-input .v-input__control,
|
20557
|
+
.v-file-input--hide.v-input .v-input__details {
|
20558
|
+
display: none;
|
20522
20559
|
}
|
20523
|
-
|
20524
|
-
|
20525
|
-
|
20526
|
-
display: inline-flex;
|
20527
|
-
position: absolute;
|
20528
|
-
vertical-align: middle;
|
20560
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
20561
|
+
grid-area: control;
|
20562
|
+
margin: 0 auto;
|
20529
20563
|
}
|
20530
|
-
.v-
|
20531
|
-
|
20564
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20565
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20566
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20567
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20568
|
+
top: 0px;
|
20532
20569
|
}
|
20533
|
-
.v-
|
20570
|
+
.v-file-input input[type=file] {
|
20571
|
+
height: 100%;
|
20572
|
+
left: 0;
|
20573
|
+
opacity: 0;
|
20534
20574
|
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
20575
|
top: 0;
|
20576
|
+
width: 100%;
|
20577
|
+
z-index: 1;
|
20545
20578
|
}
|
20546
|
-
.v-
|
20547
|
-
|
20548
|
-
}
|
20549
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
20550
|
-
left: 0;
|
20579
|
+
.v-file-input .v-input__details {
|
20580
|
+
padding-inline: 16px;
|
20551
20581
|
}
|
20552
|
-
.v-
|
20553
|
-
|
20582
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
20583
|
+
padding-inline: 0;
|
20554
20584
|
}/* region INPUT */
|
20555
20585
|
.v-field {
|
20556
20586
|
--v-theme-overlay-multiplier: 1;
|
@@ -21122,78 +21152,21 @@ textarea.v-field__input::placeholder {
|
|
21122
21152
|
opacity: 0;
|
21123
21153
|
}
|
21124
21154
|
|
21125
|
-
/* endregion */.v-
|
21126
|
-
|
21127
|
-
|
21128
|
-
|
21155
|
+
/* endregion */.v-container {
|
21156
|
+
width: 100%;
|
21157
|
+
padding: 16px;
|
21158
|
+
margin-right: auto;
|
21159
|
+
margin-left: auto;
|
21129
21160
|
}
|
21130
|
-
|
21131
|
-
|
21132
|
-
|
21161
|
+
@media (min-width: 960px) {
|
21162
|
+
.v-container {
|
21163
|
+
max-width: 900px;
|
21164
|
+
}
|
21133
21165
|
}
|
21134
|
-
|
21135
|
-
.v-
|
21136
|
-
|
21137
|
-
|
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 {
|
21155
|
-
align-items: center;
|
21156
|
-
display: flex;
|
21157
|
-
flex: 1 1 auto;
|
21158
|
-
padding: 8px 16px;
|
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));
|
21169
|
-
}
|
21170
|
-
.v-footer--border {
|
21171
|
-
border-width: thin;
|
21172
|
-
box-shadow: none;
|
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
|
-
}
|
21192
|
-
}
|
21193
|
-
@media (min-width: 1280px) {
|
21194
|
-
.v-container {
|
21195
|
-
max-width: 1200px;
|
21196
|
-
}
|
21166
|
+
@media (min-width: 1280px) {
|
21167
|
+
.v-container {
|
21168
|
+
max-width: 1200px;
|
21169
|
+
}
|
21197
21170
|
}
|
21198
21171
|
@media (min-width: 1920px) {
|
21199
21172
|
.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;
|
@@ -21904,47 +21905,6 @@ textarea.v-field__input::placeholder {
|
|
21904
21905
|
|
21905
21906
|
.v-icon--end {
|
21906
21907
|
margin-inline-start: 8px;
|
21907
|
-
}.v-img {
|
21908
|
-
--v-theme-overlay-multiplier: 3;
|
21909
|
-
z-index: 0;
|
21910
|
-
}
|
21911
|
-
.v-img--booting .v-responsive__sizer {
|
21912
|
-
transition: none;
|
21913
|
-
}
|
21914
|
-
.v-img--rounded {
|
21915
|
-
border-radius: 4px;
|
21916
|
-
}
|
21917
|
-
|
21918
|
-
.v-img__img,
|
21919
|
-
.v-img__picture,
|
21920
|
-
.v-img__gradient,
|
21921
|
-
.v-img__placeholder,
|
21922
|
-
.v-img__error {
|
21923
|
-
z-index: -1;
|
21924
|
-
position: absolute;
|
21925
|
-
top: 0;
|
21926
|
-
left: 0;
|
21927
|
-
width: 100%;
|
21928
|
-
height: 100%;
|
21929
|
-
}
|
21930
|
-
|
21931
|
-
.v-img__img--preload {
|
21932
|
-
filter: blur(4px);
|
21933
|
-
}
|
21934
|
-
.v-img__img--contain {
|
21935
|
-
object-fit: contain;
|
21936
|
-
}
|
21937
|
-
.v-img__img--cover {
|
21938
|
-
object-fit: cover;
|
21939
|
-
}
|
21940
|
-
|
21941
|
-
.v-img__gradient {
|
21942
|
-
background-repeat: no-repeat;
|
21943
|
-
}.v-item-group {
|
21944
|
-
flex: 0 1 auto;
|
21945
|
-
max-width: 100%;
|
21946
|
-
position: relative;
|
21947
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21948
21908
|
}.v-infinite-scroll--horizontal {
|
21949
21909
|
display: flex;
|
21950
21910
|
flex-direction: row;
|
@@ -22112,6 +22072,47 @@ textarea.v-field__input::placeholder {
|
|
22112
22072
|
|
22113
22073
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22114
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;
|
22111
|
+
}.v-item-group {
|
22112
|
+
flex: 0 1 auto;
|
22113
|
+
max-width: 100%;
|
22114
|
+
position: relative;
|
22115
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22115
22116
|
}.v-label {
|
22116
22117
|
align-items: center;
|
22117
22118
|
color: inherit;
|
@@ -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;
|
@@ -23375,32 +23376,6 @@ html.v-overlay-scroll-blocked {
|
|
23375
23376
|
|
23376
23377
|
.v-slider__label {
|
23377
23378
|
margin-inline-end: 12px;
|
23378
|
-
}.v-responsive {
|
23379
|
-
display: flex;
|
23380
|
-
flex: 1 0 auto;
|
23381
|
-
max-height: 100%;
|
23382
|
-
max-width: 100%;
|
23383
|
-
overflow: hidden;
|
23384
|
-
position: relative;
|
23385
|
-
}
|
23386
|
-
.v-responsive--inline {
|
23387
|
-
display: inline-flex;
|
23388
|
-
flex: 0 0 auto;
|
23389
|
-
}
|
23390
|
-
|
23391
|
-
.v-responsive__content {
|
23392
|
-
flex: 1 0 0px;
|
23393
|
-
max-width: 100%;
|
23394
|
-
}
|
23395
|
-
|
23396
|
-
.v-responsive__sizer ~ .v-responsive__content {
|
23397
|
-
margin-inline-start: -100%;
|
23398
|
-
}
|
23399
|
-
|
23400
|
-
.v-responsive__sizer {
|
23401
|
-
flex: 1 0 0px;
|
23402
|
-
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23403
|
-
pointer-events: none;
|
23404
23379
|
}.v-rating {
|
23405
23380
|
max-width: 100%;
|
23406
23381
|
display: inline-flex;
|
@@ -23455,54 +23430,32 @@ html.v-overlay-scroll-blocked {
|
|
23455
23430
|
opacity: 0;
|
23456
23431
|
position: absolute;
|
23457
23432
|
width: 0;
|
23458
|
-
}.v-
|
23459
|
-
|
23460
|
-
|
23461
|
-
|
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 {
|
23433
|
+
}.v-responsive {
|
23434
|
+
display: flex;
|
23435
|
+
flex: 1 0 auto;
|
23436
|
+
max-height: 100%;
|
23437
|
+
max-width: 100%;
|
23482
23438
|
overflow: hidden;
|
23483
|
-
|
23484
|
-
border-radius: 4px;
|
23439
|
+
position: relative;
|
23485
23440
|
}
|
23486
|
-
.v-
|
23441
|
+
.v-responsive--inline {
|
23487
23442
|
display: inline-flex;
|
23488
|
-
|
23489
|
-
|
23490
|
-
|
23443
|
+
flex: 0 0 auto;
|
23444
|
+
}
|
23445
|
+
|
23446
|
+
.v-responsive__content {
|
23447
|
+
flex: 1 0 0px;
|
23491
23448
|
max-width: 100%;
|
23492
23449
|
}
|
23493
|
-
|
23494
|
-
|
23450
|
+
|
23451
|
+
.v-responsive__sizer ~ .v-responsive__content {
|
23452
|
+
margin-inline-start: -100%;
|
23495
23453
|
}
|
23496
|
-
|
23497
|
-
|
23498
|
-
|
23499
|
-
.
|
23500
|
-
|
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);
|
23454
|
+
|
23455
|
+
.v-responsive__sizer {
|
23456
|
+
flex: 1 0 0px;
|
23457
|
+
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23458
|
+
pointer-events: none;
|
23506
23459
|
}.v-selection-control {
|
23507
23460
|
align-items: center;
|
23508
23461
|
contain: layout;
|
@@ -23604,6 +23557,54 @@ 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));
|
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;
|
23564
|
+
}
|
23565
|
+
.v-select .v-field .v-field__input > input {
|
23566
|
+
align-self: flex-start;
|
23567
|
+
opacity: 1;
|
23568
|
+
flex: 0 0;
|
23569
|
+
position: absolute;
|
23570
|
+
width: 100%;
|
23571
|
+
transition: none;
|
23572
|
+
pointer-events: none;
|
23573
|
+
caret-color: transparent;
|
23574
|
+
}
|
23575
|
+
.v-select .v-field--dirty .v-select__selection {
|
23576
|
+
margin-inline-end: 2px;
|
23577
|
+
}
|
23578
|
+
.v-select .v-select__selection-text {
|
23579
|
+
overflow: hidden;
|
23580
|
+
text-overflow: ellipsis;
|
23581
|
+
white-space: nowrap;
|
23582
|
+
}
|
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);
|
23607
23608
|
}.v-selection-control-group {
|
23608
23609
|
grid-area: control;
|
23609
23610
|
display: flex;
|
@@ -23640,61 +23641,6 @@ html.v-overlay-scroll-blocked {
|
|
23640
23641
|
}
|
23641
23642
|
.v-sheet--rounded {
|
23642
23643
|
border-radius: 4px;
|
23643
|
-
}.v-slide-group {
|
23644
|
-
display: flex;
|
23645
|
-
overflow: hidden;
|
23646
|
-
}
|
23647
|
-
|
23648
|
-
.v-slide-group__next,
|
23649
|
-
.v-slide-group__prev {
|
23650
|
-
align-items: center;
|
23651
|
-
display: flex;
|
23652
|
-
flex: 0 1 52px;
|
23653
|
-
justify-content: center;
|
23654
|
-
min-width: 52px;
|
23655
|
-
cursor: pointer;
|
23656
|
-
}
|
23657
|
-
.v-slide-group__next--disabled,
|
23658
|
-
.v-slide-group__prev--disabled {
|
23659
|
-
pointer-events: none;
|
23660
|
-
opacity: var(--v-disabled-opacity);
|
23661
|
-
}
|
23662
|
-
|
23663
|
-
.v-slide-group__content {
|
23664
|
-
display: flex;
|
23665
|
-
flex: 1 0 auto;
|
23666
|
-
position: relative;
|
23667
|
-
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
23668
|
-
white-space: nowrap;
|
23669
|
-
}
|
23670
|
-
.v-slide-group__content > * {
|
23671
|
-
white-space: initial;
|
23672
|
-
}
|
23673
|
-
|
23674
|
-
.v-slide-group__container {
|
23675
|
-
contain: content;
|
23676
|
-
display: flex;
|
23677
|
-
flex: 1 1 auto;
|
23678
|
-
overflow-x: auto;
|
23679
|
-
overflow-y: hidden;
|
23680
|
-
scrollbar-width: none;
|
23681
|
-
scrollbar-color: rgba(0, 0, 0, 0);
|
23682
|
-
}
|
23683
|
-
.v-slide-group__container::-webkit-scrollbar {
|
23684
|
-
display: none;
|
23685
|
-
}
|
23686
|
-
|
23687
|
-
.v-slide-group--vertical {
|
23688
|
-
max-height: inherit;
|
23689
|
-
}
|
23690
|
-
.v-slide-group--vertical,
|
23691
|
-
.v-slide-group--vertical .v-slide-group__container,
|
23692
|
-
.v-slide-group--vertical .v-slide-group__content {
|
23693
|
-
flex-direction: column;
|
23694
|
-
}
|
23695
|
-
.v-slide-group--vertical .v-slide-group__container {
|
23696
|
-
overflow-x: hidden;
|
23697
|
-
overflow-y: auto;
|
23698
23644
|
}.v-skeleton-loader {
|
23699
23645
|
align-items: center;
|
23700
23646
|
background: rgb(var(--v-theme-surface));
|
@@ -23918,6 +23864,61 @@ html.v-overlay-scroll-blocked {
|
|
23918
23864
|
100% {
|
23919
23865
|
transform: translateX(100%);
|
23920
23866
|
}
|
23867
|
+
}.v-slide-group {
|
23868
|
+
display: flex;
|
23869
|
+
overflow: hidden;
|
23870
|
+
}
|
23871
|
+
|
23872
|
+
.v-slide-group__next,
|
23873
|
+
.v-slide-group__prev {
|
23874
|
+
align-items: center;
|
23875
|
+
display: flex;
|
23876
|
+
flex: 0 1 52px;
|
23877
|
+
justify-content: center;
|
23878
|
+
min-width: 52px;
|
23879
|
+
cursor: pointer;
|
23880
|
+
}
|
23881
|
+
.v-slide-group__next--disabled,
|
23882
|
+
.v-slide-group__prev--disabled {
|
23883
|
+
pointer-events: none;
|
23884
|
+
opacity: var(--v-disabled-opacity);
|
23885
|
+
}
|
23886
|
+
|
23887
|
+
.v-slide-group__content {
|
23888
|
+
display: flex;
|
23889
|
+
flex: 1 0 auto;
|
23890
|
+
position: relative;
|
23891
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
23892
|
+
white-space: nowrap;
|
23893
|
+
}
|
23894
|
+
.v-slide-group__content > * {
|
23895
|
+
white-space: initial;
|
23896
|
+
}
|
23897
|
+
|
23898
|
+
.v-slide-group__container {
|
23899
|
+
contain: content;
|
23900
|
+
display: flex;
|
23901
|
+
flex: 1 1 auto;
|
23902
|
+
overflow-x: auto;
|
23903
|
+
overflow-y: hidden;
|
23904
|
+
scrollbar-width: none;
|
23905
|
+
scrollbar-color: rgba(0, 0, 0, 0);
|
23906
|
+
}
|
23907
|
+
.v-slide-group__container::-webkit-scrollbar {
|
23908
|
+
display: none;
|
23909
|
+
}
|
23910
|
+
|
23911
|
+
.v-slide-group--vertical {
|
23912
|
+
max-height: inherit;
|
23913
|
+
}
|
23914
|
+
.v-slide-group--vertical,
|
23915
|
+
.v-slide-group--vertical .v-slide-group__container,
|
23916
|
+
.v-slide-group--vertical .v-slide-group__content {
|
23917
|
+
flex-direction: column;
|
23918
|
+
}
|
23919
|
+
.v-slide-group--vertical .v-slide-group__container {
|
23920
|
+
overflow-x: hidden;
|
23921
|
+
overflow-y: auto;
|
23921
23922
|
}.v-snackbar {
|
23922
23923
|
justify-content: center;
|
23923
23924
|
z-index: 10000;
|
@@ -24097,6 +24098,172 @@ html.v-overlay-scroll-blocked {
|
|
24097
24098
|
}
|
24098
24099
|
.v-speed-dial__content > *:nth-child(10) {
|
24099
24100
|
transition-delay: 0.45s;
|
24101
|
+
}.v-stepper.v-sheet {
|
24102
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
24103
|
+
border-radius: 4px;
|
24104
|
+
overflow: hidden;
|
24105
|
+
}
|
24106
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
24107
|
+
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));
|
24108
|
+
}
|
24109
|
+
|
24110
|
+
.v-stepper-header {
|
24111
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
24112
|
+
align-items: center;
|
24113
|
+
display: flex;
|
24114
|
+
position: relative;
|
24115
|
+
overflow-x: auto;
|
24116
|
+
justify-content: space-between;
|
24117
|
+
z-index: 1;
|
24118
|
+
}
|
24119
|
+
.v-stepper-header .v-divider {
|
24120
|
+
margin: 0 -16px;
|
24121
|
+
}
|
24122
|
+
.v-stepper-header .v-divider:last-child {
|
24123
|
+
margin-inline-end: 0;
|
24124
|
+
}
|
24125
|
+
.v-stepper-header .v-divider:first-child {
|
24126
|
+
margin-inline-start: 0;
|
24127
|
+
}
|
24128
|
+
.v-stepper--alt-labels .v-stepper-header {
|
24129
|
+
height: auto;
|
24130
|
+
}
|
24131
|
+
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
24132
|
+
align-self: flex-start;
|
24133
|
+
margin: 35px -67px 0;
|
24134
|
+
}
|
24135
|
+
|
24136
|
+
.v-stepper-window {
|
24137
|
+
margin: 1.5rem;
|
24138
|
+
}
|
24139
|
+
|
24140
|
+
.v-stepper-actions {
|
24141
|
+
display: flex;
|
24142
|
+
align-items: center;
|
24143
|
+
justify-content: space-between;
|
24144
|
+
padding: 1rem;
|
24145
|
+
}
|
24146
|
+
.v-stepper .v-stepper-actions {
|
24147
|
+
padding: 0 1.5rem 1rem;
|
24148
|
+
}
|
24149
|
+
.v-stepper-window-item .v-stepper-actions {
|
24150
|
+
padding: 1.5rem 0 0;
|
24151
|
+
}.v-stepper-item {
|
24152
|
+
align-items: center;
|
24153
|
+
align-self: stretch;
|
24154
|
+
display: inline-flex;
|
24155
|
+
flex: none;
|
24156
|
+
outline: none;
|
24157
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24158
|
+
padding: 1.5rem;
|
24159
|
+
position: relative;
|
24160
|
+
transition-duration: 0.2s;
|
24161
|
+
transition-property: opacity;
|
24162
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
24163
|
+
}
|
24164
|
+
.v-stepper-item:hover > .v-stepper-item__overlay {
|
24165
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
24166
|
+
}
|
24167
|
+
.v-stepper-item:focus-visible > .v-stepper-item__overlay {
|
24168
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24169
|
+
}
|
24170
|
+
@supports not selector(:focus-visible) {
|
24171
|
+
.v-stepper-item:focus > .v-stepper-item__overlay {
|
24172
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24173
|
+
}
|
24174
|
+
}
|
24175
|
+
.v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
|
24176
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
24177
|
+
}
|
24178
|
+
.v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
|
24179
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
24180
|
+
}
|
24181
|
+
.v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
|
24182
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
24183
|
+
}
|
24184
|
+
@supports not selector(:focus-visible) {
|
24185
|
+
.v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
|
24186
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
24187
|
+
}
|
24188
|
+
}
|
24189
|
+
.v-stepper--non-linear .v-stepper-item {
|
24190
|
+
opacity: var(--v-high-emphasis-opacity);
|
24191
|
+
}
|
24192
|
+
.v-stepper-item--selected {
|
24193
|
+
opacity: 1;
|
24194
|
+
}
|
24195
|
+
.v-stepper-item--error {
|
24196
|
+
color: rgb(var(--v-theme-error));
|
24197
|
+
}
|
24198
|
+
.v-stepper-item--disabled {
|
24199
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24200
|
+
pointer-events: none;
|
24201
|
+
}
|
24202
|
+
.v-stepper--alt-labels .v-stepper-item {
|
24203
|
+
flex-direction: column;
|
24204
|
+
justify-content: flex-start;
|
24205
|
+
align-items: center;
|
24206
|
+
flex-basis: 175px;
|
24207
|
+
}
|
24208
|
+
|
24209
|
+
.v-stepper-item__avatar.v-avatar {
|
24210
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
24211
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
24212
|
+
font-size: 0.75rem;
|
24213
|
+
margin-inline-end: 8px;
|
24214
|
+
}
|
24215
|
+
.v-stepper--mobile .v-stepper-item__avatar.v-avatar {
|
24216
|
+
margin-inline-end: 0;
|
24217
|
+
}
|
24218
|
+
.v-stepper-item__avatar.v-avatar .v-icon {
|
24219
|
+
font-size: 0.875rem;
|
24220
|
+
}
|
24221
|
+
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
24222
|
+
background: rgb(var(--v-theme-surface-variant));
|
24223
|
+
}
|
24224
|
+
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
24225
|
+
background: rgb(var(--v-theme-error));
|
24226
|
+
}
|
24227
|
+
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
24228
|
+
margin-bottom: 16px;
|
24229
|
+
margin-inline-end: 0;
|
24230
|
+
}
|
24231
|
+
|
24232
|
+
.v-stepper-item__title {
|
24233
|
+
line-height: 1;
|
24234
|
+
}
|
24235
|
+
.v-stepper--mobile .v-stepper-item__title {
|
24236
|
+
display: none;
|
24237
|
+
}
|
24238
|
+
|
24239
|
+
.v-stepper-item__subtitle {
|
24240
|
+
font-size: 0.75rem;
|
24241
|
+
text-align: left;
|
24242
|
+
line-height: 1;
|
24243
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24244
|
+
}
|
24245
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
24246
|
+
text-align: center;
|
24247
|
+
}
|
24248
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
24249
|
+
display: none;
|
24250
|
+
}
|
24251
|
+
|
24252
|
+
.v-stepper-item__overlay {
|
24253
|
+
background-color: currentColor;
|
24254
|
+
border-radius: inherit;
|
24255
|
+
opacity: 0;
|
24256
|
+
transition: opacity 0.2s ease-in-out;
|
24257
|
+
}
|
24258
|
+
|
24259
|
+
.v-stepper-item__overlay,
|
24260
|
+
.v-stepper-item__underlay {
|
24261
|
+
position: absolute;
|
24262
|
+
top: 0;
|
24263
|
+
left: 0;
|
24264
|
+
width: 100%;
|
24265
|
+
height: 100%;
|
24266
|
+
pointer-events: none;
|
24100
24267
|
}.v-switch .v-label {
|
24101
24268
|
padding-inline-start: 10px;
|
24102
24269
|
}
|
@@ -24277,201 +24444,43 @@ html.v-overlay-scroll-blocked {
|
|
24277
24444
|
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
24278
24445
|
border-width: 0;
|
24279
24446
|
}
|
24280
|
-
}.v-
|
24281
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
24282
|
-
border-radius: 4px;
|
24283
|
-
overflow: hidden;
|
24284
|
-
}
|
24285
|
-
.v-stepper.v-sheet.v-stepper--flat {
|
24286
|
-
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));
|
24287
|
-
}
|
24288
|
-
|
24289
|
-
.v-stepper-header {
|
24290
|
-
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
24447
|
+
}.v-system-bar {
|
24291
24448
|
align-items: center;
|
24292
24449
|
display: flex;
|
24293
|
-
|
24294
|
-
|
24295
|
-
justify-content:
|
24296
|
-
|
24297
|
-
|
24298
|
-
|
24299
|
-
|
24300
|
-
|
24301
|
-
.v-
|
24302
|
-
|
24303
|
-
|
24304
|
-
.v-stepper-header .v-divider:first-child {
|
24305
|
-
margin-inline-start: 0;
|
24306
|
-
}
|
24307
|
-
.v-stepper--alt-labels .v-stepper-header {
|
24308
|
-
height: auto;
|
24309
|
-
}
|
24310
|
-
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
24311
|
-
align-self: flex-start;
|
24312
|
-
margin: 35px -67px 0;
|
24313
|
-
}
|
24314
|
-
|
24315
|
-
.v-stepper-window {
|
24316
|
-
margin: 1.5rem;
|
24317
|
-
}
|
24318
|
-
|
24319
|
-
.v-stepper-actions {
|
24320
|
-
display: flex;
|
24321
|
-
align-items: center;
|
24322
|
-
justify-content: space-between;
|
24323
|
-
padding: 1rem;
|
24324
|
-
}
|
24325
|
-
.v-stepper .v-stepper-actions {
|
24326
|
-
padding: 0 1.5rem 1rem;
|
24327
|
-
}
|
24328
|
-
.v-stepper-window-item .v-stepper-actions {
|
24329
|
-
padding: 1.5rem 0 0;
|
24330
|
-
}.v-stepper-item {
|
24331
|
-
align-items: center;
|
24332
|
-
align-self: stretch;
|
24333
|
-
display: inline-flex;
|
24334
|
-
flex: none;
|
24335
|
-
outline: none;
|
24336
|
-
opacity: var(--v-medium-emphasis-opacity);
|
24337
|
-
padding: 1.5rem;
|
24338
|
-
position: relative;
|
24339
|
-
transition-duration: 0.2s;
|
24340
|
-
transition-property: opacity;
|
24341
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
24342
|
-
}
|
24343
|
-
.v-stepper-item:hover > .v-stepper-item__overlay {
|
24344
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
24345
|
-
}
|
24346
|
-
.v-stepper-item:focus-visible > .v-stepper-item__overlay {
|
24347
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24348
|
-
}
|
24349
|
-
@supports not selector(:focus-visible) {
|
24350
|
-
.v-stepper-item:focus > .v-stepper-item__overlay {
|
24351
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24352
|
-
}
|
24353
|
-
}
|
24354
|
-
.v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
|
24355
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
24356
|
-
}
|
24357
|
-
.v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
|
24358
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
24359
|
-
}
|
24360
|
-
.v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
|
24361
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
24362
|
-
}
|
24363
|
-
@supports not selector(:focus-visible) {
|
24364
|
-
.v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
|
24365
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
24366
|
-
}
|
24367
|
-
}
|
24368
|
-
.v-stepper--non-linear .v-stepper-item {
|
24369
|
-
opacity: var(--v-high-emphasis-opacity);
|
24370
|
-
}
|
24371
|
-
.v-stepper-item--selected {
|
24372
|
-
opacity: 1;
|
24373
|
-
}
|
24374
|
-
.v-stepper-item--error {
|
24375
|
-
color: rgb(var(--v-theme-error));
|
24376
|
-
}
|
24377
|
-
.v-stepper-item--disabled {
|
24378
|
-
opacity: var(--v-medium-emphasis-opacity);
|
24379
|
-
pointer-events: none;
|
24380
|
-
}
|
24381
|
-
.v-stepper--alt-labels .v-stepper-item {
|
24382
|
-
flex-direction: column;
|
24383
|
-
justify-content: flex-start;
|
24384
|
-
align-items: center;
|
24385
|
-
flex-basis: 175px;
|
24386
|
-
}
|
24387
|
-
|
24388
|
-
.v-stepper-item__avatar.v-avatar {
|
24389
|
-
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
24390
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
24391
|
-
font-size: 0.75rem;
|
24392
|
-
margin-inline-end: 8px;
|
24393
|
-
}
|
24394
|
-
.v-stepper--mobile .v-stepper-item__avatar.v-avatar {
|
24395
|
-
margin-inline-end: 0;
|
24396
|
-
}
|
24397
|
-
.v-stepper-item__avatar.v-avatar .v-icon {
|
24398
|
-
font-size: 0.875rem;
|
24399
|
-
}
|
24400
|
-
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
24401
|
-
background: rgb(var(--v-theme-surface-variant));
|
24402
|
-
}
|
24403
|
-
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
24404
|
-
background: rgb(var(--v-theme-error));
|
24405
|
-
}
|
24406
|
-
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
24407
|
-
margin-bottom: 16px;
|
24408
|
-
margin-inline-end: 0;
|
24409
|
-
}
|
24410
|
-
|
24411
|
-
.v-stepper-item__title {
|
24412
|
-
line-height: 1;
|
24413
|
-
}
|
24414
|
-
.v-stepper--mobile .v-stepper-item__title {
|
24415
|
-
display: none;
|
24416
|
-
}
|
24417
|
-
|
24418
|
-
.v-stepper-item__subtitle {
|
24450
|
+
flex: 1 1 auto;
|
24451
|
+
height: 24px;
|
24452
|
+
justify-content: flex-end;
|
24453
|
+
max-width: 100%;
|
24454
|
+
padding-inline: 8px;
|
24455
|
+
position: relative;
|
24456
|
+
text-align: end;
|
24457
|
+
width: 100%;
|
24458
|
+
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));
|
24459
|
+
background: rgba(var(--v-theme-surface-light));
|
24460
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
24419
24461
|
font-size: 0.75rem;
|
24420
|
-
|
24421
|
-
|
24422
|
-
|
24423
|
-
|
24424
|
-
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
24425
|
-
text-align: center;
|
24426
|
-
}
|
24427
|
-
.v-stepper--mobile .v-stepper-item__subtitle {
|
24428
|
-
display: none;
|
24462
|
+
font-weight: 400;
|
24463
|
+
letter-spacing: 0.0333333333em;
|
24464
|
+
line-height: 1.667;
|
24465
|
+
text-transform: none;
|
24429
24466
|
}
|
24430
|
-
|
24431
|
-
|
24432
|
-
background-color: currentColor;
|
24433
|
-
border-radius: inherit;
|
24434
|
-
opacity: 0;
|
24435
|
-
transition: opacity 0.2s ease-in-out;
|
24467
|
+
.v-system-bar .v-icon {
|
24468
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24436
24469
|
}
|
24437
|
-
|
24438
|
-
.v-stepper-item__overlay,
|
24439
|
-
.v-stepper-item__underlay {
|
24470
|
+
.v-system-bar--absolute {
|
24440
24471
|
position: absolute;
|
24441
|
-
top: 0;
|
24442
|
-
left: 0;
|
24443
|
-
width: 100%;
|
24444
|
-
height: 100%;
|
24445
|
-
pointer-events: none;
|
24446
|
-
}.v-tab.v-tab.v-btn {
|
24447
|
-
height: var(--v-tabs-height);
|
24448
|
-
border-radius: 0;
|
24449
|
-
min-width: 90px;
|
24450
|
-
}
|
24451
|
-
.v-slide-group--horizontal .v-tab {
|
24452
|
-
max-width: 360px;
|
24453
24472
|
}
|
24454
|
-
.v-
|
24455
|
-
|
24473
|
+
.v-system-bar--fixed {
|
24474
|
+
position: fixed;
|
24456
24475
|
}
|
24457
|
-
|
24458
|
-
|
24459
|
-
position: absolute;
|
24460
|
-
bottom: 0;
|
24461
|
-
left: 0;
|
24462
|
-
height: 2px;
|
24463
|
-
width: 100%;
|
24464
|
-
background: currentColor;
|
24465
|
-
pointer-events: none;
|
24466
|
-
opacity: 0;
|
24476
|
+
.v-system-bar--rounded {
|
24477
|
+
border-radius: 0;
|
24467
24478
|
}
|
24468
|
-
.v-
|
24469
|
-
|
24479
|
+
.v-system-bar--window {
|
24480
|
+
height: 32px;
|
24470
24481
|
}
|
24471
|
-
.v-
|
24472
|
-
|
24473
|
-
height: 100%;
|
24474
|
-
width: 2px;
|
24482
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
24483
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
24475
24484
|
}.v-tabs {
|
24476
24485
|
display: flex;
|
24477
24486
|
height: var(--v-tabs-height);
|
@@ -24538,43 +24547,35 @@ html.v-overlay-scroll-blocked {
|
|
24538
24547
|
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
24539
24548
|
margin-inline-end: 52px;
|
24540
24549
|
}
|
24541
|
-
}.v-
|
24542
|
-
|
24543
|
-
|
24544
|
-
|
24545
|
-
height: 24px;
|
24546
|
-
justify-content: flex-end;
|
24547
|
-
max-width: 100%;
|
24548
|
-
padding-inline: 8px;
|
24549
|
-
position: relative;
|
24550
|
-
text-align: end;
|
24551
|
-
width: 100%;
|
24552
|
-
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));
|
24553
|
-
background: rgba(var(--v-theme-surface-light));
|
24554
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
24555
|
-
font-size: 0.75rem;
|
24556
|
-
font-weight: 400;
|
24557
|
-
letter-spacing: 0.0333333333em;
|
24558
|
-
line-height: 1.667;
|
24559
|
-
text-transform: none;
|
24560
|
-
}
|
24561
|
-
.v-system-bar .v-icon {
|
24562
|
-
opacity: var(--v-medium-emphasis-opacity);
|
24550
|
+
}.v-tab.v-tab.v-btn {
|
24551
|
+
height: var(--v-tabs-height);
|
24552
|
+
border-radius: 0;
|
24553
|
+
min-width: 90px;
|
24563
24554
|
}
|
24564
|
-
.v-
|
24565
|
-
|
24555
|
+
.v-slide-group--horizontal .v-tab {
|
24556
|
+
max-width: 360px;
|
24566
24557
|
}
|
24567
|
-
.v-
|
24568
|
-
|
24558
|
+
.v-slide-group--vertical .v-tab {
|
24559
|
+
justify-content: start;
|
24569
24560
|
}
|
24570
|
-
|
24571
|
-
|
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;
|
24572
24571
|
}
|
24573
|
-
.v-
|
24574
|
-
|
24572
|
+
.v-tab--selected .v-tab__slider {
|
24573
|
+
opacity: 1;
|
24575
24574
|
}
|
24576
|
-
.v-
|
24577
|
-
|
24575
|
+
.v-slide-group--vertical .v-tab__slider {
|
24576
|
+
top: 0;
|
24577
|
+
height: 100%;
|
24578
|
+
width: 2px;
|
24578
24579
|
}.v-table {
|
24579
24580
|
background: rgb(var(--v-theme-surface));
|
24580
24581
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -25238,28 +25239,6 @@ html.v-overlay-scroll-blocked {
|
|
25238
25239
|
|
25239
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 {
|
25240
25241
|
padding-inline-end: 0;
|
25241
|
-
}.v-tooltip > .v-overlay__content {
|
25242
|
-
background: rgb(var(--v-theme-surface-variant));
|
25243
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25244
|
-
border-radius: 4px;
|
25245
|
-
font-size: 0.875rem;
|
25246
|
-
line-height: 1.6;
|
25247
|
-
display: inline-block;
|
25248
|
-
padding: 5px 16px;
|
25249
|
-
text-transform: initial;
|
25250
|
-
width: auto;
|
25251
|
-
opacity: 1;
|
25252
|
-
pointer-events: none;
|
25253
|
-
transition-property: opacity, transform;
|
25254
|
-
overflow-wrap: break-word;
|
25255
|
-
}
|
25256
|
-
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
25257
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
25258
|
-
transition-duration: 150ms;
|
25259
|
-
}
|
25260
|
-
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
25261
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
25262
|
-
transition-duration: 75ms;
|
25263
25242
|
}.v-toolbar {
|
25264
25243
|
align-items: flex-start;
|
25265
25244
|
display: flex;
|
@@ -25389,6 +25368,28 @@ html.v-overlay-scroll-blocked {
|
|
25389
25368
|
}
|
25390
25369
|
.v-toolbar-items > .v-btn {
|
25391
25370
|
border-radius: 0;
|
25371
|
+
}.v-tooltip > .v-overlay__content {
|
25372
|
+
background: rgb(var(--v-theme-surface-variant));
|
25373
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
25374
|
+
border-radius: 4px;
|
25375
|
+
font-size: 0.875rem;
|
25376
|
+
line-height: 1.6;
|
25377
|
+
display: inline-block;
|
25378
|
+
padding: 5px 16px;
|
25379
|
+
text-transform: initial;
|
25380
|
+
width: auto;
|
25381
|
+
opacity: 1;
|
25382
|
+
pointer-events: none;
|
25383
|
+
transition-property: opacity, transform;
|
25384
|
+
overflow-wrap: break-word;
|
25385
|
+
}
|
25386
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
25387
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
25388
|
+
transition-duration: 150ms;
|
25389
|
+
}
|
25390
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
25391
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
25392
|
+
transition-duration: 75ms;
|
25392
25393
|
}.v-virtual-scroll {
|
25393
25394
|
display: block;
|
25394
25395
|
flex: 1 1 auto;
|
@@ -25468,34 +25469,28 @@ html.v-overlay-scroll-blocked {
|
|
25468
25469
|
}
|
25469
25470
|
.v-window-y-reverse-transition-leave-to {
|
25470
25471
|
transform: translateY(100%);
|
25471
|
-
}.v-color-picker-
|
25472
|
-
display: flex;
|
25473
|
-
margin-top: 24px;
|
25474
|
-
}
|
25475
|
-
|
25476
|
-
.v-color-picker-edit__input {
|
25477
|
-
width: 100%;
|
25472
|
+
}.v-color-picker-canvas {
|
25478
25473
|
display: flex;
|
25479
|
-
|
25480
|
-
|
25481
|
-
|
25474
|
+
position: relative;
|
25475
|
+
overflow: hidden;
|
25476
|
+
contain: content;
|
25477
|
+
touch-action: none;
|
25482
25478
|
}
|
25483
|
-
.v-color-picker-
|
25484
|
-
|
25479
|
+
.v-color-picker-canvas__dot {
|
25480
|
+
position: absolute;
|
25481
|
+
top: 0;
|
25482
|
+
left: 0;
|
25483
|
+
width: 15px;
|
25484
|
+
height: 15px;
|
25485
|
+
background: transparent;
|
25486
|
+
border-radius: 50%;
|
25487
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
25485
25488
|
}
|
25486
|
-
.v-color-picker-
|
25487
|
-
|
25488
|
-
margin-bottom: 8px;
|
25489
|
-
min-width: 0;
|
25490
|
-
outline: none;
|
25491
|
-
text-align: center;
|
25492
|
-
width: 100%;
|
25493
|
-
height: 32px;
|
25494
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
25495
|
-
color: rgba(var(--v-theme-on-surface));
|
25489
|
+
.v-color-picker-canvas__dot--disabled {
|
25490
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
25496
25491
|
}
|
25497
|
-
.v-color-picker-
|
25498
|
-
|
25492
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
25493
|
+
will-change: transform;
|
25499
25494
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
25500
25495
|
background-color: transparent !important;
|
25501
25496
|
}
|
@@ -25566,28 +25561,34 @@ html.v-overlay-scroll-blocked {
|
|
25566
25561
|
.v-color-picker-preview__eye-dropper {
|
25567
25562
|
position: relative;
|
25568
25563
|
margin-right: 12px;
|
25569
|
-
}.v-color-picker-
|
25564
|
+
}.v-color-picker-edit {
|
25570
25565
|
display: flex;
|
25571
|
-
|
25572
|
-
overflow: hidden;
|
25573
|
-
contain: content;
|
25574
|
-
touch-action: none;
|
25566
|
+
margin-top: 24px;
|
25575
25567
|
}
|
25576
|
-
|
25577
|
-
|
25578
|
-
|
25579
|
-
|
25580
|
-
|
25581
|
-
|
25582
|
-
|
25583
|
-
border-radius: 50%;
|
25584
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
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;
|
25585
25575
|
}
|
25586
|
-
.v-color-picker-
|
25587
|
-
|
25576
|
+
.v-color-picker-edit__input:not(:last-child) {
|
25577
|
+
margin-inline-end: 8px;
|
25588
25578
|
}
|
25589
|
-
.v-color-picker-
|
25590
|
-
|
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;
|
25591
25592
|
}.v-color-picker-swatches {
|
25592
25593
|
overflow-y: auto;
|
25593
25594
|
}
|