@vuetify/nightly 3.6.4-master.2024-05-10 → 3.6.5-master.2024-05-11
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 +2 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +268 -4
- package/dist/json/importMap-labs.json +22 -10
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +81 -0
- package/dist/json/web-types.json +1253 -6
- package/dist/vuetify-labs.css +1684 -1616
- package/dist/vuetify-labs.d.ts +1615 -28
- package/dist/vuetify-labs.esm.js +298 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +298 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1239 -1239
- package/dist/vuetify.d.ts +97 -73
- package/dist/vuetify.esm.js +38 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +47 -48
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/index.d.mts +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +3 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +15 -4
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +82 -27
- package/lib/components/VSlideGroup/index.d.mts +2 -0
- package/lib/components/VStepper/VStepper.mjs +5 -2
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs +5 -2
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/index.d.mts +1 -1
- package/lib/components/VTabs/index.d.mts +2 -0
- package/lib/components/VWindow/index.d.mts +2 -0
- package/lib/components/index.d.mts +48 -27
- package/lib/composables/group.mjs +8 -0
- package/lib/composables/group.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -46
- package/lib/labs/VStepperVertical/VStepperVertical.mjs +106 -0
- package/lib/labs/VStepperVertical/VStepperVertical.mjs.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs +38 -0
- package/lib/labs/VStepperVertical/VStepperVerticalActions.mjs.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.css +69 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +134 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -0
- package/lib/labs/VStepperVertical/VStepperVerticalItem.sass +74 -0
- package/lib/labs/VStepperVertical/_variables.scss +3 -0
- package/lib/labs/VStepperVertical/index.d.mts +1590 -0
- package/lib/labs/VStepperVertical/index.mjs +4 -0
- package/lib/labs/VStepperVertical/index.mjs.map +1 -0
- package/lib/labs/components.d.mts +1599 -20
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.5-master.2024-05-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17640,6 +17640,44 @@ html.overflow-y-hidden {
|
|
17640
17640
|
font-weight: normal;
|
17641
17641
|
padding: 0.2em 0.4rem;
|
17642
17642
|
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));
|
17643
|
+
}.v-number-input input[type=number] {
|
17644
|
+
-moz-appearance: textfield;
|
17645
|
+
}
|
17646
|
+
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
17647
|
+
-webkit-appearance: none;
|
17648
|
+
}
|
17649
|
+
.v-number-input .v-field {
|
17650
|
+
padding-inline-end: 0;
|
17651
|
+
padding-inline-start: 0;
|
17652
|
+
}
|
17653
|
+
.v-number-input--inset .v-divider {
|
17654
|
+
height: 55%;
|
17655
|
+
width: 55%;
|
17656
|
+
align-self: center;
|
17657
|
+
}
|
17658
|
+
.v-number-input--split .v-field__input {
|
17659
|
+
text-align: center;
|
17660
|
+
}
|
17661
|
+
.v-number-input--stacked .v-number-input__control {
|
17662
|
+
flex-direction: column-reverse;
|
17663
|
+
}
|
17664
|
+
.v-number-input--stacked .v-number-input__control .v-btn {
|
17665
|
+
flex: 1;
|
17666
|
+
}
|
17667
|
+
.v-number-input--hide-input .v-field {
|
17668
|
+
flex: none;
|
17669
|
+
}
|
17670
|
+
.v-number-input--hide-input .v-field__input {
|
17671
|
+
width: 0;
|
17672
|
+
padding-inline: 0;
|
17673
|
+
}
|
17674
|
+
.v-number-input__control {
|
17675
|
+
display: flex;
|
17676
|
+
height: 100%;
|
17677
|
+
}
|
17678
|
+
.v-number-input__control .v-btn {
|
17679
|
+
background-color: transparent;
|
17680
|
+
border-radius: 0;
|
17643
17681
|
}.v-calendar {
|
17644
17682
|
background: rgb(var(--v-theme-background));
|
17645
17683
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
@@ -17867,6 +17905,19 @@ html.overflow-y-hidden {
|
|
17867
17905
|
}
|
17868
17906
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
17869
17907
|
border-right: none;
|
17908
|
+
}.v-calendar-header {
|
17909
|
+
align-items: center;
|
17910
|
+
display: flex;
|
17911
|
+
min-height: 64px;
|
17912
|
+
}
|
17913
|
+
|
17914
|
+
.v-calendar-header__today {
|
17915
|
+
margin-inline-end: 24px;
|
17916
|
+
}
|
17917
|
+
|
17918
|
+
.v-calendar-header__title {
|
17919
|
+
font-size: 1.5rem;
|
17920
|
+
margin-inline-start: 24px;
|
17870
17921
|
}.v-calendar-day {
|
17871
17922
|
position: relative;
|
17872
17923
|
display: flex;
|
@@ -17941,6 +17992,79 @@ html.overflow-y-hidden {
|
|
17941
17992
|
}
|
17942
17993
|
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17943
17994
|
border-bottom: none;
|
17995
|
+
}.v-calendar-internal-event {
|
17996
|
+
overflow: hidden;
|
17997
|
+
padding: 4px;
|
17998
|
+
text-overflow: ellipsis;
|
17999
|
+
white-space: nowrap;
|
18000
|
+
}.v-stepper-vertical-item {
|
18001
|
+
position: relative;
|
18002
|
+
transition-duration: 0.2s;
|
18003
|
+
transition-property: opacity;
|
18004
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
18005
|
+
}
|
18006
|
+
.v-stepper-vertical-item__title {
|
18007
|
+
font-size: 1rem;
|
18008
|
+
}
|
18009
|
+
.v-stepper-vertical-item__subtitle {
|
18010
|
+
font-size: 0.75rem;
|
18011
|
+
}
|
18012
|
+
.v-stepper-vertical-item .v-expansion-panel-text {
|
18013
|
+
padding-inline-start: 32px;
|
18014
|
+
}
|
18015
|
+
.v-stepper-vertical-item:not(:last-child):before {
|
18016
|
+
content: "";
|
18017
|
+
position: absolute;
|
18018
|
+
width: 2px;
|
18019
|
+
height: calc(100% - 30px);
|
18020
|
+
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
18021
|
+
left: 35px;
|
18022
|
+
top: 44px;
|
18023
|
+
z-index: 1;
|
18024
|
+
transition-duration: 300ms;
|
18025
|
+
transition-property: height;
|
18026
|
+
}
|
18027
|
+
.v-stepper-vertical-item:after {
|
18028
|
+
display: none;
|
18029
|
+
}
|
18030
|
+
.v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title {
|
18031
|
+
pointer-events: none;
|
18032
|
+
}
|
18033
|
+
.v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
18034
|
+
opacity: 0;
|
18035
|
+
}
|
18036
|
+
|
18037
|
+
.v-stepper-vertical-item__avatar.v-avatar {
|
18038
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
18039
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
18040
|
+
transition-property: background;
|
18041
|
+
}
|
18042
|
+
.v-stepper-vertical-item__avatar.v-avatar .v-icon {
|
18043
|
+
font-size: 0.875rem;
|
18044
|
+
}
|
18045
|
+
.v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
|
18046
|
+
background: rgb(var(--v-theme-surface-variant));
|
18047
|
+
}
|
18048
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
|
18049
|
+
background: rgb(var(--v-theme-error));
|
18050
|
+
color: rgb(var(--v-theme-on-error));
|
18051
|
+
}
|
18052
|
+
|
18053
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__title {
|
18054
|
+
color: rgb(var(--v-theme-error));
|
18055
|
+
}
|
18056
|
+
|
18057
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
|
18058
|
+
color: rgb(var(--v-theme-error));
|
18059
|
+
}
|
18060
|
+
|
18061
|
+
.v-stepper-vertical-actions.v-stepper-actions .v-btn {
|
18062
|
+
margin-inline-end: 8px;
|
18063
|
+
}
|
18064
|
+
.v-stepper .v-stepper-vertical-actions.v-stepper-actions {
|
18065
|
+
justify-content: flex-end;
|
18066
|
+
padding: 24px 0 0;
|
18067
|
+
flex-direction: row-reverse;
|
17944
18068
|
}.v-calendar-month__day {
|
17945
18069
|
position: relative;
|
17946
18070
|
display: flex;
|
@@ -18004,62 +18128,6 @@ html.overflow-y-hidden {
|
|
18004
18128
|
|
18005
18129
|
.v-calendar-weekly__day-alldayevents-container {
|
18006
18130
|
min-height: 24px;
|
18007
|
-
}.v-calendar-header {
|
18008
|
-
align-items: center;
|
18009
|
-
display: flex;
|
18010
|
-
min-height: 64px;
|
18011
|
-
}
|
18012
|
-
|
18013
|
-
.v-calendar-header__today {
|
18014
|
-
margin-inline-end: 24px;
|
18015
|
-
}
|
18016
|
-
|
18017
|
-
.v-calendar-header__title {
|
18018
|
-
font-size: 1.5rem;
|
18019
|
-
margin-inline-start: 24px;
|
18020
|
-
}.v-number-input input[type=number] {
|
18021
|
-
-moz-appearance: textfield;
|
18022
|
-
}
|
18023
|
-
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
18024
|
-
-webkit-appearance: none;
|
18025
|
-
}
|
18026
|
-
.v-number-input .v-field {
|
18027
|
-
padding-inline-end: 0;
|
18028
|
-
padding-inline-start: 0;
|
18029
|
-
}
|
18030
|
-
.v-number-input--inset .v-divider {
|
18031
|
-
height: 55%;
|
18032
|
-
width: 55%;
|
18033
|
-
align-self: center;
|
18034
|
-
}
|
18035
|
-
.v-number-input--split .v-field__input {
|
18036
|
-
text-align: center;
|
18037
|
-
}
|
18038
|
-
.v-number-input--stacked .v-number-input__control {
|
18039
|
-
flex-direction: column-reverse;
|
18040
|
-
}
|
18041
|
-
.v-number-input--stacked .v-number-input__control .v-btn {
|
18042
|
-
flex: 1;
|
18043
|
-
}
|
18044
|
-
.v-number-input--hide-input .v-field {
|
18045
|
-
flex: none;
|
18046
|
-
}
|
18047
|
-
.v-number-input--hide-input .v-field__input {
|
18048
|
-
width: 0;
|
18049
|
-
padding-inline: 0;
|
18050
|
-
}
|
18051
|
-
.v-number-input__control {
|
18052
|
-
display: flex;
|
18053
|
-
height: 100%;
|
18054
|
-
}
|
18055
|
-
.v-number-input__control .v-btn {
|
18056
|
-
background-color: transparent;
|
18057
|
-
border-radius: 0;
|
18058
|
-
}.v-calendar-internal-event {
|
18059
|
-
overflow: hidden;
|
18060
|
-
padding: 4px;
|
18061
|
-
text-overflow: ellipsis;
|
18062
|
-
white-space: nowrap;
|
18063
18131
|
}.v-picker.v-sheet {
|
18064
18132
|
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));
|
18065
18133
|
border-radius: 4px;
|
@@ -18139,6 +18207,22 @@ html.overflow-y-hidden {
|
|
18139
18207
|
}
|
18140
18208
|
.v-pull-to-refresh__scroll-container--touching {
|
18141
18209
|
transition: none;
|
18210
|
+
}.v-treeview-item--filtered {
|
18211
|
+
display: none;
|
18212
|
+
}
|
18213
|
+
|
18214
|
+
.v-treeview {
|
18215
|
+
--indent-padding: 0px;
|
18216
|
+
}
|
18217
|
+
|
18218
|
+
.v-treeview-group.v-list-group {
|
18219
|
+
--list-indent-size: 16px;
|
18220
|
+
}
|
18221
|
+
.v-list--slim .v-treeview-group.v-list-group {
|
18222
|
+
--prepend-width: 16px;
|
18223
|
+
}
|
18224
|
+
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
18225
|
+
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
18142
18226
|
}.v-time-picker.v-picker {
|
18143
18227
|
padding: 24px;
|
18144
18228
|
width: 328px;
|
@@ -18380,34 +18464,6 @@ html.overflow-y-hidden {
|
|
18380
18464
|
|
18381
18465
|
.v-picker--landscape .v-time-picker-clock__container {
|
18382
18466
|
flex-direction: row;
|
18383
|
-
}.v-treeview-item--filtered {
|
18384
|
-
display: none;
|
18385
|
-
}
|
18386
|
-
|
18387
|
-
.v-treeview {
|
18388
|
-
--indent-padding: 0px;
|
18389
|
-
}
|
18390
|
-
|
18391
|
-
.v-treeview-group.v-list-group {
|
18392
|
-
--list-indent-size: 16px;
|
18393
|
-
}
|
18394
|
-
.v-list--slim .v-treeview-group.v-list-group {
|
18395
|
-
--prepend-width: 16px;
|
18396
|
-
}
|
18397
|
-
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
18398
|
-
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
18399
|
-
}.v-app-bar {
|
18400
|
-
display: flex;
|
18401
|
-
}
|
18402
|
-
.v-app-bar.v-toolbar {
|
18403
|
-
background: rgb(var(--v-theme-surface));
|
18404
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18405
|
-
}
|
18406
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
18407
|
-
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));
|
18408
|
-
}
|
18409
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
18410
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
18411
18467
|
}.v-alert {
|
18412
18468
|
display: grid;
|
18413
18469
|
flex: 1 1;
|
@@ -18636,49 +18692,142 @@ html.overflow-y-hidden {
|
|
18636
18692
|
min-height: 100vh;
|
18637
18693
|
min-height: 100dvh;
|
18638
18694
|
position: relative;
|
18639
|
-
}.v-
|
18640
|
-
|
18641
|
-
align-items: center;
|
18642
|
-
display: inline-flex;
|
18643
|
-
justify-content: center;
|
18644
|
-
line-height: normal;
|
18645
|
-
overflow: hidden;
|
18646
|
-
position: relative;
|
18647
|
-
text-align: center;
|
18648
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18649
|
-
transition-property: width, height;
|
18650
|
-
vertical-align: middle;
|
18651
|
-
border-radius: 50%;
|
18652
|
-
}
|
18653
|
-
.v-avatar.v-avatar--size-x-small {
|
18654
|
-
--v-avatar-height: 24px;
|
18695
|
+
}.v-app-bar {
|
18696
|
+
display: flex;
|
18655
18697
|
}
|
18656
|
-
.v-
|
18657
|
-
--v-
|
18698
|
+
.v-app-bar.v-toolbar {
|
18699
|
+
background: rgb(var(--v-theme-surface));
|
18700
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18658
18701
|
}
|
18659
|
-
.v-
|
18660
|
-
--v-
|
18702
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
18703
|
+
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));
|
18661
18704
|
}
|
18662
|
-
.v-
|
18663
|
-
--v-
|
18705
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
18706
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
18707
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18708
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18709
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18710
|
+
cursor: text;
|
18664
18711
|
}
|
18665
|
-
.v-
|
18666
|
-
|
18712
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18713
|
+
flex: 1 1;
|
18667
18714
|
}
|
18668
|
-
.v-
|
18669
|
-
|
18670
|
-
width: calc(var(--v-avatar-height) + 0px);
|
18715
|
+
.v-autocomplete .v-field input {
|
18716
|
+
min-width: 64px;
|
18671
18717
|
}
|
18672
|
-
.v-
|
18673
|
-
|
18674
|
-
width: calc(var(--v-avatar-height) + -4px);
|
18718
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18719
|
+
min-width: 0;
|
18675
18720
|
}
|
18676
|
-
.v-
|
18677
|
-
|
18678
|
-
width: calc(var(--v-avatar-height) + -8px);
|
18721
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18722
|
+
margin-inline-end: 2px;
|
18679
18723
|
}
|
18680
|
-
.v-
|
18681
|
-
|
18724
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
18725
|
+
overflow: hidden;
|
18726
|
+
text-overflow: ellipsis;
|
18727
|
+
white-space: nowrap;
|
18728
|
+
}
|
18729
|
+
|
18730
|
+
.v-autocomplete__content {
|
18731
|
+
overflow: hidden;
|
18732
|
+
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));
|
18733
|
+
border-radius: 4px;
|
18734
|
+
}
|
18735
|
+
.v-autocomplete__mask {
|
18736
|
+
background: rgb(var(--v-theme-surface-light));
|
18737
|
+
}
|
18738
|
+
.v-autocomplete__selection {
|
18739
|
+
display: inline-flex;
|
18740
|
+
align-items: center;
|
18741
|
+
height: 1.5rem;
|
18742
|
+
letter-spacing: inherit;
|
18743
|
+
line-height: inherit;
|
18744
|
+
max-width: calc(100% - 2px - 2px);
|
18745
|
+
}
|
18746
|
+
.v-autocomplete__selection:first-child {
|
18747
|
+
margin-inline-start: 0;
|
18748
|
+
}
|
18749
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18750
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18751
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18752
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18753
|
+
top: 0px;
|
18754
|
+
}
|
18755
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18756
|
+
opacity: var(--v-medium-emphasis-opacity);
|
18757
|
+
}
|
18758
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18759
|
+
opacity: 1;
|
18760
|
+
}
|
18761
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
18762
|
+
caret-color: transparent;
|
18763
|
+
}
|
18764
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18765
|
+
flex: 1 1;
|
18766
|
+
position: absolute;
|
18767
|
+
left: 0;
|
18768
|
+
right: 0;
|
18769
|
+
width: 100%;
|
18770
|
+
padding-inline: inherit;
|
18771
|
+
}
|
18772
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18773
|
+
transition: none;
|
18774
|
+
}
|
18775
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18776
|
+
opacity: 0;
|
18777
|
+
}
|
18778
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18779
|
+
opacity: 0;
|
18780
|
+
}
|
18781
|
+
.v-autocomplete__menu-icon {
|
18782
|
+
margin-inline-start: 4px;
|
18783
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18784
|
+
}
|
18785
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18786
|
+
opacity: var(--v-high-emphasis-opacity);
|
18787
|
+
transform: rotate(180deg);
|
18788
|
+
}.v-avatar {
|
18789
|
+
flex: none;
|
18790
|
+
align-items: center;
|
18791
|
+
display: inline-flex;
|
18792
|
+
justify-content: center;
|
18793
|
+
line-height: normal;
|
18794
|
+
overflow: hidden;
|
18795
|
+
position: relative;
|
18796
|
+
text-align: center;
|
18797
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18798
|
+
transition-property: width, height;
|
18799
|
+
vertical-align: middle;
|
18800
|
+
border-radius: 50%;
|
18801
|
+
}
|
18802
|
+
.v-avatar.v-avatar--size-x-small {
|
18803
|
+
--v-avatar-height: 24px;
|
18804
|
+
}
|
18805
|
+
.v-avatar.v-avatar--size-small {
|
18806
|
+
--v-avatar-height: 32px;
|
18807
|
+
}
|
18808
|
+
.v-avatar.v-avatar--size-default {
|
18809
|
+
--v-avatar-height: 40px;
|
18810
|
+
}
|
18811
|
+
.v-avatar.v-avatar--size-large {
|
18812
|
+
--v-avatar-height: 48px;
|
18813
|
+
}
|
18814
|
+
.v-avatar.v-avatar--size-x-large {
|
18815
|
+
--v-avatar-height: 56px;
|
18816
|
+
}
|
18817
|
+
.v-avatar.v-avatar--density-default {
|
18818
|
+
height: calc(var(--v-avatar-height) + 0px);
|
18819
|
+
width: calc(var(--v-avatar-height) + 0px);
|
18820
|
+
}
|
18821
|
+
.v-avatar.v-avatar--density-comfortable {
|
18822
|
+
height: calc(var(--v-avatar-height) + -4px);
|
18823
|
+
width: calc(var(--v-avatar-height) + -4px);
|
18824
|
+
}
|
18825
|
+
.v-avatar.v-avatar--density-compact {
|
18826
|
+
height: calc(var(--v-avatar-height) + -8px);
|
18827
|
+
width: calc(var(--v-avatar-height) + -8px);
|
18828
|
+
}
|
18829
|
+
.v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
|
18830
|
+
background: transparent;
|
18682
18831
|
color: inherit;
|
18683
18832
|
}
|
18684
18833
|
.v-avatar--variant-plain {
|
@@ -18888,142 +19037,6 @@ html.overflow-y-hidden {
|
|
18888
19037
|
}
|
18889
19038
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18890
19039
|
align-self: flex-start;
|
18891
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
18892
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
18893
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18894
|
-
cursor: text;
|
18895
|
-
}
|
18896
|
-
.v-autocomplete .v-field .v-field__input > input {
|
18897
|
-
flex: 1 1;
|
18898
|
-
}
|
18899
|
-
.v-autocomplete .v-field input {
|
18900
|
-
min-width: 64px;
|
18901
|
-
}
|
18902
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18903
|
-
min-width: 0;
|
18904
|
-
}
|
18905
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18906
|
-
margin-inline-end: 2px;
|
18907
|
-
}
|
18908
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
18909
|
-
overflow: hidden;
|
18910
|
-
text-overflow: ellipsis;
|
18911
|
-
white-space: nowrap;
|
18912
|
-
}
|
18913
|
-
|
18914
|
-
.v-autocomplete__content {
|
18915
|
-
overflow: hidden;
|
18916
|
-
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));
|
18917
|
-
border-radius: 4px;
|
18918
|
-
}
|
18919
|
-
.v-autocomplete__mask {
|
18920
|
-
background: rgb(var(--v-theme-surface-light));
|
18921
|
-
}
|
18922
|
-
.v-autocomplete__selection {
|
18923
|
-
display: inline-flex;
|
18924
|
-
align-items: center;
|
18925
|
-
height: 1.5rem;
|
18926
|
-
letter-spacing: inherit;
|
18927
|
-
line-height: inherit;
|
18928
|
-
max-width: calc(100% - 2px - 2px);
|
18929
|
-
}
|
18930
|
-
.v-autocomplete__selection:first-child {
|
18931
|
-
margin-inline-start: 0;
|
18932
|
-
}
|
18933
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18934
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18935
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18936
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18937
|
-
top: 0px;
|
18938
|
-
}
|
18939
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18940
|
-
opacity: var(--v-medium-emphasis-opacity);
|
18941
|
-
}
|
18942
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18943
|
-
opacity: 1;
|
18944
|
-
}
|
18945
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
18946
|
-
caret-color: transparent;
|
18947
|
-
}
|
18948
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18949
|
-
flex: 1 1;
|
18950
|
-
position: absolute;
|
18951
|
-
left: 0;
|
18952
|
-
right: 0;
|
18953
|
-
width: 100%;
|
18954
|
-
padding-inline: inherit;
|
18955
|
-
}
|
18956
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18957
|
-
transition: none;
|
18958
|
-
}
|
18959
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18960
|
-
opacity: 0;
|
18961
|
-
}
|
18962
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18963
|
-
opacity: 0;
|
18964
|
-
}
|
18965
|
-
.v-autocomplete__menu-icon {
|
18966
|
-
margin-inline-start: 4px;
|
18967
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18968
|
-
}
|
18969
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18970
|
-
opacity: var(--v-high-emphasis-opacity);
|
18971
|
-
transform: rotate(180deg);
|
18972
|
-
}.v-bottom-navigation {
|
18973
|
-
display: flex;
|
18974
|
-
max-width: 100%;
|
18975
|
-
overflow: hidden;
|
18976
|
-
position: absolute;
|
18977
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18978
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18979
|
-
border-style: solid;
|
18980
|
-
border-width: 0;
|
18981
|
-
border-radius: 0;
|
18982
|
-
background: rgb(var(--v-theme-surface));
|
18983
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18984
|
-
}
|
18985
|
-
.v-bottom-navigation--border {
|
18986
|
-
border-width: thin;
|
18987
|
-
box-shadow: none;
|
18988
|
-
}
|
18989
|
-
.v-bottom-navigation--active {
|
18990
|
-
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));
|
18991
|
-
}
|
18992
|
-
|
18993
|
-
.v-bottom-navigation__content {
|
18994
|
-
display: flex;
|
18995
|
-
flex: none;
|
18996
|
-
font-size: 0.75rem;
|
18997
|
-
justify-content: center;
|
18998
|
-
transition: inherit;
|
18999
|
-
width: 100%;
|
19000
|
-
}
|
19001
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
19002
|
-
font-size: inherit;
|
19003
|
-
height: 100%;
|
19004
|
-
max-width: 168px;
|
19005
|
-
min-width: 80px;
|
19006
|
-
text-transform: none;
|
19007
|
-
transition: inherit;
|
19008
|
-
width: auto;
|
19009
|
-
border-radius: 0;
|
19010
|
-
}
|
19011
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
19012
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19013
|
-
transition: inherit;
|
19014
|
-
}
|
19015
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19016
|
-
font-size: 1.5rem;
|
19017
|
-
}
|
19018
|
-
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
19019
|
-
flex-grow: 1;
|
19020
|
-
}
|
19021
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
19022
|
-
transition: inherit;
|
19023
|
-
opacity: 0;
|
19024
|
-
}
|
19025
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
19026
|
-
transform: translateY(0.5rem);
|
19027
19040
|
}.v-badge {
|
19028
19041
|
display: inline-block;
|
19029
19042
|
line-height: 1;
|
@@ -19095,38 +19108,61 @@ html.overflow-y-hidden {
|
|
19095
19108
|
display: inline-flex;
|
19096
19109
|
justify-content: center;
|
19097
19110
|
margin: 0 4px;
|
19098
|
-
}.bottom-
|
19099
|
-
|
19100
|
-
}
|
19101
|
-
.bottom-sheet-transition-leave-to {
|
19102
|
-
transform: translateY(100%);
|
19103
|
-
}
|
19104
|
-
|
19105
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
19106
|
-
align-self: flex-end;
|
19107
|
-
border-radius: 0;
|
19108
|
-
flex: 0 1 auto;
|
19109
|
-
left: 0;
|
19110
|
-
right: 0;
|
19111
|
-
margin-inline: 0;
|
19112
|
-
margin-bottom: 0;
|
19113
|
-
transition-duration: 0.2s;
|
19114
|
-
width: 100%;
|
19111
|
+
}.v-bottom-navigation {
|
19112
|
+
display: flex;
|
19115
19113
|
max-width: 100%;
|
19116
|
-
overflow:
|
19117
|
-
|
19114
|
+
overflow: hidden;
|
19115
|
+
position: absolute;
|
19116
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
19117
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19118
|
+
border-style: solid;
|
19119
|
+
border-width: 0;
|
19120
|
+
border-radius: 0;
|
19121
|
+
background: rgb(var(--v-theme-surface));
|
19122
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19118
19123
|
}
|
19119
|
-
.v-bottom-
|
19120
|
-
|
19124
|
+
.v-bottom-navigation--border {
|
19125
|
+
border-width: thin;
|
19126
|
+
box-shadow: none;
|
19127
|
+
}
|
19128
|
+
.v-bottom-navigation--active {
|
19129
|
+
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));
|
19130
|
+
}
|
19131
|
+
|
19132
|
+
.v-bottom-navigation__content {
|
19133
|
+
display: flex;
|
19134
|
+
flex: none;
|
19135
|
+
font-size: 0.75rem;
|
19136
|
+
justify-content: center;
|
19137
|
+
transition: inherit;
|
19138
|
+
width: 100%;
|
19139
|
+
}
|
19140
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
19141
|
+
font-size: inherit;
|
19142
|
+
height: 100%;
|
19143
|
+
max-width: 168px;
|
19144
|
+
min-width: 80px;
|
19145
|
+
text-transform: none;
|
19146
|
+
transition: inherit;
|
19147
|
+
width: auto;
|
19121
19148
|
border-radius: 0;
|
19122
19149
|
}
|
19123
|
-
.v-bottom-
|
19124
|
-
|
19150
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
19151
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19152
|
+
transition: inherit;
|
19125
19153
|
}
|
19126
|
-
|
19127
|
-
|
19128
|
-
|
19129
|
-
|
19154
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19155
|
+
font-size: 1.5rem;
|
19156
|
+
}
|
19157
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
19158
|
+
flex-grow: 1;
|
19159
|
+
}
|
19160
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
19161
|
+
transition: inherit;
|
19162
|
+
opacity: 0;
|
19163
|
+
}
|
19164
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
19165
|
+
transform: translateY(0.5rem);
|
19130
19166
|
}.v-breadcrumbs {
|
19131
19167
|
display: flex;
|
19132
19168
|
align-items: center;
|
@@ -19184,6 +19220,51 @@ html.overflow-y-hidden {
|
|
19184
19220
|
display: inline-block;
|
19185
19221
|
padding: 0 8px;
|
19186
19222
|
vertical-align: middle;
|
19223
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19224
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19225
|
+
}
|
19226
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19227
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19228
|
+
}
|
19229
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19230
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19231
|
+
}
|
19232
|
+
@supports not selector(:focus-visible) {
|
19233
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19234
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19235
|
+
}
|
19236
|
+
}.bottom-sheet-transition-enter-from {
|
19237
|
+
transform: translateY(100%);
|
19238
|
+
}
|
19239
|
+
.bottom-sheet-transition-leave-to {
|
19240
|
+
transform: translateY(100%);
|
19241
|
+
}
|
19242
|
+
|
19243
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
19244
|
+
align-self: flex-end;
|
19245
|
+
border-radius: 0;
|
19246
|
+
flex: 0 1 auto;
|
19247
|
+
left: 0;
|
19248
|
+
right: 0;
|
19249
|
+
margin-inline: 0;
|
19250
|
+
margin-bottom: 0;
|
19251
|
+
transition-duration: 0.2s;
|
19252
|
+
width: 100%;
|
19253
|
+
max-width: 100%;
|
19254
|
+
overflow: visible;
|
19255
|
+
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19256
|
+
}
|
19257
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
19258
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
19259
|
+
border-radius: 0;
|
19260
|
+
}
|
19261
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
19262
|
+
max-width: none;
|
19263
|
+
}
|
19264
|
+
@media (min-width: 600px) {
|
19265
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
19266
|
+
max-width: 70%;
|
19267
|
+
}
|
19187
19268
|
}.v-btn-group {
|
19188
19269
|
display: inline-flex;
|
19189
19270
|
flex-wrap: nowrap;
|
@@ -19652,87 +19733,6 @@ html.overflow-y-hidden {
|
|
19652
19733
|
}
|
19653
19734
|
.v-pagination__item--is-active .v-btn__overlay {
|
19654
19735
|
opacity: var(--v-border-opacity);
|
19655
|
-
}.v-checkbox.v-input {
|
19656
|
-
flex: 0 1 auto;
|
19657
|
-
}
|
19658
|
-
.v-checkbox .v-selection-control {
|
19659
|
-
min-height: var(--v-input-control-height);
|
19660
|
-
}.v-carousel {
|
19661
|
-
overflow: hidden;
|
19662
|
-
position: relative;
|
19663
|
-
width: 100%;
|
19664
|
-
}
|
19665
|
-
.v-carousel__controls {
|
19666
|
-
align-items: center;
|
19667
|
-
bottom: 0;
|
19668
|
-
display: flex;
|
19669
|
-
height: 50px;
|
19670
|
-
justify-content: center;
|
19671
|
-
list-style-type: none;
|
19672
|
-
position: absolute;
|
19673
|
-
width: 100%;
|
19674
|
-
z-index: 1;
|
19675
|
-
background: rgba(var(--v-theme-surface-variant), 0.3);
|
19676
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
19677
|
-
}
|
19678
|
-
.v-carousel__controls > .v-item-group {
|
19679
|
-
flex: 0 1 auto;
|
19680
|
-
}
|
19681
|
-
.v-carousel__controls__item {
|
19682
|
-
margin: 0 8px;
|
19683
|
-
}
|
19684
|
-
.v-carousel__controls__item .v-icon {
|
19685
|
-
opacity: 0.5;
|
19686
|
-
}
|
19687
|
-
.v-carousel__controls__item--active .v-icon {
|
19688
|
-
opacity: 1;
|
19689
|
-
vertical-align: middle;
|
19690
|
-
}
|
19691
|
-
.v-carousel__controls__item:hover {
|
19692
|
-
background: none;
|
19693
|
-
}
|
19694
|
-
.v-carousel__controls__item:hover .v-icon {
|
19695
|
-
opacity: 0.8;
|
19696
|
-
}
|
19697
|
-
|
19698
|
-
.v-carousel__progress {
|
19699
|
-
margin: 0;
|
19700
|
-
position: absolute;
|
19701
|
-
bottom: 0;
|
19702
|
-
left: 0;
|
19703
|
-
right: 0;
|
19704
|
-
}
|
19705
|
-
|
19706
|
-
.v-carousel-item {
|
19707
|
-
display: block;
|
19708
|
-
height: inherit;
|
19709
|
-
text-decoration: none;
|
19710
|
-
}
|
19711
|
-
.v-carousel-item > .v-img {
|
19712
|
-
height: inherit;
|
19713
|
-
}
|
19714
|
-
|
19715
|
-
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
19716
|
-
background: transparent;
|
19717
|
-
}
|
19718
|
-
|
19719
|
-
.v-carousel--vertical-delimiters .v-carousel__controls {
|
19720
|
-
flex-direction: column;
|
19721
|
-
height: 100% !important;
|
19722
|
-
width: 50px;
|
19723
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19724
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19725
|
-
}
|
19726
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19727
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19728
|
-
}
|
19729
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19730
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19731
|
-
}
|
19732
|
-
@supports not selector(:focus-visible) {
|
19733
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19734
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19735
|
-
}
|
19736
19736
|
}.v-card {
|
19737
19737
|
display: block;
|
19738
19738
|
overflow: hidden;
|
@@ -20032,49 +20032,135 @@ html.overflow-y-hidden {
|
|
20032
20032
|
pointer-events: none;
|
20033
20033
|
opacity: 0;
|
20034
20034
|
transition: opacity 0.2s ease-in-out;
|
20035
|
-
}.v-
|
20036
|
-
|
20037
|
-
|
20038
|
-
|
20039
|
-
|
20040
|
-
|
20035
|
+
}.v-checkbox.v-input {
|
20036
|
+
flex: 0 1 auto;
|
20037
|
+
}
|
20038
|
+
.v-checkbox .v-selection-control {
|
20039
|
+
min-height: var(--v-input-control-height);
|
20040
|
+
}.v-carousel {
|
20041
20041
|
overflow: hidden;
|
20042
20042
|
position: relative;
|
20043
|
-
|
20044
|
-
white-space: nowrap;
|
20045
|
-
vertical-align: middle;
|
20046
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
20047
|
-
border-style: solid;
|
20048
|
-
border-width: 0;
|
20049
|
-
border-radius: 9999px;
|
20043
|
+
width: 100%;
|
20050
20044
|
}
|
20051
|
-
.v-
|
20052
|
-
|
20045
|
+
.v-carousel__controls {
|
20046
|
+
align-items: center;
|
20047
|
+
bottom: 0;
|
20048
|
+
display: flex;
|
20049
|
+
height: 50px;
|
20050
|
+
justify-content: center;
|
20051
|
+
list-style-type: none;
|
20052
|
+
position: absolute;
|
20053
|
+
width: 100%;
|
20054
|
+
z-index: 1;
|
20055
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
20056
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
20053
20057
|
}
|
20054
|
-
.v-
|
20055
|
-
|
20056
|
-
--v-chip-height: 20px;
|
20057
|
-
font-size: 0.625rem;
|
20058
|
-
padding: 0 8px;
|
20058
|
+
.v-carousel__controls > .v-item-group {
|
20059
|
+
flex: 0 1 auto;
|
20059
20060
|
}
|
20060
|
-
.v-
|
20061
|
-
|
20061
|
+
.v-carousel__controls__item {
|
20062
|
+
margin: 0 8px;
|
20062
20063
|
}
|
20063
|
-
.v-
|
20064
|
-
|
20064
|
+
.v-carousel__controls__item .v-icon {
|
20065
|
+
opacity: 0.5;
|
20065
20066
|
}
|
20066
|
-
|
20067
|
-
|
20068
|
-
|
20069
|
-
margin-inline-end: 4px;
|
20067
|
+
.v-carousel__controls__item--active .v-icon {
|
20068
|
+
opacity: 1;
|
20069
|
+
vertical-align: middle;
|
20070
20070
|
}
|
20071
|
-
.v-
|
20072
|
-
|
20071
|
+
.v-carousel__controls__item:hover {
|
20072
|
+
background: none;
|
20073
20073
|
}
|
20074
|
-
|
20075
|
-
|
20076
|
-
|
20077
|
-
|
20074
|
+
.v-carousel__controls__item:hover .v-icon {
|
20075
|
+
opacity: 0.8;
|
20076
|
+
}
|
20077
|
+
|
20078
|
+
.v-carousel__progress {
|
20079
|
+
margin: 0;
|
20080
|
+
position: absolute;
|
20081
|
+
bottom: 0;
|
20082
|
+
left: 0;
|
20083
|
+
right: 0;
|
20084
|
+
}
|
20085
|
+
|
20086
|
+
.v-carousel-item {
|
20087
|
+
display: block;
|
20088
|
+
height: inherit;
|
20089
|
+
text-decoration: none;
|
20090
|
+
}
|
20091
|
+
.v-carousel-item > .v-img {
|
20092
|
+
height: inherit;
|
20093
|
+
}
|
20094
|
+
|
20095
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
20096
|
+
background: transparent;
|
20097
|
+
}
|
20098
|
+
|
20099
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
20100
|
+
flex-direction: column;
|
20101
|
+
height: 100% !important;
|
20102
|
+
width: 50px;
|
20103
|
+
}.v-chip-group {
|
20104
|
+
display: flex;
|
20105
|
+
max-width: 100%;
|
20106
|
+
min-width: 0;
|
20107
|
+
overflow-x: auto;
|
20108
|
+
padding: 4px 0;
|
20109
|
+
}
|
20110
|
+
.v-chip-group .v-chip {
|
20111
|
+
margin: 4px 8px 4px 0;
|
20112
|
+
}
|
20113
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20114
|
+
opacity: var(--v-activated-opacity);
|
20115
|
+
}
|
20116
|
+
|
20117
|
+
.v-chip-group--column .v-slide-group__content {
|
20118
|
+
white-space: normal;
|
20119
|
+
flex-wrap: wrap;
|
20120
|
+
max-width: 100%;
|
20121
|
+
}.v-chip {
|
20122
|
+
align-items: center;
|
20123
|
+
display: inline-flex;
|
20124
|
+
font-weight: 400;
|
20125
|
+
max-width: 100%;
|
20126
|
+
min-width: 0;
|
20127
|
+
overflow: hidden;
|
20128
|
+
position: relative;
|
20129
|
+
text-decoration: none;
|
20130
|
+
white-space: nowrap;
|
20131
|
+
vertical-align: middle;
|
20132
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
20133
|
+
border-style: solid;
|
20134
|
+
border-width: 0;
|
20135
|
+
border-radius: 9999px;
|
20136
|
+
}
|
20137
|
+
.v-chip .v-icon {
|
20138
|
+
--v-icon-size-multiplier: 0.8571428571;
|
20139
|
+
}
|
20140
|
+
.v-chip.v-chip--size-x-small {
|
20141
|
+
--v-chip-size: 0.625rem;
|
20142
|
+
--v-chip-height: 20px;
|
20143
|
+
font-size: 0.625rem;
|
20144
|
+
padding: 0 8px;
|
20145
|
+
}
|
20146
|
+
.v-chip.v-chip--size-x-small .v-avatar {
|
20147
|
+
--v-avatar-height: 14px;
|
20148
|
+
}
|
20149
|
+
.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar {
|
20150
|
+
--v-avatar-height: 20px;
|
20151
|
+
}
|
20152
|
+
|
20153
|
+
.v-chip.v-chip--size-x-small .v-avatar--start {
|
20154
|
+
margin-inline-start: -5.6px;
|
20155
|
+
margin-inline-end: 4px;
|
20156
|
+
}
|
20157
|
+
.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--start {
|
20158
|
+
margin-inline-start: -8px;
|
20159
|
+
}
|
20160
|
+
|
20161
|
+
.v-chip.v-chip--size-x-small .v-avatar--end {
|
20162
|
+
margin-inline-start: 4px;
|
20163
|
+
margin-inline-end: -5.6px;
|
20078
20164
|
}
|
20079
20165
|
.v-chip--pill.v-chip.v-chip--size-x-small .v-avatar--end {
|
20080
20166
|
margin-inline-end: -8px;
|
@@ -20444,105 +20530,6 @@ html.overflow-y-hidden {
|
|
20444
20530
|
|
20445
20531
|
.v-chip--label {
|
20446
20532
|
border-radius: 4px;
|
20447
|
-
}.v-chip-group {
|
20448
|
-
display: flex;
|
20449
|
-
max-width: 100%;
|
20450
|
-
min-width: 0;
|
20451
|
-
overflow-x: auto;
|
20452
|
-
padding: 4px 0;
|
20453
|
-
}
|
20454
|
-
.v-chip-group .v-chip {
|
20455
|
-
margin: 4px 8px 4px 0;
|
20456
|
-
}
|
20457
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20458
|
-
opacity: var(--v-activated-opacity);
|
20459
|
-
}
|
20460
|
-
|
20461
|
-
.v-chip-group--column .v-slide-group__content {
|
20462
|
-
white-space: normal;
|
20463
|
-
flex-wrap: wrap;
|
20464
|
-
max-width: 100%;
|
20465
|
-
}.v-combobox .v-field .v-text-field__prefix,
|
20466
|
-
.v-combobox .v-field .v-text-field__suffix,
|
20467
|
-
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20468
|
-
cursor: text;
|
20469
|
-
}
|
20470
|
-
.v-combobox .v-field .v-field__input > input {
|
20471
|
-
flex: 1 1;
|
20472
|
-
}
|
20473
|
-
.v-combobox .v-field input {
|
20474
|
-
min-width: 64px;
|
20475
|
-
}
|
20476
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
20477
|
-
min-width: 0;
|
20478
|
-
}
|
20479
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
20480
|
-
margin-inline-end: 2px;
|
20481
|
-
}
|
20482
|
-
.v-combobox .v-combobox__selection-text {
|
20483
|
-
overflow: hidden;
|
20484
|
-
text-overflow: ellipsis;
|
20485
|
-
white-space: nowrap;
|
20486
|
-
}
|
20487
|
-
|
20488
|
-
.v-combobox__content {
|
20489
|
-
overflow: hidden;
|
20490
|
-
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));
|
20491
|
-
border-radius: 4px;
|
20492
|
-
}
|
20493
|
-
.v-combobox__mask {
|
20494
|
-
background: rgb(var(--v-theme-surface-light));
|
20495
|
-
}
|
20496
|
-
.v-combobox__selection {
|
20497
|
-
display: inline-flex;
|
20498
|
-
align-items: center;
|
20499
|
-
height: 1.5rem;
|
20500
|
-
letter-spacing: inherit;
|
20501
|
-
line-height: inherit;
|
20502
|
-
max-width: calc(100% - 2px - 2px);
|
20503
|
-
}
|
20504
|
-
.v-combobox__selection:first-child {
|
20505
|
-
margin-inline-start: 0;
|
20506
|
-
}
|
20507
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20508
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20509
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20510
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20511
|
-
top: 0px;
|
20512
|
-
}
|
20513
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
20514
|
-
opacity: var(--v-medium-emphasis-opacity);
|
20515
|
-
}
|
20516
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20517
|
-
opacity: 1;
|
20518
|
-
}
|
20519
|
-
.v-combobox--selecting-index .v-field__input > input {
|
20520
|
-
caret-color: transparent;
|
20521
|
-
}
|
20522
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20523
|
-
flex: 1 1;
|
20524
|
-
position: absolute;
|
20525
|
-
left: 0;
|
20526
|
-
right: 0;
|
20527
|
-
width: 100%;
|
20528
|
-
padding-inline: inherit;
|
20529
|
-
}
|
20530
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20531
|
-
transition: none;
|
20532
|
-
}
|
20533
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20534
|
-
opacity: 0;
|
20535
|
-
}
|
20536
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20537
|
-
opacity: 0;
|
20538
|
-
}
|
20539
|
-
.v-combobox__menu-icon {
|
20540
|
-
margin-inline-start: 4px;
|
20541
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20542
|
-
}
|
20543
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
20544
|
-
opacity: var(--v-high-emphasis-opacity);
|
20545
|
-
transform: rotate(180deg);
|
20546
20533
|
}.v-container {
|
20547
20534
|
width: 100%;
|
20548
20535
|
padding: 16px;
|
@@ -21235,77 +21222,92 @@ html.overflow-y-hidden {
|
|
21235
21222
|
}
|
21236
21223
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
21237
21224
|
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));
|
21238
|
-
}.v-
|
21239
|
-
|
21240
|
-
|
21241
|
-
|
21242
|
-
transition-duration: 150ms;
|
21243
|
-
}.v-date-picker {
|
21244
|
-
overflow: hidden;
|
21245
|
-
width: 328px;
|
21246
|
-
}
|
21247
|
-
.v-date-picker--show-week {
|
21248
|
-
width: 368px;
|
21249
|
-
}.v-date-picker-header {
|
21250
|
-
align-items: flex-end;
|
21251
|
-
height: 70px;
|
21252
|
-
display: grid;
|
21253
|
-
grid-template-areas: "prepend content append";
|
21254
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21255
|
-
overflow: hidden;
|
21256
|
-
padding-inline: 24px 12px;
|
21257
|
-
padding-bottom: 12px;
|
21225
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
21226
|
+
.v-combobox .v-field .v-text-field__suffix,
|
21227
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
21228
|
+
cursor: text;
|
21258
21229
|
}
|
21259
|
-
|
21260
|
-
|
21261
|
-
grid-area: append;
|
21230
|
+
.v-combobox .v-field .v-field__input > input {
|
21231
|
+
flex: 1 1;
|
21262
21232
|
}
|
21263
|
-
|
21264
|
-
|
21265
|
-
grid-area: prepend;
|
21266
|
-
padding-inline-start: 8px;
|
21233
|
+
.v-combobox .v-field input {
|
21234
|
+
min-width: 64px;
|
21267
21235
|
}
|
21268
|
-
|
21269
|
-
|
21270
|
-
align-items: center;
|
21271
|
-
display: inline-flex;
|
21272
|
-
font-size: 32px;
|
21273
|
-
line-height: 40px;
|
21274
|
-
grid-area: content;
|
21275
|
-
justify-content: space-between;
|
21236
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
21237
|
+
min-width: 0;
|
21276
21238
|
}
|
21277
|
-
.v-
|
21278
|
-
|
21239
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
21240
|
+
margin-inline-end: 2px;
|
21279
21241
|
}
|
21280
|
-
.v-
|
21281
|
-
|
21242
|
+
.v-combobox .v-combobox__selection-text {
|
21243
|
+
overflow: hidden;
|
21244
|
+
text-overflow: ellipsis;
|
21245
|
+
white-space: nowrap;
|
21282
21246
|
}
|
21283
21247
|
|
21284
|
-
.
|
21285
|
-
|
21286
|
-
|
21287
|
-
|
21248
|
+
.v-combobox__content {
|
21249
|
+
overflow: hidden;
|
21250
|
+
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));
|
21251
|
+
border-radius: 4px;
|
21288
21252
|
}
|
21289
|
-
.
|
21290
|
-
|
21291
|
-
transition-duration: 0.3s;
|
21292
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21253
|
+
.v-combobox__mask {
|
21254
|
+
background: rgb(var(--v-theme-surface-light));
|
21293
21255
|
}
|
21294
|
-
|
21295
|
-
|
21296
|
-
|
21256
|
+
.v-combobox__selection {
|
21257
|
+
display: inline-flex;
|
21258
|
+
align-items: center;
|
21259
|
+
height: 1.5rem;
|
21260
|
+
letter-spacing: inherit;
|
21261
|
+
line-height: inherit;
|
21262
|
+
max-width: calc(100% - 2px - 2px);
|
21297
21263
|
}
|
21298
|
-
.
|
21299
|
-
|
21300
|
-
transform: translate(0, -100%);
|
21264
|
+
.v-combobox__selection:first-child {
|
21265
|
+
margin-inline-start: 0;
|
21301
21266
|
}
|
21302
|
-
|
21303
|
-
.
|
21304
|
-
|
21267
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21268
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21269
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21270
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21271
|
+
top: 0px;
|
21305
21272
|
}
|
21306
|
-
.
|
21273
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
21274
|
+
opacity: var(--v-medium-emphasis-opacity);
|
21275
|
+
}
|
21276
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
21277
|
+
opacity: 1;
|
21278
|
+
}
|
21279
|
+
.v-combobox--selecting-index .v-field__input > input {
|
21280
|
+
caret-color: transparent;
|
21281
|
+
}
|
21282
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
21283
|
+
flex: 1 1;
|
21284
|
+
position: absolute;
|
21285
|
+
left: 0;
|
21286
|
+
right: 0;
|
21287
|
+
width: 100%;
|
21288
|
+
padding-inline: inherit;
|
21289
|
+
}
|
21290
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
21291
|
+
transition: none;
|
21292
|
+
}
|
21293
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
21307
21294
|
opacity: 0;
|
21308
|
-
|
21295
|
+
}
|
21296
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
21297
|
+
opacity: 0;
|
21298
|
+
}
|
21299
|
+
.v-combobox__menu-icon {
|
21300
|
+
margin-inline-start: 4px;
|
21301
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21302
|
+
}
|
21303
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
21304
|
+
opacity: var(--v-high-emphasis-opacity);
|
21305
|
+
transform: rotate(180deg);
|
21306
|
+
}.v-counter {
|
21307
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21308
|
+
flex: 0 1 auto;
|
21309
|
+
font-size: 12px;
|
21310
|
+
transition-duration: 150ms;
|
21309
21311
|
}.v-date-picker-controls {
|
21310
21312
|
display: flex;
|
21311
21313
|
align-items: center;
|
@@ -21362,6 +21364,12 @@ html.overflow-y-hidden {
|
|
21362
21364
|
|
21363
21365
|
.v-date-picker__title {
|
21364
21366
|
display: inline-block;
|
21367
|
+
}.v-date-picker {
|
21368
|
+
overflow: hidden;
|
21369
|
+
width: 328px;
|
21370
|
+
}
|
21371
|
+
.v-date-picker--show-week {
|
21372
|
+
width: 368px;
|
21365
21373
|
}.v-date-picker-month {
|
21366
21374
|
display: flex;
|
21367
21375
|
justify-content: center;
|
@@ -21436,6 +21444,66 @@ html.overflow-y-hidden {
|
|
21436
21444
|
text-transform: none;
|
21437
21445
|
padding-inline-start: 8px;
|
21438
21446
|
padding-inline-end: 8px;
|
21447
|
+
}.v-date-picker-header {
|
21448
|
+
align-items: flex-end;
|
21449
|
+
height: 70px;
|
21450
|
+
display: grid;
|
21451
|
+
grid-template-areas: "prepend content append";
|
21452
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21453
|
+
overflow: hidden;
|
21454
|
+
padding-inline: 24px 12px;
|
21455
|
+
padding-bottom: 12px;
|
21456
|
+
}
|
21457
|
+
|
21458
|
+
.v-date-picker-header__append {
|
21459
|
+
grid-area: append;
|
21460
|
+
}
|
21461
|
+
|
21462
|
+
.v-date-picker-header__prepend {
|
21463
|
+
grid-area: prepend;
|
21464
|
+
padding-inline-start: 8px;
|
21465
|
+
}
|
21466
|
+
|
21467
|
+
.v-date-picker-header__content {
|
21468
|
+
align-items: center;
|
21469
|
+
display: inline-flex;
|
21470
|
+
font-size: 32px;
|
21471
|
+
line-height: 40px;
|
21472
|
+
grid-area: content;
|
21473
|
+
justify-content: space-between;
|
21474
|
+
}
|
21475
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
21476
|
+
cursor: pointer;
|
21477
|
+
}
|
21478
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21479
|
+
opacity: 0.7;
|
21480
|
+
}
|
21481
|
+
|
21482
|
+
.date-picker-header-transition-enter-active,
|
21483
|
+
.date-picker-header-reverse-transition-enter-active {
|
21484
|
+
transition-duration: 0.3s;
|
21485
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21486
|
+
}
|
21487
|
+
.date-picker-header-transition-leave-active,
|
21488
|
+
.date-picker-header-reverse-transition-leave-active {
|
21489
|
+
transition-duration: 0.3s;
|
21490
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21491
|
+
}
|
21492
|
+
|
21493
|
+
.date-picker-header-transition-enter-from {
|
21494
|
+
transform: translate(0, 100%);
|
21495
|
+
}
|
21496
|
+
.date-picker-header-transition-leave-to {
|
21497
|
+
opacity: 0;
|
21498
|
+
transform: translate(0, -100%);
|
21499
|
+
}
|
21500
|
+
|
21501
|
+
.date-picker-header-reverse-transition-enter-from {
|
21502
|
+
transform: translate(0, -100%);
|
21503
|
+
}
|
21504
|
+
.date-picker-header-reverse-transition-leave-to {
|
21505
|
+
opacity: 0;
|
21506
|
+
transform: translate(0, 100%);
|
21439
21507
|
}.v-date-picker-years {
|
21440
21508
|
height: 288px;
|
21441
21509
|
overflow-y: scroll;
|
@@ -21756,221 +21824,85 @@ html.overflow-y-hidden {
|
|
21756
21824
|
-webkit-backface-visibility: hidden;
|
21757
21825
|
backface-visibility: hidden;
|
21758
21826
|
overflow-y: auto;
|
21759
|
-
}.v-
|
21760
|
-
|
21761
|
-
|
21762
|
-
flex-direction: column;
|
21763
|
-
justify-content: center;
|
21764
|
-
min-height: 100%;
|
21765
|
-
padding: 16px;
|
21827
|
+
}.v-expansion-panel {
|
21828
|
+
background-color: rgb(var(--v-theme-surface));
|
21829
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21766
21830
|
}
|
21767
|
-
.v-
|
21768
|
-
|
21831
|
+
.v-expansion-panel:not(:first-child)::after {
|
21832
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21769
21833
|
}
|
21770
|
-
.v-
|
21771
|
-
|
21834
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21835
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
21772
21836
|
}
|
21773
|
-
.v-
|
21774
|
-
|
21837
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
21838
|
+
opacity: 0.4615384615;
|
21775
21839
|
}
|
21776
21840
|
|
21777
|
-
.v-
|
21778
|
-
|
21841
|
+
.v-expansion-panels {
|
21842
|
+
display: flex;
|
21843
|
+
flex-wrap: wrap;
|
21844
|
+
justify-content: center;
|
21845
|
+
list-style-type: none;
|
21846
|
+
padding: 0;
|
21779
21847
|
width: 100%;
|
21848
|
+
position: relative;
|
21849
|
+
z-index: 1;
|
21780
21850
|
}
|
21781
|
-
.v-
|
21782
|
-
|
21851
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21852
|
+
border-bottom-left-radius: 0 !important;
|
21853
|
+
border-bottom-right-radius: 0 !important;
|
21783
21854
|
}
|
21784
|
-
|
21785
|
-
|
21786
|
-
|
21787
|
-
font-size: 3.75rem;
|
21788
|
-
font-weight: 300;
|
21789
|
-
line-height: 1;
|
21790
|
-
text-align: center;
|
21791
|
-
margin-bottom: 8px;
|
21855
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21856
|
+
border-top-left-radius: 0 !important;
|
21857
|
+
border-top-right-radius: 0 !important;
|
21792
21858
|
}
|
21793
|
-
.v-
|
21794
|
-
|
21859
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21860
|
+
border-bottom-left-radius: 0 !important;
|
21861
|
+
border-bottom-right-radius: 0 !important;
|
21795
21862
|
}
|
21796
|
-
|
21797
|
-
|
21798
|
-
|
21799
|
-
font-weight: 500;
|
21800
|
-
line-height: 1.6;
|
21801
|
-
margin-bottom: 4px;
|
21802
|
-
text-align: center;
|
21863
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21864
|
+
border-top-left-radius: 0 !important;
|
21865
|
+
border-top-right-radius: 0 !important;
|
21803
21866
|
}
|
21804
|
-
|
21805
|
-
|
21806
|
-
|
21807
|
-
font-weight: 400;
|
21808
|
-
line-height: 1.425;
|
21809
|
-
padding: 0 16px;
|
21810
|
-
text-align: center;
|
21867
|
+
.v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
|
21868
|
+
border-bottom-left-radius: 0 !important;
|
21869
|
+
border-bottom-right-radius: 0 !important;
|
21811
21870
|
}
|
21812
|
-
|
21813
|
-
|
21814
|
-
|
21871
|
+
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
|
21872
|
+
border-top-left-radius: 0 !important;
|
21873
|
+
border-top-right-radius: 0 !important;
|
21815
21874
|
}
|
21816
|
-
|
21817
|
-
|
21818
|
-
|
21819
|
-
|
21820
|
-
|
21875
|
+
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
|
21876
|
+
border-bottom-left-radius: initial;
|
21877
|
+
border-bottom-right-radius: initial;
|
21878
|
+
}
|
21879
|
+
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
21880
|
+
border-radius: 0 !important;
|
21881
|
+
}
|
21882
|
+
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
21883
|
+
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
21821
21884
|
}
|
21822
21885
|
|
21823
|
-
.v-
|
21824
|
-
|
21825
|
-
|
21826
|
-
}.v-fab {
|
21827
|
-
align-items: center;
|
21828
|
-
display: inline-flex;
|
21829
|
-
flex: 1 1 auto;
|
21830
|
-
pointer-events: none;
|
21886
|
+
.v-expansion-panel {
|
21887
|
+
flex: 1 0 100%;
|
21888
|
+
max-width: 100%;
|
21831
21889
|
position: relative;
|
21832
|
-
transition
|
21833
|
-
transition-
|
21834
|
-
|
21835
|
-
}
|
21836
|
-
.v-fab .v-btn {
|
21837
|
-
pointer-events: auto;
|
21890
|
+
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
21891
|
+
transition-property: margin-top, border-radius, border, max-width;
|
21892
|
+
border-radius: 4px;
|
21838
21893
|
}
|
21839
|
-
.v-
|
21840
|
-
|
21894
|
+
.v-expansion-panel:not(:first-child)::after {
|
21895
|
+
border-top-style: solid;
|
21896
|
+
border-top-width: thin;
|
21897
|
+
content: "";
|
21898
|
+
left: 0;
|
21899
|
+
position: absolute;
|
21900
|
+
right: 0;
|
21901
|
+
top: 0;
|
21902
|
+
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
21841
21903
|
}
|
21842
|
-
.v-
|
21843
|
-
|
21844
|
-
}
|
21845
|
-
.v-fab--start, .v-fab--left {
|
21846
|
-
justify-content: flex-start;
|
21847
|
-
}
|
21848
|
-
.v-fab--center {
|
21849
|
-
align-items: center;
|
21850
|
-
justify-content: center;
|
21851
|
-
}
|
21852
|
-
.v-fab--end, .v-fab--right {
|
21853
|
-
justify-content: flex-end;
|
21854
|
-
}
|
21855
|
-
.v-fab--bottom {
|
21856
|
-
align-items: flex-end;
|
21857
|
-
}
|
21858
|
-
.v-fab--top {
|
21859
|
-
align-items: flex-start;
|
21860
|
-
}
|
21861
|
-
.v-fab--extended .v-btn {
|
21862
|
-
border-radius: 9999px !important;
|
21863
|
-
}
|
21864
|
-
|
21865
|
-
.v-fab__container {
|
21866
|
-
align-self: center;
|
21867
|
-
display: inline-flex;
|
21868
|
-
position: absolute;
|
21869
|
-
vertical-align: middle;
|
21870
|
-
}
|
21871
|
-
.v-fab--app .v-fab__container {
|
21872
|
-
margin: 12px;
|
21873
|
-
}
|
21874
|
-
.v-fab--absolute .v-fab__container {
|
21875
|
-
position: absolute;
|
21876
|
-
z-index: 4;
|
21877
|
-
}
|
21878
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
21879
|
-
transform: translateY(-50%);
|
21880
|
-
}
|
21881
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21882
|
-
transform: translateY(50%);
|
21883
|
-
}
|
21884
|
-
.v-fab--top .v-fab__container {
|
21885
|
-
top: 0;
|
21886
|
-
}
|
21887
|
-
.v-fab--bottom .v-fab__container {
|
21888
|
-
bottom: 0;
|
21889
|
-
}
|
21890
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21891
|
-
left: 0;
|
21892
|
-
}
|
21893
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21894
|
-
right: 0;
|
21895
|
-
}.v-expansion-panel {
|
21896
|
-
background-color: rgb(var(--v-theme-surface));
|
21897
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21898
|
-
}
|
21899
|
-
.v-expansion-panel:not(:first-child)::after {
|
21900
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21901
|
-
}
|
21902
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21903
|
-
color: rgba(var(--v-theme-on-surface), 0.26);
|
21904
|
-
}
|
21905
|
-
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
21906
|
-
opacity: 0.4615384615;
|
21907
|
-
}
|
21908
|
-
|
21909
|
-
.v-expansion-panels {
|
21910
|
-
display: flex;
|
21911
|
-
flex-wrap: wrap;
|
21912
|
-
justify-content: center;
|
21913
|
-
list-style-type: none;
|
21914
|
-
padding: 0;
|
21915
|
-
width: 100%;
|
21916
|
-
position: relative;
|
21917
|
-
z-index: 1;
|
21918
|
-
}
|
21919
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21920
|
-
border-bottom-left-radius: 0 !important;
|
21921
|
-
border-bottom-right-radius: 0 !important;
|
21922
|
-
}
|
21923
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21924
|
-
border-top-left-radius: 0 !important;
|
21925
|
-
border-top-right-radius: 0 !important;
|
21926
|
-
}
|
21927
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21928
|
-
border-bottom-left-radius: 0 !important;
|
21929
|
-
border-bottom-right-radius: 0 !important;
|
21930
|
-
}
|
21931
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21932
|
-
border-top-left-radius: 0 !important;
|
21933
|
-
border-top-right-radius: 0 !important;
|
21934
|
-
}
|
21935
|
-
.v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
|
21936
|
-
border-bottom-left-radius: 0 !important;
|
21937
|
-
border-bottom-right-radius: 0 !important;
|
21938
|
-
}
|
21939
|
-
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
|
21940
|
-
border-top-left-radius: 0 !important;
|
21941
|
-
border-top-right-radius: 0 !important;
|
21942
|
-
}
|
21943
|
-
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
|
21944
|
-
border-bottom-left-radius: initial;
|
21945
|
-
border-bottom-right-radius: initial;
|
21946
|
-
}
|
21947
|
-
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
21948
|
-
border-radius: 0 !important;
|
21949
|
-
}
|
21950
|
-
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
21951
|
-
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
21952
|
-
}
|
21953
|
-
|
21954
|
-
.v-expansion-panel {
|
21955
|
-
flex: 1 0 100%;
|
21956
|
-
max-width: 100%;
|
21957
|
-
position: relative;
|
21958
|
-
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
21959
|
-
transition-property: margin-top, border-radius, border, max-width;
|
21960
|
-
border-radius: 4px;
|
21961
|
-
}
|
21962
|
-
.v-expansion-panel:not(:first-child)::after {
|
21963
|
-
border-top-style: solid;
|
21964
|
-
border-top-width: thin;
|
21965
|
-
content: "";
|
21966
|
-
left: 0;
|
21967
|
-
position: absolute;
|
21968
|
-
right: 0;
|
21969
|
-
top: 0;
|
21970
|
-
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
21971
|
-
}
|
21972
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21973
|
-
pointer-events: none;
|
21904
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21905
|
+
pointer-events: none;
|
21974
21906
|
}
|
21975
21907
|
.v-expansion-panel--active:not(:first-child),
|
21976
21908
|
.v-expansion-panel--active + .v-expansion-panel {
|
@@ -22151,63 +22083,6 @@ html.overflow-y-hidden {
|
|
22151
22083
|
}
|
22152
22084
|
.v-divider__wrapper--vertical .v-divider {
|
22153
22085
|
margin: 0 auto;
|
22154
|
-
}.v-footer {
|
22155
|
-
align-items: center;
|
22156
|
-
display: flex;
|
22157
|
-
flex: 1 1 auto;
|
22158
|
-
padding: 8px 16px;
|
22159
|
-
position: relative;
|
22160
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22161
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22162
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22163
|
-
border-style: solid;
|
22164
|
-
border-width: 0;
|
22165
|
-
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));
|
22166
|
-
border-radius: 0;
|
22167
|
-
background: rgb(var(--v-theme-surface));
|
22168
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22169
|
-
}
|
22170
|
-
.v-footer--border {
|
22171
|
-
border-width: thin;
|
22172
|
-
box-shadow: none;
|
22173
|
-
}
|
22174
|
-
.v-footer--absolute {
|
22175
|
-
position: absolute;
|
22176
|
-
}
|
22177
|
-
.v-footer--fixed {
|
22178
|
-
position: fixed;
|
22179
|
-
}
|
22180
|
-
.v-footer--rounded {
|
22181
|
-
border-radius: 4px;
|
22182
|
-
}.v-file-input--hide.v-input .v-field,
|
22183
|
-
.v-file-input--hide.v-input .v-input__control,
|
22184
|
-
.v-file-input--hide.v-input .v-input__details {
|
22185
|
-
display: none;
|
22186
|
-
}
|
22187
|
-
.v-file-input--hide.v-input .v-input__prepend {
|
22188
|
-
grid-area: control;
|
22189
|
-
margin: 0 auto;
|
22190
|
-
}
|
22191
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
22192
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
22193
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
22194
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
22195
|
-
top: 0px;
|
22196
|
-
}
|
22197
|
-
.v-file-input input[type=file] {
|
22198
|
-
height: 100%;
|
22199
|
-
left: 0;
|
22200
|
-
opacity: 0;
|
22201
|
-
position: absolute;
|
22202
|
-
top: 0;
|
22203
|
-
width: 100%;
|
22204
|
-
z-index: 1;
|
22205
|
-
}
|
22206
|
-
.v-file-input .v-input__details {
|
22207
|
-
padding-inline: 16px;
|
22208
|
-
}
|
22209
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
22210
|
-
padding-inline: 0;
|
22211
22086
|
}/* region INPUT */
|
22212
22087
|
.v-field {
|
22213
22088
|
display: grid;
|
@@ -22778,58 +22653,251 @@ textarea.v-field__input::placeholder {
|
|
22778
22653
|
opacity: 0;
|
22779
22654
|
}
|
22780
22655
|
|
22781
|
-
/* endregion */.v-
|
22782
|
-
--v-icon-size-multiplier: 1;
|
22656
|
+
/* endregion */.v-empty-state {
|
22783
22657
|
align-items: center;
|
22784
|
-
display:
|
22785
|
-
|
22786
|
-
height: 1em;
|
22658
|
+
display: flex;
|
22659
|
+
flex-direction: column;
|
22787
22660
|
justify-content: center;
|
22788
|
-
|
22789
|
-
|
22790
|
-
position: relative;
|
22791
|
-
text-indent: 0;
|
22792
|
-
text-align: center;
|
22793
|
-
-webkit-user-select: none;
|
22794
|
-
user-select: none;
|
22795
|
-
vertical-align: middle;
|
22796
|
-
width: 1em;
|
22797
|
-
min-width: 1em;
|
22798
|
-
}
|
22799
|
-
.v-icon--clickable {
|
22800
|
-
cursor: pointer;
|
22801
|
-
}
|
22802
|
-
.v-icon--disabled {
|
22803
|
-
pointer-events: none;
|
22804
|
-
opacity: 0.38;
|
22661
|
+
min-height: 100%;
|
22662
|
+
padding: 16px;
|
22805
22663
|
}
|
22806
|
-
.v-
|
22807
|
-
|
22664
|
+
.v-empty-state--start {
|
22665
|
+
align-items: flex-start;
|
22808
22666
|
}
|
22809
|
-
.v-
|
22810
|
-
|
22667
|
+
.v-empty-state--center {
|
22668
|
+
align-items: center;
|
22811
22669
|
}
|
22812
|
-
.v-
|
22813
|
-
|
22670
|
+
.v-empty-state--end {
|
22671
|
+
align-items: flex-end;
|
22814
22672
|
}
|
22815
|
-
|
22816
|
-
|
22673
|
+
|
22674
|
+
.v-empty-state__media {
|
22675
|
+
text-align: center;
|
22676
|
+
width: 100%;
|
22817
22677
|
}
|
22818
|
-
.v-
|
22819
|
-
|
22678
|
+
.v-empty-state__media .v-icon {
|
22679
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
22820
22680
|
}
|
22821
22681
|
|
22822
|
-
.v-
|
22823
|
-
|
22824
|
-
|
22825
|
-
|
22682
|
+
.v-empty-state__headline {
|
22683
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
22684
|
+
font-size: 3.75rem;
|
22685
|
+
font-weight: 300;
|
22686
|
+
line-height: 1;
|
22687
|
+
text-align: center;
|
22688
|
+
margin-bottom: 8px;
|
22689
|
+
}
|
22690
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
22691
|
+
font-size: 2.125rem;
|
22826
22692
|
}
|
22827
22693
|
|
22828
|
-
.v-
|
22829
|
-
|
22694
|
+
.v-empty-state__title {
|
22695
|
+
font-size: 1.25rem;
|
22696
|
+
font-weight: 500;
|
22697
|
+
line-height: 1.6;
|
22698
|
+
margin-bottom: 4px;
|
22699
|
+
text-align: center;
|
22830
22700
|
}
|
22831
22701
|
|
22832
|
-
.v-
|
22702
|
+
.v-empty-state__text {
|
22703
|
+
font-size: 0.875rem;
|
22704
|
+
font-weight: 400;
|
22705
|
+
line-height: 1.425;
|
22706
|
+
padding: 0 16px;
|
22707
|
+
text-align: center;
|
22708
|
+
}
|
22709
|
+
|
22710
|
+
.v-empty-state__content {
|
22711
|
+
padding: 24px 0;
|
22712
|
+
}
|
22713
|
+
|
22714
|
+
.v-empty-state__actions {
|
22715
|
+
display: flex;
|
22716
|
+
gap: 8px;
|
22717
|
+
padding: 16px;
|
22718
|
+
}
|
22719
|
+
|
22720
|
+
.v-empty-state__action-btn.v-btn {
|
22721
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
22722
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
22723
|
+
}.v-footer {
|
22724
|
+
align-items: center;
|
22725
|
+
display: flex;
|
22726
|
+
flex: 1 1 auto;
|
22727
|
+
padding: 8px 16px;
|
22728
|
+
position: relative;
|
22729
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22730
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22731
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22732
|
+
border-style: solid;
|
22733
|
+
border-width: 0;
|
22734
|
+
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));
|
22735
|
+
border-radius: 0;
|
22736
|
+
background: rgb(var(--v-theme-surface));
|
22737
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22738
|
+
}
|
22739
|
+
.v-footer--border {
|
22740
|
+
border-width: thin;
|
22741
|
+
box-shadow: none;
|
22742
|
+
}
|
22743
|
+
.v-footer--absolute {
|
22744
|
+
position: absolute;
|
22745
|
+
}
|
22746
|
+
.v-footer--fixed {
|
22747
|
+
position: fixed;
|
22748
|
+
}
|
22749
|
+
.v-footer--rounded {
|
22750
|
+
border-radius: 4px;
|
22751
|
+
}.v-fab {
|
22752
|
+
align-items: center;
|
22753
|
+
display: inline-flex;
|
22754
|
+
flex: 1 1 auto;
|
22755
|
+
pointer-events: none;
|
22756
|
+
position: relative;
|
22757
|
+
transition-duration: 0.2s;
|
22758
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
22759
|
+
vertical-align: middle;
|
22760
|
+
}
|
22761
|
+
.v-fab .v-btn {
|
22762
|
+
pointer-events: auto;
|
22763
|
+
}
|
22764
|
+
.v-fab .v-btn--variant-elevated {
|
22765
|
+
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));
|
22766
|
+
}
|
22767
|
+
.v-fab--app, .v-fab--absolute {
|
22768
|
+
display: flex;
|
22769
|
+
}
|
22770
|
+
.v-fab--start, .v-fab--left {
|
22771
|
+
justify-content: flex-start;
|
22772
|
+
}
|
22773
|
+
.v-fab--center {
|
22774
|
+
align-items: center;
|
22775
|
+
justify-content: center;
|
22776
|
+
}
|
22777
|
+
.v-fab--end, .v-fab--right {
|
22778
|
+
justify-content: flex-end;
|
22779
|
+
}
|
22780
|
+
.v-fab--bottom {
|
22781
|
+
align-items: flex-end;
|
22782
|
+
}
|
22783
|
+
.v-fab--top {
|
22784
|
+
align-items: flex-start;
|
22785
|
+
}
|
22786
|
+
.v-fab--extended .v-btn {
|
22787
|
+
border-radius: 9999px !important;
|
22788
|
+
}
|
22789
|
+
|
22790
|
+
.v-fab__container {
|
22791
|
+
align-self: center;
|
22792
|
+
display: inline-flex;
|
22793
|
+
position: absolute;
|
22794
|
+
vertical-align: middle;
|
22795
|
+
}
|
22796
|
+
.v-fab--app .v-fab__container {
|
22797
|
+
margin: 12px;
|
22798
|
+
}
|
22799
|
+
.v-fab--absolute .v-fab__container {
|
22800
|
+
position: absolute;
|
22801
|
+
z-index: 4;
|
22802
|
+
}
|
22803
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
22804
|
+
transform: translateY(-50%);
|
22805
|
+
}
|
22806
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
22807
|
+
transform: translateY(50%);
|
22808
|
+
}
|
22809
|
+
.v-fab--top .v-fab__container {
|
22810
|
+
top: 0;
|
22811
|
+
}
|
22812
|
+
.v-fab--bottom .v-fab__container {
|
22813
|
+
bottom: 0;
|
22814
|
+
}
|
22815
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
22816
|
+
left: 0;
|
22817
|
+
}
|
22818
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
22819
|
+
right: 0;
|
22820
|
+
}.v-file-input--hide.v-input .v-field,
|
22821
|
+
.v-file-input--hide.v-input .v-input__control,
|
22822
|
+
.v-file-input--hide.v-input .v-input__details {
|
22823
|
+
display: none;
|
22824
|
+
}
|
22825
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
22826
|
+
grid-area: control;
|
22827
|
+
margin: 0 auto;
|
22828
|
+
}
|
22829
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
22830
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
22831
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
22832
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
22833
|
+
top: 0px;
|
22834
|
+
}
|
22835
|
+
.v-file-input input[type=file] {
|
22836
|
+
height: 100%;
|
22837
|
+
left: 0;
|
22838
|
+
opacity: 0;
|
22839
|
+
position: absolute;
|
22840
|
+
top: 0;
|
22841
|
+
width: 100%;
|
22842
|
+
z-index: 1;
|
22843
|
+
}
|
22844
|
+
.v-file-input .v-input__details {
|
22845
|
+
padding-inline: 16px;
|
22846
|
+
}
|
22847
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
22848
|
+
padding-inline: 0;
|
22849
|
+
}.v-icon {
|
22850
|
+
--v-icon-size-multiplier: 1;
|
22851
|
+
align-items: center;
|
22852
|
+
display: inline-flex;
|
22853
|
+
font-feature-settings: "liga";
|
22854
|
+
height: 1em;
|
22855
|
+
justify-content: center;
|
22856
|
+
letter-spacing: normal;
|
22857
|
+
line-height: 1;
|
22858
|
+
position: relative;
|
22859
|
+
text-indent: 0;
|
22860
|
+
text-align: center;
|
22861
|
+
-webkit-user-select: none;
|
22862
|
+
user-select: none;
|
22863
|
+
vertical-align: middle;
|
22864
|
+
width: 1em;
|
22865
|
+
min-width: 1em;
|
22866
|
+
}
|
22867
|
+
.v-icon--clickable {
|
22868
|
+
cursor: pointer;
|
22869
|
+
}
|
22870
|
+
.v-icon--disabled {
|
22871
|
+
pointer-events: none;
|
22872
|
+
opacity: 0.38;
|
22873
|
+
}
|
22874
|
+
.v-icon--size-x-small {
|
22875
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22876
|
+
}
|
22877
|
+
.v-icon--size-small {
|
22878
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22879
|
+
}
|
22880
|
+
.v-icon--size-default {
|
22881
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22882
|
+
}
|
22883
|
+
.v-icon--size-large {
|
22884
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22885
|
+
}
|
22886
|
+
.v-icon--size-x-large {
|
22887
|
+
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22888
|
+
}
|
22889
|
+
|
22890
|
+
.v-icon__svg {
|
22891
|
+
fill: currentColor;
|
22892
|
+
width: 100%;
|
22893
|
+
height: 100%;
|
22894
|
+
}
|
22895
|
+
|
22896
|
+
.v-icon--start {
|
22897
|
+
margin-inline-end: 8px;
|
22898
|
+
}
|
22899
|
+
|
22900
|
+
.v-icon--end {
|
22833
22901
|
margin-inline-start: 8px;
|
22834
22902
|
}.v-infinite-scroll--horizontal {
|
22835
22903
|
display: flex;
|
@@ -22998,6 +23066,13 @@ textarea.v-field__input::placeholder {
|
|
22998
23066
|
|
22999
23067
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
23000
23068
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
23069
|
+
}.v-layout-item {
|
23070
|
+
position: absolute;
|
23071
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23072
|
+
}
|
23073
|
+
|
23074
|
+
.v-layout-item--absolute {
|
23075
|
+
position: absolute;
|
23001
23076
|
}.v-img {
|
23002
23077
|
--v-theme-overlay-multiplier: 3;
|
23003
23078
|
z-index: 0;
|
@@ -23034,11 +23109,14 @@ textarea.v-field__input::placeholder {
|
|
23034
23109
|
|
23035
23110
|
.v-img__gradient {
|
23036
23111
|
background-repeat: no-repeat;
|
23037
|
-
}.v-
|
23038
|
-
|
23039
|
-
|
23040
|
-
|
23041
|
-
|
23112
|
+
}.v-layout {
|
23113
|
+
--v-scrollbar-offset: 0px;
|
23114
|
+
display: flex;
|
23115
|
+
flex: 1 1 auto;
|
23116
|
+
}
|
23117
|
+
.v-layout--full-height {
|
23118
|
+
--v-scrollbar-offset: inherit;
|
23119
|
+
height: 100%;
|
23042
23120
|
}.v-label {
|
23043
23121
|
align-items: center;
|
23044
23122
|
color: inherit;
|
@@ -23054,21 +23132,13 @@ textarea.v-field__input::placeholder {
|
|
23054
23132
|
|
23055
23133
|
.v-label--clickable {
|
23056
23134
|
cursor: pointer;
|
23057
|
-
}.v-
|
23058
|
-
|
23059
|
-
|
23060
|
-
|
23061
|
-
}
|
23062
|
-
.v-layout--full-height {
|
23063
|
-
--v-scrollbar-offset: inherit;
|
23064
|
-
height: 100%;
|
23065
|
-
}.v-layout-item {
|
23066
|
-
position: absolute;
|
23135
|
+
}.v-item-group {
|
23136
|
+
flex: 0 1 auto;
|
23137
|
+
max-width: 100%;
|
23138
|
+
position: relative;
|
23067
23139
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23068
|
-
}
|
23069
|
-
|
23070
|
-
.v-layout-item--absolute {
|
23071
|
-
position: absolute;
|
23140
|
+
}.v-locale-provider {
|
23141
|
+
display: contents;
|
23072
23142
|
}.v-list {
|
23073
23143
|
overflow: auto;
|
23074
23144
|
padding: 8px 0;
|
@@ -23654,8 +23724,6 @@ textarea.v-field__input::placeholder {
|
|
23654
23724
|
--v-layout-right: 0px;
|
23655
23725
|
--v-layout-top: 0px;
|
23656
23726
|
--v-layout-bottom: 0px;
|
23657
|
-
}.v-locale-provider {
|
23658
|
-
display: contents;
|
23659
23727
|
}.v-navigation-drawer {
|
23660
23728
|
-webkit-overflow-scrolling: touch;
|
23661
23729
|
background: rgb(var(--v-theme-surface));
|
@@ -23758,6 +23826,19 @@ textarea.v-field__input::placeholder {
|
|
23758
23826
|
.v-navigation-drawer__append {
|
23759
23827
|
flex: none;
|
23760
23828
|
overflow: hidden;
|
23829
|
+
}.v-menu > .v-overlay__content {
|
23830
|
+
display: flex;
|
23831
|
+
flex-direction: column;
|
23832
|
+
border-radius: 4px;
|
23833
|
+
}
|
23834
|
+
.v-menu > .v-overlay__content > .v-card,
|
23835
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
23836
|
+
.v-menu > .v-overlay__content > .v-list {
|
23837
|
+
background: rgb(var(--v-theme-surface));
|
23838
|
+
border-radius: inherit;
|
23839
|
+
overflow: auto;
|
23840
|
+
height: 100%;
|
23841
|
+
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));
|
23761
23842
|
}.v-messages {
|
23762
23843
|
flex: 1 1 auto;
|
23763
23844
|
font-size: 12px;
|
@@ -23774,19 +23855,178 @@ textarea.v-field__input::placeholder {
|
|
23774
23855
|
-webkit-hyphens: auto;
|
23775
23856
|
hyphens: auto;
|
23776
23857
|
transition-duration: 150ms;
|
23777
|
-
}.v-
|
23778
|
-
display: flex;
|
23779
|
-
flex-direction: column;
|
23858
|
+
}.v-otp-input {
|
23780
23859
|
border-radius: 4px;
|
23860
|
+
align-items: center;
|
23861
|
+
display: flex;
|
23862
|
+
justify-content: center;
|
23863
|
+
padding: 0.5rem 0;
|
23864
|
+
position: relative;
|
23781
23865
|
}
|
23782
|
-
.v-
|
23783
|
-
|
23784
|
-
|
23785
|
-
|
23866
|
+
.v-otp-input .v-field {
|
23867
|
+
height: 100%;
|
23868
|
+
}
|
23869
|
+
|
23870
|
+
.v-otp-input__divider {
|
23871
|
+
margin: 0 8px;
|
23872
|
+
}
|
23873
|
+
|
23874
|
+
.v-otp-input__content {
|
23875
|
+
align-items: center;
|
23876
|
+
display: flex;
|
23877
|
+
gap: 0.5rem;
|
23878
|
+
height: 64px;
|
23879
|
+
padding: 0.5rem;
|
23880
|
+
justify-content: center;
|
23881
|
+
max-width: 320px;
|
23882
|
+
position: relative;
|
23786
23883
|
border-radius: inherit;
|
23787
|
-
|
23884
|
+
}
|
23885
|
+
.v-otp-input--divided .v-otp-input__content {
|
23886
|
+
max-width: 360px;
|
23887
|
+
}
|
23888
|
+
|
23889
|
+
.v-otp-input__field {
|
23890
|
+
color: inherit;
|
23891
|
+
font-size: 1.25rem;
|
23788
23892
|
height: 100%;
|
23789
|
-
|
23893
|
+
outline: none;
|
23894
|
+
text-align: center;
|
23895
|
+
width: 100%;
|
23896
|
+
}
|
23897
|
+
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
23898
|
+
-webkit-appearance: none;
|
23899
|
+
margin: 0;
|
23900
|
+
}
|
23901
|
+
.v-otp-input__field[type=number] {
|
23902
|
+
-moz-appearance: textfield;
|
23903
|
+
}
|
23904
|
+
|
23905
|
+
.v-otp-input__loader {
|
23906
|
+
align-items: center;
|
23907
|
+
display: flex;
|
23908
|
+
height: 100%;
|
23909
|
+
justify-content: center;
|
23910
|
+
width: 100%;
|
23911
|
+
}
|
23912
|
+
.v-otp-input__loader .v-progress-linear {
|
23913
|
+
position: absolute;
|
23914
|
+
}.v-parallax {
|
23915
|
+
position: relative;
|
23916
|
+
overflow: hidden;
|
23917
|
+
}
|
23918
|
+
.v-parallax--active > .v-img__img {
|
23919
|
+
will-change: transform;
|
23920
|
+
}.v-pagination__list {
|
23921
|
+
display: inline-flex;
|
23922
|
+
list-style-type: none;
|
23923
|
+
justify-content: center;
|
23924
|
+
width: 100%;
|
23925
|
+
}
|
23926
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23927
|
+
margin: 0.3rem;
|
23928
|
+
}.v-progress-circular {
|
23929
|
+
align-items: center;
|
23930
|
+
display: inline-flex;
|
23931
|
+
justify-content: center;
|
23932
|
+
position: relative;
|
23933
|
+
vertical-align: middle;
|
23934
|
+
}
|
23935
|
+
.v-progress-circular > svg {
|
23936
|
+
width: 100%;
|
23937
|
+
height: 100%;
|
23938
|
+
margin: auto;
|
23939
|
+
position: absolute;
|
23940
|
+
top: 0;
|
23941
|
+
bottom: 0;
|
23942
|
+
left: 0;
|
23943
|
+
right: 0;
|
23944
|
+
z-index: 0;
|
23945
|
+
}
|
23946
|
+
|
23947
|
+
.v-progress-circular__content {
|
23948
|
+
align-items: center;
|
23949
|
+
display: flex;
|
23950
|
+
justify-content: center;
|
23951
|
+
}
|
23952
|
+
|
23953
|
+
.v-progress-circular__underlay {
|
23954
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23955
|
+
stroke: currentColor;
|
23956
|
+
z-index: 1;
|
23957
|
+
}
|
23958
|
+
|
23959
|
+
.v-progress-circular__overlay {
|
23960
|
+
stroke: currentColor;
|
23961
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23962
|
+
z-index: 2;
|
23963
|
+
}
|
23964
|
+
|
23965
|
+
.v-progress-circular--size-x-small {
|
23966
|
+
height: 16px;
|
23967
|
+
width: 16px;
|
23968
|
+
}
|
23969
|
+
.v-progress-circular--size-small {
|
23970
|
+
height: 24px;
|
23971
|
+
width: 24px;
|
23972
|
+
}
|
23973
|
+
.v-progress-circular--size-default {
|
23974
|
+
height: 32px;
|
23975
|
+
width: 32px;
|
23976
|
+
}
|
23977
|
+
.v-progress-circular--size-large {
|
23978
|
+
height: 48px;
|
23979
|
+
width: 48px;
|
23980
|
+
}
|
23981
|
+
.v-progress-circular--size-x-large {
|
23982
|
+
height: 64px;
|
23983
|
+
width: 64px;
|
23984
|
+
}
|
23985
|
+
|
23986
|
+
.v-progress-circular--indeterminate > svg {
|
23987
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
23988
|
+
transform-origin: center center;
|
23989
|
+
transition: all 0.2s ease-in-out;
|
23990
|
+
}
|
23991
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23992
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23993
|
+
stroke-dasharray: 25, 200;
|
23994
|
+
stroke-dashoffset: 0;
|
23995
|
+
stroke-linecap: round;
|
23996
|
+
transform-origin: center center;
|
23997
|
+
transform: rotate(-90deg);
|
23998
|
+
}
|
23999
|
+
|
24000
|
+
.v-progress-circular--disable-shrink > svg {
|
24001
|
+
animation-duration: 0.7s;
|
24002
|
+
}
|
24003
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
24004
|
+
animation: none;
|
24005
|
+
}
|
24006
|
+
|
24007
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
24008
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
24009
|
+
animation-play-state: paused !important;
|
24010
|
+
}
|
24011
|
+
|
24012
|
+
@keyframes progress-circular-dash {
|
24013
|
+
0% {
|
24014
|
+
stroke-dasharray: 1, 200;
|
24015
|
+
stroke-dashoffset: 0px;
|
24016
|
+
}
|
24017
|
+
50% {
|
24018
|
+
stroke-dasharray: 100, 200;
|
24019
|
+
stroke-dashoffset: -15px;
|
24020
|
+
}
|
24021
|
+
100% {
|
24022
|
+
stroke-dasharray: 100, 200;
|
24023
|
+
stroke-dashoffset: -124px;
|
24024
|
+
}
|
24025
|
+
}
|
24026
|
+
@keyframes progress-circular-rotate {
|
24027
|
+
100% {
|
24028
|
+
transform: rotate(270deg);
|
24029
|
+
}
|
23790
24030
|
}.v-overlay-container {
|
23791
24031
|
contain: layout;
|
23792
24032
|
left: 0;
|
@@ -23850,76 +24090,18 @@ html.v-overlay-scroll-blocked {
|
|
23850
24090
|
|
23851
24091
|
.v-overlay--scroll-blocked {
|
23852
24092
|
padding-inline-end: var(--v-scrollbar-offset);
|
23853
|
-
}.v-
|
23854
|
-
|
23855
|
-
align-items: center;
|
23856
|
-
display: flex;
|
23857
|
-
justify-content: center;
|
23858
|
-
padding: 0.5rem 0;
|
23859
|
-
position: relative;
|
23860
|
-
}
|
23861
|
-
.v-otp-input .v-field {
|
23862
|
-
height: 100%;
|
23863
|
-
}
|
23864
|
-
|
23865
|
-
.v-otp-input__divider {
|
23866
|
-
margin: 0 8px;
|
23867
|
-
}
|
23868
|
-
|
23869
|
-
.v-otp-input__content {
|
23870
|
-
align-items: center;
|
23871
|
-
display: flex;
|
23872
|
-
gap: 0.5rem;
|
23873
|
-
height: 64px;
|
23874
|
-
padding: 0.5rem;
|
23875
|
-
justify-content: center;
|
23876
|
-
max-width: 320px;
|
23877
|
-
position: relative;
|
23878
|
-
border-radius: inherit;
|
23879
|
-
}
|
23880
|
-
.v-otp-input--divided .v-otp-input__content {
|
23881
|
-
max-width: 360px;
|
23882
|
-
}
|
23883
|
-
|
23884
|
-
.v-otp-input__field {
|
23885
|
-
color: inherit;
|
23886
|
-
font-size: 1.25rem;
|
23887
|
-
height: 100%;
|
23888
|
-
outline: none;
|
23889
|
-
text-align: center;
|
23890
|
-
width: 100%;
|
23891
|
-
}
|
23892
|
-
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
23893
|
-
-webkit-appearance: none;
|
23894
|
-
margin: 0;
|
23895
|
-
}
|
23896
|
-
.v-otp-input__field[type=number] {
|
23897
|
-
-moz-appearance: textfield;
|
23898
|
-
}
|
23899
|
-
|
23900
|
-
.v-otp-input__loader {
|
23901
|
-
align-items: center;
|
23902
|
-
display: flex;
|
23903
|
-
height: 100%;
|
23904
|
-
justify-content: center;
|
23905
|
-
width: 100%;
|
24093
|
+
}.v-radio-group > .v-input__control {
|
24094
|
+
flex-direction: column;
|
23906
24095
|
}
|
23907
|
-
.v-
|
23908
|
-
|
23909
|
-
}.v-pagination__list {
|
23910
|
-
display: inline-flex;
|
23911
|
-
list-style-type: none;
|
23912
|
-
justify-content: center;
|
23913
|
-
width: 100%;
|
24096
|
+
.v-radio-group > .v-input__control > .v-label {
|
24097
|
+
margin-inline-start: 16px;
|
23914
24098
|
}
|
23915
|
-
.v-
|
23916
|
-
|
23917
|
-
|
23918
|
-
position: relative;
|
23919
|
-
overflow: hidden;
|
24099
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24100
|
+
padding-inline-start: 6px;
|
24101
|
+
margin-top: 8px;
|
23920
24102
|
}
|
23921
|
-
.v-
|
23922
|
-
|
24103
|
+
.v-radio-group .v-input__details {
|
24104
|
+
padding-inline: 16px;
|
23923
24105
|
}.v-progress-linear {
|
23924
24106
|
background: transparent;
|
23925
24107
|
overflow: hidden;
|
@@ -24131,120 +24313,63 @@ html.v-overlay-scroll-blocked {
|
|
24131
24313
|
0% {
|
24132
24314
|
background-position-x: var(--v-progress-linear-height);
|
24133
24315
|
}
|
24134
|
-
}.v-
|
24135
|
-
|
24136
|
-
|
24137
|
-
justify-content: center;
|
24138
|
-
position: relative;
|
24139
|
-
vertical-align: middle;
|
24140
|
-
}
|
24141
|
-
.v-progress-circular > svg {
|
24316
|
+
}.v-slider .v-slider__container input {
|
24317
|
+
cursor: default;
|
24318
|
+
padding: 0;
|
24142
24319
|
width: 100%;
|
24143
|
-
|
24144
|
-
|
24145
|
-
|
24146
|
-
|
24147
|
-
|
24148
|
-
left: 0;
|
24149
|
-
right: 0;
|
24150
|
-
z-index: 0;
|
24320
|
+
display: none;
|
24321
|
+
}
|
24322
|
+
.v-slider > .v-input__append,
|
24323
|
+
.v-slider > .v-input__prepend {
|
24324
|
+
padding: 0;
|
24151
24325
|
}
|
24152
24326
|
|
24153
|
-
.v-
|
24154
|
-
|
24327
|
+
.v-slider__container {
|
24328
|
+
position: relative;
|
24329
|
+
min-height: inherit;
|
24330
|
+
width: 100%;
|
24331
|
+
height: 100%;
|
24155
24332
|
display: flex;
|
24156
24333
|
justify-content: center;
|
24334
|
+
align-items: center;
|
24335
|
+
cursor: pointer;
|
24157
24336
|
}
|
24158
|
-
|
24159
|
-
|
24160
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24161
|
-
stroke: currentColor;
|
24162
|
-
z-index: 1;
|
24337
|
+
.v-input--disabled .v-slider__container {
|
24338
|
+
opacity: var(--v-disabled-opacity);
|
24163
24339
|
}
|
24164
|
-
|
24165
|
-
|
24166
|
-
stroke: currentColor;
|
24167
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
24168
|
-
z-index: 2;
|
24340
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
24341
|
+
color: rgb(var(--v-theme-error));
|
24169
24342
|
}
|
24170
24343
|
|
24171
|
-
.v-
|
24172
|
-
|
24173
|
-
|
24174
|
-
}
|
24175
|
-
.v-progress-circular--size-small {
|
24176
|
-
height: 24px;
|
24177
|
-
width: 24px;
|
24178
|
-
}
|
24179
|
-
.v-progress-circular--size-default {
|
24180
|
-
height: 32px;
|
24181
|
-
width: 32px;
|
24182
|
-
}
|
24183
|
-
.v-progress-circular--size-large {
|
24184
|
-
height: 48px;
|
24185
|
-
width: 48px;
|
24344
|
+
.v-slider.v-input--horizontal {
|
24345
|
+
align-items: center;
|
24346
|
+
margin-inline: 8px 8px;
|
24186
24347
|
}
|
24187
|
-
.v-
|
24188
|
-
height:
|
24189
|
-
|
24348
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
24349
|
+
min-height: 32px;
|
24350
|
+
display: flex;
|
24351
|
+
align-items: center;
|
24190
24352
|
}
|
24191
24353
|
|
24192
|
-
.v-
|
24193
|
-
|
24194
|
-
|
24195
|
-
|
24354
|
+
.v-slider.v-input--vertical {
|
24355
|
+
justify-content: center;
|
24356
|
+
margin-top: 12px;
|
24357
|
+
margin-bottom: 12px;
|
24196
24358
|
}
|
24197
|
-
.v-
|
24198
|
-
|
24199
|
-
stroke-dasharray: 25, 200;
|
24200
|
-
stroke-dashoffset: 0;
|
24201
|
-
stroke-linecap: round;
|
24202
|
-
transform-origin: center center;
|
24203
|
-
transform: rotate(-90deg);
|
24359
|
+
.v-slider.v-input--vertical > .v-input__control {
|
24360
|
+
min-height: 300px;
|
24204
24361
|
}
|
24205
24362
|
|
24206
|
-
.v-
|
24207
|
-
|
24208
|
-
}
|
24209
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
24210
|
-
animation: none;
|
24363
|
+
.v-slider.v-input--disabled {
|
24364
|
+
pointer-events: none;
|
24211
24365
|
}
|
24212
24366
|
|
24213
|
-
.v-
|
24214
|
-
|
24215
|
-
animation-play-state: paused !important;
|
24367
|
+
.v-slider--has-labels > .v-input__control {
|
24368
|
+
margin-bottom: 4px;
|
24216
24369
|
}
|
24217
24370
|
|
24218
|
-
|
24219
|
-
|
24220
|
-
stroke-dasharray: 1, 200;
|
24221
|
-
stroke-dashoffset: 0px;
|
24222
|
-
}
|
24223
|
-
50% {
|
24224
|
-
stroke-dasharray: 100, 200;
|
24225
|
-
stroke-dashoffset: -15px;
|
24226
|
-
}
|
24227
|
-
100% {
|
24228
|
-
stroke-dasharray: 100, 200;
|
24229
|
-
stroke-dashoffset: -124px;
|
24230
|
-
}
|
24231
|
-
}
|
24232
|
-
@keyframes progress-circular-rotate {
|
24233
|
-
100% {
|
24234
|
-
transform: rotate(270deg);
|
24235
|
-
}
|
24236
|
-
}.v-radio-group > .v-input__control {
|
24237
|
-
flex-direction: column;
|
24238
|
-
}
|
24239
|
-
.v-radio-group > .v-input__control > .v-label {
|
24240
|
-
margin-inline-start: 16px;
|
24241
|
-
}
|
24242
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24243
|
-
padding-inline-start: 6px;
|
24244
|
-
margin-top: 8px;
|
24245
|
-
}
|
24246
|
-
.v-radio-group .v-input__details {
|
24247
|
-
padding-inline: 16px;
|
24371
|
+
.v-slider__label {
|
24372
|
+
margin-inline-end: 12px;
|
24248
24373
|
}.v-rating {
|
24249
24374
|
max-width: 100%;
|
24250
24375
|
display: inline-flex;
|
@@ -24325,6 +24450,54 @@ html.v-overlay-scroll-blocked {
|
|
24325
24450
|
flex: 1 0 0px;
|
24326
24451
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24327
24452
|
pointer-events: none;
|
24453
|
+
}.v-select .v-field .v-text-field__prefix,
|
24454
|
+
.v-select .v-field .v-text-field__suffix,
|
24455
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24456
|
+
cursor: pointer;
|
24457
|
+
}
|
24458
|
+
.v-select .v-field .v-field__input > input {
|
24459
|
+
align-self: flex-start;
|
24460
|
+
opacity: 1;
|
24461
|
+
flex: 0 0;
|
24462
|
+
position: absolute;
|
24463
|
+
width: 100%;
|
24464
|
+
transition: none;
|
24465
|
+
pointer-events: none;
|
24466
|
+
caret-color: transparent;
|
24467
|
+
}
|
24468
|
+
.v-select .v-field--dirty .v-select__selection {
|
24469
|
+
margin-inline-end: 2px;
|
24470
|
+
}
|
24471
|
+
.v-select .v-select__selection-text {
|
24472
|
+
overflow: hidden;
|
24473
|
+
text-overflow: ellipsis;
|
24474
|
+
white-space: nowrap;
|
24475
|
+
}
|
24476
|
+
.v-select__content {
|
24477
|
+
overflow: hidden;
|
24478
|
+
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));
|
24479
|
+
border-radius: 4px;
|
24480
|
+
}
|
24481
|
+
.v-select__selection {
|
24482
|
+
display: inline-flex;
|
24483
|
+
align-items: center;
|
24484
|
+
letter-spacing: inherit;
|
24485
|
+
line-height: inherit;
|
24486
|
+
max-width: 100%;
|
24487
|
+
}
|
24488
|
+
.v-select .v-select__selection:first-child {
|
24489
|
+
margin-inline-start: 0;
|
24490
|
+
}
|
24491
|
+
.v-select--selected .v-field .v-field__input > input {
|
24492
|
+
opacity: 0;
|
24493
|
+
}
|
24494
|
+
.v-select__menu-icon {
|
24495
|
+
margin-inline-start: 4px;
|
24496
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24497
|
+
}
|
24498
|
+
.v-select--active-menu .v-select__menu-icon {
|
24499
|
+
opacity: var(--v-high-emphasis-opacity);
|
24500
|
+
transform: rotate(180deg);
|
24328
24501
|
}.v-selection-control {
|
24329
24502
|
align-items: center;
|
24330
24503
|
contain: layout;
|
@@ -24426,165 +24599,60 @@ html.v-overlay-scroll-blocked {
|
|
24426
24599
|
}
|
24427
24600
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24428
24601
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24429
|
-
}.v-
|
24430
|
-
|
24431
|
-
|
24432
|
-
|
24433
|
-
display: none;
|
24602
|
+
}.v-selection-control-group {
|
24603
|
+
grid-area: control;
|
24604
|
+
display: flex;
|
24605
|
+
flex-direction: column;
|
24434
24606
|
}
|
24435
|
-
.v-
|
24436
|
-
|
24437
|
-
|
24607
|
+
.v-selection-control-group--inline {
|
24608
|
+
flex-direction: row;
|
24609
|
+
flex-wrap: wrap;
|
24610
|
+
}.v-sheet {
|
24611
|
+
display: block;
|
24612
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24613
|
+
border-style: solid;
|
24614
|
+
border-width: 0;
|
24615
|
+
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));
|
24616
|
+
border-radius: 0;
|
24617
|
+
background: rgb(var(--v-theme-surface));
|
24618
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24438
24619
|
}
|
24439
|
-
|
24440
|
-
|
24441
|
-
|
24442
|
-
min-height: inherit;
|
24443
|
-
width: 100%;
|
24444
|
-
height: 100%;
|
24445
|
-
display: flex;
|
24446
|
-
justify-content: center;
|
24447
|
-
align-items: center;
|
24448
|
-
cursor: pointer;
|
24620
|
+
.v-sheet--border {
|
24621
|
+
border-width: thin;
|
24622
|
+
box-shadow: none;
|
24449
24623
|
}
|
24450
|
-
.v-
|
24451
|
-
|
24624
|
+
.v-sheet--absolute {
|
24625
|
+
position: absolute;
|
24452
24626
|
}
|
24453
|
-
.v-
|
24454
|
-
|
24627
|
+
.v-sheet--fixed {
|
24628
|
+
position: fixed;
|
24455
24629
|
}
|
24456
|
-
|
24457
|
-
|
24458
|
-
align-items: center;
|
24459
|
-
margin-inline: 8px 8px;
|
24630
|
+
.v-sheet--relative {
|
24631
|
+
position: relative;
|
24460
24632
|
}
|
24461
|
-
.v-
|
24462
|
-
|
24633
|
+
.v-sheet--sticky {
|
24634
|
+
position: sticky;
|
24635
|
+
}
|
24636
|
+
.v-sheet--rounded {
|
24637
|
+
border-radius: 4px;
|
24638
|
+
}.v-slide-group {
|
24463
24639
|
display: flex;
|
24464
|
-
|
24640
|
+
overflow: hidden;
|
24465
24641
|
}
|
24466
24642
|
|
24467
|
-
.v-
|
24643
|
+
.v-slide-group__next,
|
24644
|
+
.v-slide-group__prev {
|
24645
|
+
align-items: center;
|
24646
|
+
display: flex;
|
24647
|
+
flex: 0 1 52px;
|
24468
24648
|
justify-content: center;
|
24469
|
-
|
24470
|
-
|
24471
|
-
}
|
24472
|
-
.v-slider.v-input--vertical > .v-input__control {
|
24473
|
-
min-height: 300px;
|
24649
|
+
min-width: 52px;
|
24650
|
+
cursor: pointer;
|
24474
24651
|
}
|
24475
|
-
|
24476
|
-
.v-
|
24652
|
+
.v-slide-group__next--disabled,
|
24653
|
+
.v-slide-group__prev--disabled {
|
24477
24654
|
pointer-events: none;
|
24478
|
-
|
24479
|
-
|
24480
|
-
.v-slider--has-labels > .v-input__control {
|
24481
|
-
margin-bottom: 4px;
|
24482
|
-
}
|
24483
|
-
|
24484
|
-
.v-slider__label {
|
24485
|
-
margin-inline-end: 12px;
|
24486
|
-
}.v-selection-control-group {
|
24487
|
-
grid-area: control;
|
24488
|
-
display: flex;
|
24489
|
-
flex-direction: column;
|
24490
|
-
}
|
24491
|
-
.v-selection-control-group--inline {
|
24492
|
-
flex-direction: row;
|
24493
|
-
flex-wrap: wrap;
|
24494
|
-
}.v-select .v-field .v-text-field__prefix,
|
24495
|
-
.v-select .v-field .v-text-field__suffix,
|
24496
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24497
|
-
cursor: pointer;
|
24498
|
-
}
|
24499
|
-
.v-select .v-field .v-field__input > input {
|
24500
|
-
align-self: flex-start;
|
24501
|
-
opacity: 1;
|
24502
|
-
flex: 0 0;
|
24503
|
-
position: absolute;
|
24504
|
-
width: 100%;
|
24505
|
-
transition: none;
|
24506
|
-
pointer-events: none;
|
24507
|
-
caret-color: transparent;
|
24508
|
-
}
|
24509
|
-
.v-select .v-field--dirty .v-select__selection {
|
24510
|
-
margin-inline-end: 2px;
|
24511
|
-
}
|
24512
|
-
.v-select .v-select__selection-text {
|
24513
|
-
overflow: hidden;
|
24514
|
-
text-overflow: ellipsis;
|
24515
|
-
white-space: nowrap;
|
24516
|
-
}
|
24517
|
-
.v-select__content {
|
24518
|
-
overflow: hidden;
|
24519
|
-
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));
|
24520
|
-
border-radius: 4px;
|
24521
|
-
}
|
24522
|
-
.v-select__selection {
|
24523
|
-
display: inline-flex;
|
24524
|
-
align-items: center;
|
24525
|
-
letter-spacing: inherit;
|
24526
|
-
line-height: inherit;
|
24527
|
-
max-width: 100%;
|
24528
|
-
}
|
24529
|
-
.v-select .v-select__selection:first-child {
|
24530
|
-
margin-inline-start: 0;
|
24531
|
-
}
|
24532
|
-
.v-select--selected .v-field .v-field__input > input {
|
24533
|
-
opacity: 0;
|
24534
|
-
}
|
24535
|
-
.v-select__menu-icon {
|
24536
|
-
margin-inline-start: 4px;
|
24537
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24538
|
-
}
|
24539
|
-
.v-select--active-menu .v-select__menu-icon {
|
24540
|
-
opacity: var(--v-high-emphasis-opacity);
|
24541
|
-
transform: rotate(180deg);
|
24542
|
-
}.v-sheet {
|
24543
|
-
display: block;
|
24544
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24545
|
-
border-style: solid;
|
24546
|
-
border-width: 0;
|
24547
|
-
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));
|
24548
|
-
border-radius: 0;
|
24549
|
-
background: rgb(var(--v-theme-surface));
|
24550
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24551
|
-
}
|
24552
|
-
.v-sheet--border {
|
24553
|
-
border-width: thin;
|
24554
|
-
box-shadow: none;
|
24555
|
-
}
|
24556
|
-
.v-sheet--absolute {
|
24557
|
-
position: absolute;
|
24558
|
-
}
|
24559
|
-
.v-sheet--fixed {
|
24560
|
-
position: fixed;
|
24561
|
-
}
|
24562
|
-
.v-sheet--relative {
|
24563
|
-
position: relative;
|
24564
|
-
}
|
24565
|
-
.v-sheet--sticky {
|
24566
|
-
position: sticky;
|
24567
|
-
}
|
24568
|
-
.v-sheet--rounded {
|
24569
|
-
border-radius: 4px;
|
24570
|
-
}.v-slide-group {
|
24571
|
-
display: flex;
|
24572
|
-
overflow: hidden;
|
24573
|
-
}
|
24574
|
-
|
24575
|
-
.v-slide-group__next,
|
24576
|
-
.v-slide-group__prev {
|
24577
|
-
align-items: center;
|
24578
|
-
display: flex;
|
24579
|
-
flex: 0 1 52px;
|
24580
|
-
justify-content: center;
|
24581
|
-
min-width: 52px;
|
24582
|
-
cursor: pointer;
|
24583
|
-
}
|
24584
|
-
.v-slide-group__next--disabled,
|
24585
|
-
.v-slide-group__prev--disabled {
|
24586
|
-
pointer-events: none;
|
24587
|
-
opacity: var(--v-disabled-opacity);
|
24655
|
+
opacity: var(--v-disabled-opacity);
|
24588
24656
|
}
|
24589
24657
|
|
24590
24658
|
.v-slide-group__content {
|
@@ -24845,47 +24913,6 @@ html.v-overlay-scroll-blocked {
|
|
24845
24913
|
100% {
|
24846
24914
|
transform: translateX(100%);
|
24847
24915
|
}
|
24848
|
-
}.v-speed-dial__content {
|
24849
|
-
gap: 8px;
|
24850
|
-
}
|
24851
|
-
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
|
24852
|
-
flex-direction: row;
|
24853
|
-
}
|
24854
|
-
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
|
24855
|
-
flex-direction: row-reverse;
|
24856
|
-
}
|
24857
|
-
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
|
24858
|
-
flex-direction: column-reverse;
|
24859
|
-
}
|
24860
|
-
.v-speed-dial__content > *:nth-child(1) {
|
24861
|
-
transition-delay: 0s;
|
24862
|
-
}
|
24863
|
-
.v-speed-dial__content > *:nth-child(2) {
|
24864
|
-
transition-delay: 0.05s;
|
24865
|
-
}
|
24866
|
-
.v-speed-dial__content > *:nth-child(3) {
|
24867
|
-
transition-delay: 0.1s;
|
24868
|
-
}
|
24869
|
-
.v-speed-dial__content > *:nth-child(4) {
|
24870
|
-
transition-delay: 0.15s;
|
24871
|
-
}
|
24872
|
-
.v-speed-dial__content > *:nth-child(5) {
|
24873
|
-
transition-delay: 0.2s;
|
24874
|
-
}
|
24875
|
-
.v-speed-dial__content > *:nth-child(6) {
|
24876
|
-
transition-delay: 0.25s;
|
24877
|
-
}
|
24878
|
-
.v-speed-dial__content > *:nth-child(7) {
|
24879
|
-
transition-delay: 0.3s;
|
24880
|
-
}
|
24881
|
-
.v-speed-dial__content > *:nth-child(8) {
|
24882
|
-
transition-delay: 0.35s;
|
24883
|
-
}
|
24884
|
-
.v-speed-dial__content > *:nth-child(9) {
|
24885
|
-
transition-delay: 0.4s;
|
24886
|
-
}
|
24887
|
-
.v-speed-dial__content > *:nth-child(10) {
|
24888
|
-
transition-delay: 0.45s;
|
24889
24916
|
}.v-snackbar {
|
24890
24917
|
justify-content: center;
|
24891
24918
|
z-index: 10000;
|
@@ -25024,188 +25051,54 @@ html.v-overlay-scroll-blocked {
|
|
25024
25051
|
}
|
25025
25052
|
.v-snackbar-transition-leave-to {
|
25026
25053
|
opacity: 0;
|
25027
|
-
}.v-
|
25028
|
-
|
25029
|
-
display: flex;
|
25030
|
-
flex: 1 1 auto;
|
25031
|
-
height: 24px;
|
25032
|
-
justify-content: flex-end;
|
25033
|
-
max-width: 100%;
|
25034
|
-
padding-inline: 8px;
|
25035
|
-
position: relative;
|
25036
|
-
text-align: end;
|
25037
|
-
width: 100%;
|
25038
|
-
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));
|
25039
|
-
background: rgba(var(--v-theme-surface-light));
|
25040
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25041
|
-
font-size: 0.75rem;
|
25042
|
-
font-weight: 400;
|
25043
|
-
letter-spacing: 0.0333333333em;
|
25044
|
-
line-height: 1.667;
|
25045
|
-
text-transform: none;
|
25054
|
+
}.v-speed-dial__content {
|
25055
|
+
gap: 8px;
|
25046
25056
|
}
|
25047
|
-
.v-
|
25048
|
-
|
25057
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
|
25058
|
+
flex-direction: row;
|
25049
25059
|
}
|
25050
|
-
.v-
|
25051
|
-
|
25060
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
|
25061
|
+
flex-direction: row-reverse;
|
25052
25062
|
}
|
25053
|
-
.v-
|
25054
|
-
|
25063
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
|
25064
|
+
flex-direction: column-reverse;
|
25055
25065
|
}
|
25056
|
-
.v-
|
25057
|
-
|
25066
|
+
.v-speed-dial__content > *:nth-child(1) {
|
25067
|
+
transition-delay: 0s;
|
25058
25068
|
}
|
25059
|
-
.v-
|
25060
|
-
|
25069
|
+
.v-speed-dial__content > *:nth-child(2) {
|
25070
|
+
transition-delay: 0.05s;
|
25061
25071
|
}
|
25062
|
-
.v-
|
25063
|
-
|
25064
|
-
}.v-table {
|
25065
|
-
background: rgb(var(--v-theme-surface));
|
25066
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25067
|
-
font-size: 0.875rem;
|
25068
|
-
transition-duration: 0.28s;
|
25069
|
-
transition-property: box-shadow, opacity, background, height;
|
25070
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25072
|
+
.v-speed-dial__content > *:nth-child(3) {
|
25073
|
+
transition-delay: 0.1s;
|
25071
25074
|
}
|
25072
|
-
.v-
|
25073
|
-
|
25075
|
+
.v-speed-dial__content > *:nth-child(4) {
|
25076
|
+
transition-delay: 0.15s;
|
25074
25077
|
}
|
25075
|
-
.v-
|
25076
|
-
|
25078
|
+
.v-speed-dial__content > *:nth-child(5) {
|
25079
|
+
transition-delay: 0.2s;
|
25077
25080
|
}
|
25078
|
-
.v-
|
25079
|
-
|
25080
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25081
|
+
.v-speed-dial__content > *:nth-child(6) {
|
25082
|
+
transition-delay: 0.25s;
|
25081
25083
|
}
|
25082
|
-
.v-
|
25083
|
-
|
25084
|
-
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25084
|
+
.v-speed-dial__content > *:nth-child(7) {
|
25085
|
+
transition-delay: 0.3s;
|
25085
25086
|
}
|
25086
|
-
.v-
|
25087
|
-
|
25087
|
+
.v-speed-dial__content > *:nth-child(8) {
|
25088
|
+
transition-delay: 0.35s;
|
25088
25089
|
}
|
25089
|
-
.v-
|
25090
|
-
|
25091
|
-
position: absolute;
|
25092
|
-
top: 0;
|
25093
|
-
left: 0;
|
25094
|
-
width: 100%;
|
25095
|
-
height: 100%;
|
25096
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25097
|
-
pointer-events: none;
|
25090
|
+
.v-speed-dial__content > *:nth-child(9) {
|
25091
|
+
transition-delay: 0.4s;
|
25098
25092
|
}
|
25099
|
-
.v-
|
25100
|
-
|
25101
|
-
|
25102
|
-
|
25093
|
+
.v-speed-dial__content > *:nth-child(10) {
|
25094
|
+
transition-delay: 0.45s;
|
25095
|
+
}.v-stepper.v-sheet {
|
25096
|
+
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));
|
25097
|
+
border-radius: 4px;
|
25098
|
+
overflow: hidden;
|
25103
25099
|
}
|
25104
|
-
.v-
|
25105
|
-
|
25106
|
-
background: rgb(var(--v-theme-surface));
|
25107
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25108
|
-
}
|
25109
|
-
|
25110
|
-
.v-table {
|
25111
|
-
border-radius: inherit;
|
25112
|
-
line-height: 1.5;
|
25113
|
-
max-width: 100%;
|
25114
|
-
display: flex;
|
25115
|
-
flex-direction: column;
|
25116
|
-
}
|
25117
|
-
.v-table > .v-table__wrapper > table {
|
25118
|
-
width: 100%;
|
25119
|
-
border-spacing: 0;
|
25120
|
-
}
|
25121
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25122
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25123
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25124
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25125
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25126
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25127
|
-
padding: 0 16px;
|
25128
|
-
transition-duration: 0.28s;
|
25129
|
-
transition-property: box-shadow, opacity, background, height;
|
25130
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25131
|
-
}
|
25132
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25133
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25134
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25135
|
-
height: var(--v-table-row-height);
|
25136
|
-
}
|
25137
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25138
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25139
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25140
|
-
height: var(--v-table-header-height);
|
25141
|
-
font-weight: 500;
|
25142
|
-
-webkit-user-select: none;
|
25143
|
-
user-select: none;
|
25144
|
-
text-align: start;
|
25145
|
-
}
|
25146
|
-
.v-table--density-default {
|
25147
|
-
--v-table-header-height: 56px;
|
25148
|
-
--v-table-row-height: 52px;
|
25149
|
-
}
|
25150
|
-
|
25151
|
-
.v-table--density-comfortable {
|
25152
|
-
--v-table-header-height: 48px;
|
25153
|
-
--v-table-row-height: 44px;
|
25154
|
-
}
|
25155
|
-
|
25156
|
-
.v-table--density-compact {
|
25157
|
-
--v-table-header-height: 40px;
|
25158
|
-
--v-table-row-height: 36px;
|
25159
|
-
}
|
25160
|
-
|
25161
|
-
.v-table__wrapper {
|
25162
|
-
border-radius: inherit;
|
25163
|
-
overflow: auto;
|
25164
|
-
flex: 1 1 auto;
|
25165
|
-
}
|
25166
|
-
|
25167
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25168
|
-
border-top-left-radius: 0;
|
25169
|
-
}
|
25170
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25171
|
-
border-top-right-radius: 0;
|
25172
|
-
}
|
25173
|
-
|
25174
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25175
|
-
border-bottom-left-radius: 0;
|
25176
|
-
}
|
25177
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25178
|
-
border-bottom-right-radius: 0;
|
25179
|
-
}
|
25180
|
-
|
25181
|
-
.v-table--fixed-height > .v-table__wrapper {
|
25182
|
-
overflow-y: auto;
|
25183
|
-
}
|
25184
|
-
|
25185
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25186
|
-
position: sticky;
|
25187
|
-
top: 0;
|
25188
|
-
z-index: 2;
|
25189
|
-
}
|
25190
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25191
|
-
border-bottom: 0px !important;
|
25192
|
-
}
|
25193
|
-
|
25194
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25195
|
-
position: sticky;
|
25196
|
-
bottom: 0;
|
25197
|
-
z-index: 1;
|
25198
|
-
}
|
25199
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25200
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25201
|
-
border-top: 0px !important;
|
25202
|
-
}.v-stepper.v-sheet {
|
25203
|
-
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));
|
25204
|
-
border-radius: 4px;
|
25205
|
-
overflow: hidden;
|
25206
|
-
}
|
25207
|
-
.v-stepper.v-sheet.v-stepper--flat {
|
25208
|
-
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));
|
25100
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
25101
|
+
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));
|
25209
25102
|
}
|
25210
25103
|
|
25211
25104
|
.v-stepper-header {
|
@@ -25362,6 +25255,276 @@ html.v-overlay-scroll-blocked {
|
|
25362
25255
|
width: 100%;
|
25363
25256
|
height: 100%;
|
25364
25257
|
pointer-events: none;
|
25258
|
+
}.v-system-bar {
|
25259
|
+
align-items: center;
|
25260
|
+
display: flex;
|
25261
|
+
flex: 1 1 auto;
|
25262
|
+
height: 24px;
|
25263
|
+
justify-content: flex-end;
|
25264
|
+
max-width: 100%;
|
25265
|
+
padding-inline: 8px;
|
25266
|
+
position: relative;
|
25267
|
+
text-align: end;
|
25268
|
+
width: 100%;
|
25269
|
+
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));
|
25270
|
+
background: rgba(var(--v-theme-surface-light));
|
25271
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25272
|
+
font-size: 0.75rem;
|
25273
|
+
font-weight: 400;
|
25274
|
+
letter-spacing: 0.0333333333em;
|
25275
|
+
line-height: 1.667;
|
25276
|
+
text-transform: none;
|
25277
|
+
}
|
25278
|
+
.v-system-bar .v-icon {
|
25279
|
+
opacity: var(--v-medium-emphasis-opacity);
|
25280
|
+
}
|
25281
|
+
.v-system-bar--absolute {
|
25282
|
+
position: absolute;
|
25283
|
+
}
|
25284
|
+
.v-system-bar--fixed {
|
25285
|
+
position: fixed;
|
25286
|
+
}
|
25287
|
+
.v-system-bar--rounded {
|
25288
|
+
border-radius: 0;
|
25289
|
+
}
|
25290
|
+
.v-system-bar--window {
|
25291
|
+
height: 32px;
|
25292
|
+
}
|
25293
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25294
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25295
|
+
}.v-tab.v-tab.v-btn {
|
25296
|
+
height: var(--v-tabs-height);
|
25297
|
+
border-radius: 0;
|
25298
|
+
min-width: 90px;
|
25299
|
+
}
|
25300
|
+
.v-slide-group--horizontal .v-tab {
|
25301
|
+
max-width: 360px;
|
25302
|
+
}
|
25303
|
+
.v-slide-group--vertical .v-tab {
|
25304
|
+
justify-content: start;
|
25305
|
+
}
|
25306
|
+
|
25307
|
+
.v-tab__slider {
|
25308
|
+
position: absolute;
|
25309
|
+
bottom: 0;
|
25310
|
+
left: 0;
|
25311
|
+
height: 2px;
|
25312
|
+
width: 100%;
|
25313
|
+
background: currentColor;
|
25314
|
+
pointer-events: none;
|
25315
|
+
opacity: 0;
|
25316
|
+
}
|
25317
|
+
.v-tab--selected .v-tab__slider {
|
25318
|
+
opacity: 1;
|
25319
|
+
}
|
25320
|
+
.v-slide-group--vertical .v-tab__slider {
|
25321
|
+
top: 0;
|
25322
|
+
height: 100%;
|
25323
|
+
width: 2px;
|
25324
|
+
}.v-tabs {
|
25325
|
+
display: flex;
|
25326
|
+
height: var(--v-tabs-height);
|
25327
|
+
}
|
25328
|
+
.v-tabs--density-default {
|
25329
|
+
--v-tabs-height: 48px;
|
25330
|
+
}
|
25331
|
+
.v-tabs--density-default.v-tabs--stacked {
|
25332
|
+
--v-tabs-height: 72px;
|
25333
|
+
}
|
25334
|
+
|
25335
|
+
.v-tabs--density-comfortable {
|
25336
|
+
--v-tabs-height: 44px;
|
25337
|
+
}
|
25338
|
+
.v-tabs--density-comfortable.v-tabs--stacked {
|
25339
|
+
--v-tabs-height: 68px;
|
25340
|
+
}
|
25341
|
+
|
25342
|
+
.v-tabs--density-compact {
|
25343
|
+
--v-tabs-height: 36px;
|
25344
|
+
}
|
25345
|
+
.v-tabs--density-compact.v-tabs--stacked {
|
25346
|
+
--v-tabs-height: 60px;
|
25347
|
+
}
|
25348
|
+
|
25349
|
+
.v-tabs.v-slide-group--vertical {
|
25350
|
+
height: auto;
|
25351
|
+
flex: none;
|
25352
|
+
--v-tabs-height: 48px;
|
25353
|
+
}
|
25354
|
+
|
25355
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25356
|
+
margin-inline-start: 42px;
|
25357
|
+
}
|
25358
|
+
|
25359
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
25360
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
25361
|
+
margin-inline-end: auto;
|
25362
|
+
}
|
25363
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
25364
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
25365
|
+
margin-inline-start: auto;
|
25366
|
+
}
|
25367
|
+
|
25368
|
+
.v-tabs--grow {
|
25369
|
+
flex-grow: 1;
|
25370
|
+
}
|
25371
|
+
.v-tabs--grow .v-tab {
|
25372
|
+
flex: 1 0 auto;
|
25373
|
+
max-width: none;
|
25374
|
+
}
|
25375
|
+
|
25376
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
25377
|
+
margin-inline-start: auto;
|
25378
|
+
}
|
25379
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
25380
|
+
margin-inline-end: 0;
|
25381
|
+
}
|
25382
|
+
|
25383
|
+
@media (max-width: 1279.98px) {
|
25384
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25385
|
+
margin-inline-start: 52px;
|
25386
|
+
}
|
25387
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25388
|
+
margin-inline-end: 52px;
|
25389
|
+
}
|
25390
|
+
}.v-table {
|
25391
|
+
background: rgb(var(--v-theme-surface));
|
25392
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25393
|
+
font-size: 0.875rem;
|
25394
|
+
transition-duration: 0.28s;
|
25395
|
+
transition-property: box-shadow, opacity, background, height;
|
25396
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25397
|
+
}
|
25398
|
+
.v-table .v-table-divider {
|
25399
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25400
|
+
}
|
25401
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
25402
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25403
|
+
}
|
25404
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25405
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25406
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25407
|
+
}
|
25408
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25409
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25410
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25411
|
+
}
|
25412
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25413
|
+
position: relative;
|
25414
|
+
}
|
25415
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25416
|
+
content: "";
|
25417
|
+
position: absolute;
|
25418
|
+
top: 0;
|
25419
|
+
left: 0;
|
25420
|
+
width: 100%;
|
25421
|
+
height: 100%;
|
25422
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25423
|
+
pointer-events: none;
|
25424
|
+
}
|
25425
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25426
|
+
background: rgb(var(--v-theme-surface));
|
25427
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25428
|
+
z-index: 1;
|
25429
|
+
}
|
25430
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25431
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25432
|
+
background: rgb(var(--v-theme-surface));
|
25433
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25434
|
+
}
|
25435
|
+
|
25436
|
+
.v-table {
|
25437
|
+
border-radius: inherit;
|
25438
|
+
line-height: 1.5;
|
25439
|
+
max-width: 100%;
|
25440
|
+
display: flex;
|
25441
|
+
flex-direction: column;
|
25442
|
+
}
|
25443
|
+
.v-table > .v-table__wrapper > table {
|
25444
|
+
width: 100%;
|
25445
|
+
border-spacing: 0;
|
25446
|
+
}
|
25447
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25448
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25449
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25450
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25451
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25452
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25453
|
+
padding: 0 16px;
|
25454
|
+
transition-duration: 0.28s;
|
25455
|
+
transition-property: box-shadow, opacity, background, height;
|
25456
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25457
|
+
}
|
25458
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25459
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25460
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25461
|
+
height: var(--v-table-row-height);
|
25462
|
+
}
|
25463
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25464
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25465
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25466
|
+
height: var(--v-table-header-height);
|
25467
|
+
font-weight: 500;
|
25468
|
+
-webkit-user-select: none;
|
25469
|
+
user-select: none;
|
25470
|
+
text-align: start;
|
25471
|
+
}
|
25472
|
+
.v-table--density-default {
|
25473
|
+
--v-table-header-height: 56px;
|
25474
|
+
--v-table-row-height: 52px;
|
25475
|
+
}
|
25476
|
+
|
25477
|
+
.v-table--density-comfortable {
|
25478
|
+
--v-table-header-height: 48px;
|
25479
|
+
--v-table-row-height: 44px;
|
25480
|
+
}
|
25481
|
+
|
25482
|
+
.v-table--density-compact {
|
25483
|
+
--v-table-header-height: 40px;
|
25484
|
+
--v-table-row-height: 36px;
|
25485
|
+
}
|
25486
|
+
|
25487
|
+
.v-table__wrapper {
|
25488
|
+
border-radius: inherit;
|
25489
|
+
overflow: auto;
|
25490
|
+
flex: 1 1 auto;
|
25491
|
+
}
|
25492
|
+
|
25493
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25494
|
+
border-top-left-radius: 0;
|
25495
|
+
}
|
25496
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25497
|
+
border-top-right-radius: 0;
|
25498
|
+
}
|
25499
|
+
|
25500
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25501
|
+
border-bottom-left-radius: 0;
|
25502
|
+
}
|
25503
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25504
|
+
border-bottom-right-radius: 0;
|
25505
|
+
}
|
25506
|
+
|
25507
|
+
.v-table--fixed-height > .v-table__wrapper {
|
25508
|
+
overflow-y: auto;
|
25509
|
+
}
|
25510
|
+
|
25511
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25512
|
+
position: sticky;
|
25513
|
+
top: 0;
|
25514
|
+
z-index: 2;
|
25515
|
+
}
|
25516
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25517
|
+
border-bottom: 0px !important;
|
25518
|
+
}
|
25519
|
+
|
25520
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25521
|
+
position: sticky;
|
25522
|
+
bottom: 0;
|
25523
|
+
z-index: 1;
|
25524
|
+
}
|
25525
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25526
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25527
|
+
border-top: 0px !important;
|
25365
25528
|
}.v-switch .v-label {
|
25366
25529
|
padding-inline-start: 10px;
|
25367
25530
|
}
|
@@ -25437,162 +25600,70 @@ html.v-overlay-scroll-blocked {
|
|
25437
25600
|
}
|
25438
25601
|
.v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
|
25439
25602
|
background: rgb(var(--v-theme-surface-variant));
|
25440
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25441
|
-
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));
|
25442
|
-
}
|
25443
|
-
.v-switch--inset .v-switch__thumb {
|
25444
|
-
height: 24px;
|
25445
|
-
width: 24px;
|
25446
|
-
transform: scale(0.6666666667);
|
25447
|
-
}
|
25448
|
-
.v-switch--inset .v-switch__thumb--filled {
|
25449
|
-
transform: none;
|
25450
|
-
}
|
25451
|
-
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
25452
|
-
transform: none;
|
25453
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
25454
|
-
}
|
25455
|
-
|
25456
|
-
.v-switch.v-input {
|
25457
|
-
flex: 0 1 auto;
|
25458
|
-
}
|
25459
|
-
.v-switch .v-selection-control {
|
25460
|
-
min-height: var(--v-input-control-height);
|
25461
|
-
}
|
25462
|
-
.v-switch .v-selection-control__input {
|
25463
|
-
border-radius: 50%;
|
25464
|
-
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
25465
|
-
position: absolute;
|
25466
|
-
}
|
25467
|
-
.v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
|
25468
|
-
transform: translateX(-10px);
|
25469
|
-
}
|
25470
|
-
|
25471
|
-
.v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
|
25472
|
-
transform: translateX(10px);
|
25473
|
-
}
|
25474
|
-
|
25475
|
-
.v-switch .v-selection-control__input .v-icon {
|
25476
|
-
position: absolute;
|
25477
|
-
}
|
25478
|
-
.v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
|
25479
|
-
transform: translateX(10px);
|
25480
|
-
}
|
25481
|
-
|
25482
|
-
.v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
|
25483
|
-
transform: translateX(-10px);
|
25484
|
-
}
|
25485
|
-
|
25486
|
-
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
25487
|
-
transform: scale(0.8);
|
25488
|
-
}
|
25489
|
-
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
25490
|
-
transform: scale(0.75);
|
25491
|
-
box-shadow: none;
|
25492
|
-
}
|
25493
|
-
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
25494
|
-
width: auto;
|
25495
|
-
}
|
25496
|
-
.v-switch.v-input--vertical .v-label {
|
25497
|
-
min-width: max-content;
|
25498
|
-
}
|
25499
|
-
.v-switch.v-input--vertical .v-selection-control__wrapper {
|
25500
|
-
transform: rotate(-90deg);
|
25501
|
-
}.v-tab.v-tab.v-btn {
|
25502
|
-
height: var(--v-tabs-height);
|
25503
|
-
border-radius: 0;
|
25504
|
-
min-width: 90px;
|
25505
|
-
}
|
25506
|
-
.v-slide-group--horizontal .v-tab {
|
25507
|
-
max-width: 360px;
|
25508
|
-
}
|
25509
|
-
.v-slide-group--vertical .v-tab {
|
25510
|
-
justify-content: start;
|
25511
|
-
}
|
25512
|
-
|
25513
|
-
.v-tab__slider {
|
25514
|
-
position: absolute;
|
25515
|
-
bottom: 0;
|
25516
|
-
left: 0;
|
25517
|
-
height: 2px;
|
25518
|
-
width: 100%;
|
25519
|
-
background: currentColor;
|
25520
|
-
pointer-events: none;
|
25521
|
-
opacity: 0;
|
25522
|
-
}
|
25523
|
-
.v-tab--selected .v-tab__slider {
|
25524
|
-
opacity: 1;
|
25603
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
25604
|
+
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));
|
25525
25605
|
}
|
25526
|
-
.v-
|
25527
|
-
|
25528
|
-
|
25529
|
-
|
25530
|
-
}.v-tabs {
|
25531
|
-
display: flex;
|
25532
|
-
height: var(--v-tabs-height);
|
25606
|
+
.v-switch--inset .v-switch__thumb {
|
25607
|
+
height: 24px;
|
25608
|
+
width: 24px;
|
25609
|
+
transform: scale(0.6666666667);
|
25533
25610
|
}
|
25534
|
-
.v-
|
25535
|
-
|
25611
|
+
.v-switch--inset .v-switch__thumb--filled {
|
25612
|
+
transform: none;
|
25536
25613
|
}
|
25537
|
-
.v-
|
25538
|
-
|
25614
|
+
.v-switch--inset .v-selection-control--dirty .v-switch__thumb {
|
25615
|
+
transform: none;
|
25616
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
25539
25617
|
}
|
25540
25618
|
|
25541
|
-
.v-
|
25542
|
-
|
25619
|
+
.v-switch.v-input {
|
25620
|
+
flex: 0 1 auto;
|
25543
25621
|
}
|
25544
|
-
.v-
|
25545
|
-
--v-
|
25622
|
+
.v-switch .v-selection-control {
|
25623
|
+
min-height: var(--v-input-control-height);
|
25546
25624
|
}
|
25547
|
-
|
25548
|
-
|
25549
|
-
|
25625
|
+
.v-switch .v-selection-control__input {
|
25626
|
+
border-radius: 50%;
|
25627
|
+
transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
|
25628
|
+
position: absolute;
|
25550
25629
|
}
|
25551
|
-
.v-
|
25552
|
-
|
25630
|
+
.v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
|
25631
|
+
transform: translateX(-10px);
|
25553
25632
|
}
|
25554
25633
|
|
25555
|
-
.v-
|
25556
|
-
|
25557
|
-
flex: none;
|
25558
|
-
--v-tabs-height: 48px;
|
25634
|
+
.v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
|
25635
|
+
transform: translateX(10px);
|
25559
25636
|
}
|
25560
25637
|
|
25561
|
-
.v-
|
25562
|
-
|
25638
|
+
.v-switch .v-selection-control__input .v-icon {
|
25639
|
+
position: absolute;
|
25563
25640
|
}
|
25564
|
-
|
25565
|
-
|
25566
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
25567
|
-
margin-inline-end: auto;
|
25641
|
+
.v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
|
25642
|
+
transform: translateX(10px);
|
25568
25643
|
}
|
25569
|
-
|
25570
|
-
.v-
|
25571
|
-
|
25644
|
+
|
25645
|
+
.v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
|
25646
|
+
transform: translateX(-10px);
|
25572
25647
|
}
|
25573
25648
|
|
25574
|
-
.v-
|
25575
|
-
|
25649
|
+
.v-switch.v-switch--indeterminate .v-selection-control__input {
|
25650
|
+
transform: scale(0.8);
|
25576
25651
|
}
|
25577
|
-
.v-
|
25578
|
-
|
25579
|
-
|
25652
|
+
.v-switch.v-switch--indeterminate .v-switch__thumb {
|
25653
|
+
transform: scale(0.75);
|
25654
|
+
box-shadow: none;
|
25580
25655
|
}
|
25581
|
-
|
25582
|
-
|
25583
|
-
margin-inline-start: auto;
|
25656
|
+
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
25657
|
+
width: auto;
|
25584
25658
|
}
|
25585
|
-
.v-
|
25586
|
-
|
25659
|
+
.v-switch.v-input--vertical .v-label {
|
25660
|
+
min-width: max-content;
|
25587
25661
|
}
|
25588
|
-
|
25589
|
-
|
25590
|
-
|
25591
|
-
|
25592
|
-
|
25593
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25594
|
-
margin-inline-end: 52px;
|
25595
|
-
}
|
25662
|
+
.v-switch.v-input--vertical .v-selection-control__wrapper {
|
25663
|
+
transform: rotate(-90deg);
|
25664
|
+
}.v-theme-provider {
|
25665
|
+
background: rgb(var(--v-theme-background));
|
25666
|
+
color: rgb(var(--v-theme-on-background));
|
25596
25667
|
}/* region BLOCK */
|
25597
25668
|
.v-text-field input {
|
25598
25669
|
color: inherit;
|
@@ -25660,32 +25731,7 @@ html.v-overlay-scroll-blocked {
|
|
25660
25731
|
padding-inline-end: var(--v-field-padding-end);
|
25661
25732
|
}
|
25662
25733
|
|
25663
|
-
/* endregion */.v-
|
25664
|
-
background: rgb(var(--v-theme-background));
|
25665
|
-
color: rgb(var(--v-theme-on-background));
|
25666
|
-
}.v-tooltip > .v-overlay__content {
|
25667
|
-
background: rgb(var(--v-theme-surface-variant));
|
25668
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25669
|
-
border-radius: 4px;
|
25670
|
-
font-size: 0.875rem;
|
25671
|
-
line-height: 1.6;
|
25672
|
-
display: inline-block;
|
25673
|
-
padding: 5px 16px;
|
25674
|
-
text-transform: initial;
|
25675
|
-
width: auto;
|
25676
|
-
opacity: 1;
|
25677
|
-
pointer-events: none;
|
25678
|
-
transition-property: opacity, transform;
|
25679
|
-
overflow-wrap: break-word;
|
25680
|
-
}
|
25681
|
-
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
25682
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
25683
|
-
transition-duration: 150ms;
|
25684
|
-
}
|
25685
|
-
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
25686
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
25687
|
-
transition-duration: 75ms;
|
25688
|
-
}.v-textarea .v-field {
|
25734
|
+
/* endregion */.v-textarea .v-field {
|
25689
25735
|
--v-textarea-control-height: var(--v-input-control-height);
|
25690
25736
|
}
|
25691
25737
|
.v-textarea .v-field__field {
|
@@ -26210,15 +26256,28 @@ html.v-overlay-scroll-blocked {
|
|
26210
26256
|
}
|
26211
26257
|
.v-window-y-reverse-transition-leave-to {
|
26212
26258
|
transform: translateY(100%);
|
26213
|
-
}.v-
|
26214
|
-
|
26215
|
-
|
26216
|
-
|
26217
|
-
|
26218
|
-
|
26259
|
+
}.v-tooltip > .v-overlay__content {
|
26260
|
+
background: rgb(var(--v-theme-surface-variant));
|
26261
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26262
|
+
border-radius: 4px;
|
26263
|
+
font-size: 0.875rem;
|
26264
|
+
line-height: 1.6;
|
26265
|
+
display: inline-block;
|
26266
|
+
padding: 5px 16px;
|
26267
|
+
text-transform: initial;
|
26268
|
+
width: auto;
|
26269
|
+
opacity: 1;
|
26270
|
+
pointer-events: none;
|
26271
|
+
transition-property: opacity, transform;
|
26272
|
+
overflow-wrap: break-word;
|
26219
26273
|
}
|
26220
|
-
.v-
|
26221
|
-
|
26274
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
26275
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
26276
|
+
transition-duration: 150ms;
|
26277
|
+
}
|
26278
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26279
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26280
|
+
transition-duration: 75ms;
|
26222
26281
|
}.v-toolbar {
|
26223
26282
|
align-items: flex-start;
|
26224
26283
|
display: flex;
|
@@ -26348,6 +26407,65 @@ html.v-overlay-scroll-blocked {
|
|
26348
26407
|
}
|
26349
26408
|
.v-toolbar-items > .v-btn {
|
26350
26409
|
border-radius: 0;
|
26410
|
+
}.v-virtual-scroll {
|
26411
|
+
display: block;
|
26412
|
+
flex: 1 1 auto;
|
26413
|
+
max-width: 100%;
|
26414
|
+
overflow: auto;
|
26415
|
+
position: relative;
|
26416
|
+
}
|
26417
|
+
.v-virtual-scroll__container {
|
26418
|
+
display: block;
|
26419
|
+
}.v-color-picker-canvas {
|
26420
|
+
display: flex;
|
26421
|
+
position: relative;
|
26422
|
+
overflow: hidden;
|
26423
|
+
contain: content;
|
26424
|
+
touch-action: none;
|
26425
|
+
}
|
26426
|
+
.v-color-picker-canvas__dot {
|
26427
|
+
position: absolute;
|
26428
|
+
top: 0;
|
26429
|
+
left: 0;
|
26430
|
+
width: 15px;
|
26431
|
+
height: 15px;
|
26432
|
+
background: transparent;
|
26433
|
+
border-radius: 50%;
|
26434
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26435
|
+
}
|
26436
|
+
.v-color-picker-canvas__dot--disabled {
|
26437
|
+
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);
|
26438
|
+
}
|
26439
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26440
|
+
will-change: transform;
|
26441
|
+
}.v-color-picker-edit {
|
26442
|
+
display: flex;
|
26443
|
+
margin-top: 24px;
|
26444
|
+
}
|
26445
|
+
|
26446
|
+
.v-color-picker-edit__input {
|
26447
|
+
width: 100%;
|
26448
|
+
display: flex;
|
26449
|
+
flex-wrap: wrap;
|
26450
|
+
justify-content: center;
|
26451
|
+
text-align: center;
|
26452
|
+
}
|
26453
|
+
.v-color-picker-edit__input:not(:last-child) {
|
26454
|
+
margin-inline-end: 8px;
|
26455
|
+
}
|
26456
|
+
.v-color-picker-edit__input input {
|
26457
|
+
border-radius: 4px;
|
26458
|
+
margin-bottom: 8px;
|
26459
|
+
min-width: 0;
|
26460
|
+
outline: none;
|
26461
|
+
text-align: center;
|
26462
|
+
width: 100%;
|
26463
|
+
height: 32px;
|
26464
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26465
|
+
color: rgba(var(--v-theme-on-surface));
|
26466
|
+
}
|
26467
|
+
.v-color-picker-edit__input span {
|
26468
|
+
font-size: 0.75rem;
|
26351
26469
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26352
26470
|
background-color: transparent !important;
|
26353
26471
|
}
|
@@ -26418,56 +26536,6 @@ html.v-overlay-scroll-blocked {
|
|
26418
26536
|
.v-color-picker-preview__eye-dropper {
|
26419
26537
|
position: relative;
|
26420
26538
|
margin-right: 12px;
|
26421
|
-
}.v-color-picker-canvas {
|
26422
|
-
display: flex;
|
26423
|
-
position: relative;
|
26424
|
-
overflow: hidden;
|
26425
|
-
contain: content;
|
26426
|
-
touch-action: none;
|
26427
|
-
}
|
26428
|
-
.v-color-picker-canvas__dot {
|
26429
|
-
position: absolute;
|
26430
|
-
top: 0;
|
26431
|
-
left: 0;
|
26432
|
-
width: 15px;
|
26433
|
-
height: 15px;
|
26434
|
-
background: transparent;
|
26435
|
-
border-radius: 50%;
|
26436
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26437
|
-
}
|
26438
|
-
.v-color-picker-canvas__dot--disabled {
|
26439
|
-
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);
|
26440
|
-
}
|
26441
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26442
|
-
will-change: transform;
|
26443
|
-
}.v-color-picker-edit {
|
26444
|
-
display: flex;
|
26445
|
-
margin-top: 24px;
|
26446
|
-
}
|
26447
|
-
|
26448
|
-
.v-color-picker-edit__input {
|
26449
|
-
width: 100%;
|
26450
|
-
display: flex;
|
26451
|
-
flex-wrap: wrap;
|
26452
|
-
justify-content: center;
|
26453
|
-
text-align: center;
|
26454
|
-
}
|
26455
|
-
.v-color-picker-edit__input:not(:last-child) {
|
26456
|
-
margin-inline-end: 8px;
|
26457
|
-
}
|
26458
|
-
.v-color-picker-edit__input input {
|
26459
|
-
border-radius: 4px;
|
26460
|
-
margin-bottom: 8px;
|
26461
|
-
min-width: 0;
|
26462
|
-
outline: none;
|
26463
|
-
text-align: center;
|
26464
|
-
width: 100%;
|
26465
|
-
height: 32px;
|
26466
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26467
|
-
color: rgba(var(--v-theme-on-surface));
|
26468
|
-
}
|
26469
|
-
.v-color-picker-edit__input span {
|
26470
|
-
font-size: 0.75rem;
|
26471
26539
|
}.v-color-picker-swatches {
|
26472
26540
|
overflow-y: auto;
|
26473
26541
|
}
|