vuetify 3.6.4 → 3.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +292 -4
- package/dist/json/importMap-labs.json +30 -18
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +87 -0
- package/dist/json/web-types.json +1313 -6
- package/dist/vuetify-labs.css +2150 -2035
- package/dist/vuetify-labs.d.ts +1669 -28
- package/dist/vuetify-labs.esm.js +326 -25
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +326 -25
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +812 -765
- package/dist/vuetify.d.ts +153 -75
- package/dist/vuetify.esm.js +66 -25
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +66 -25
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +54 -54
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/index.d.mts +2 -0
- package/lib/components/VDataTable/VDataTable.mjs +6 -2
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +3 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +54 -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/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +2 -0
- package/lib/components/VStepper/VStepper.mjs +17 -8
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.css +47 -0
- package/lib/components/VStepper/VStepperItem.mjs +10 -5
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.sass +18 -0
- 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 +102 -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 +51 -48
- 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 +2 -2
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.6.
|
|
2
|
+
* Vuetify v3.6.5
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17640,6 +17640,38 @@ 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-calendar-day {
|
|
17644
|
+
position: relative;
|
|
17645
|
+
display: flex;
|
|
17646
|
+
flex-direction: column;
|
|
17647
|
+
}
|
|
17648
|
+
|
|
17649
|
+
.v-calendar-weekly .v-calendar__container {
|
|
17650
|
+
display: grid;
|
|
17651
|
+
}
|
|
17652
|
+
.v-calendar-weekly .v-calendar__container.days__7 {
|
|
17653
|
+
grid-template-columns: repeat(7, 1fr);
|
|
17654
|
+
}
|
|
17655
|
+
.v-calendar-weekly .v-calendar__container.days__6 {
|
|
17656
|
+
grid-template-columns: repeat(6, 1fr);
|
|
17657
|
+
}
|
|
17658
|
+
.v-calendar-weekly .v-calendar__container.days__5 {
|
|
17659
|
+
grid-template-columns: repeat(5, 1fr);
|
|
17660
|
+
}
|
|
17661
|
+
.v-calendar-weekly .v-calendar__container.days__4 {
|
|
17662
|
+
grid-template-columns: repeat(4, 1fr);
|
|
17663
|
+
}
|
|
17664
|
+
.v-calendar-weekly .v-calendar__container.days__3 {
|
|
17665
|
+
grid-template-columns: repeat(3, 1fr);
|
|
17666
|
+
}
|
|
17667
|
+
.v-calendar-weekly .v-calendar__container.days__2 {
|
|
17668
|
+
grid-template-columns: repeat(2, 1fr);
|
|
17669
|
+
}
|
|
17670
|
+
.v-calendar-weekly .v-calendar__container.days__1 {
|
|
17671
|
+
grid-template-columns: repeat(1, 1fr);
|
|
17672
|
+
}
|
|
17673
|
+
.v-calendar-weekly .v-calendar__container.days__0 {
|
|
17674
|
+
grid-template-columns: repeat(1, 1fr);
|
|
17643
17675
|
}.v-calendar {
|
|
17644
17676
|
background: rgb(var(--v-theme-background));
|
|
17645
17677
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
@@ -17867,6 +17899,19 @@ html.overflow-y-hidden {
|
|
|
17867
17899
|
}
|
|
17868
17900
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
|
17869
17901
|
border-right: none;
|
|
17902
|
+
}.v-calendar-header {
|
|
17903
|
+
align-items: center;
|
|
17904
|
+
display: flex;
|
|
17905
|
+
min-height: 64px;
|
|
17906
|
+
}
|
|
17907
|
+
|
|
17908
|
+
.v-calendar-header__today {
|
|
17909
|
+
margin-inline-end: 24px;
|
|
17910
|
+
}
|
|
17911
|
+
|
|
17912
|
+
.v-calendar-header__title {
|
|
17913
|
+
font-size: 1.5rem;
|
|
17914
|
+
margin-inline-start: 24px;
|
|
17870
17915
|
}.v-calendar-day__row-with-label {
|
|
17871
17916
|
display: grid;
|
|
17872
17917
|
grid-template-columns: 48px 8px 1fr;
|
|
@@ -17909,56 +17954,74 @@ html.overflow-y-hidden {
|
|
|
17909
17954
|
}
|
|
17910
17955
|
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
|
17911
17956
|
border-bottom: none;
|
|
17912
|
-
}.v-
|
|
17913
|
-
|
|
17914
|
-
|
|
17915
|
-
|
|
17957
|
+
}.v-stepper-vertical-item {
|
|
17958
|
+
position: relative;
|
|
17959
|
+
transition-duration: 0.2s;
|
|
17960
|
+
transition-property: opacity;
|
|
17961
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
17916
17962
|
}
|
|
17917
|
-
|
|
17918
|
-
|
|
17919
|
-
margin-inline-end: 24px;
|
|
17963
|
+
.v-stepper-vertical-item__title {
|
|
17964
|
+
font-size: 1rem;
|
|
17920
17965
|
}
|
|
17921
|
-
|
|
17922
|
-
|
|
17923
|
-
font-size: 1.5rem;
|
|
17924
|
-
margin-inline-start: 24px;
|
|
17925
|
-
}.v-calendar-day {
|
|
17926
|
-
position: relative;
|
|
17927
|
-
display: flex;
|
|
17928
|
-
flex-direction: column;
|
|
17966
|
+
.v-stepper-vertical-item__subtitle {
|
|
17967
|
+
font-size: 0.75rem;
|
|
17929
17968
|
}
|
|
17930
|
-
|
|
17931
|
-
|
|
17932
|
-
display: grid;
|
|
17969
|
+
.v-stepper-vertical-item .v-expansion-panel-text {
|
|
17970
|
+
padding-inline-start: 32px;
|
|
17933
17971
|
}
|
|
17934
|
-
.v-
|
|
17935
|
-
|
|
17972
|
+
.v-stepper-vertical-item:not(:last-child):before {
|
|
17973
|
+
content: "";
|
|
17974
|
+
position: absolute;
|
|
17975
|
+
width: 2px;
|
|
17976
|
+
height: calc(100% - 30px);
|
|
17977
|
+
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
17978
|
+
left: 35px;
|
|
17979
|
+
top: 44px;
|
|
17980
|
+
z-index: 1;
|
|
17981
|
+
transition-duration: 300ms;
|
|
17982
|
+
transition-property: height;
|
|
17936
17983
|
}
|
|
17937
|
-
.v-
|
|
17938
|
-
|
|
17984
|
+
.v-stepper-vertical-item:after {
|
|
17985
|
+
display: none;
|
|
17939
17986
|
}
|
|
17940
|
-
.v-
|
|
17941
|
-
|
|
17987
|
+
.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 {
|
|
17988
|
+
pointer-events: none;
|
|
17942
17989
|
}
|
|
17943
|
-
.v-
|
|
17944
|
-
|
|
17990
|
+
.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 {
|
|
17991
|
+
opacity: 0;
|
|
17945
17992
|
}
|
|
17946
|
-
|
|
17947
|
-
|
|
17993
|
+
|
|
17994
|
+
.v-stepper-vertical-item__avatar.v-avatar {
|
|
17995
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
17996
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
17997
|
+
transition-property: background;
|
|
17948
17998
|
}
|
|
17949
|
-
.v-
|
|
17950
|
-
|
|
17999
|
+
.v-stepper-vertical-item__avatar.v-avatar .v-icon {
|
|
18000
|
+
font-size: 0.875rem;
|
|
17951
18001
|
}
|
|
17952
|
-
.v-
|
|
17953
|
-
|
|
18002
|
+
.v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
|
|
18003
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
17954
18004
|
}
|
|
17955
|
-
.v-
|
|
17956
|
-
|
|
17957
|
-
|
|
17958
|
-
|
|
17959
|
-
|
|
17960
|
-
|
|
17961
|
-
|
|
18005
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
|
|
18006
|
+
background: rgb(var(--v-theme-error));
|
|
18007
|
+
color: rgb(var(--v-theme-on-error));
|
|
18008
|
+
}
|
|
18009
|
+
|
|
18010
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__title {
|
|
18011
|
+
color: rgb(var(--v-theme-error));
|
|
18012
|
+
}
|
|
18013
|
+
|
|
18014
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
|
|
18015
|
+
color: rgb(var(--v-theme-error));
|
|
18016
|
+
}
|
|
18017
|
+
|
|
18018
|
+
.v-stepper-vertical-actions.v-stepper-actions .v-btn {
|
|
18019
|
+
margin-inline-end: 8px;
|
|
18020
|
+
}
|
|
18021
|
+
.v-stepper .v-stepper-vertical-actions.v-stepper-actions {
|
|
18022
|
+
justify-content: flex-end;
|
|
18023
|
+
padding: 24px 0 0;
|
|
18024
|
+
flex-direction: row-reverse;
|
|
17962
18025
|
}.v-calendar-month__day {
|
|
17963
18026
|
position: relative;
|
|
17964
18027
|
display: flex;
|
|
@@ -18022,6 +18085,27 @@ html.overflow-y-hidden {
|
|
|
18022
18085
|
|
|
18023
18086
|
.v-calendar-weekly__day-alldayevents-container {
|
|
18024
18087
|
min-height: 24px;
|
|
18088
|
+
}.v-treeview-item--filtered {
|
|
18089
|
+
display: none;
|
|
18090
|
+
}
|
|
18091
|
+
|
|
18092
|
+
.v-treeview {
|
|
18093
|
+
--indent-padding: 0px;
|
|
18094
|
+
}
|
|
18095
|
+
|
|
18096
|
+
.v-treeview-group.v-list-group {
|
|
18097
|
+
--list-indent-size: 16px;
|
|
18098
|
+
}
|
|
18099
|
+
.v-list--slim .v-treeview-group.v-list-group {
|
|
18100
|
+
--prepend-width: 16px;
|
|
18101
|
+
}
|
|
18102
|
+
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
|
18103
|
+
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
|
18104
|
+
}.v-calendar-internal-event {
|
|
18105
|
+
overflow: hidden;
|
|
18106
|
+
padding: 4px;
|
|
18107
|
+
text-overflow: ellipsis;
|
|
18108
|
+
white-space: nowrap;
|
|
18025
18109
|
}.v-pull-to-refresh {
|
|
18026
18110
|
overflow: hidden;
|
|
18027
18111
|
position: relative;
|
|
@@ -18048,67 +18132,198 @@ html.overflow-y-hidden {
|
|
|
18048
18132
|
}
|
|
18049
18133
|
.v-pull-to-refresh__scroll-container--touching {
|
|
18050
18134
|
transition: none;
|
|
18051
|
-
}.v-
|
|
18052
|
-
-
|
|
18053
|
-
|
|
18054
|
-
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
|
18055
|
-
-webkit-appearance: none;
|
|
18135
|
+
}.v-time-picker-clock {
|
|
18136
|
+
background: rgb(var(--v-theme-background));
|
|
18137
|
+
color: rgb(var(--v-theme-on-background));
|
|
18056
18138
|
}
|
|
18057
|
-
.v-
|
|
18058
|
-
|
|
18059
|
-
padding-inline-start: 0;
|
|
18139
|
+
.v-time-picker-clock:after {
|
|
18140
|
+
color: rgb(var(--v-theme-primary));
|
|
18060
18141
|
}
|
|
18061
|
-
.v-
|
|
18062
|
-
|
|
18063
|
-
|
|
18064
|
-
align-self: center;
|
|
18142
|
+
.v-time-picker-clock .v-time-picker-clock__item--active {
|
|
18143
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
18144
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
18065
18145
|
}
|
|
18066
|
-
|
|
18067
|
-
|
|
18146
|
+
|
|
18147
|
+
.v-time-picker-clock {
|
|
18148
|
+
margin: 0 auto;
|
|
18149
|
+
background: rgb(var(--v-theme-surface-light));
|
|
18150
|
+
border-radius: 50%;
|
|
18151
|
+
position: relative;
|
|
18152
|
+
transition: none;
|
|
18153
|
+
-webkit-user-select: none;
|
|
18154
|
+
user-select: none;
|
|
18155
|
+
height: 256px;
|
|
18156
|
+
width: 256px;
|
|
18157
|
+
flex: 1 0 auto;
|
|
18068
18158
|
}
|
|
18069
|
-
.v-
|
|
18070
|
-
|
|
18159
|
+
.v-time-picker-clock__container {
|
|
18160
|
+
display: flex;
|
|
18161
|
+
flex-direction: column;
|
|
18162
|
+
flex-basis: 290px;
|
|
18163
|
+
justify-content: center;
|
|
18164
|
+
padding: 10px;
|
|
18071
18165
|
}
|
|
18072
|
-
.v-
|
|
18073
|
-
|
|
18166
|
+
.v-time-picker-clock__hand {
|
|
18167
|
+
background-color: currentColor;
|
|
18168
|
+
height: calc(50% - 4px);
|
|
18169
|
+
width: 2px;
|
|
18170
|
+
bottom: 50%;
|
|
18171
|
+
left: calc(50% - 1px);
|
|
18172
|
+
transform-origin: center bottom;
|
|
18173
|
+
position: absolute;
|
|
18174
|
+
will-change: transform;
|
|
18175
|
+
z-index: 1;
|
|
18074
18176
|
}
|
|
18075
|
-
.v-
|
|
18076
|
-
|
|
18177
|
+
.v-time-picker-clock__hand:before {
|
|
18178
|
+
background: transparent;
|
|
18179
|
+
border-width: 2px;
|
|
18180
|
+
border-style: solid;
|
|
18181
|
+
border-color: currentColor;
|
|
18182
|
+
border-radius: 100%;
|
|
18183
|
+
width: 10px;
|
|
18184
|
+
height: 10px;
|
|
18185
|
+
content: "";
|
|
18186
|
+
position: absolute;
|
|
18187
|
+
top: -4px;
|
|
18188
|
+
left: 50%;
|
|
18189
|
+
transform: translate(-50%, -50%);
|
|
18077
18190
|
}
|
|
18078
|
-
.v-
|
|
18079
|
-
|
|
18080
|
-
|
|
18191
|
+
.v-time-picker-clock__hand:after {
|
|
18192
|
+
content: "";
|
|
18193
|
+
position: absolute;
|
|
18194
|
+
height: 8px;
|
|
18195
|
+
width: 8px;
|
|
18196
|
+
top: 100%;
|
|
18197
|
+
left: 50%;
|
|
18198
|
+
border-radius: 100%;
|
|
18199
|
+
background-color: currentColor;
|
|
18200
|
+
transform: translate(-50%, -50%);
|
|
18081
18201
|
}
|
|
18082
|
-
.v-
|
|
18083
|
-
|
|
18084
|
-
height: 100%;
|
|
18202
|
+
.v-time-picker-clock__hand--inner:after {
|
|
18203
|
+
height: 14px;
|
|
18085
18204
|
}
|
|
18086
|
-
.v-
|
|
18087
|
-
|
|
18088
|
-
border-radius: 0;
|
|
18089
|
-
}.v-picker.v-sheet {
|
|
18090
|
-
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));
|
|
18091
|
-
border-radius: 4px;
|
|
18092
|
-
display: grid;
|
|
18093
|
-
grid-auto-rows: min-content;
|
|
18094
|
-
grid-template-areas: "title" "header" "body";
|
|
18095
|
-
overflow: hidden;
|
|
18205
|
+
.v-time-picker-clock--readonly {
|
|
18206
|
+
pointer-events: none;
|
|
18096
18207
|
}
|
|
18097
|
-
.v-picker
|
|
18098
|
-
|
|
18208
|
+
.v-time-picker-clock .v-time-picker-clock__item--disabled {
|
|
18209
|
+
opacity: var(--v-disabled-opacity);
|
|
18099
18210
|
}
|
|
18100
18211
|
|
|
18101
|
-
.v-
|
|
18102
|
-
|
|
18103
|
-
overflow: hidden;
|
|
18104
|
-
position: relative;
|
|
18212
|
+
.v-picker--full-width .v-time-picker-clock__container {
|
|
18213
|
+
max-width: 290px;
|
|
18105
18214
|
}
|
|
18106
18215
|
|
|
18107
|
-
.v-
|
|
18108
|
-
|
|
18216
|
+
.v-time-picker-clock__inner {
|
|
18217
|
+
position: absolute;
|
|
18218
|
+
bottom: 27px;
|
|
18219
|
+
left: 27px;
|
|
18220
|
+
right: 27px;
|
|
18221
|
+
top: 27px;
|
|
18109
18222
|
}
|
|
18110
18223
|
|
|
18111
|
-
.v-
|
|
18224
|
+
.v-time-picker-clock__item {
|
|
18225
|
+
align-items: center;
|
|
18226
|
+
border-radius: 100%;
|
|
18227
|
+
cursor: default;
|
|
18228
|
+
display: flex;
|
|
18229
|
+
font-size: 16px;
|
|
18230
|
+
justify-content: center;
|
|
18231
|
+
height: 40px;
|
|
18232
|
+
position: absolute;
|
|
18233
|
+
text-align: center;
|
|
18234
|
+
width: 40px;
|
|
18235
|
+
-webkit-user-select: none;
|
|
18236
|
+
user-select: none;
|
|
18237
|
+
transform: translate(-50%, -50%);
|
|
18238
|
+
}
|
|
18239
|
+
.v-time-picker-clock__item > span {
|
|
18240
|
+
z-index: 1;
|
|
18241
|
+
}
|
|
18242
|
+
.v-time-picker-clock__item:before, .v-time-picker-clock__item:after {
|
|
18243
|
+
content: "";
|
|
18244
|
+
border-radius: 100%;
|
|
18245
|
+
position: absolute;
|
|
18246
|
+
top: 50%;
|
|
18247
|
+
left: 50%;
|
|
18248
|
+
height: 14px;
|
|
18249
|
+
width: 14px;
|
|
18250
|
+
transform: translate(-50%, -50%);
|
|
18251
|
+
}
|
|
18252
|
+
.v-time-picker-clock__item:after, .v-time-picker-clock__item:before {
|
|
18253
|
+
height: 40px;
|
|
18254
|
+
width: 40px;
|
|
18255
|
+
}
|
|
18256
|
+
.v-time-picker-clock__item--active {
|
|
18257
|
+
cursor: default;
|
|
18258
|
+
z-index: 2;
|
|
18259
|
+
}
|
|
18260
|
+
.v-time-picker-clock__item--disabled {
|
|
18261
|
+
pointer-events: none;
|
|
18262
|
+
}
|
|
18263
|
+
|
|
18264
|
+
.v-picker--landscape .v-time-picker-clock__container {
|
|
18265
|
+
flex-direction: row;
|
|
18266
|
+
}.v-number-input input[type=number] {
|
|
18267
|
+
-moz-appearance: textfield;
|
|
18268
|
+
}
|
|
18269
|
+
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
|
18270
|
+
-webkit-appearance: none;
|
|
18271
|
+
}
|
|
18272
|
+
.v-number-input .v-field {
|
|
18273
|
+
padding-inline-end: 0;
|
|
18274
|
+
padding-inline-start: 0;
|
|
18275
|
+
}
|
|
18276
|
+
.v-number-input--inset .v-divider {
|
|
18277
|
+
height: 55%;
|
|
18278
|
+
width: 55%;
|
|
18279
|
+
align-self: center;
|
|
18280
|
+
}
|
|
18281
|
+
.v-number-input--split .v-field__input {
|
|
18282
|
+
text-align: center;
|
|
18283
|
+
}
|
|
18284
|
+
.v-number-input--stacked .v-number-input__control {
|
|
18285
|
+
flex-direction: column-reverse;
|
|
18286
|
+
}
|
|
18287
|
+
.v-number-input--stacked .v-number-input__control .v-btn {
|
|
18288
|
+
flex: 1;
|
|
18289
|
+
}
|
|
18290
|
+
.v-number-input--hide-input .v-field {
|
|
18291
|
+
flex: none;
|
|
18292
|
+
}
|
|
18293
|
+
.v-number-input--hide-input .v-field__input {
|
|
18294
|
+
width: 0;
|
|
18295
|
+
padding-inline: 0;
|
|
18296
|
+
}
|
|
18297
|
+
.v-number-input__control {
|
|
18298
|
+
display: flex;
|
|
18299
|
+
height: 100%;
|
|
18300
|
+
}
|
|
18301
|
+
.v-number-input__control .v-btn {
|
|
18302
|
+
background-color: transparent;
|
|
18303
|
+
border-radius: 0;
|
|
18304
|
+
}.v-picker.v-sheet {
|
|
18305
|
+
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));
|
|
18306
|
+
border-radius: 4px;
|
|
18307
|
+
display: grid;
|
|
18308
|
+
grid-auto-rows: min-content;
|
|
18309
|
+
grid-template-areas: "title" "header" "body";
|
|
18310
|
+
overflow: hidden;
|
|
18311
|
+
}
|
|
18312
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
|
18313
|
+
grid-template-areas: "title" "header" "body" "actions";
|
|
18314
|
+
}
|
|
18315
|
+
|
|
18316
|
+
.v-picker__body {
|
|
18317
|
+
grid-area: body;
|
|
18318
|
+
overflow: hidden;
|
|
18319
|
+
position: relative;
|
|
18320
|
+
}
|
|
18321
|
+
|
|
18322
|
+
.v-picker__header {
|
|
18323
|
+
grid-area: header;
|
|
18324
|
+
}
|
|
18325
|
+
|
|
18326
|
+
.v-picker__actions {
|
|
18112
18327
|
grid-area: actions;
|
|
18113
18328
|
padding: 0 12px 12px;
|
|
18114
18329
|
display: flex;
|
|
@@ -18139,29 +18354,6 @@ html.overflow-y-hidden {
|
|
|
18139
18354
|
padding-bottom: 16px;
|
|
18140
18355
|
font-weight: 400;
|
|
18141
18356
|
letter-spacing: 0.1666666667em;
|
|
18142
|
-
}.v-treeview-item--filtered {
|
|
18143
|
-
display: none;
|
|
18144
|
-
}
|
|
18145
|
-
|
|
18146
|
-
.v-treeview {
|
|
18147
|
-
--indent-padding: 0px;
|
|
18148
|
-
}
|
|
18149
|
-
|
|
18150
|
-
.v-treeview-group.v-list-group {
|
|
18151
|
-
--list-indent-size: 16px;
|
|
18152
|
-
}
|
|
18153
|
-
.v-list--slim .v-treeview-group.v-list-group {
|
|
18154
|
-
--prepend-width: 16px;
|
|
18155
|
-
}
|
|
18156
|
-
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
|
18157
|
-
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
|
18158
|
-
}.v-time-picker.v-picker {
|
|
18159
|
-
padding: 24px;
|
|
18160
|
-
width: 328px;
|
|
18161
|
-
}
|
|
18162
|
-
.v-time-picker.v-picker .v-picker-title {
|
|
18163
|
-
padding: 0;
|
|
18164
|
-
margin-bottom: 20px;
|
|
18165
18357
|
}.v-time-picker-controls {
|
|
18166
18358
|
display: flex;
|
|
18167
18359
|
align-items: center;
|
|
@@ -18265,207 +18457,71 @@ html.overflow-y-hidden {
|
|
|
18265
18457
|
}
|
|
18266
18458
|
.v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
|
|
18267
18459
|
text-align: center;
|
|
18268
|
-
}.v-time-picker-
|
|
18269
|
-
|
|
18270
|
-
|
|
18271
|
-
}
|
|
18272
|
-
.v-time-picker-clock:after {
|
|
18273
|
-
color: rgb(var(--v-theme-primary));
|
|
18460
|
+
}.v-time-picker.v-picker {
|
|
18461
|
+
padding: 24px;
|
|
18462
|
+
width: 328px;
|
|
18274
18463
|
}
|
|
18275
|
-
.v-time-picker-
|
|
18276
|
-
|
|
18277
|
-
|
|
18464
|
+
.v-time-picker.v-picker .v-picker-title {
|
|
18465
|
+
padding: 0;
|
|
18466
|
+
margin-bottom: 20px;
|
|
18467
|
+
}.v-application {
|
|
18468
|
+
display: flex;
|
|
18469
|
+
background: rgb(var(--v-theme-background));
|
|
18470
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
18278
18471
|
}
|
|
18279
18472
|
|
|
18280
|
-
.v-
|
|
18281
|
-
|
|
18282
|
-
|
|
18283
|
-
border-radius: 50%;
|
|
18284
|
-
position: relative;
|
|
18285
|
-
transition: none;
|
|
18286
|
-
-webkit-user-select: none;
|
|
18287
|
-
user-select: none;
|
|
18288
|
-
height: 256px;
|
|
18289
|
-
width: 256px;
|
|
18290
|
-
flex: 1 0 auto;
|
|
18291
|
-
}
|
|
18292
|
-
.v-time-picker-clock__container {
|
|
18473
|
+
.v-application__wrap {
|
|
18474
|
+
-webkit-backface-visibility: hidden;
|
|
18475
|
+
backface-visibility: hidden;
|
|
18293
18476
|
display: flex;
|
|
18294
18477
|
flex-direction: column;
|
|
18295
|
-
flex
|
|
18296
|
-
|
|
18297
|
-
|
|
18478
|
+
flex: 1 1 auto;
|
|
18479
|
+
max-width: 100%;
|
|
18480
|
+
min-height: 100vh;
|
|
18481
|
+
min-height: 100dvh;
|
|
18482
|
+
position: relative;
|
|
18483
|
+
}.v-alert {
|
|
18484
|
+
display: grid;
|
|
18485
|
+
flex: 1 1;
|
|
18486
|
+
grid-template-areas: "prepend content append close" ". content . .";
|
|
18487
|
+
grid-template-columns: max-content auto max-content max-content;
|
|
18488
|
+
position: relative;
|
|
18489
|
+
padding: 16px;
|
|
18490
|
+
overflow: hidden;
|
|
18491
|
+
--v-border-color: currentColor;
|
|
18492
|
+
border-radius: 4px;
|
|
18298
18493
|
}
|
|
18299
|
-
.v-
|
|
18300
|
-
background-color: currentColor;
|
|
18301
|
-
height: calc(50% - 4px);
|
|
18302
|
-
width: 2px;
|
|
18303
|
-
bottom: 50%;
|
|
18304
|
-
left: calc(50% - 1px);
|
|
18305
|
-
transform-origin: center bottom;
|
|
18494
|
+
.v-alert--absolute {
|
|
18306
18495
|
position: absolute;
|
|
18307
|
-
will-change: transform;
|
|
18308
|
-
z-index: 1;
|
|
18309
18496
|
}
|
|
18310
|
-
.v-
|
|
18497
|
+
.v-alert--fixed {
|
|
18498
|
+
position: fixed;
|
|
18499
|
+
}
|
|
18500
|
+
.v-alert--sticky {
|
|
18501
|
+
position: sticky;
|
|
18502
|
+
}
|
|
18503
|
+
.v-alert--variant-plain, .v-alert--variant-outlined, .v-alert--variant-text, .v-alert--variant-tonal {
|
|
18311
18504
|
background: transparent;
|
|
18312
|
-
|
|
18313
|
-
border-style: solid;
|
|
18314
|
-
border-color: currentColor;
|
|
18315
|
-
border-radius: 100%;
|
|
18316
|
-
width: 10px;
|
|
18317
|
-
height: 10px;
|
|
18318
|
-
content: "";
|
|
18319
|
-
position: absolute;
|
|
18320
|
-
top: -4px;
|
|
18321
|
-
left: 50%;
|
|
18322
|
-
transform: translate(-50%, -50%);
|
|
18505
|
+
color: inherit;
|
|
18323
18506
|
}
|
|
18324
|
-
.v-
|
|
18325
|
-
|
|
18326
|
-
position: absolute;
|
|
18327
|
-
height: 8px;
|
|
18328
|
-
width: 8px;
|
|
18329
|
-
top: 100%;
|
|
18330
|
-
left: 50%;
|
|
18331
|
-
border-radius: 100%;
|
|
18332
|
-
background-color: currentColor;
|
|
18333
|
-
transform: translate(-50%, -50%);
|
|
18507
|
+
.v-alert--variant-plain {
|
|
18508
|
+
opacity: 0.62;
|
|
18334
18509
|
}
|
|
18335
|
-
.v-
|
|
18336
|
-
|
|
18510
|
+
.v-alert--variant-plain:focus, .v-alert--variant-plain:hover {
|
|
18511
|
+
opacity: 1;
|
|
18337
18512
|
}
|
|
18338
|
-
.v-
|
|
18339
|
-
|
|
18513
|
+
.v-alert--variant-plain .v-alert__overlay {
|
|
18514
|
+
display: none;
|
|
18340
18515
|
}
|
|
18341
|
-
.v-
|
|
18342
|
-
|
|
18516
|
+
.v-alert--variant-elevated, .v-alert--variant-flat {
|
|
18517
|
+
background: rgb(var(--v-theme-surface-light));
|
|
18518
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
18343
18519
|
}
|
|
18344
|
-
|
|
18345
|
-
|
|
18346
|
-
max-width: 290px;
|
|
18520
|
+
.v-alert--variant-elevated {
|
|
18521
|
+
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18347
18522
|
}
|
|
18348
|
-
|
|
18349
|
-
.v-
|
|
18350
|
-
position: absolute;
|
|
18351
|
-
bottom: 27px;
|
|
18352
|
-
left: 27px;
|
|
18353
|
-
right: 27px;
|
|
18354
|
-
top: 27px;
|
|
18355
|
-
}
|
|
18356
|
-
|
|
18357
|
-
.v-time-picker-clock__item {
|
|
18358
|
-
align-items: center;
|
|
18359
|
-
border-radius: 100%;
|
|
18360
|
-
cursor: default;
|
|
18361
|
-
display: flex;
|
|
18362
|
-
font-size: 16px;
|
|
18363
|
-
justify-content: center;
|
|
18364
|
-
height: 40px;
|
|
18365
|
-
position: absolute;
|
|
18366
|
-
text-align: center;
|
|
18367
|
-
width: 40px;
|
|
18368
|
-
-webkit-user-select: none;
|
|
18369
|
-
user-select: none;
|
|
18370
|
-
transform: translate(-50%, -50%);
|
|
18371
|
-
}
|
|
18372
|
-
.v-time-picker-clock__item > span {
|
|
18373
|
-
z-index: 1;
|
|
18374
|
-
}
|
|
18375
|
-
.v-time-picker-clock__item:before, .v-time-picker-clock__item:after {
|
|
18376
|
-
content: "";
|
|
18377
|
-
border-radius: 100%;
|
|
18378
|
-
position: absolute;
|
|
18379
|
-
top: 50%;
|
|
18380
|
-
left: 50%;
|
|
18381
|
-
height: 14px;
|
|
18382
|
-
width: 14px;
|
|
18383
|
-
transform: translate(-50%, -50%);
|
|
18384
|
-
}
|
|
18385
|
-
.v-time-picker-clock__item:after, .v-time-picker-clock__item:before {
|
|
18386
|
-
height: 40px;
|
|
18387
|
-
width: 40px;
|
|
18388
|
-
}
|
|
18389
|
-
.v-time-picker-clock__item--active {
|
|
18390
|
-
cursor: default;
|
|
18391
|
-
z-index: 2;
|
|
18392
|
-
}
|
|
18393
|
-
.v-time-picker-clock__item--disabled {
|
|
18394
|
-
pointer-events: none;
|
|
18395
|
-
}
|
|
18396
|
-
|
|
18397
|
-
.v-picker--landscape .v-time-picker-clock__container {
|
|
18398
|
-
flex-direction: row;
|
|
18399
|
-
}.v-application {
|
|
18400
|
-
display: flex;
|
|
18401
|
-
background: rgb(var(--v-theme-background));
|
|
18402
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
18403
|
-
}
|
|
18404
|
-
|
|
18405
|
-
.v-application__wrap {
|
|
18406
|
-
-webkit-backface-visibility: hidden;
|
|
18407
|
-
backface-visibility: hidden;
|
|
18408
|
-
display: flex;
|
|
18409
|
-
flex-direction: column;
|
|
18410
|
-
flex: 1 1 auto;
|
|
18411
|
-
max-width: 100%;
|
|
18412
|
-
min-height: 100vh;
|
|
18413
|
-
min-height: 100dvh;
|
|
18414
|
-
position: relative;
|
|
18415
|
-
}.v-app-bar {
|
|
18416
|
-
display: flex;
|
|
18417
|
-
}
|
|
18418
|
-
.v-app-bar.v-toolbar {
|
|
18419
|
-
background: rgb(var(--v-theme-surface));
|
|
18420
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18421
|
-
}
|
|
18422
|
-
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
18423
|
-
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));
|
|
18424
|
-
}
|
|
18425
|
-
.v-app-bar:not(.v-toolbar--absolute) {
|
|
18426
|
-
padding-inline-end: var(--v-scrollbar-offset);
|
|
18427
|
-
}.v-alert {
|
|
18428
|
-
display: grid;
|
|
18429
|
-
flex: 1 1;
|
|
18430
|
-
grid-template-areas: "prepend content append close" ". content . .";
|
|
18431
|
-
grid-template-columns: max-content auto max-content max-content;
|
|
18432
|
-
position: relative;
|
|
18433
|
-
padding: 16px;
|
|
18434
|
-
overflow: hidden;
|
|
18435
|
-
--v-border-color: currentColor;
|
|
18436
|
-
border-radius: 4px;
|
|
18437
|
-
}
|
|
18438
|
-
.v-alert--absolute {
|
|
18439
|
-
position: absolute;
|
|
18440
|
-
}
|
|
18441
|
-
.v-alert--fixed {
|
|
18442
|
-
position: fixed;
|
|
18443
|
-
}
|
|
18444
|
-
.v-alert--sticky {
|
|
18445
|
-
position: sticky;
|
|
18446
|
-
}
|
|
18447
|
-
.v-alert--variant-plain, .v-alert--variant-outlined, .v-alert--variant-text, .v-alert--variant-tonal {
|
|
18448
|
-
background: transparent;
|
|
18449
|
-
color: inherit;
|
|
18450
|
-
}
|
|
18451
|
-
.v-alert--variant-plain {
|
|
18452
|
-
opacity: 0.62;
|
|
18453
|
-
}
|
|
18454
|
-
.v-alert--variant-plain:focus, .v-alert--variant-plain:hover {
|
|
18455
|
-
opacity: 1;
|
|
18456
|
-
}
|
|
18457
|
-
.v-alert--variant-plain .v-alert__overlay {
|
|
18458
|
-
display: none;
|
|
18459
|
-
}
|
|
18460
|
-
.v-alert--variant-elevated, .v-alert--variant-flat {
|
|
18461
|
-
background: rgb(var(--v-theme-surface-light));
|
|
18462
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
18463
|
-
}
|
|
18464
|
-
.v-alert--variant-elevated {
|
|
18465
|
-
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
18466
|
-
}
|
|
18467
|
-
.v-alert--variant-flat {
|
|
18468
|
-
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));
|
|
18523
|
+
.v-alert--variant-flat {
|
|
18524
|
+
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));
|
|
18469
18525
|
}
|
|
18470
18526
|
.v-alert--variant-outlined {
|
|
18471
18527
|
border: thin solid currentColor;
|
|
@@ -18636,87 +18692,18 @@ html.overflow-y-hidden {
|
|
|
18636
18692
|
text-transform: none;
|
|
18637
18693
|
word-break: normal;
|
|
18638
18694
|
word-wrap: break-word;
|
|
18639
|
-
}.v-
|
|
18640
|
-
|
|
18641
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
18642
|
-
cursor: text;
|
|
18643
|
-
}
|
|
18644
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
18645
|
-
flex: 1 1;
|
|
18646
|
-
}
|
|
18647
|
-
.v-autocomplete .v-field input {
|
|
18648
|
-
min-width: 64px;
|
|
18649
|
-
}
|
|
18650
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
18651
|
-
min-width: 0;
|
|
18652
|
-
}
|
|
18653
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
18654
|
-
margin-inline-end: 2px;
|
|
18695
|
+
}.v-app-bar {
|
|
18696
|
+
display: flex;
|
|
18655
18697
|
}
|
|
18656
|
-
.v-
|
|
18657
|
-
|
|
18658
|
-
|
|
18659
|
-
white-space: nowrap;
|
|
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));
|
|
18660
18701
|
}
|
|
18661
|
-
|
|
18662
|
-
.v-autocomplete__content {
|
|
18663
|
-
overflow: hidden;
|
|
18702
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
|
18664
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));
|
|
18665
|
-
border-radius: 4px;
|
|
18666
|
-
}
|
|
18667
|
-
.v-autocomplete__mask {
|
|
18668
|
-
background: rgb(var(--v-theme-surface-light));
|
|
18669
|
-
}
|
|
18670
|
-
.v-autocomplete__selection {
|
|
18671
|
-
display: inline-flex;
|
|
18672
|
-
align-items: center;
|
|
18673
|
-
height: 1.5rem;
|
|
18674
|
-
letter-spacing: inherit;
|
|
18675
|
-
line-height: inherit;
|
|
18676
|
-
max-width: calc(100% - 2px - 2px);
|
|
18677
|
-
}
|
|
18678
|
-
.v-autocomplete__selection:first-child {
|
|
18679
|
-
margin-inline-start: 0;
|
|
18680
|
-
}
|
|
18681
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
18682
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
18683
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
18684
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
18685
|
-
top: 0px;
|
|
18686
|
-
}
|
|
18687
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
18688
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
18689
|
-
}
|
|
18690
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
18691
|
-
opacity: 1;
|
|
18692
|
-
}
|
|
18693
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
|
18694
|
-
caret-color: transparent;
|
|
18695
|
-
}
|
|
18696
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
|
18697
|
-
flex: 1 1;
|
|
18698
|
-
position: absolute;
|
|
18699
|
-
left: 0;
|
|
18700
|
-
right: 0;
|
|
18701
|
-
width: 100%;
|
|
18702
|
-
padding-inline: inherit;
|
|
18703
|
-
}
|
|
18704
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
|
18705
|
-
transition: none;
|
|
18706
18704
|
}
|
|
18707
|
-
.v-
|
|
18708
|
-
|
|
18709
|
-
}
|
|
18710
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
|
18711
|
-
opacity: 0;
|
|
18712
|
-
}
|
|
18713
|
-
.v-autocomplete__menu-icon {
|
|
18714
|
-
margin-inline-start: 4px;
|
|
18715
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18716
|
-
}
|
|
18717
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
18718
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
18719
|
-
transform: rotate(180deg);
|
|
18705
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
|
18706
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
|
18720
18707
|
}.v-avatar {
|
|
18721
18708
|
flex: none;
|
|
18722
18709
|
align-items: center;
|
|
@@ -18812,132 +18799,87 @@ html.overflow-y-hidden {
|
|
|
18812
18799
|
.v-avatar .v-img {
|
|
18813
18800
|
height: 100%;
|
|
18814
18801
|
width: 100%;
|
|
18815
|
-
}.v-
|
|
18816
|
-
|
|
18817
|
-
|
|
18818
|
-
|
|
18819
|
-
position: absolute;
|
|
18820
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18821
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
18822
|
-
border-style: solid;
|
|
18823
|
-
border-width: 0;
|
|
18824
|
-
border-radius: 0;
|
|
18825
|
-
background: rgb(var(--v-theme-surface));
|
|
18826
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
18802
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
18803
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
18804
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
18805
|
+
cursor: text;
|
|
18827
18806
|
}
|
|
18828
|
-
.v-
|
|
18829
|
-
|
|
18830
|
-
box-shadow: none;
|
|
18807
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
18808
|
+
flex: 1 1;
|
|
18831
18809
|
}
|
|
18832
|
-
.v-
|
|
18833
|
-
|
|
18810
|
+
.v-autocomplete .v-field input {
|
|
18811
|
+
min-width: 64px;
|
|
18834
18812
|
}
|
|
18835
|
-
|
|
18836
|
-
|
|
18837
|
-
display: flex;
|
|
18838
|
-
flex: none;
|
|
18839
|
-
font-size: 0.75rem;
|
|
18840
|
-
justify-content: center;
|
|
18841
|
-
transition: inherit;
|
|
18842
|
-
width: 100%;
|
|
18813
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
18814
|
+
min-width: 0;
|
|
18843
18815
|
}
|
|
18844
|
-
.v-
|
|
18845
|
-
|
|
18846
|
-
height: 100%;
|
|
18847
|
-
max-width: 168px;
|
|
18848
|
-
min-width: 80px;
|
|
18849
|
-
text-transform: none;
|
|
18850
|
-
transition: inherit;
|
|
18851
|
-
width: auto;
|
|
18852
|
-
border-radius: 0;
|
|
18816
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
18817
|
+
margin-inline-end: 2px;
|
|
18853
18818
|
}
|
|
18854
|
-
.v-
|
|
18855
|
-
|
|
18856
|
-
|
|
18819
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
18820
|
+
overflow: hidden;
|
|
18821
|
+
text-overflow: ellipsis;
|
|
18822
|
+
white-space: nowrap;
|
|
18857
18823
|
}
|
|
18858
|
-
|
|
18859
|
-
|
|
18824
|
+
|
|
18825
|
+
.v-autocomplete__content {
|
|
18826
|
+
overflow: hidden;
|
|
18827
|
+
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));
|
|
18828
|
+
border-radius: 4px;
|
|
18860
18829
|
}
|
|
18861
|
-
.v-
|
|
18862
|
-
|
|
18830
|
+
.v-autocomplete__mask {
|
|
18831
|
+
background: rgb(var(--v-theme-surface-light));
|
|
18863
18832
|
}
|
|
18864
|
-
.v-
|
|
18865
|
-
transition: inherit;
|
|
18866
|
-
opacity: 0;
|
|
18867
|
-
}
|
|
18868
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
18869
|
-
transform: translateY(0.5rem);
|
|
18870
|
-
}.v-badge {
|
|
18871
|
-
display: inline-block;
|
|
18872
|
-
line-height: 1;
|
|
18873
|
-
}
|
|
18874
|
-
|
|
18875
|
-
.v-badge__badge {
|
|
18876
|
-
align-items: center;
|
|
18833
|
+
.v-autocomplete__selection {
|
|
18877
18834
|
display: inline-flex;
|
|
18878
|
-
|
|
18879
|
-
|
|
18880
|
-
|
|
18881
|
-
height:
|
|
18882
|
-
|
|
18883
|
-
min-width: 20px;
|
|
18884
|
-
padding: 4px 6px;
|
|
18885
|
-
pointer-events: auto;
|
|
18886
|
-
position: absolute;
|
|
18887
|
-
text-align: center;
|
|
18888
|
-
text-indent: 0;
|
|
18889
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18890
|
-
white-space: nowrap;
|
|
18891
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
18892
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
18835
|
+
align-items: center;
|
|
18836
|
+
height: 1.5rem;
|
|
18837
|
+
letter-spacing: inherit;
|
|
18838
|
+
line-height: inherit;
|
|
18839
|
+
max-width: calc(100% - 2px - 2px);
|
|
18893
18840
|
}
|
|
18894
|
-
.v-
|
|
18895
|
-
|
|
18896
|
-
border-style: solid;
|
|
18897
|
-
border-width: 2px;
|
|
18898
|
-
bottom: 0;
|
|
18899
|
-
color: rgb(var(--v-theme-background));
|
|
18900
|
-
content: "";
|
|
18901
|
-
left: 0;
|
|
18902
|
-
position: absolute;
|
|
18903
|
-
right: 0;
|
|
18904
|
-
top: 0;
|
|
18905
|
-
transform: scale(1.05);
|
|
18841
|
+
.v-autocomplete__selection:first-child {
|
|
18842
|
+
margin-inline-start: 0;
|
|
18906
18843
|
}
|
|
18907
|
-
.v-
|
|
18908
|
-
|
|
18909
|
-
|
|
18910
|
-
|
|
18911
|
-
|
|
18912
|
-
width: 9px;
|
|
18844
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
18845
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
18846
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
18847
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
18848
|
+
top: 0px;
|
|
18913
18849
|
}
|
|
18914
|
-
.v-
|
|
18915
|
-
|
|
18850
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
18851
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
18916
18852
|
}
|
|
18917
|
-
.v-
|
|
18918
|
-
|
|
18919
|
-
vertical-align: middle;
|
|
18853
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
18854
|
+
opacity: 1;
|
|
18920
18855
|
}
|
|
18921
|
-
.v-
|
|
18922
|
-
color:
|
|
18923
|
-
font-size: 0.75rem;
|
|
18924
|
-
margin: 0 -2px;
|
|
18856
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
|
18857
|
+
caret-color: transparent;
|
|
18925
18858
|
}
|
|
18926
|
-
.v-
|
|
18927
|
-
|
|
18928
|
-
|
|
18859
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
|
18860
|
+
flex: 1 1;
|
|
18861
|
+
position: absolute;
|
|
18862
|
+
left: 0;
|
|
18863
|
+
right: 0;
|
|
18929
18864
|
width: 100%;
|
|
18865
|
+
padding-inline: inherit;
|
|
18930
18866
|
}
|
|
18931
|
-
|
|
18932
|
-
|
|
18933
|
-
display: flex;
|
|
18934
|
-
position: relative;
|
|
18867
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
|
18868
|
+
transition: none;
|
|
18935
18869
|
}
|
|
18936
|
-
.v-
|
|
18937
|
-
|
|
18938
|
-
|
|
18939
|
-
|
|
18940
|
-
|
|
18870
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
18871
|
+
opacity: 0;
|
|
18872
|
+
}
|
|
18873
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
|
18874
|
+
opacity: 0;
|
|
18875
|
+
}
|
|
18876
|
+
.v-autocomplete__menu-icon {
|
|
18877
|
+
margin-inline-start: 4px;
|
|
18878
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
18879
|
+
}
|
|
18880
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
18881
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
18882
|
+
transform: rotate(180deg);
|
|
18941
18883
|
}.v-banner {
|
|
18942
18884
|
display: grid;
|
|
18943
18885
|
flex: 1 1;
|
|
@@ -19095,38 +19037,6 @@ html.overflow-y-hidden {
|
|
|
19095
19037
|
}
|
|
19096
19038
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
|
19097
19039
|
align-self: flex-start;
|
|
19098
|
-
}.bottom-sheet-transition-enter-from {
|
|
19099
|
-
transform: translateY(100%);
|
|
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%;
|
|
19115
|
-
max-width: 100%;
|
|
19116
|
-
overflow: visible;
|
|
19117
|
-
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));
|
|
19118
|
-
}
|
|
19119
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
|
19120
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
|
19121
|
-
border-radius: 0;
|
|
19122
|
-
}
|
|
19123
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
19124
|
-
max-width: none;
|
|
19125
|
-
}
|
|
19126
|
-
@media (min-width: 600px) {
|
|
19127
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
19128
|
-
max-width: 70%;
|
|
19129
|
-
}
|
|
19130
19040
|
}.v-btn {
|
|
19131
19041
|
align-items: center;
|
|
19132
19042
|
border-radius: 4px;
|
|
@@ -19539,76 +19449,227 @@ html.overflow-y-hidden {
|
|
|
19539
19449
|
}
|
|
19540
19450
|
.v-pagination__item--is-active .v-btn__overlay {
|
|
19541
19451
|
opacity: var(--v-border-opacity);
|
|
19542
|
-
}.v-
|
|
19543
|
-
display:
|
|
19452
|
+
}.v-badge {
|
|
19453
|
+
display: inline-block;
|
|
19454
|
+
line-height: 1;
|
|
19455
|
+
}
|
|
19456
|
+
|
|
19457
|
+
.v-badge__badge {
|
|
19544
19458
|
align-items: center;
|
|
19545
|
-
|
|
19546
|
-
|
|
19459
|
+
display: inline-flex;
|
|
19460
|
+
border-radius: 10px;
|
|
19461
|
+
font-size: 0.75rem;
|
|
19462
|
+
font-weight: 500;
|
|
19463
|
+
height: 1.25rem;
|
|
19464
|
+
justify-content: center;
|
|
19465
|
+
min-width: 20px;
|
|
19466
|
+
padding: 4px 6px;
|
|
19467
|
+
pointer-events: auto;
|
|
19468
|
+
position: absolute;
|
|
19469
|
+
text-align: center;
|
|
19470
|
+
text-indent: 0;
|
|
19471
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19472
|
+
white-space: nowrap;
|
|
19473
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
19474
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
|
19547
19475
|
}
|
|
19548
|
-
.v-
|
|
19549
|
-
border-radius:
|
|
19476
|
+
.v-badge--bordered .v-badge__badge::after {
|
|
19477
|
+
border-radius: inherit;
|
|
19478
|
+
border-style: solid;
|
|
19479
|
+
border-width: 2px;
|
|
19480
|
+
bottom: 0;
|
|
19481
|
+
color: rgb(var(--v-theme-background));
|
|
19482
|
+
content: "";
|
|
19483
|
+
left: 0;
|
|
19484
|
+
position: absolute;
|
|
19485
|
+
right: 0;
|
|
19486
|
+
top: 0;
|
|
19487
|
+
transform: scale(1.05);
|
|
19550
19488
|
}
|
|
19551
|
-
.v-
|
|
19552
|
-
|
|
19553
|
-
|
|
19489
|
+
.v-badge--dot .v-badge__badge {
|
|
19490
|
+
border-radius: 4.5px;
|
|
19491
|
+
height: 9px;
|
|
19492
|
+
min-width: 0;
|
|
19493
|
+
padding: 0;
|
|
19494
|
+
width: 9px;
|
|
19554
19495
|
}
|
|
19555
|
-
|
|
19556
|
-
|
|
19557
|
-
padding-top: 12px;
|
|
19558
|
-
padding-bottom: 12px;
|
|
19496
|
+
.v-badge--dot .v-badge__badge::after {
|
|
19497
|
+
border-width: 1.5px;
|
|
19559
19498
|
}
|
|
19560
|
-
|
|
19561
|
-
|
|
19562
|
-
|
|
19563
|
-
padding-bottom: 8px;
|
|
19499
|
+
.v-badge--inline .v-badge__badge {
|
|
19500
|
+
position: relative;
|
|
19501
|
+
vertical-align: middle;
|
|
19564
19502
|
}
|
|
19565
|
-
|
|
19566
|
-
|
|
19567
|
-
|
|
19568
|
-
|
|
19503
|
+
.v-badge__badge .v-icon {
|
|
19504
|
+
color: inherit;
|
|
19505
|
+
font-size: 0.75rem;
|
|
19506
|
+
margin: 0 -2px;
|
|
19507
|
+
}
|
|
19508
|
+
.v-badge__badge img,
|
|
19509
|
+
.v-badge__badge .v-img {
|
|
19510
|
+
height: 100%;
|
|
19511
|
+
width: 100%;
|
|
19569
19512
|
}
|
|
19570
19513
|
|
|
19571
|
-
.v-
|
|
19514
|
+
.v-badge__wrapper {
|
|
19515
|
+
display: flex;
|
|
19516
|
+
position: relative;
|
|
19517
|
+
}
|
|
19518
|
+
.v-badge--inline .v-badge__wrapper {
|
|
19572
19519
|
align-items: center;
|
|
19573
|
-
color: inherit;
|
|
19574
19520
|
display: inline-flex;
|
|
19575
|
-
|
|
19576
|
-
|
|
19577
|
-
|
|
19578
|
-
|
|
19579
|
-
|
|
19580
|
-
|
|
19581
|
-
|
|
19582
|
-
|
|
19583
|
-
|
|
19584
|
-
|
|
19585
|
-
|
|
19521
|
+
justify-content: center;
|
|
19522
|
+
margin: 0 4px;
|
|
19523
|
+
}.v-bottom-navigation {
|
|
19524
|
+
display: flex;
|
|
19525
|
+
max-width: 100%;
|
|
19526
|
+
overflow: hidden;
|
|
19527
|
+
position: absolute;
|
|
19528
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19529
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19530
|
+
border-style: solid;
|
|
19531
|
+
border-width: 0;
|
|
19532
|
+
border-radius: 0;
|
|
19533
|
+
background: rgb(var(--v-theme-surface));
|
|
19534
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
19586
19535
|
}
|
|
19587
|
-
.v-
|
|
19588
|
-
|
|
19536
|
+
.v-bottom-navigation--border {
|
|
19537
|
+
border-width: thin;
|
|
19538
|
+
box-shadow: none;
|
|
19589
19539
|
}
|
|
19590
|
-
.v-
|
|
19591
|
-
|
|
19592
|
-
margin-inline: -4px 2px;
|
|
19540
|
+
.v-bottom-navigation--active {
|
|
19541
|
+
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));
|
|
19593
19542
|
}
|
|
19594
19543
|
|
|
19595
|
-
.v-
|
|
19596
|
-
display:
|
|
19597
|
-
|
|
19598
|
-
|
|
19599
|
-
|
|
19600
|
-
|
|
19544
|
+
.v-bottom-navigation__content {
|
|
19545
|
+
display: flex;
|
|
19546
|
+
flex: none;
|
|
19547
|
+
font-size: 0.75rem;
|
|
19548
|
+
justify-content: center;
|
|
19549
|
+
transition: inherit;
|
|
19550
|
+
width: 100%;
|
|
19601
19551
|
}
|
|
19602
|
-
.v-
|
|
19603
|
-
|
|
19552
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
|
19553
|
+
font-size: inherit;
|
|
19554
|
+
height: 100%;
|
|
19555
|
+
max-width: 168px;
|
|
19556
|
+
min-width: 80px;
|
|
19557
|
+
text-transform: none;
|
|
19558
|
+
transition: inherit;
|
|
19559
|
+
width: auto;
|
|
19560
|
+
border-radius: 0;
|
|
19604
19561
|
}
|
|
19605
|
-
.v-
|
|
19606
|
-
|
|
19562
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
|
19563
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
19564
|
+
transition: inherit;
|
|
19607
19565
|
}
|
|
19608
|
-
|
|
19609
|
-
|
|
19610
|
-
|
|
19566
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
|
19567
|
+
font-size: 1.5rem;
|
|
19568
|
+
}
|
|
19569
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
|
19570
|
+
flex-grow: 1;
|
|
19571
|
+
}
|
|
19572
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
|
19573
|
+
transition: inherit;
|
|
19574
|
+
opacity: 0;
|
|
19575
|
+
}
|
|
19576
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
|
19577
|
+
transform: translateY(0.5rem);
|
|
19578
|
+
}.bottom-sheet-transition-enter-from {
|
|
19579
|
+
transform: translateY(100%);
|
|
19580
|
+
}
|
|
19581
|
+
.bottom-sheet-transition-leave-to {
|
|
19582
|
+
transform: translateY(100%);
|
|
19583
|
+
}
|
|
19584
|
+
|
|
19585
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
|
19586
|
+
align-self: flex-end;
|
|
19587
|
+
border-radius: 0;
|
|
19588
|
+
flex: 0 1 auto;
|
|
19589
|
+
left: 0;
|
|
19590
|
+
right: 0;
|
|
19591
|
+
margin-inline: 0;
|
|
19592
|
+
margin-bottom: 0;
|
|
19593
|
+
transition-duration: 0.2s;
|
|
19594
|
+
width: 100%;
|
|
19595
|
+
max-width: 100%;
|
|
19596
|
+
overflow: visible;
|
|
19597
|
+
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));
|
|
19598
|
+
}
|
|
19599
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
|
19600
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
|
19601
|
+
border-radius: 0;
|
|
19602
|
+
}
|
|
19603
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
19604
|
+
max-width: none;
|
|
19605
|
+
}
|
|
19606
|
+
@media (min-width: 600px) {
|
|
19607
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
|
19608
|
+
max-width: 70%;
|
|
19611
19609
|
}
|
|
19610
|
+
}.v-carousel {
|
|
19611
|
+
overflow: hidden;
|
|
19612
|
+
position: relative;
|
|
19613
|
+
width: 100%;
|
|
19614
|
+
}
|
|
19615
|
+
.v-carousel__controls {
|
|
19616
|
+
align-items: center;
|
|
19617
|
+
bottom: 0;
|
|
19618
|
+
display: flex;
|
|
19619
|
+
height: 50px;
|
|
19620
|
+
justify-content: center;
|
|
19621
|
+
list-style-type: none;
|
|
19622
|
+
position: absolute;
|
|
19623
|
+
width: 100%;
|
|
19624
|
+
z-index: 1;
|
|
19625
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
|
19626
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
19627
|
+
}
|
|
19628
|
+
.v-carousel__controls > .v-item-group {
|
|
19629
|
+
flex: 0 1 auto;
|
|
19630
|
+
}
|
|
19631
|
+
.v-carousel__controls__item {
|
|
19632
|
+
margin: 0 8px;
|
|
19633
|
+
}
|
|
19634
|
+
.v-carousel__controls__item .v-icon {
|
|
19635
|
+
opacity: 0.5;
|
|
19636
|
+
}
|
|
19637
|
+
.v-carousel__controls__item--active .v-icon {
|
|
19638
|
+
opacity: 1;
|
|
19639
|
+
vertical-align: middle;
|
|
19640
|
+
}
|
|
19641
|
+
.v-carousel__controls__item:hover {
|
|
19642
|
+
background: none;
|
|
19643
|
+
}
|
|
19644
|
+
.v-carousel__controls__item:hover .v-icon {
|
|
19645
|
+
opacity: 0.8;
|
|
19646
|
+
}
|
|
19647
|
+
|
|
19648
|
+
.v-carousel__progress {
|
|
19649
|
+
margin: 0;
|
|
19650
|
+
position: absolute;
|
|
19651
|
+
bottom: 0;
|
|
19652
|
+
left: 0;
|
|
19653
|
+
right: 0;
|
|
19654
|
+
}
|
|
19655
|
+
|
|
19656
|
+
.v-carousel-item {
|
|
19657
|
+
display: block;
|
|
19658
|
+
height: inherit;
|
|
19659
|
+
text-decoration: none;
|
|
19660
|
+
}
|
|
19661
|
+
.v-carousel-item > .v-img {
|
|
19662
|
+
height: inherit;
|
|
19663
|
+
}
|
|
19664
|
+
|
|
19665
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
|
19666
|
+
background: transparent;
|
|
19667
|
+
}
|
|
19668
|
+
|
|
19669
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
|
19670
|
+
flex-direction: column;
|
|
19671
|
+
height: 100% !important;
|
|
19672
|
+
width: 50px;
|
|
19612
19673
|
}.v-btn-group {
|
|
19613
19674
|
display: inline-flex;
|
|
19614
19675
|
flex-wrap: nowrap;
|
|
@@ -19665,6 +19726,63 @@ html.overflow-y-hidden {
|
|
|
19665
19726
|
}
|
|
19666
19727
|
.v-btn-group--tile {
|
|
19667
19728
|
border-radius: 0;
|
|
19729
|
+
}.v-breadcrumbs {
|
|
19730
|
+
display: flex;
|
|
19731
|
+
align-items: center;
|
|
19732
|
+
line-height: 1.6;
|
|
19733
|
+
padding: 16px 12px;
|
|
19734
|
+
}
|
|
19735
|
+
.v-breadcrumbs--rounded {
|
|
19736
|
+
border-radius: 4px;
|
|
19737
|
+
}
|
|
19738
|
+
.v-breadcrumbs--density-default {
|
|
19739
|
+
padding-top: 16px;
|
|
19740
|
+
padding-bottom: 16px;
|
|
19741
|
+
}
|
|
19742
|
+
|
|
19743
|
+
.v-breadcrumbs--density-comfortable {
|
|
19744
|
+
padding-top: 12px;
|
|
19745
|
+
padding-bottom: 12px;
|
|
19746
|
+
}
|
|
19747
|
+
|
|
19748
|
+
.v-breadcrumbs--density-compact {
|
|
19749
|
+
padding-top: 8px;
|
|
19750
|
+
padding-bottom: 8px;
|
|
19751
|
+
}
|
|
19752
|
+
|
|
19753
|
+
.v-breadcrumbs__prepend {
|
|
19754
|
+
align-items: center;
|
|
19755
|
+
display: inline-flex;
|
|
19756
|
+
}
|
|
19757
|
+
|
|
19758
|
+
.v-breadcrumbs-item {
|
|
19759
|
+
align-items: center;
|
|
19760
|
+
color: inherit;
|
|
19761
|
+
display: inline-flex;
|
|
19762
|
+
padding: 0 4px;
|
|
19763
|
+
text-decoration: none;
|
|
19764
|
+
vertical-align: middle;
|
|
19765
|
+
}
|
|
19766
|
+
.v-breadcrumbs-item--disabled {
|
|
19767
|
+
opacity: var(--v-disabled-opacity);
|
|
19768
|
+
pointer-events: none;
|
|
19769
|
+
}
|
|
19770
|
+
.v-breadcrumbs-item--link {
|
|
19771
|
+
color: inherit;
|
|
19772
|
+
text-decoration: none;
|
|
19773
|
+
}
|
|
19774
|
+
.v-breadcrumbs-item--link:hover {
|
|
19775
|
+
text-decoration: underline;
|
|
19776
|
+
}
|
|
19777
|
+
.v-breadcrumbs-item .v-icon {
|
|
19778
|
+
font-size: 1rem;
|
|
19779
|
+
margin-inline: -4px 2px;
|
|
19780
|
+
}
|
|
19781
|
+
|
|
19782
|
+
.v-breadcrumbs-divider {
|
|
19783
|
+
display: inline-block;
|
|
19784
|
+
padding: 0 8px;
|
|
19785
|
+
vertical-align: middle;
|
|
19668
19786
|
}.v-card {
|
|
19669
19787
|
display: block;
|
|
19670
19788
|
overflow: hidden;
|
|
@@ -19964,94 +20082,37 @@ html.overflow-y-hidden {
|
|
|
19964
20082
|
pointer-events: none;
|
|
19965
20083
|
opacity: 0;
|
|
19966
20084
|
transition: opacity 0.2s ease-in-out;
|
|
19967
|
-
}.v-
|
|
19968
|
-
|
|
19969
|
-
position: relative;
|
|
19970
|
-
width: 100%;
|
|
19971
|
-
}
|
|
19972
|
-
.v-carousel__controls {
|
|
19973
|
-
align-items: center;
|
|
19974
|
-
bottom: 0;
|
|
19975
|
-
display: flex;
|
|
19976
|
-
height: 50px;
|
|
19977
|
-
justify-content: center;
|
|
19978
|
-
list-style-type: none;
|
|
19979
|
-
position: absolute;
|
|
19980
|
-
width: 100%;
|
|
19981
|
-
z-index: 1;
|
|
19982
|
-
background: rgba(var(--v-theme-surface-variant), 0.3);
|
|
19983
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
19984
|
-
}
|
|
19985
|
-
.v-carousel__controls > .v-item-group {
|
|
19986
|
-
flex: 0 1 auto;
|
|
19987
|
-
}
|
|
19988
|
-
.v-carousel__controls__item {
|
|
19989
|
-
margin: 0 8px;
|
|
20085
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
20086
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
19990
20087
|
}
|
|
19991
|
-
.v-
|
|
19992
|
-
opacity:
|
|
20088
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
20089
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19993
20090
|
}
|
|
19994
|
-
.v-
|
|
19995
|
-
opacity:
|
|
19996
|
-
vertical-align: middle;
|
|
20091
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
20092
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
19997
20093
|
}
|
|
19998
|
-
|
|
19999
|
-
|
|
20094
|
+
@supports not selector(:focus-visible) {
|
|
20095
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
20096
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
20097
|
+
}
|
|
20098
|
+
}.v-chip-group {
|
|
20099
|
+
display: flex;
|
|
20100
|
+
max-width: 100%;
|
|
20101
|
+
min-width: 0;
|
|
20102
|
+
overflow-x: auto;
|
|
20103
|
+
padding: 4px 0;
|
|
20000
20104
|
}
|
|
20001
|
-
.v-
|
|
20002
|
-
|
|
20105
|
+
.v-chip-group .v-chip {
|
|
20106
|
+
margin: 4px 8px 4px 0;
|
|
20003
20107
|
}
|
|
20004
|
-
|
|
20005
|
-
|
|
20006
|
-
margin: 0;
|
|
20007
|
-
position: absolute;
|
|
20008
|
-
bottom: 0;
|
|
20009
|
-
left: 0;
|
|
20010
|
-
right: 0;
|
|
20108
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
20109
|
+
opacity: var(--v-activated-opacity);
|
|
20011
20110
|
}
|
|
20012
20111
|
|
|
20013
|
-
.v-
|
|
20014
|
-
|
|
20015
|
-
|
|
20016
|
-
|
|
20017
|
-
}
|
|
20018
|
-
.v-carousel-item > .v-img {
|
|
20019
|
-
height: inherit;
|
|
20020
|
-
}
|
|
20021
|
-
|
|
20022
|
-
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
|
20023
|
-
background: transparent;
|
|
20024
|
-
}
|
|
20025
|
-
|
|
20026
|
-
.v-carousel--vertical-delimiters .v-carousel__controls {
|
|
20027
|
-
flex-direction: column;
|
|
20028
|
-
height: 100% !important;
|
|
20029
|
-
width: 50px;
|
|
20030
|
-
}.v-color-picker {
|
|
20031
|
-
align-self: flex-start;
|
|
20032
|
-
contain: content;
|
|
20033
|
-
}
|
|
20034
|
-
.v-color-picker.v-sheet {
|
|
20035
|
-
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));
|
|
20036
|
-
border-radius: 4px;
|
|
20037
|
-
}
|
|
20038
|
-
|
|
20039
|
-
.v-color-picker__controls {
|
|
20040
|
-
display: flex;
|
|
20041
|
-
flex-direction: column;
|
|
20042
|
-
padding: 16px;
|
|
20043
|
-
}
|
|
20044
|
-
|
|
20045
|
-
.v-color-picker--flat {
|
|
20046
|
-
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));
|
|
20047
|
-
}
|
|
20048
|
-
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
20049
|
-
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));
|
|
20050
|
-
}.v-checkbox.v-input {
|
|
20051
|
-
flex: 0 1 auto;
|
|
20052
|
-
}
|
|
20053
|
-
.v-checkbox .v-selection-control {
|
|
20054
|
-
min-height: var(--v-input-control-height);
|
|
20112
|
+
.v-chip-group--column .v-slide-group__content {
|
|
20113
|
+
white-space: normal;
|
|
20114
|
+
flex-wrap: wrap;
|
|
20115
|
+
max-width: 100%;
|
|
20055
20116
|
}.v-chip {
|
|
20056
20117
|
align-items: center;
|
|
20057
20118
|
display: inline-flex;
|
|
@@ -20464,24 +20525,92 @@ html.overflow-y-hidden {
|
|
|
20464
20525
|
|
|
20465
20526
|
.v-chip--label {
|
|
20466
20527
|
border-radius: 4px;
|
|
20467
|
-
}.v-
|
|
20468
|
-
|
|
20469
|
-
|
|
20528
|
+
}.v-checkbox.v-input {
|
|
20529
|
+
flex: 0 1 auto;
|
|
20530
|
+
}
|
|
20531
|
+
.v-checkbox .v-selection-control {
|
|
20532
|
+
min-height: var(--v-input-control-height);
|
|
20533
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
|
20534
|
+
.v-combobox .v-field .v-text-field__suffix,
|
|
20535
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
20536
|
+
cursor: text;
|
|
20537
|
+
}
|
|
20538
|
+
.v-combobox .v-field .v-field__input > input {
|
|
20539
|
+
flex: 1 1;
|
|
20540
|
+
}
|
|
20541
|
+
.v-combobox .v-field input {
|
|
20542
|
+
min-width: 64px;
|
|
20543
|
+
}
|
|
20544
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
|
20470
20545
|
min-width: 0;
|
|
20471
|
-
overflow-x: auto;
|
|
20472
|
-
padding: 4px 0;
|
|
20473
20546
|
}
|
|
20474
|
-
.v-
|
|
20475
|
-
margin:
|
|
20547
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
20548
|
+
margin-inline-end: 2px;
|
|
20476
20549
|
}
|
|
20477
|
-
.v-
|
|
20478
|
-
|
|
20550
|
+
.v-combobox .v-combobox__selection-text {
|
|
20551
|
+
overflow: hidden;
|
|
20552
|
+
text-overflow: ellipsis;
|
|
20553
|
+
white-space: nowrap;
|
|
20479
20554
|
}
|
|
20480
20555
|
|
|
20481
|
-
.v-
|
|
20482
|
-
|
|
20483
|
-
|
|
20484
|
-
|
|
20556
|
+
.v-combobox__content {
|
|
20557
|
+
overflow: hidden;
|
|
20558
|
+
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));
|
|
20559
|
+
border-radius: 4px;
|
|
20560
|
+
}
|
|
20561
|
+
.v-combobox__mask {
|
|
20562
|
+
background: rgb(var(--v-theme-surface-light));
|
|
20563
|
+
}
|
|
20564
|
+
.v-combobox__selection {
|
|
20565
|
+
display: inline-flex;
|
|
20566
|
+
align-items: center;
|
|
20567
|
+
height: 1.5rem;
|
|
20568
|
+
letter-spacing: inherit;
|
|
20569
|
+
line-height: inherit;
|
|
20570
|
+
max-width: calc(100% - 2px - 2px);
|
|
20571
|
+
}
|
|
20572
|
+
.v-combobox__selection:first-child {
|
|
20573
|
+
margin-inline-start: 0;
|
|
20574
|
+
}
|
|
20575
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
20576
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
20577
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
20578
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
20579
|
+
top: 0px;
|
|
20580
|
+
}
|
|
20581
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
|
20582
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
20583
|
+
}
|
|
20584
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
20585
|
+
opacity: 1;
|
|
20586
|
+
}
|
|
20587
|
+
.v-combobox--selecting-index .v-field__input > input {
|
|
20588
|
+
caret-color: transparent;
|
|
20589
|
+
}
|
|
20590
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
|
20591
|
+
flex: 1 1;
|
|
20592
|
+
position: absolute;
|
|
20593
|
+
left: 0;
|
|
20594
|
+
right: 0;
|
|
20595
|
+
width: 100%;
|
|
20596
|
+
padding-inline: inherit;
|
|
20597
|
+
}
|
|
20598
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
|
20599
|
+
transition: none;
|
|
20600
|
+
}
|
|
20601
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
20602
|
+
opacity: 0;
|
|
20603
|
+
}
|
|
20604
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
|
20605
|
+
opacity: 0;
|
|
20606
|
+
}
|
|
20607
|
+
.v-combobox__menu-icon {
|
|
20608
|
+
margin-inline-start: 4px;
|
|
20609
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
20610
|
+
}
|
|
20611
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
|
20612
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
20613
|
+
transform: rotate(180deg);
|
|
20485
20614
|
}.v-container {
|
|
20486
20615
|
width: 100%;
|
|
20487
20616
|
padding: 16px;
|
|
@@ -21154,87 +21283,26 @@ html.overflow-y-hidden {
|
|
|
21154
21283
|
.offset-xxl-11 {
|
|
21155
21284
|
margin-inline-start: 91.6666666667%;
|
|
21156
21285
|
}
|
|
21157
|
-
}.v-
|
|
21158
|
-
|
|
21159
|
-
|
|
21160
|
-
cursor: text;
|
|
21161
|
-
}
|
|
21162
|
-
.v-combobox .v-field .v-field__input > input {
|
|
21163
|
-
flex: 1 1;
|
|
21164
|
-
}
|
|
21165
|
-
.v-combobox .v-field input {
|
|
21166
|
-
min-width: 64px;
|
|
21167
|
-
}
|
|
21168
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
|
21169
|
-
min-width: 0;
|
|
21170
|
-
}
|
|
21171
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
21172
|
-
margin-inline-end: 2px;
|
|
21173
|
-
}
|
|
21174
|
-
.v-combobox .v-combobox__selection-text {
|
|
21175
|
-
overflow: hidden;
|
|
21176
|
-
text-overflow: ellipsis;
|
|
21177
|
-
white-space: nowrap;
|
|
21286
|
+
}.v-color-picker {
|
|
21287
|
+
align-self: flex-start;
|
|
21288
|
+
contain: content;
|
|
21178
21289
|
}
|
|
21179
|
-
|
|
21180
|
-
.v-
|
|
21181
|
-
overflow: hidden;
|
|
21182
|
-
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));
|
|
21290
|
+
.v-color-picker.v-sheet {
|
|
21291
|
+
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));
|
|
21183
21292
|
border-radius: 4px;
|
|
21184
21293
|
}
|
|
21185
|
-
|
|
21186
|
-
|
|
21187
|
-
|
|
21188
|
-
|
|
21189
|
-
|
|
21190
|
-
align-items: center;
|
|
21191
|
-
height: 1.5rem;
|
|
21192
|
-
letter-spacing: inherit;
|
|
21193
|
-
line-height: inherit;
|
|
21194
|
-
max-width: calc(100% - 2px - 2px);
|
|
21195
|
-
}
|
|
21196
|
-
.v-combobox__selection:first-child {
|
|
21197
|
-
margin-inline-start: 0;
|
|
21198
|
-
}
|
|
21199
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
21200
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
21201
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
21202
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
21203
|
-
top: 0px;
|
|
21204
|
-
}
|
|
21205
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
|
21206
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
21207
|
-
}
|
|
21208
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
|
21209
|
-
opacity: 1;
|
|
21210
|
-
}
|
|
21211
|
-
.v-combobox--selecting-index .v-field__input > input {
|
|
21212
|
-
caret-color: transparent;
|
|
21213
|
-
}
|
|
21214
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
|
21215
|
-
flex: 1 1;
|
|
21216
|
-
position: absolute;
|
|
21217
|
-
left: 0;
|
|
21218
|
-
right: 0;
|
|
21219
|
-
width: 100%;
|
|
21220
|
-
padding-inline: inherit;
|
|
21221
|
-
}
|
|
21222
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
|
21223
|
-
transition: none;
|
|
21224
|
-
}
|
|
21225
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
21226
|
-
opacity: 0;
|
|
21227
|
-
}
|
|
21228
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
|
21229
|
-
opacity: 0;
|
|
21294
|
+
|
|
21295
|
+
.v-color-picker__controls {
|
|
21296
|
+
display: flex;
|
|
21297
|
+
flex-direction: column;
|
|
21298
|
+
padding: 16px;
|
|
21230
21299
|
}
|
|
21231
|
-
|
|
21232
|
-
|
|
21233
|
-
|
|
21300
|
+
|
|
21301
|
+
.v-color-picker--flat {
|
|
21302
|
+
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));
|
|
21234
21303
|
}
|
|
21235
|
-
.v-
|
|
21236
|
-
|
|
21237
|
-
transform: rotate(180deg);
|
|
21304
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
21305
|
+
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
21306
|
}.v-counter {
|
|
21239
21307
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
21240
21308
|
flex: 0 1 auto;
|
|
@@ -21453,165 +21521,72 @@ html.overflow-y-hidden {
|
|
|
21453
21521
|
}
|
|
21454
21522
|
.v-data-table-footer__page {
|
|
21455
21523
|
padding: 0 8px;
|
|
21456
|
-
}.v-
|
|
21457
|
-
|
|
21458
|
-
|
|
21459
|
-
flex-direction: column;
|
|
21460
|
-
justify-content: center;
|
|
21461
|
-
min-height: 100%;
|
|
21462
|
-
padding: 16px;
|
|
21463
|
-
}
|
|
21464
|
-
.v-empty-state--start {
|
|
21465
|
-
align-items: flex-start;
|
|
21466
|
-
}
|
|
21467
|
-
.v-empty-state--center {
|
|
21468
|
-
align-items: center;
|
|
21524
|
+
}.v-date-picker {
|
|
21525
|
+
overflow: hidden;
|
|
21526
|
+
width: 328px;
|
|
21469
21527
|
}
|
|
21470
|
-
.v-
|
|
21528
|
+
.v-date-picker--show-week {
|
|
21529
|
+
width: 368px;
|
|
21530
|
+
}.v-date-picker-header {
|
|
21471
21531
|
align-items: flex-end;
|
|
21532
|
+
height: 70px;
|
|
21533
|
+
display: grid;
|
|
21534
|
+
grid-template-areas: "prepend content append";
|
|
21535
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
|
21536
|
+
overflow: hidden;
|
|
21537
|
+
padding-inline: 24px 12px;
|
|
21538
|
+
padding-bottom: 12px;
|
|
21472
21539
|
}
|
|
21473
21540
|
|
|
21474
|
-
.v-
|
|
21475
|
-
|
|
21476
|
-
width: 100%;
|
|
21477
|
-
}
|
|
21478
|
-
.v-empty-state__media .v-icon {
|
|
21479
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
21480
|
-
}
|
|
21481
|
-
|
|
21482
|
-
.v-empty-state__headline {
|
|
21483
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
21484
|
-
font-size: 3.75rem;
|
|
21485
|
-
font-weight: 300;
|
|
21486
|
-
line-height: 1;
|
|
21487
|
-
text-align: center;
|
|
21488
|
-
margin-bottom: 8px;
|
|
21489
|
-
}
|
|
21490
|
-
.v-empty-state--mobile .v-empty-state__headline {
|
|
21491
|
-
font-size: 2.125rem;
|
|
21492
|
-
}
|
|
21493
|
-
|
|
21494
|
-
.v-empty-state__title {
|
|
21495
|
-
font-size: 1.25rem;
|
|
21496
|
-
font-weight: 500;
|
|
21497
|
-
line-height: 1.6;
|
|
21498
|
-
margin-bottom: 4px;
|
|
21499
|
-
text-align: center;
|
|
21500
|
-
}
|
|
21501
|
-
|
|
21502
|
-
.v-empty-state__text {
|
|
21503
|
-
font-size: 0.875rem;
|
|
21504
|
-
font-weight: 400;
|
|
21505
|
-
line-height: 1.425;
|
|
21506
|
-
padding: 0 16px;
|
|
21507
|
-
text-align: center;
|
|
21508
|
-
}
|
|
21509
|
-
|
|
21510
|
-
.v-empty-state__content {
|
|
21511
|
-
padding: 24px 0;
|
|
21541
|
+
.v-date-picker-header__append {
|
|
21542
|
+
grid-area: append;
|
|
21512
21543
|
}
|
|
21513
21544
|
|
|
21514
|
-
.v-
|
|
21515
|
-
|
|
21516
|
-
|
|
21517
|
-
padding: 16px;
|
|
21545
|
+
.v-date-picker-header__prepend {
|
|
21546
|
+
grid-area: prepend;
|
|
21547
|
+
padding-inline-start: 8px;
|
|
21518
21548
|
}
|
|
21519
21549
|
|
|
21520
|
-
.v-
|
|
21521
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
|
21522
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
21523
|
-
}.v-dialog {
|
|
21550
|
+
.v-date-picker-header__content {
|
|
21524
21551
|
align-items: center;
|
|
21525
|
-
|
|
21526
|
-
|
|
21527
|
-
|
|
21528
|
-
|
|
21529
|
-
|
|
21530
|
-
width: calc(100% - 48px);
|
|
21531
|
-
max-width: calc(100% - 48px);
|
|
21532
|
-
margin: 24px;
|
|
21533
|
-
}
|
|
21534
|
-
.v-dialog > .v-overlay__content,
|
|
21535
|
-
.v-dialog > .v-overlay__content > form {
|
|
21536
|
-
display: flex;
|
|
21537
|
-
flex-direction: column;
|
|
21538
|
-
min-height: 0;
|
|
21539
|
-
}
|
|
21540
|
-
.v-dialog > .v-overlay__content > .v-card,
|
|
21541
|
-
.v-dialog > .v-overlay__content > .v-sheet,
|
|
21542
|
-
.v-dialog > .v-overlay__content > form > .v-card,
|
|
21543
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
|
21544
|
-
--v-scrollbar-offset: 0px;
|
|
21545
|
-
border-radius: 4px;
|
|
21546
|
-
overflow-y: auto;
|
|
21547
|
-
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
21548
|
-
}
|
|
21549
|
-
.v-dialog > .v-overlay__content > .v-card,
|
|
21550
|
-
.v-dialog > .v-overlay__content > form > .v-card {
|
|
21551
|
-
display: flex;
|
|
21552
|
-
flex-direction: column;
|
|
21552
|
+
display: inline-flex;
|
|
21553
|
+
font-size: 32px;
|
|
21554
|
+
line-height: 40px;
|
|
21555
|
+
grid-area: content;
|
|
21556
|
+
justify-content: space-between;
|
|
21553
21557
|
}
|
|
21554
|
-
.v-
|
|
21555
|
-
|
|
21556
|
-
padding: 16px 24px;
|
|
21558
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
|
21559
|
+
cursor: pointer;
|
|
21557
21560
|
}
|
|
21558
|
-
.v-
|
|
21559
|
-
|
|
21560
|
-
padding-top: 0;
|
|
21561
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
|
21562
|
+
opacity: 0.7;
|
|
21561
21563
|
}
|
|
21562
|
-
|
|
21563
|
-
.
|
|
21564
|
-
|
|
21565
|
-
|
|
21566
|
-
|
|
21567
|
-
padding: 16px 24px 24px;
|
|
21564
|
+
|
|
21565
|
+
.date-picker-header-transition-enter-active,
|
|
21566
|
+
.date-picker-header-reverse-transition-enter-active {
|
|
21567
|
+
transition-duration: 0.3s;
|
|
21568
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21568
21569
|
}
|
|
21569
|
-
.
|
|
21570
|
-
.
|
|
21571
|
-
|
|
21570
|
+
.date-picker-header-transition-leave-active,
|
|
21571
|
+
.date-picker-header-reverse-transition-leave-active {
|
|
21572
|
+
transition-duration: 0.3s;
|
|
21573
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21572
21574
|
}
|
|
21573
21575
|
|
|
21574
|
-
.
|
|
21575
|
-
|
|
21576
|
-
}
|
|
21577
|
-
.v-dialog--fullscreen > .v-overlay__content {
|
|
21578
|
-
border-radius: 0;
|
|
21579
|
-
margin: 0;
|
|
21580
|
-
padding: 0;
|
|
21581
|
-
width: 100%;
|
|
21582
|
-
height: 100%;
|
|
21583
|
-
max-width: 100%;
|
|
21584
|
-
max-height: 100%;
|
|
21585
|
-
overflow-y: auto;
|
|
21586
|
-
top: 0;
|
|
21587
|
-
left: 0;
|
|
21576
|
+
.date-picker-header-transition-enter-from {
|
|
21577
|
+
transform: translate(0, 100%);
|
|
21588
21578
|
}
|
|
21589
|
-
.
|
|
21590
|
-
|
|
21591
|
-
|
|
21592
|
-
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
|
21593
|
-
min-height: 100%;
|
|
21594
|
-
min-width: 100%;
|
|
21595
|
-
border-radius: 0;
|
|
21579
|
+
.date-picker-header-transition-leave-to {
|
|
21580
|
+
opacity: 0;
|
|
21581
|
+
transform: translate(0, -100%);
|
|
21596
21582
|
}
|
|
21597
21583
|
|
|
21598
|
-
.
|
|
21599
|
-
|
|
21600
|
-
display: flex;
|
|
21601
|
-
}
|
|
21602
|
-
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
21603
|
-
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
21604
|
-
display: flex;
|
|
21605
|
-
flex: 1 1 100%;
|
|
21606
|
-
flex-direction: column;
|
|
21607
|
-
max-height: 100%;
|
|
21608
|
-
max-width: 100%;
|
|
21584
|
+
.date-picker-header-reverse-transition-enter-from {
|
|
21585
|
+
transform: translate(0, -100%);
|
|
21609
21586
|
}
|
|
21610
|
-
.
|
|
21611
|
-
|
|
21612
|
-
|
|
21613
|
-
backface-visibility: hidden;
|
|
21614
|
-
overflow-y: auto;
|
|
21587
|
+
.date-picker-header-reverse-transition-leave-to {
|
|
21588
|
+
opacity: 0;
|
|
21589
|
+
transform: translate(0, 100%);
|
|
21615
21590
|
}.v-date-picker-controls {
|
|
21616
21591
|
display: flex;
|
|
21617
21592
|
align-items: center;
|
|
@@ -21723,72 +21698,6 @@ html.overflow-y-hidden {
|
|
|
21723
21698
|
|
|
21724
21699
|
.v-date-picker-month__day--hide-adjacent {
|
|
21725
21700
|
opacity: 0;
|
|
21726
|
-
}.v-date-picker {
|
|
21727
|
-
overflow: hidden;
|
|
21728
|
-
width: 328px;
|
|
21729
|
-
}
|
|
21730
|
-
.v-date-picker--show-week {
|
|
21731
|
-
width: 368px;
|
|
21732
|
-
}.v-date-picker-header {
|
|
21733
|
-
align-items: flex-end;
|
|
21734
|
-
height: 70px;
|
|
21735
|
-
display: grid;
|
|
21736
|
-
grid-template-areas: "prepend content append";
|
|
21737
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
|
21738
|
-
overflow: hidden;
|
|
21739
|
-
padding-inline: 24px 12px;
|
|
21740
|
-
padding-bottom: 12px;
|
|
21741
|
-
}
|
|
21742
|
-
|
|
21743
|
-
.v-date-picker-header__append {
|
|
21744
|
-
grid-area: append;
|
|
21745
|
-
}
|
|
21746
|
-
|
|
21747
|
-
.v-date-picker-header__prepend {
|
|
21748
|
-
grid-area: prepend;
|
|
21749
|
-
padding-inline-start: 8px;
|
|
21750
|
-
}
|
|
21751
|
-
|
|
21752
|
-
.v-date-picker-header__content {
|
|
21753
|
-
align-items: center;
|
|
21754
|
-
display: inline-flex;
|
|
21755
|
-
font-size: 32px;
|
|
21756
|
-
line-height: 40px;
|
|
21757
|
-
grid-area: content;
|
|
21758
|
-
justify-content: space-between;
|
|
21759
|
-
}
|
|
21760
|
-
.v-date-picker-header--clickable .v-date-picker-header__content {
|
|
21761
|
-
cursor: pointer;
|
|
21762
|
-
}
|
|
21763
|
-
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
|
21764
|
-
opacity: 0.7;
|
|
21765
|
-
}
|
|
21766
|
-
|
|
21767
|
-
.date-picker-header-transition-enter-active,
|
|
21768
|
-
.date-picker-header-reverse-transition-enter-active {
|
|
21769
|
-
transition-duration: 0.3s;
|
|
21770
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21771
|
-
}
|
|
21772
|
-
.date-picker-header-transition-leave-active,
|
|
21773
|
-
.date-picker-header-reverse-transition-leave-active {
|
|
21774
|
-
transition-duration: 0.3s;
|
|
21775
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21776
|
-
}
|
|
21777
|
-
|
|
21778
|
-
.date-picker-header-transition-enter-from {
|
|
21779
|
-
transform: translate(0, 100%);
|
|
21780
|
-
}
|
|
21781
|
-
.date-picker-header-transition-leave-to {
|
|
21782
|
-
opacity: 0;
|
|
21783
|
-
transform: translate(0, -100%);
|
|
21784
|
-
}
|
|
21785
|
-
|
|
21786
|
-
.date-picker-header-reverse-transition-enter-from {
|
|
21787
|
-
transform: translate(0, -100%);
|
|
21788
|
-
}
|
|
21789
|
-
.date-picker-header-reverse-transition-leave-to {
|
|
21790
|
-
opacity: 0;
|
|
21791
|
-
transform: translate(0, 100%);
|
|
21792
21701
|
}.v-date-picker-months {
|
|
21793
21702
|
height: 288px;
|
|
21794
21703
|
}
|
|
@@ -21823,18 +21732,134 @@ html.overflow-y-hidden {
|
|
|
21823
21732
|
}
|
|
21824
21733
|
.v-date-picker-years__content .v-btn {
|
|
21825
21734
|
padding-inline: 8px;
|
|
21826
|
-
}.v-
|
|
21827
|
-
|
|
21828
|
-
|
|
21735
|
+
}.v-divider {
|
|
21736
|
+
display: block;
|
|
21737
|
+
flex: 1 1 100%;
|
|
21738
|
+
height: 0px;
|
|
21739
|
+
max-height: 0px;
|
|
21740
|
+
opacity: var(--v-border-opacity);
|
|
21741
|
+
transition: inherit;
|
|
21742
|
+
border-style: solid;
|
|
21743
|
+
border-width: thin 0 0 0;
|
|
21829
21744
|
}
|
|
21830
|
-
.v-
|
|
21831
|
-
|
|
21745
|
+
.v-divider--vertical {
|
|
21746
|
+
align-self: stretch;
|
|
21747
|
+
border-width: 0 thin 0 0;
|
|
21748
|
+
display: inline-flex;
|
|
21749
|
+
height: 100%;
|
|
21750
|
+
margin-left: -1px;
|
|
21751
|
+
max-height: 100%;
|
|
21752
|
+
max-width: 0px;
|
|
21753
|
+
vertical-align: text-bottom;
|
|
21754
|
+
width: 0px;
|
|
21832
21755
|
}
|
|
21833
|
-
.v-
|
|
21834
|
-
|
|
21756
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
|
21757
|
+
max-width: calc(100% - 72px);
|
|
21758
|
+
margin-inline-start: 72px;
|
|
21835
21759
|
}
|
|
21836
|
-
.v-
|
|
21837
|
-
|
|
21760
|
+
.v-divider--inset.v-divider--vertical {
|
|
21761
|
+
margin-bottom: 8px;
|
|
21762
|
+
margin-top: 8px;
|
|
21763
|
+
max-height: calc(100% - 16px);
|
|
21764
|
+
}
|
|
21765
|
+
|
|
21766
|
+
.v-divider__content {
|
|
21767
|
+
padding: 0 16px;
|
|
21768
|
+
}
|
|
21769
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
|
21770
|
+
padding: 4px 0;
|
|
21771
|
+
}
|
|
21772
|
+
|
|
21773
|
+
.v-divider__wrapper {
|
|
21774
|
+
display: flex;
|
|
21775
|
+
align-items: center;
|
|
21776
|
+
justify-content: center;
|
|
21777
|
+
}
|
|
21778
|
+
.v-divider__wrapper--vertical {
|
|
21779
|
+
flex-direction: column;
|
|
21780
|
+
height: 100%;
|
|
21781
|
+
}
|
|
21782
|
+
.v-divider__wrapper--vertical .v-divider {
|
|
21783
|
+
margin: 0 auto;
|
|
21784
|
+
}.v-empty-state {
|
|
21785
|
+
align-items: center;
|
|
21786
|
+
display: flex;
|
|
21787
|
+
flex-direction: column;
|
|
21788
|
+
justify-content: center;
|
|
21789
|
+
min-height: 100%;
|
|
21790
|
+
padding: 16px;
|
|
21791
|
+
}
|
|
21792
|
+
.v-empty-state--start {
|
|
21793
|
+
align-items: flex-start;
|
|
21794
|
+
}
|
|
21795
|
+
.v-empty-state--center {
|
|
21796
|
+
align-items: center;
|
|
21797
|
+
}
|
|
21798
|
+
.v-empty-state--end {
|
|
21799
|
+
align-items: flex-end;
|
|
21800
|
+
}
|
|
21801
|
+
|
|
21802
|
+
.v-empty-state__media {
|
|
21803
|
+
text-align: center;
|
|
21804
|
+
width: 100%;
|
|
21805
|
+
}
|
|
21806
|
+
.v-empty-state__media .v-icon {
|
|
21807
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
21808
|
+
}
|
|
21809
|
+
|
|
21810
|
+
.v-empty-state__headline {
|
|
21811
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
21812
|
+
font-size: 3.75rem;
|
|
21813
|
+
font-weight: 300;
|
|
21814
|
+
line-height: 1;
|
|
21815
|
+
text-align: center;
|
|
21816
|
+
margin-bottom: 8px;
|
|
21817
|
+
}
|
|
21818
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
|
21819
|
+
font-size: 2.125rem;
|
|
21820
|
+
}
|
|
21821
|
+
|
|
21822
|
+
.v-empty-state__title {
|
|
21823
|
+
font-size: 1.25rem;
|
|
21824
|
+
font-weight: 500;
|
|
21825
|
+
line-height: 1.6;
|
|
21826
|
+
margin-bottom: 4px;
|
|
21827
|
+
text-align: center;
|
|
21828
|
+
}
|
|
21829
|
+
|
|
21830
|
+
.v-empty-state__text {
|
|
21831
|
+
font-size: 0.875rem;
|
|
21832
|
+
font-weight: 400;
|
|
21833
|
+
line-height: 1.425;
|
|
21834
|
+
padding: 0 16px;
|
|
21835
|
+
text-align: center;
|
|
21836
|
+
}
|
|
21837
|
+
|
|
21838
|
+
.v-empty-state__content {
|
|
21839
|
+
padding: 24px 0;
|
|
21840
|
+
}
|
|
21841
|
+
|
|
21842
|
+
.v-empty-state__actions {
|
|
21843
|
+
display: flex;
|
|
21844
|
+
gap: 8px;
|
|
21845
|
+
padding: 16px;
|
|
21846
|
+
}
|
|
21847
|
+
|
|
21848
|
+
.v-empty-state__action-btn.v-btn {
|
|
21849
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
21850
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
21851
|
+
}.v-expansion-panel {
|
|
21852
|
+
background-color: rgb(var(--v-theme-surface));
|
|
21853
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21854
|
+
}
|
|
21855
|
+
.v-expansion-panel:not(:first-child)::after {
|
|
21856
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
21857
|
+
}
|
|
21858
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
21859
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
|
21860
|
+
}
|
|
21861
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
|
21862
|
+
opacity: 0.4615384615;
|
|
21838
21863
|
}
|
|
21839
21864
|
|
|
21840
21865
|
.v-expansion-panels {
|
|
@@ -22033,116 +22058,257 @@ html.overflow-y-hidden {
|
|
|
22033
22058
|
}
|
|
22034
22059
|
.v-expansion-panels--tile > .v-expansion-panel {
|
|
22035
22060
|
border-radius: 0;
|
|
22036
|
-
}.v-
|
|
22037
|
-
display: block;
|
|
22038
|
-
flex: 1 1 100%;
|
|
22039
|
-
height: 0px;
|
|
22040
|
-
max-height: 0px;
|
|
22041
|
-
opacity: var(--v-border-opacity);
|
|
22042
|
-
transition: inherit;
|
|
22043
|
-
border-style: solid;
|
|
22044
|
-
border-width: thin 0 0 0;
|
|
22045
|
-
}
|
|
22046
|
-
.v-divider--vertical {
|
|
22047
|
-
align-self: stretch;
|
|
22048
|
-
border-width: 0 thin 0 0;
|
|
22049
|
-
display: inline-flex;
|
|
22050
|
-
height: 100%;
|
|
22051
|
-
margin-left: -1px;
|
|
22052
|
-
max-height: 100%;
|
|
22053
|
-
max-width: 0px;
|
|
22054
|
-
vertical-align: text-bottom;
|
|
22055
|
-
width: 0px;
|
|
22056
|
-
}
|
|
22057
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
|
22058
|
-
max-width: calc(100% - 72px);
|
|
22059
|
-
margin-inline-start: 72px;
|
|
22060
|
-
}
|
|
22061
|
-
.v-divider--inset.v-divider--vertical {
|
|
22062
|
-
margin-bottom: 8px;
|
|
22063
|
-
margin-top: 8px;
|
|
22064
|
-
max-height: calc(100% - 16px);
|
|
22065
|
-
}
|
|
22066
|
-
|
|
22067
|
-
.v-divider__content {
|
|
22068
|
-
padding: 0 16px;
|
|
22069
|
-
}
|
|
22070
|
-
.v-divider__wrapper--vertical .v-divider__content {
|
|
22071
|
-
padding: 4px 0;
|
|
22072
|
-
}
|
|
22073
|
-
|
|
22074
|
-
.v-divider__wrapper {
|
|
22075
|
-
display: flex;
|
|
22061
|
+
}.v-dialog {
|
|
22076
22062
|
align-items: center;
|
|
22077
22063
|
justify-content: center;
|
|
22064
|
+
margin: auto;
|
|
22078
22065
|
}
|
|
22079
|
-
.v-
|
|
22066
|
+
.v-dialog > .v-overlay__content {
|
|
22067
|
+
max-height: calc(100% - 48px);
|
|
22068
|
+
width: calc(100% - 48px);
|
|
22069
|
+
max-width: calc(100% - 48px);
|
|
22070
|
+
margin: 24px;
|
|
22071
|
+
}
|
|
22072
|
+
.v-dialog > .v-overlay__content,
|
|
22073
|
+
.v-dialog > .v-overlay__content > form {
|
|
22074
|
+
display: flex;
|
|
22080
22075
|
flex-direction: column;
|
|
22081
|
-
height:
|
|
22076
|
+
min-height: 0;
|
|
22082
22077
|
}
|
|
22083
|
-
.v-
|
|
22084
|
-
|
|
22085
|
-
|
|
22086
|
-
.v-
|
|
22087
|
-
|
|
22088
|
-
grid-template-areas: "prepend-inner field clear append-inner";
|
|
22089
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
|
|
22090
|
-
font-size: 16px;
|
|
22091
|
-
letter-spacing: 0.009375em;
|
|
22092
|
-
max-width: 100%;
|
|
22078
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
22079
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
|
22080
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
|
22081
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
|
22082
|
+
--v-scrollbar-offset: 0px;
|
|
22093
22083
|
border-radius: 4px;
|
|
22094
|
-
|
|
22095
|
-
|
|
22096
|
-
grid-area: control;
|
|
22097
|
-
position: relative;
|
|
22098
|
-
--v-field-padding-start: 16px;
|
|
22099
|
-
--v-field-padding-end: 16px;
|
|
22100
|
-
--v-field-padding-top: 8px;
|
|
22101
|
-
--v-field-padding-bottom: 4px;
|
|
22102
|
-
--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
|
|
22103
|
-
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
|
|
22104
|
-
}
|
|
22105
|
-
.v-field--disabled {
|
|
22106
|
-
opacity: var(--v-disabled-opacity);
|
|
22107
|
-
pointer-events: none;
|
|
22084
|
+
overflow-y: auto;
|
|
22085
|
+
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22108
22086
|
}
|
|
22109
|
-
.v-
|
|
22110
|
-
|
|
22087
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
22088
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
|
22089
|
+
display: flex;
|
|
22090
|
+
flex-direction: column;
|
|
22111
22091
|
}
|
|
22112
|
-
|
|
22113
|
-
|
|
22114
|
-
|
|
22115
|
-
.v-field--prepended {
|
|
22116
|
-
padding-inline-start: 12px;
|
|
22092
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
|
22093
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
|
22094
|
+
padding: 16px 24px;
|
|
22117
22095
|
}
|
|
22118
|
-
.v-
|
|
22119
|
-
|
|
22096
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
|
22097
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
|
22098
|
+
padding-top: 0;
|
|
22120
22099
|
}
|
|
22121
|
-
.v-
|
|
22122
|
-
|
|
22123
|
-
|
|
22124
|
-
|
|
22125
|
-
|
|
22100
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
|
22101
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
|
22102
|
+
font-size: inherit;
|
|
22103
|
+
letter-spacing: 0.03125em;
|
|
22104
|
+
line-height: inherit;
|
|
22105
|
+
padding: 16px 24px 24px;
|
|
22126
22106
|
}
|
|
22127
|
-
.v-
|
|
22128
|
-
|
|
22129
|
-
|
|
22130
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22131
|
-
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));
|
|
22107
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-actions,
|
|
22108
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
|
|
22109
|
+
justify-content: flex-end;
|
|
22132
22110
|
}
|
|
22133
|
-
|
|
22134
|
-
|
|
22111
|
+
|
|
22112
|
+
.v-dialog--fullscreen {
|
|
22113
|
+
--v-scrollbar-offset: 0px;
|
|
22135
22114
|
}
|
|
22136
|
-
.v-
|
|
22137
|
-
border-
|
|
22138
|
-
|
|
22115
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
|
22116
|
+
border-radius: 0;
|
|
22117
|
+
margin: 0;
|
|
22118
|
+
padding: 0;
|
|
22119
|
+
width: 100%;
|
|
22120
|
+
height: 100%;
|
|
22121
|
+
max-width: 100%;
|
|
22122
|
+
max-height: 100%;
|
|
22123
|
+
overflow-y: auto;
|
|
22124
|
+
top: 0;
|
|
22125
|
+
left: 0;
|
|
22139
22126
|
}
|
|
22140
|
-
.v-
|
|
22141
|
-
|
|
22142
|
-
|
|
22127
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
|
22128
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet,
|
|
22129
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-card,
|
|
22130
|
+
.v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
|
|
22131
|
+
min-height: 100%;
|
|
22132
|
+
min-width: 100%;
|
|
22133
|
+
border-radius: 0;
|
|
22143
22134
|
}
|
|
22144
22135
|
|
|
22145
|
-
.v-
|
|
22136
|
+
.v-dialog--scrollable > .v-overlay__content,
|
|
22137
|
+
.v-dialog--scrollable > .v-overlay__content > form {
|
|
22138
|
+
display: flex;
|
|
22139
|
+
}
|
|
22140
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
22141
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
22142
|
+
display: flex;
|
|
22143
|
+
flex: 1 1 100%;
|
|
22144
|
+
flex-direction: column;
|
|
22145
|
+
max-height: 100%;
|
|
22146
|
+
max-width: 100%;
|
|
22147
|
+
}
|
|
22148
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
22149
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
22150
|
+
-webkit-backface-visibility: hidden;
|
|
22151
|
+
backface-visibility: hidden;
|
|
22152
|
+
overflow-y: auto;
|
|
22153
|
+
}.v-file-input--hide.v-input .v-field,
|
|
22154
|
+
.v-file-input--hide.v-input .v-input__control,
|
|
22155
|
+
.v-file-input--hide.v-input .v-input__details {
|
|
22156
|
+
display: none;
|
|
22157
|
+
}
|
|
22158
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
|
22159
|
+
grid-area: control;
|
|
22160
|
+
margin: 0 auto;
|
|
22161
|
+
}
|
|
22162
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
22163
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
22164
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
22165
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
22166
|
+
top: 0px;
|
|
22167
|
+
}
|
|
22168
|
+
.v-file-input input[type=file] {
|
|
22169
|
+
height: 100%;
|
|
22170
|
+
left: 0;
|
|
22171
|
+
opacity: 0;
|
|
22172
|
+
position: absolute;
|
|
22173
|
+
top: 0;
|
|
22174
|
+
width: 100%;
|
|
22175
|
+
z-index: 1;
|
|
22176
|
+
}
|
|
22177
|
+
.v-file-input .v-input__details {
|
|
22178
|
+
padding-inline: 16px;
|
|
22179
|
+
}
|
|
22180
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
|
22181
|
+
padding-inline: 0;
|
|
22182
|
+
}.v-fab {
|
|
22183
|
+
align-items: center;
|
|
22184
|
+
display: inline-flex;
|
|
22185
|
+
flex: 1 1 auto;
|
|
22186
|
+
pointer-events: none;
|
|
22187
|
+
position: relative;
|
|
22188
|
+
transition-duration: 0.2s;
|
|
22189
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
22190
|
+
vertical-align: middle;
|
|
22191
|
+
}
|
|
22192
|
+
.v-fab .v-btn {
|
|
22193
|
+
pointer-events: auto;
|
|
22194
|
+
}
|
|
22195
|
+
.v-fab .v-btn--variant-elevated {
|
|
22196
|
+
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));
|
|
22197
|
+
}
|
|
22198
|
+
.v-fab--app, .v-fab--absolute {
|
|
22199
|
+
display: flex;
|
|
22200
|
+
}
|
|
22201
|
+
.v-fab--start, .v-fab--left {
|
|
22202
|
+
justify-content: flex-start;
|
|
22203
|
+
}
|
|
22204
|
+
.v-fab--center {
|
|
22205
|
+
align-items: center;
|
|
22206
|
+
justify-content: center;
|
|
22207
|
+
}
|
|
22208
|
+
.v-fab--end, .v-fab--right {
|
|
22209
|
+
justify-content: flex-end;
|
|
22210
|
+
}
|
|
22211
|
+
.v-fab--bottom {
|
|
22212
|
+
align-items: flex-end;
|
|
22213
|
+
}
|
|
22214
|
+
.v-fab--top {
|
|
22215
|
+
align-items: flex-start;
|
|
22216
|
+
}
|
|
22217
|
+
.v-fab--extended .v-btn {
|
|
22218
|
+
border-radius: 9999px !important;
|
|
22219
|
+
}
|
|
22220
|
+
|
|
22221
|
+
.v-fab__container {
|
|
22222
|
+
align-self: center;
|
|
22223
|
+
display: inline-flex;
|
|
22224
|
+
position: absolute;
|
|
22225
|
+
vertical-align: middle;
|
|
22226
|
+
}
|
|
22227
|
+
.v-fab--app .v-fab__container {
|
|
22228
|
+
margin: 12px;
|
|
22229
|
+
}
|
|
22230
|
+
.v-fab--absolute .v-fab__container {
|
|
22231
|
+
position: absolute;
|
|
22232
|
+
z-index: 4;
|
|
22233
|
+
}
|
|
22234
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
|
22235
|
+
transform: translateY(-50%);
|
|
22236
|
+
}
|
|
22237
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
|
22238
|
+
transform: translateY(50%);
|
|
22239
|
+
}
|
|
22240
|
+
.v-fab--top .v-fab__container {
|
|
22241
|
+
top: 0;
|
|
22242
|
+
}
|
|
22243
|
+
.v-fab--bottom .v-fab__container {
|
|
22244
|
+
bottom: 0;
|
|
22245
|
+
}
|
|
22246
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
|
22247
|
+
left: 0;
|
|
22248
|
+
}
|
|
22249
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
|
22250
|
+
right: 0;
|
|
22251
|
+
}/* region INPUT */
|
|
22252
|
+
.v-field {
|
|
22253
|
+
display: grid;
|
|
22254
|
+
grid-template-areas: "prepend-inner field clear append-inner";
|
|
22255
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
|
|
22256
|
+
font-size: 16px;
|
|
22257
|
+
letter-spacing: 0.009375em;
|
|
22258
|
+
max-width: 100%;
|
|
22259
|
+
border-radius: 4px;
|
|
22260
|
+
contain: layout;
|
|
22261
|
+
flex: 1 0;
|
|
22262
|
+
grid-area: control;
|
|
22263
|
+
position: relative;
|
|
22264
|
+
--v-field-padding-start: 16px;
|
|
22265
|
+
--v-field-padding-end: 16px;
|
|
22266
|
+
--v-field-padding-top: 8px;
|
|
22267
|
+
--v-field-padding-bottom: 4px;
|
|
22268
|
+
--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
|
|
22269
|
+
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
|
|
22270
|
+
}
|
|
22271
|
+
.v-field--disabled {
|
|
22272
|
+
opacity: var(--v-disabled-opacity);
|
|
22273
|
+
pointer-events: none;
|
|
22274
|
+
}
|
|
22275
|
+
.v-field .v-chip {
|
|
22276
|
+
--v-chip-height: 24px;
|
|
22277
|
+
}
|
|
22278
|
+
|
|
22279
|
+
/* endregion */
|
|
22280
|
+
/* region MODIFIERS */
|
|
22281
|
+
.v-field--prepended {
|
|
22282
|
+
padding-inline-start: 12px;
|
|
22283
|
+
}
|
|
22284
|
+
.v-field--appended {
|
|
22285
|
+
padding-inline-end: 12px;
|
|
22286
|
+
}
|
|
22287
|
+
.v-field--variant-solo, .v-field--variant-solo-filled {
|
|
22288
|
+
background: rgb(var(--v-theme-surface));
|
|
22289
|
+
border-color: transparent;
|
|
22290
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22291
|
+
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));
|
|
22292
|
+
}
|
|
22293
|
+
.v-field--variant-solo-inverted {
|
|
22294
|
+
background: rgb(var(--v-theme-surface));
|
|
22295
|
+
border-color: transparent;
|
|
22296
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22297
|
+
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));
|
|
22298
|
+
}
|
|
22299
|
+
.v-field--variant-solo-inverted.v-field--focused {
|
|
22300
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
22301
|
+
}
|
|
22302
|
+
.v-field--variant-filled {
|
|
22303
|
+
border-bottom-left-radius: 0;
|
|
22304
|
+
border-bottom-right-radius: 0;
|
|
22305
|
+
}
|
|
22306
|
+
.v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
|
|
22307
|
+
--v-input-control-height: 56px;
|
|
22308
|
+
--v-field-padding-bottom: 4px;
|
|
22309
|
+
}
|
|
22310
|
+
|
|
22311
|
+
.v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
|
|
22146
22312
|
--v-input-control-height: 48px;
|
|
22147
22313
|
--v-field-padding-bottom: 0px;
|
|
22148
22314
|
}
|
|
@@ -22652,162 +22818,64 @@ textarea.v-field__input::placeholder {
|
|
|
22652
22818
|
opacity: 0;
|
|
22653
22819
|
}
|
|
22654
22820
|
|
|
22655
|
-
/* endregion */.v-
|
|
22656
|
-
|
|
22657
|
-
|
|
22658
|
-
|
|
22659
|
-
|
|
22660
|
-
|
|
22661
|
-
|
|
22662
|
-
|
|
22821
|
+
/* endregion */.v-footer {
|
|
22822
|
+
align-items: center;
|
|
22823
|
+
display: flex;
|
|
22824
|
+
flex: 1 1 auto;
|
|
22825
|
+
padding: 8px 16px;
|
|
22826
|
+
position: relative;
|
|
22827
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22828
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
|
22829
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22830
|
+
border-style: solid;
|
|
22831
|
+
border-width: 0;
|
|
22832
|
+
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));
|
|
22833
|
+
border-radius: 0;
|
|
22834
|
+
background: rgb(var(--v-theme-surface));
|
|
22835
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22663
22836
|
}
|
|
22664
|
-
.v-
|
|
22665
|
-
|
|
22666
|
-
|
|
22667
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
22668
|
-
top: 0px;
|
|
22837
|
+
.v-footer--border {
|
|
22838
|
+
border-width: thin;
|
|
22839
|
+
box-shadow: none;
|
|
22669
22840
|
}
|
|
22670
|
-
.v-
|
|
22671
|
-
height: 100%;
|
|
22672
|
-
left: 0;
|
|
22673
|
-
opacity: 0;
|
|
22841
|
+
.v-footer--absolute {
|
|
22674
22842
|
position: absolute;
|
|
22675
|
-
top: 0;
|
|
22676
|
-
width: 100%;
|
|
22677
|
-
z-index: 1;
|
|
22678
22843
|
}
|
|
22679
|
-
.v-
|
|
22680
|
-
|
|
22844
|
+
.v-footer--fixed {
|
|
22845
|
+
position: fixed;
|
|
22681
22846
|
}
|
|
22682
|
-
.v-
|
|
22683
|
-
|
|
22684
|
-
}.v-
|
|
22847
|
+
.v-footer--rounded {
|
|
22848
|
+
border-radius: 4px;
|
|
22849
|
+
}.v-icon {
|
|
22850
|
+
--v-icon-size-multiplier: 1;
|
|
22685
22851
|
align-items: center;
|
|
22686
22852
|
display: inline-flex;
|
|
22687
|
-
|
|
22688
|
-
|
|
22853
|
+
font-feature-settings: "liga";
|
|
22854
|
+
height: 1em;
|
|
22855
|
+
justify-content: center;
|
|
22856
|
+
letter-spacing: normal;
|
|
22857
|
+
line-height: 1;
|
|
22689
22858
|
position: relative;
|
|
22690
|
-
|
|
22691
|
-
|
|
22859
|
+
text-indent: 0;
|
|
22860
|
+
text-align: center;
|
|
22861
|
+
-webkit-user-select: none;
|
|
22862
|
+
user-select: none;
|
|
22692
22863
|
vertical-align: middle;
|
|
22864
|
+
width: 1em;
|
|
22865
|
+
min-width: 1em;
|
|
22693
22866
|
}
|
|
22694
|
-
.v-
|
|
22695
|
-
|
|
22867
|
+
.v-icon--clickable {
|
|
22868
|
+
cursor: pointer;
|
|
22696
22869
|
}
|
|
22697
|
-
.v-
|
|
22698
|
-
|
|
22870
|
+
.v-icon--disabled {
|
|
22871
|
+
pointer-events: none;
|
|
22872
|
+
opacity: 0.38;
|
|
22699
22873
|
}
|
|
22700
|
-
.v-
|
|
22701
|
-
|
|
22874
|
+
.v-icon--size-x-small {
|
|
22875
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
|
22702
22876
|
}
|
|
22703
|
-
.v-
|
|
22704
|
-
|
|
22705
|
-
}
|
|
22706
|
-
.v-fab--center {
|
|
22707
|
-
align-items: center;
|
|
22708
|
-
justify-content: center;
|
|
22709
|
-
}
|
|
22710
|
-
.v-fab--end, .v-fab--right {
|
|
22711
|
-
justify-content: flex-end;
|
|
22712
|
-
}
|
|
22713
|
-
.v-fab--bottom {
|
|
22714
|
-
align-items: flex-end;
|
|
22715
|
-
}
|
|
22716
|
-
.v-fab--top {
|
|
22717
|
-
align-items: flex-start;
|
|
22718
|
-
}
|
|
22719
|
-
.v-fab--extended .v-btn {
|
|
22720
|
-
border-radius: 9999px !important;
|
|
22721
|
-
}
|
|
22722
|
-
|
|
22723
|
-
.v-fab__container {
|
|
22724
|
-
align-self: center;
|
|
22725
|
-
display: inline-flex;
|
|
22726
|
-
position: absolute;
|
|
22727
|
-
vertical-align: middle;
|
|
22728
|
-
}
|
|
22729
|
-
.v-fab--app .v-fab__container {
|
|
22730
|
-
margin: 12px;
|
|
22731
|
-
}
|
|
22732
|
-
.v-fab--absolute .v-fab__container {
|
|
22733
|
-
position: absolute;
|
|
22734
|
-
z-index: 4;
|
|
22735
|
-
}
|
|
22736
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
|
22737
|
-
transform: translateY(-50%);
|
|
22738
|
-
}
|
|
22739
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
|
22740
|
-
transform: translateY(50%);
|
|
22741
|
-
}
|
|
22742
|
-
.v-fab--top .v-fab__container {
|
|
22743
|
-
top: 0;
|
|
22744
|
-
}
|
|
22745
|
-
.v-fab--bottom .v-fab__container {
|
|
22746
|
-
bottom: 0;
|
|
22747
|
-
}
|
|
22748
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
|
22749
|
-
left: 0;
|
|
22750
|
-
}
|
|
22751
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
|
22752
|
-
right: 0;
|
|
22753
|
-
}.v-footer {
|
|
22754
|
-
align-items: center;
|
|
22755
|
-
display: flex;
|
|
22756
|
-
flex: 1 1 auto;
|
|
22757
|
-
padding: 8px 16px;
|
|
22758
|
-
position: relative;
|
|
22759
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22760
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
|
22761
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22762
|
-
border-style: solid;
|
|
22763
|
-
border-width: 0;
|
|
22764
|
-
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));
|
|
22765
|
-
border-radius: 0;
|
|
22766
|
-
background: rgb(var(--v-theme-surface));
|
|
22767
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22768
|
-
}
|
|
22769
|
-
.v-footer--border {
|
|
22770
|
-
border-width: thin;
|
|
22771
|
-
box-shadow: none;
|
|
22772
|
-
}
|
|
22773
|
-
.v-footer--absolute {
|
|
22774
|
-
position: absolute;
|
|
22775
|
-
}
|
|
22776
|
-
.v-footer--fixed {
|
|
22777
|
-
position: fixed;
|
|
22778
|
-
}
|
|
22779
|
-
.v-footer--rounded {
|
|
22780
|
-
border-radius: 4px;
|
|
22781
|
-
}.v-icon {
|
|
22782
|
-
--v-icon-size-multiplier: 1;
|
|
22783
|
-
align-items: center;
|
|
22784
|
-
display: inline-flex;
|
|
22785
|
-
font-feature-settings: "liga";
|
|
22786
|
-
height: 1em;
|
|
22787
|
-
justify-content: center;
|
|
22788
|
-
letter-spacing: normal;
|
|
22789
|
-
line-height: 1;
|
|
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;
|
|
22805
|
-
}
|
|
22806
|
-
.v-icon--size-x-small {
|
|
22807
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
|
22808
|
-
}
|
|
22809
|
-
.v-icon--size-small {
|
|
22810
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
|
22877
|
+
.v-icon--size-small {
|
|
22878
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
|
22811
22879
|
}
|
|
22812
22880
|
.v-icon--size-default {
|
|
22813
22881
|
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
|
@@ -22831,31 +22899,6 @@ textarea.v-field__input::placeholder {
|
|
|
22831
22899
|
|
|
22832
22900
|
.v-icon--end {
|
|
22833
22901
|
margin-inline-start: 8px;
|
|
22834
|
-
}.v-infinite-scroll--horizontal {
|
|
22835
|
-
display: flex;
|
|
22836
|
-
flex-direction: row;
|
|
22837
|
-
overflow-x: auto;
|
|
22838
|
-
}
|
|
22839
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
|
22840
|
-
height: 100%;
|
|
22841
|
-
width: 1px;
|
|
22842
|
-
}
|
|
22843
|
-
|
|
22844
|
-
.v-infinite-scroll--vertical {
|
|
22845
|
-
display: flex;
|
|
22846
|
-
flex-direction: column;
|
|
22847
|
-
overflow-y: auto;
|
|
22848
|
-
}
|
|
22849
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
|
22850
|
-
height: 1px;
|
|
22851
|
-
width: 100%;
|
|
22852
|
-
}
|
|
22853
|
-
|
|
22854
|
-
.v-infinite-scroll__side {
|
|
22855
|
-
align-items: center;
|
|
22856
|
-
display: flex;
|
|
22857
|
-
justify-content: center;
|
|
22858
|
-
padding: 8px;
|
|
22859
22902
|
}.v-img {
|
|
22860
22903
|
--v-theme-overlay-multiplier: 3;
|
|
22861
22904
|
z-index: 0;
|
|
@@ -22892,18 +22935,51 @@ textarea.v-field__input::placeholder {
|
|
|
22892
22935
|
|
|
22893
22936
|
.v-img__gradient {
|
|
22894
22937
|
background-repeat: no-repeat;
|
|
22938
|
+
}.v-infinite-scroll--horizontal {
|
|
22939
|
+
display: flex;
|
|
22940
|
+
flex-direction: row;
|
|
22941
|
+
overflow-x: auto;
|
|
22942
|
+
}
|
|
22943
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
|
22944
|
+
height: 100%;
|
|
22945
|
+
width: 1px;
|
|
22946
|
+
}
|
|
22947
|
+
|
|
22948
|
+
.v-infinite-scroll--vertical {
|
|
22949
|
+
display: flex;
|
|
22950
|
+
flex-direction: column;
|
|
22951
|
+
overflow-y: auto;
|
|
22952
|
+
}
|
|
22953
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
|
22954
|
+
height: 1px;
|
|
22955
|
+
width: 100%;
|
|
22956
|
+
}
|
|
22957
|
+
|
|
22958
|
+
.v-infinite-scroll__side {
|
|
22959
|
+
align-items: center;
|
|
22960
|
+
display: flex;
|
|
22961
|
+
justify-content: center;
|
|
22962
|
+
padding: 8px;
|
|
22895
22963
|
}.v-item-group {
|
|
22896
22964
|
flex: 0 1 auto;
|
|
22897
22965
|
max-width: 100%;
|
|
22898
22966
|
position: relative;
|
|
22899
22967
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22900
|
-
}.v-
|
|
22901
|
-
|
|
22902
|
-
|
|
22968
|
+
}.v-label {
|
|
22969
|
+
align-items: center;
|
|
22970
|
+
color: inherit;
|
|
22971
|
+
display: inline-flex;
|
|
22972
|
+
font-size: 1rem;
|
|
22973
|
+
letter-spacing: 0.009375em;
|
|
22974
|
+
min-width: 0;
|
|
22975
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
22976
|
+
overflow: hidden;
|
|
22977
|
+
text-overflow: ellipsis;
|
|
22978
|
+
white-space: nowrap;
|
|
22903
22979
|
}
|
|
22904
22980
|
|
|
22905
|
-
.v-
|
|
22906
|
-
|
|
22981
|
+
.v-label--clickable {
|
|
22982
|
+
cursor: pointer;
|
|
22907
22983
|
}.v-layout {
|
|
22908
22984
|
--v-scrollbar-offset: 0px;
|
|
22909
22985
|
display: flex;
|
|
@@ -22912,6 +22988,13 @@ textarea.v-field__input::placeholder {
|
|
|
22912
22988
|
.v-layout--full-height {
|
|
22913
22989
|
--v-scrollbar-offset: inherit;
|
|
22914
22990
|
height: 100%;
|
|
22991
|
+
}.v-layout-item {
|
|
22992
|
+
position: absolute;
|
|
22993
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22994
|
+
}
|
|
22995
|
+
|
|
22996
|
+
.v-layout-item--absolute {
|
|
22997
|
+
position: absolute;
|
|
22915
22998
|
}.v-input {
|
|
22916
22999
|
display: grid;
|
|
22917
23000
|
flex: 1 1 auto;
|
|
@@ -23054,21 +23137,6 @@ textarea.v-field__input::placeholder {
|
|
|
23054
23137
|
|
|
23055
23138
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
|
23056
23139
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
|
23057
|
-
}.v-label {
|
|
23058
|
-
align-items: center;
|
|
23059
|
-
color: inherit;
|
|
23060
|
-
display: inline-flex;
|
|
23061
|
-
font-size: 1rem;
|
|
23062
|
-
letter-spacing: 0.009375em;
|
|
23063
|
-
min-width: 0;
|
|
23064
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
23065
|
-
overflow: hidden;
|
|
23066
|
-
text-overflow: ellipsis;
|
|
23067
|
-
white-space: nowrap;
|
|
23068
|
-
}
|
|
23069
|
-
|
|
23070
|
-
.v-label--clickable {
|
|
23071
|
-
cursor: pointer;
|
|
23072
23140
|
}.v-list {
|
|
23073
23141
|
overflow: auto;
|
|
23074
23142
|
padding: 8px 0;
|
|
@@ -23626,6 +23694,21 @@ textarea.v-field__input::placeholder {
|
|
|
23626
23694
|
}
|
|
23627
23695
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
23628
23696
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
23697
|
+
}.v-locale-provider {
|
|
23698
|
+
display: contents;
|
|
23699
|
+
}.v-menu > .v-overlay__content {
|
|
23700
|
+
display: flex;
|
|
23701
|
+
flex-direction: column;
|
|
23702
|
+
border-radius: 4px;
|
|
23703
|
+
}
|
|
23704
|
+
.v-menu > .v-overlay__content > .v-card,
|
|
23705
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
|
23706
|
+
.v-menu > .v-overlay__content > .v-list {
|
|
23707
|
+
background: rgb(var(--v-theme-surface));
|
|
23708
|
+
border-radius: inherit;
|
|
23709
|
+
overflow: auto;
|
|
23710
|
+
height: 100%;
|
|
23711
|
+
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));
|
|
23629
23712
|
}.v-main {
|
|
23630
23713
|
flex: 1 0 auto;
|
|
23631
23714
|
max-width: 100%;
|
|
@@ -23654,19 +23737,6 @@ textarea.v-field__input::placeholder {
|
|
|
23654
23737
|
--v-layout-right: 0px;
|
|
23655
23738
|
--v-layout-top: 0px;
|
|
23656
23739
|
--v-layout-bottom: 0px;
|
|
23657
|
-
}.v-menu > .v-overlay__content {
|
|
23658
|
-
display: flex;
|
|
23659
|
-
flex-direction: column;
|
|
23660
|
-
border-radius: 4px;
|
|
23661
|
-
}
|
|
23662
|
-
.v-menu > .v-overlay__content > .v-card,
|
|
23663
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
|
23664
|
-
.v-menu > .v-overlay__content > .v-list {
|
|
23665
|
-
background: rgb(var(--v-theme-surface));
|
|
23666
|
-
border-radius: inherit;
|
|
23667
|
-
overflow: auto;
|
|
23668
|
-
height: 100%;
|
|
23669
|
-
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));
|
|
23670
23740
|
}.v-messages {
|
|
23671
23741
|
flex: 1 1 auto;
|
|
23672
23742
|
font-size: 12px;
|
|
@@ -23683,8 +23753,6 @@ textarea.v-field__input::placeholder {
|
|
|
23683
23753
|
-webkit-hyphens: auto;
|
|
23684
23754
|
hyphens: auto;
|
|
23685
23755
|
transition-duration: 150ms;
|
|
23686
|
-
}.v-locale-provider {
|
|
23687
|
-
display: contents;
|
|
23688
23756
|
}.v-navigation-drawer {
|
|
23689
23757
|
-webkit-overflow-scrolling: touch;
|
|
23690
23758
|
background: rgb(var(--v-theme-surface));
|
|
@@ -23787,68 +23855,116 @@ textarea.v-field__input::placeholder {
|
|
|
23787
23855
|
.v-navigation-drawer__append {
|
|
23788
23856
|
flex: none;
|
|
23789
23857
|
overflow: hidden;
|
|
23790
|
-
}.v-
|
|
23791
|
-
|
|
23858
|
+
}.v-pagination__list {
|
|
23859
|
+
display: inline-flex;
|
|
23860
|
+
list-style-type: none;
|
|
23861
|
+
justify-content: center;
|
|
23862
|
+
width: 100%;
|
|
23863
|
+
}
|
|
23864
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
|
23865
|
+
margin: 0.3rem;
|
|
23866
|
+
}.v-progress-circular {
|
|
23792
23867
|
align-items: center;
|
|
23793
|
-
display: flex;
|
|
23868
|
+
display: inline-flex;
|
|
23794
23869
|
justify-content: center;
|
|
23795
|
-
padding: 0.5rem 0;
|
|
23796
23870
|
position: relative;
|
|
23871
|
+
vertical-align: middle;
|
|
23797
23872
|
}
|
|
23798
|
-
.v-
|
|
23873
|
+
.v-progress-circular > svg {
|
|
23874
|
+
width: 100%;
|
|
23799
23875
|
height: 100%;
|
|
23876
|
+
margin: auto;
|
|
23877
|
+
position: absolute;
|
|
23878
|
+
top: 0;
|
|
23879
|
+
bottom: 0;
|
|
23880
|
+
left: 0;
|
|
23881
|
+
right: 0;
|
|
23882
|
+
z-index: 0;
|
|
23800
23883
|
}
|
|
23801
23884
|
|
|
23802
|
-
.v-
|
|
23803
|
-
margin: 0 8px;
|
|
23804
|
-
}
|
|
23805
|
-
|
|
23806
|
-
.v-otp-input__content {
|
|
23885
|
+
.v-progress-circular__content {
|
|
23807
23886
|
align-items: center;
|
|
23808
23887
|
display: flex;
|
|
23809
|
-
gap: 0.5rem;
|
|
23810
|
-
height: 64px;
|
|
23811
|
-
padding: 0.5rem;
|
|
23812
23888
|
justify-content: center;
|
|
23813
|
-
max-width: 320px;
|
|
23814
|
-
position: relative;
|
|
23815
|
-
border-radius: inherit;
|
|
23816
23889
|
}
|
|
23817
|
-
|
|
23818
|
-
|
|
23890
|
+
|
|
23891
|
+
.v-progress-circular__underlay {
|
|
23892
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23893
|
+
stroke: currentColor;
|
|
23894
|
+
z-index: 1;
|
|
23819
23895
|
}
|
|
23820
23896
|
|
|
23821
|
-
.v-
|
|
23822
|
-
|
|
23823
|
-
|
|
23824
|
-
|
|
23825
|
-
outline: none;
|
|
23826
|
-
text-align: center;
|
|
23827
|
-
width: 100%;
|
|
23897
|
+
.v-progress-circular__overlay {
|
|
23898
|
+
stroke: currentColor;
|
|
23899
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
|
23900
|
+
z-index: 2;
|
|
23828
23901
|
}
|
|
23829
|
-
|
|
23830
|
-
|
|
23831
|
-
|
|
23902
|
+
|
|
23903
|
+
.v-progress-circular--size-x-small {
|
|
23904
|
+
height: 16px;
|
|
23905
|
+
width: 16px;
|
|
23832
23906
|
}
|
|
23833
|
-
.v-
|
|
23834
|
-
|
|
23907
|
+
.v-progress-circular--size-small {
|
|
23908
|
+
height: 24px;
|
|
23909
|
+
width: 24px;
|
|
23910
|
+
}
|
|
23911
|
+
.v-progress-circular--size-default {
|
|
23912
|
+
height: 32px;
|
|
23913
|
+
width: 32px;
|
|
23914
|
+
}
|
|
23915
|
+
.v-progress-circular--size-large {
|
|
23916
|
+
height: 48px;
|
|
23917
|
+
width: 48px;
|
|
23918
|
+
}
|
|
23919
|
+
.v-progress-circular--size-x-large {
|
|
23920
|
+
height: 64px;
|
|
23921
|
+
width: 64px;
|
|
23835
23922
|
}
|
|
23836
23923
|
|
|
23837
|
-
.v-
|
|
23838
|
-
|
|
23839
|
-
|
|
23840
|
-
|
|
23841
|
-
justify-content: center;
|
|
23842
|
-
width: 100%;
|
|
23924
|
+
.v-progress-circular--indeterminate > svg {
|
|
23925
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
|
23926
|
+
transform-origin: center center;
|
|
23927
|
+
transition: all 0.2s ease-in-out;
|
|
23843
23928
|
}
|
|
23844
|
-
.v-
|
|
23845
|
-
|
|
23846
|
-
|
|
23847
|
-
|
|
23848
|
-
|
|
23929
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
|
23930
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
|
23931
|
+
stroke-dasharray: 25, 200;
|
|
23932
|
+
stroke-dashoffset: 0;
|
|
23933
|
+
stroke-linecap: round;
|
|
23934
|
+
transform-origin: center center;
|
|
23935
|
+
transform: rotate(-90deg);
|
|
23849
23936
|
}
|
|
23850
|
-
|
|
23851
|
-
|
|
23937
|
+
|
|
23938
|
+
.v-progress-circular--disable-shrink > svg {
|
|
23939
|
+
animation-duration: 0.7s;
|
|
23940
|
+
}
|
|
23941
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
|
23942
|
+
animation: none;
|
|
23943
|
+
}
|
|
23944
|
+
|
|
23945
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
|
23946
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
|
23947
|
+
animation-play-state: paused !important;
|
|
23948
|
+
}
|
|
23949
|
+
|
|
23950
|
+
@keyframes progress-circular-dash {
|
|
23951
|
+
0% {
|
|
23952
|
+
stroke-dasharray: 1, 200;
|
|
23953
|
+
stroke-dashoffset: 0px;
|
|
23954
|
+
}
|
|
23955
|
+
50% {
|
|
23956
|
+
stroke-dasharray: 100, 200;
|
|
23957
|
+
stroke-dashoffset: -15px;
|
|
23958
|
+
}
|
|
23959
|
+
100% {
|
|
23960
|
+
stroke-dasharray: 100, 200;
|
|
23961
|
+
stroke-dashoffset: -124px;
|
|
23962
|
+
}
|
|
23963
|
+
}
|
|
23964
|
+
@keyframes progress-circular-rotate {
|
|
23965
|
+
100% {
|
|
23966
|
+
transform: rotate(270deg);
|
|
23967
|
+
}
|
|
23852
23968
|
}.v-overlay-container {
|
|
23853
23969
|
contain: layout;
|
|
23854
23970
|
left: 0;
|
|
@@ -23912,116 +24028,68 @@ html.v-overlay-scroll-blocked {
|
|
|
23912
24028
|
|
|
23913
24029
|
.v-overlay--scroll-blocked {
|
|
23914
24030
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
23915
|
-
}.v-
|
|
23916
|
-
align-items: center;
|
|
23917
|
-
display: inline-flex;
|
|
23918
|
-
justify-content: center;
|
|
24031
|
+
}.v-parallax {
|
|
23919
24032
|
position: relative;
|
|
23920
|
-
|
|
23921
|
-
}
|
|
23922
|
-
.v-progress-circular > svg {
|
|
23923
|
-
width: 100%;
|
|
23924
|
-
height: 100%;
|
|
23925
|
-
margin: auto;
|
|
23926
|
-
position: absolute;
|
|
23927
|
-
top: 0;
|
|
23928
|
-
bottom: 0;
|
|
23929
|
-
left: 0;
|
|
23930
|
-
right: 0;
|
|
23931
|
-
z-index: 0;
|
|
24033
|
+
overflow: hidden;
|
|
23932
24034
|
}
|
|
23933
|
-
|
|
23934
|
-
|
|
24035
|
+
.v-parallax--active > .v-img__img {
|
|
24036
|
+
will-change: transform;
|
|
24037
|
+
}.v-otp-input {
|
|
24038
|
+
border-radius: 4px;
|
|
23935
24039
|
align-items: center;
|
|
23936
24040
|
display: flex;
|
|
23937
24041
|
justify-content: center;
|
|
24042
|
+
padding: 0.5rem 0;
|
|
24043
|
+
position: relative;
|
|
23938
24044
|
}
|
|
23939
|
-
|
|
23940
|
-
|
|
23941
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23942
|
-
stroke: currentColor;
|
|
23943
|
-
z-index: 1;
|
|
24045
|
+
.v-otp-input .v-field {
|
|
24046
|
+
height: 100%;
|
|
23944
24047
|
}
|
|
23945
24048
|
|
|
23946
|
-
.v-
|
|
23947
|
-
|
|
23948
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
|
23949
|
-
z-index: 2;
|
|
24049
|
+
.v-otp-input__divider {
|
|
24050
|
+
margin: 0 8px;
|
|
23950
24051
|
}
|
|
23951
24052
|
|
|
23952
|
-
.v-
|
|
23953
|
-
|
|
23954
|
-
|
|
23955
|
-
|
|
23956
|
-
.v-progress-circular--size-small {
|
|
23957
|
-
height: 24px;
|
|
23958
|
-
width: 24px;
|
|
23959
|
-
}
|
|
23960
|
-
.v-progress-circular--size-default {
|
|
23961
|
-
height: 32px;
|
|
23962
|
-
width: 32px;
|
|
23963
|
-
}
|
|
23964
|
-
.v-progress-circular--size-large {
|
|
23965
|
-
height: 48px;
|
|
23966
|
-
width: 48px;
|
|
23967
|
-
}
|
|
23968
|
-
.v-progress-circular--size-x-large {
|
|
24053
|
+
.v-otp-input__content {
|
|
24054
|
+
align-items: center;
|
|
24055
|
+
display: flex;
|
|
24056
|
+
gap: 0.5rem;
|
|
23969
24057
|
height: 64px;
|
|
23970
|
-
|
|
23971
|
-
|
|
23972
|
-
|
|
23973
|
-
|
|
23974
|
-
|
|
23975
|
-
transform-origin: center center;
|
|
23976
|
-
transition: all 0.2s ease-in-out;
|
|
24058
|
+
padding: 0.5rem;
|
|
24059
|
+
justify-content: center;
|
|
24060
|
+
max-width: 320px;
|
|
24061
|
+
position: relative;
|
|
24062
|
+
border-radius: inherit;
|
|
23977
24063
|
}
|
|
23978
|
-
.v-
|
|
23979
|
-
|
|
23980
|
-
stroke-dasharray: 25, 200;
|
|
23981
|
-
stroke-dashoffset: 0;
|
|
23982
|
-
stroke-linecap: round;
|
|
23983
|
-
transform-origin: center center;
|
|
23984
|
-
transform: rotate(-90deg);
|
|
24064
|
+
.v-otp-input--divided .v-otp-input__content {
|
|
24065
|
+
max-width: 360px;
|
|
23985
24066
|
}
|
|
23986
24067
|
|
|
23987
|
-
.v-
|
|
23988
|
-
|
|
24068
|
+
.v-otp-input__field {
|
|
24069
|
+
color: inherit;
|
|
24070
|
+
font-size: 1.25rem;
|
|
24071
|
+
height: 100%;
|
|
24072
|
+
outline: none;
|
|
24073
|
+
text-align: center;
|
|
24074
|
+
width: 100%;
|
|
23989
24075
|
}
|
|
23990
|
-
.v-
|
|
23991
|
-
|
|
24076
|
+
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
|
24077
|
+
-webkit-appearance: none;
|
|
24078
|
+
margin: 0;
|
|
23992
24079
|
}
|
|
23993
|
-
|
|
23994
|
-
|
|
23995
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
|
23996
|
-
animation-play-state: paused !important;
|
|
24080
|
+
.v-otp-input__field[type=number] {
|
|
24081
|
+
-moz-appearance: textfield;
|
|
23997
24082
|
}
|
|
23998
24083
|
|
|
23999
|
-
|
|
24000
|
-
|
|
24001
|
-
|
|
24002
|
-
|
|
24003
|
-
}
|
|
24004
|
-
50% {
|
|
24005
|
-
stroke-dasharray: 100, 200;
|
|
24006
|
-
stroke-dashoffset: -15px;
|
|
24007
|
-
}
|
|
24008
|
-
100% {
|
|
24009
|
-
stroke-dasharray: 100, 200;
|
|
24010
|
-
stroke-dashoffset: -124px;
|
|
24011
|
-
}
|
|
24012
|
-
}
|
|
24013
|
-
@keyframes progress-circular-rotate {
|
|
24014
|
-
100% {
|
|
24015
|
-
transform: rotate(270deg);
|
|
24016
|
-
}
|
|
24017
|
-
}.v-pagination__list {
|
|
24018
|
-
display: inline-flex;
|
|
24019
|
-
list-style-type: none;
|
|
24084
|
+
.v-otp-input__loader {
|
|
24085
|
+
align-items: center;
|
|
24086
|
+
display: flex;
|
|
24087
|
+
height: 100%;
|
|
24020
24088
|
justify-content: center;
|
|
24021
24089
|
width: 100%;
|
|
24022
24090
|
}
|
|
24023
|
-
.v-
|
|
24024
|
-
|
|
24091
|
+
.v-otp-input__loader .v-progress-linear {
|
|
24092
|
+
position: absolute;
|
|
24025
24093
|
}.v-radio-group > .v-input__control {
|
|
24026
24094
|
flex-direction: column;
|
|
24027
24095
|
}
|
|
@@ -24245,28 +24313,130 @@ html.v-overlay-scroll-blocked {
|
|
|
24245
24313
|
0% {
|
|
24246
24314
|
background-position-x: var(--v-progress-linear-height);
|
|
24247
24315
|
}
|
|
24248
|
-
}.v-
|
|
24249
|
-
display: flex;
|
|
24250
|
-
flex: 1 0 auto;
|
|
24251
|
-
max-height: 100%;
|
|
24316
|
+
}.v-rating {
|
|
24252
24317
|
max-width: 100%;
|
|
24253
|
-
overflow: hidden;
|
|
24254
|
-
position: relative;
|
|
24255
|
-
}
|
|
24256
|
-
.v-responsive--inline {
|
|
24257
24318
|
display: inline-flex;
|
|
24258
|
-
|
|
24319
|
+
white-space: nowrap;
|
|
24259
24320
|
}
|
|
24260
|
-
|
|
24261
|
-
|
|
24262
|
-
flex: 1 0 0px;
|
|
24263
|
-
max-width: 100%;
|
|
24321
|
+
.v-rating--readonly {
|
|
24322
|
+
pointer-events: none;
|
|
24264
24323
|
}
|
|
24265
24324
|
|
|
24266
|
-
.v-
|
|
24267
|
-
|
|
24325
|
+
.v-rating__wrapper {
|
|
24326
|
+
align-items: center;
|
|
24327
|
+
display: inline-flex;
|
|
24328
|
+
flex-direction: column;
|
|
24268
24329
|
}
|
|
24269
|
-
|
|
24330
|
+
.v-rating__wrapper--bottom {
|
|
24331
|
+
flex-direction: column-reverse;
|
|
24332
|
+
}
|
|
24333
|
+
|
|
24334
|
+
.v-rating__item {
|
|
24335
|
+
display: inline-flex;
|
|
24336
|
+
position: relative;
|
|
24337
|
+
}
|
|
24338
|
+
.v-rating__item label {
|
|
24339
|
+
cursor: pointer;
|
|
24340
|
+
}
|
|
24341
|
+
.v-rating__item .v-btn--variant-plain {
|
|
24342
|
+
opacity: 1;
|
|
24343
|
+
}
|
|
24344
|
+
.v-rating__item .v-btn {
|
|
24345
|
+
transition-property: transform;
|
|
24346
|
+
}
|
|
24347
|
+
.v-rating__item .v-btn .v-icon {
|
|
24348
|
+
transition: inherit;
|
|
24349
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
24350
|
+
}
|
|
24351
|
+
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
|
24352
|
+
transform: scale(1.25);
|
|
24353
|
+
}
|
|
24354
|
+
.v-rating__item--half {
|
|
24355
|
+
overflow: hidden;
|
|
24356
|
+
position: absolute;
|
|
24357
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
24358
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
|
24359
|
+
z-index: 1;
|
|
24360
|
+
}
|
|
24361
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
|
24362
|
+
opacity: 0;
|
|
24363
|
+
}
|
|
24364
|
+
|
|
24365
|
+
.v-rating__hidden {
|
|
24366
|
+
height: 0;
|
|
24367
|
+
opacity: 0;
|
|
24368
|
+
position: absolute;
|
|
24369
|
+
width: 0;
|
|
24370
|
+
}.v-select .v-field .v-text-field__prefix,
|
|
24371
|
+
.v-select .v-field .v-text-field__suffix,
|
|
24372
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
24373
|
+
cursor: pointer;
|
|
24374
|
+
}
|
|
24375
|
+
.v-select .v-field .v-field__input > input {
|
|
24376
|
+
align-self: flex-start;
|
|
24377
|
+
opacity: 1;
|
|
24378
|
+
flex: 0 0;
|
|
24379
|
+
position: absolute;
|
|
24380
|
+
width: 100%;
|
|
24381
|
+
transition: none;
|
|
24382
|
+
pointer-events: none;
|
|
24383
|
+
caret-color: transparent;
|
|
24384
|
+
}
|
|
24385
|
+
.v-select .v-field--dirty .v-select__selection {
|
|
24386
|
+
margin-inline-end: 2px;
|
|
24387
|
+
}
|
|
24388
|
+
.v-select .v-select__selection-text {
|
|
24389
|
+
overflow: hidden;
|
|
24390
|
+
text-overflow: ellipsis;
|
|
24391
|
+
white-space: nowrap;
|
|
24392
|
+
}
|
|
24393
|
+
.v-select__content {
|
|
24394
|
+
overflow: hidden;
|
|
24395
|
+
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));
|
|
24396
|
+
border-radius: 4px;
|
|
24397
|
+
}
|
|
24398
|
+
.v-select__selection {
|
|
24399
|
+
display: inline-flex;
|
|
24400
|
+
align-items: center;
|
|
24401
|
+
letter-spacing: inherit;
|
|
24402
|
+
line-height: inherit;
|
|
24403
|
+
max-width: 100%;
|
|
24404
|
+
}
|
|
24405
|
+
.v-select .v-select__selection:first-child {
|
|
24406
|
+
margin-inline-start: 0;
|
|
24407
|
+
}
|
|
24408
|
+
.v-select--selected .v-field .v-field__input > input {
|
|
24409
|
+
opacity: 0;
|
|
24410
|
+
}
|
|
24411
|
+
.v-select__menu-icon {
|
|
24412
|
+
margin-inline-start: 4px;
|
|
24413
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
24414
|
+
}
|
|
24415
|
+
.v-select--active-menu .v-select__menu-icon {
|
|
24416
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
24417
|
+
transform: rotate(180deg);
|
|
24418
|
+
}.v-responsive {
|
|
24419
|
+
display: flex;
|
|
24420
|
+
flex: 1 0 auto;
|
|
24421
|
+
max-height: 100%;
|
|
24422
|
+
max-width: 100%;
|
|
24423
|
+
overflow: hidden;
|
|
24424
|
+
position: relative;
|
|
24425
|
+
}
|
|
24426
|
+
.v-responsive--inline {
|
|
24427
|
+
display: inline-flex;
|
|
24428
|
+
flex: 0 0 auto;
|
|
24429
|
+
}
|
|
24430
|
+
|
|
24431
|
+
.v-responsive__content {
|
|
24432
|
+
flex: 1 0 0px;
|
|
24433
|
+
max-width: 100%;
|
|
24434
|
+
}
|
|
24435
|
+
|
|
24436
|
+
.v-responsive__sizer ~ .v-responsive__content {
|
|
24437
|
+
margin-inline-start: -100%;
|
|
24438
|
+
}
|
|
24439
|
+
|
|
24270
24440
|
.v-responsive__sizer {
|
|
24271
24441
|
flex: 1 0 0px;
|
|
24272
24442
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -24328,6 +24498,42 @@ html.v-overlay-scroll-blocked {
|
|
|
24328
24498
|
|
|
24329
24499
|
.v-slider__label {
|
|
24330
24500
|
margin-inline-end: 12px;
|
|
24501
|
+
}.v-selection-control-group {
|
|
24502
|
+
grid-area: control;
|
|
24503
|
+
display: flex;
|
|
24504
|
+
flex-direction: column;
|
|
24505
|
+
}
|
|
24506
|
+
.v-selection-control-group--inline {
|
|
24507
|
+
flex-direction: row;
|
|
24508
|
+
flex-wrap: wrap;
|
|
24509
|
+
}.v-sheet {
|
|
24510
|
+
display: block;
|
|
24511
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
24512
|
+
border-style: solid;
|
|
24513
|
+
border-width: 0;
|
|
24514
|
+
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));
|
|
24515
|
+
border-radius: 0;
|
|
24516
|
+
background: rgb(var(--v-theme-surface));
|
|
24517
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24518
|
+
}
|
|
24519
|
+
.v-sheet--border {
|
|
24520
|
+
border-width: thin;
|
|
24521
|
+
box-shadow: none;
|
|
24522
|
+
}
|
|
24523
|
+
.v-sheet--absolute {
|
|
24524
|
+
position: absolute;
|
|
24525
|
+
}
|
|
24526
|
+
.v-sheet--fixed {
|
|
24527
|
+
position: fixed;
|
|
24528
|
+
}
|
|
24529
|
+
.v-sheet--relative {
|
|
24530
|
+
position: relative;
|
|
24531
|
+
}
|
|
24532
|
+
.v-sheet--sticky {
|
|
24533
|
+
position: sticky;
|
|
24534
|
+
}
|
|
24535
|
+
.v-sheet--rounded {
|
|
24536
|
+
border-radius: 4px;
|
|
24331
24537
|
}.v-selection-control {
|
|
24332
24538
|
align-items: center;
|
|
24333
24539
|
contain: layout;
|
|
@@ -24429,213 +24635,75 @@ html.v-overlay-scroll-blocked {
|
|
|
24429
24635
|
}
|
|
24430
24636
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
24431
24637
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
24432
|
-
}.v-
|
|
24433
|
-
max-width: 100%;
|
|
24434
|
-
display: inline-flex;
|
|
24435
|
-
white-space: nowrap;
|
|
24436
|
-
}
|
|
24437
|
-
.v-rating--readonly {
|
|
24438
|
-
pointer-events: none;
|
|
24439
|
-
}
|
|
24440
|
-
|
|
24441
|
-
.v-rating__wrapper {
|
|
24638
|
+
}.v-skeleton-loader {
|
|
24442
24639
|
align-items: center;
|
|
24443
|
-
|
|
24444
|
-
|
|
24445
|
-
|
|
24446
|
-
|
|
24447
|
-
flex-direction: column-reverse;
|
|
24448
|
-
}
|
|
24449
|
-
|
|
24450
|
-
.v-rating__item {
|
|
24451
|
-
display: inline-flex;
|
|
24640
|
+
background: rgb(var(--v-theme-surface));
|
|
24641
|
+
border-radius: 4px;
|
|
24642
|
+
display: flex;
|
|
24643
|
+
flex-wrap: wrap;
|
|
24452
24644
|
position: relative;
|
|
24645
|
+
vertical-align: top;
|
|
24453
24646
|
}
|
|
24454
|
-
.v-
|
|
24455
|
-
|
|
24456
|
-
}
|
|
24457
|
-
.v-rating__item .v-btn--variant-plain {
|
|
24458
|
-
opacity: 1;
|
|
24647
|
+
.v-skeleton-loader__actions {
|
|
24648
|
+
justify-content: end;
|
|
24459
24649
|
}
|
|
24460
|
-
.v-
|
|
24461
|
-
|
|
24650
|
+
.v-skeleton-loader .v-skeleton-loader__ossein {
|
|
24651
|
+
height: 100%;
|
|
24462
24652
|
}
|
|
24463
|
-
.v-
|
|
24464
|
-
|
|
24465
|
-
|
|
24653
|
+
.v-skeleton-loader .v-skeleton-loader__avatar,
|
|
24654
|
+
.v-skeleton-loader .v-skeleton-loader__button,
|
|
24655
|
+
.v-skeleton-loader .v-skeleton-loader__chip,
|
|
24656
|
+
.v-skeleton-loader .v-skeleton-loader__divider,
|
|
24657
|
+
.v-skeleton-loader .v-skeleton-loader__heading,
|
|
24658
|
+
.v-skeleton-loader .v-skeleton-loader__image,
|
|
24659
|
+
.v-skeleton-loader .v-skeleton-loader__ossein,
|
|
24660
|
+
.v-skeleton-loader .v-skeleton-loader__text {
|
|
24661
|
+
background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
|
|
24466
24662
|
}
|
|
24467
|
-
.v-
|
|
24468
|
-
|
|
24663
|
+
.v-skeleton-loader .v-skeleton-loader__list-item,
|
|
24664
|
+
.v-skeleton-loader .v-skeleton-loader__list-item-avatar,
|
|
24665
|
+
.v-skeleton-loader .v-skeleton-loader__list-item-text,
|
|
24666
|
+
.v-skeleton-loader .v-skeleton-loader__list-item-two-line,
|
|
24667
|
+
.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
|
|
24668
|
+
.v-skeleton-loader .v-skeleton-loader__list-item-three-line,
|
|
24669
|
+
.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {
|
|
24670
|
+
border-radius: 4px;
|
|
24469
24671
|
}
|
|
24470
|
-
.v-
|
|
24672
|
+
.v-skeleton-loader__bone {
|
|
24673
|
+
align-items: center;
|
|
24674
|
+
border-radius: inherit;
|
|
24675
|
+
display: flex;
|
|
24676
|
+
flex: 1 1 100%;
|
|
24677
|
+
flex-wrap: wrap;
|
|
24471
24678
|
overflow: hidden;
|
|
24679
|
+
position: relative;
|
|
24680
|
+
}
|
|
24681
|
+
.v-skeleton-loader__bone::after {
|
|
24682
|
+
content: "";
|
|
24472
24683
|
position: absolute;
|
|
24473
|
-
|
|
24474
|
-
|
|
24684
|
+
top: 0;
|
|
24685
|
+
left: 0;
|
|
24686
|
+
width: 100%;
|
|
24687
|
+
height: 100%;
|
|
24688
|
+
animation: loading 1.5s infinite;
|
|
24689
|
+
background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
|
|
24690
|
+
transform: translateX(-100%);
|
|
24475
24691
|
z-index: 1;
|
|
24476
24692
|
}
|
|
24477
|
-
.v-
|
|
24478
|
-
|
|
24693
|
+
.v-skeleton-loader__avatar {
|
|
24694
|
+
border-radius: 50%;
|
|
24695
|
+
flex: 0 1 auto;
|
|
24696
|
+
margin: 8px 16px;
|
|
24697
|
+
max-height: 48px;
|
|
24698
|
+
min-height: 48px;
|
|
24699
|
+
height: 48px;
|
|
24700
|
+
max-width: 48px;
|
|
24701
|
+
min-width: 48px;
|
|
24702
|
+
width: 48px;
|
|
24479
24703
|
}
|
|
24480
|
-
|
|
24481
|
-
|
|
24482
|
-
|
|
24483
|
-
opacity: 0;
|
|
24484
|
-
position: absolute;
|
|
24485
|
-
width: 0;
|
|
24486
|
-
}.v-select .v-field .v-text-field__prefix,
|
|
24487
|
-
.v-select .v-field .v-text-field__suffix,
|
|
24488
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
24489
|
-
cursor: pointer;
|
|
24490
|
-
}
|
|
24491
|
-
.v-select .v-field .v-field__input > input {
|
|
24492
|
-
align-self: flex-start;
|
|
24493
|
-
opacity: 1;
|
|
24494
|
-
flex: 0 0;
|
|
24495
|
-
position: absolute;
|
|
24496
|
-
width: 100%;
|
|
24497
|
-
transition: none;
|
|
24498
|
-
pointer-events: none;
|
|
24499
|
-
caret-color: transparent;
|
|
24500
|
-
}
|
|
24501
|
-
.v-select .v-field--dirty .v-select__selection {
|
|
24502
|
-
margin-inline-end: 2px;
|
|
24503
|
-
}
|
|
24504
|
-
.v-select .v-select__selection-text {
|
|
24505
|
-
overflow: hidden;
|
|
24506
|
-
text-overflow: ellipsis;
|
|
24507
|
-
white-space: nowrap;
|
|
24508
|
-
}
|
|
24509
|
-
.v-select__content {
|
|
24510
|
-
overflow: hidden;
|
|
24511
|
-
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));
|
|
24512
|
-
border-radius: 4px;
|
|
24513
|
-
}
|
|
24514
|
-
.v-select__selection {
|
|
24515
|
-
display: inline-flex;
|
|
24516
|
-
align-items: center;
|
|
24517
|
-
letter-spacing: inherit;
|
|
24518
|
-
line-height: inherit;
|
|
24519
|
-
max-width: 100%;
|
|
24520
|
-
}
|
|
24521
|
-
.v-select .v-select__selection:first-child {
|
|
24522
|
-
margin-inline-start: 0;
|
|
24523
|
-
}
|
|
24524
|
-
.v-select--selected .v-field .v-field__input > input {
|
|
24525
|
-
opacity: 0;
|
|
24526
|
-
}
|
|
24527
|
-
.v-select__menu-icon {
|
|
24528
|
-
margin-inline-start: 4px;
|
|
24529
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
24530
|
-
}
|
|
24531
|
-
.v-select--active-menu .v-select__menu-icon {
|
|
24532
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
24533
|
-
transform: rotate(180deg);
|
|
24534
|
-
}.v-selection-control-group {
|
|
24535
|
-
grid-area: control;
|
|
24536
|
-
display: flex;
|
|
24537
|
-
flex-direction: column;
|
|
24538
|
-
}
|
|
24539
|
-
.v-selection-control-group--inline {
|
|
24540
|
-
flex-direction: row;
|
|
24541
|
-
flex-wrap: wrap;
|
|
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-skeleton-loader {
|
|
24571
|
-
align-items: center;
|
|
24572
|
-
background: rgb(var(--v-theme-surface));
|
|
24573
|
-
border-radius: 4px;
|
|
24574
|
-
display: flex;
|
|
24575
|
-
flex-wrap: wrap;
|
|
24576
|
-
position: relative;
|
|
24577
|
-
vertical-align: top;
|
|
24578
|
-
}
|
|
24579
|
-
.v-skeleton-loader__actions {
|
|
24580
|
-
justify-content: end;
|
|
24581
|
-
}
|
|
24582
|
-
.v-skeleton-loader .v-skeleton-loader__ossein {
|
|
24583
|
-
height: 100%;
|
|
24584
|
-
}
|
|
24585
|
-
.v-skeleton-loader .v-skeleton-loader__avatar,
|
|
24586
|
-
.v-skeleton-loader .v-skeleton-loader__button,
|
|
24587
|
-
.v-skeleton-loader .v-skeleton-loader__chip,
|
|
24588
|
-
.v-skeleton-loader .v-skeleton-loader__divider,
|
|
24589
|
-
.v-skeleton-loader .v-skeleton-loader__heading,
|
|
24590
|
-
.v-skeleton-loader .v-skeleton-loader__image,
|
|
24591
|
-
.v-skeleton-loader .v-skeleton-loader__ossein,
|
|
24592
|
-
.v-skeleton-loader .v-skeleton-loader__text {
|
|
24593
|
-
background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
|
|
24594
|
-
}
|
|
24595
|
-
.v-skeleton-loader .v-skeleton-loader__list-item,
|
|
24596
|
-
.v-skeleton-loader .v-skeleton-loader__list-item-avatar,
|
|
24597
|
-
.v-skeleton-loader .v-skeleton-loader__list-item-text,
|
|
24598
|
-
.v-skeleton-loader .v-skeleton-loader__list-item-two-line,
|
|
24599
|
-
.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
|
|
24600
|
-
.v-skeleton-loader .v-skeleton-loader__list-item-three-line,
|
|
24601
|
-
.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {
|
|
24602
|
-
border-radius: 4px;
|
|
24603
|
-
}
|
|
24604
|
-
.v-skeleton-loader__bone {
|
|
24605
|
-
align-items: center;
|
|
24606
|
-
border-radius: inherit;
|
|
24607
|
-
display: flex;
|
|
24608
|
-
flex: 1 1 100%;
|
|
24609
|
-
flex-wrap: wrap;
|
|
24610
|
-
overflow: hidden;
|
|
24611
|
-
position: relative;
|
|
24612
|
-
}
|
|
24613
|
-
.v-skeleton-loader__bone::after {
|
|
24614
|
-
content: "";
|
|
24615
|
-
position: absolute;
|
|
24616
|
-
top: 0;
|
|
24617
|
-
left: 0;
|
|
24618
|
-
width: 100%;
|
|
24619
|
-
height: 100%;
|
|
24620
|
-
animation: loading 1.5s infinite;
|
|
24621
|
-
background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
|
|
24622
|
-
transform: translateX(-100%);
|
|
24623
|
-
z-index: 1;
|
|
24624
|
-
}
|
|
24625
|
-
.v-skeleton-loader__avatar {
|
|
24626
|
-
border-radius: 50%;
|
|
24627
|
-
flex: 0 1 auto;
|
|
24628
|
-
margin: 8px 16px;
|
|
24629
|
-
max-height: 48px;
|
|
24630
|
-
min-height: 48px;
|
|
24631
|
-
height: 48px;
|
|
24632
|
-
max-width: 48px;
|
|
24633
|
-
min-width: 48px;
|
|
24634
|
-
width: 48px;
|
|
24635
|
-
}
|
|
24636
|
-
.v-skeleton-loader__avatar + .v-skeleton-loader__bone {
|
|
24637
|
-
flex: 1 1 auto;
|
|
24638
|
-
margin-inline-start: 0;
|
|
24704
|
+
.v-skeleton-loader__avatar + .v-skeleton-loader__bone {
|
|
24705
|
+
flex: 1 1 auto;
|
|
24706
|
+
margin-inline-start: 0;
|
|
24639
24707
|
}
|
|
24640
24708
|
.v-skeleton-loader__avatar + .v-skeleton-loader__sentences > .v-skeleton-loader__text,
|
|
24641
24709
|
.v-skeleton-loader__avatar + .v-skeleton-loader__paragraph > .v-skeleton-loader__text {
|
|
@@ -24845,185 +24913,210 @@ html.v-overlay-scroll-blocked {
|
|
|
24845
24913
|
.v-slide-group--vertical .v-slide-group__container {
|
|
24846
24914
|
overflow-x: hidden;
|
|
24847
24915
|
overflow-y: auto;
|
|
24848
|
-
}.v-
|
|
24849
|
-
|
|
24850
|
-
z-index: 10000;
|
|
24851
|
-
margin: 8px;
|
|
24852
|
-
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
|
24853
|
-
padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
|
|
24916
|
+
}.v-speed-dial__content {
|
|
24917
|
+
gap: 8px;
|
|
24854
24918
|
}
|
|
24855
|
-
.v-
|
|
24856
|
-
|
|
24919
|
+
.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 {
|
|
24920
|
+
flex-direction: row;
|
|
24857
24921
|
}
|
|
24858
|
-
.v-
|
|
24859
|
-
|
|
24860
|
-
display: flex;
|
|
24861
|
-
max-width: 672px;
|
|
24862
|
-
min-height: 48px;
|
|
24863
|
-
min-width: 344px;
|
|
24864
|
-
overflow: hidden;
|
|
24865
|
-
padding: 0;
|
|
24866
|
-
border-radius: 4px;
|
|
24922
|
+
.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 {
|
|
24923
|
+
flex-direction: row-reverse;
|
|
24867
24924
|
}
|
|
24868
|
-
.v-
|
|
24869
|
-
|
|
24870
|
-
color: inherit;
|
|
24925
|
+
.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 {
|
|
24926
|
+
flex-direction: column-reverse;
|
|
24871
24927
|
}
|
|
24872
|
-
.v-
|
|
24873
|
-
|
|
24928
|
+
.v-speed-dial__content > *:nth-child(1) {
|
|
24929
|
+
transition-delay: 0s;
|
|
24874
24930
|
}
|
|
24875
|
-
.v-
|
|
24876
|
-
|
|
24931
|
+
.v-speed-dial__content > *:nth-child(2) {
|
|
24932
|
+
transition-delay: 0.05s;
|
|
24877
24933
|
}
|
|
24878
|
-
.v-
|
|
24879
|
-
|
|
24934
|
+
.v-speed-dial__content > *:nth-child(3) {
|
|
24935
|
+
transition-delay: 0.1s;
|
|
24880
24936
|
}
|
|
24881
|
-
.v-
|
|
24882
|
-
|
|
24883
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
24937
|
+
.v-speed-dial__content > *:nth-child(4) {
|
|
24938
|
+
transition-delay: 0.15s;
|
|
24884
24939
|
}
|
|
24885
|
-
.v-
|
|
24886
|
-
|
|
24940
|
+
.v-speed-dial__content > *:nth-child(5) {
|
|
24941
|
+
transition-delay: 0.2s;
|
|
24887
24942
|
}
|
|
24888
|
-
.v-
|
|
24889
|
-
|
|
24943
|
+
.v-speed-dial__content > *:nth-child(6) {
|
|
24944
|
+
transition-delay: 0.25s;
|
|
24890
24945
|
}
|
|
24891
|
-
.v-
|
|
24892
|
-
|
|
24946
|
+
.v-speed-dial__content > *:nth-child(7) {
|
|
24947
|
+
transition-delay: 0.3s;
|
|
24893
24948
|
}
|
|
24894
|
-
.v-
|
|
24895
|
-
|
|
24949
|
+
.v-speed-dial__content > *:nth-child(8) {
|
|
24950
|
+
transition-delay: 0.35s;
|
|
24896
24951
|
}
|
|
24897
|
-
.v-
|
|
24898
|
-
|
|
24899
|
-
opacity: var(--v-activated-opacity);
|
|
24900
|
-
border-radius: inherit;
|
|
24901
|
-
top: 0;
|
|
24902
|
-
right: 0;
|
|
24903
|
-
bottom: 0;
|
|
24904
|
-
left: 0;
|
|
24905
|
-
pointer-events: none;
|
|
24952
|
+
.v-speed-dial__content > *:nth-child(9) {
|
|
24953
|
+
transition-delay: 0.4s;
|
|
24906
24954
|
}
|
|
24907
|
-
.v-
|
|
24908
|
-
|
|
24955
|
+
.v-speed-dial__content > *:nth-child(10) {
|
|
24956
|
+
transition-delay: 0.45s;
|
|
24957
|
+
}.v-stepper.v-sheet {
|
|
24958
|
+
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));
|
|
24959
|
+
border-radius: 4px;
|
|
24960
|
+
overflow: hidden;
|
|
24909
24961
|
}
|
|
24910
|
-
|
|
24911
|
-
.v-
|
|
24912
|
-
flex-grow: 1;
|
|
24913
|
-
font-size: 0.875rem;
|
|
24914
|
-
font-weight: 400;
|
|
24915
|
-
letter-spacing: 0.0178571429em;
|
|
24916
|
-
line-height: 1.425;
|
|
24917
|
-
margin-right: auto;
|
|
24918
|
-
padding: 14px 16px;
|
|
24919
|
-
text-align: initial;
|
|
24962
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
|
24963
|
+
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));
|
|
24920
24964
|
}
|
|
24921
|
-
|
|
24965
|
+
|
|
24966
|
+
.v-stepper-header {
|
|
24967
|
+
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));
|
|
24922
24968
|
align-items: center;
|
|
24923
|
-
align-self: center;
|
|
24924
24969
|
display: flex;
|
|
24925
|
-
|
|
24970
|
+
position: relative;
|
|
24971
|
+
overflow-x: auto;
|
|
24972
|
+
justify-content: space-between;
|
|
24973
|
+
z-index: 1;
|
|
24926
24974
|
}
|
|
24927
|
-
.v-
|
|
24928
|
-
|
|
24929
|
-
min-width: auto;
|
|
24975
|
+
.v-stepper-header .v-divider {
|
|
24976
|
+
margin: 0 -16px;
|
|
24930
24977
|
}
|
|
24931
|
-
.v-
|
|
24932
|
-
|
|
24933
|
-
position: absolute;
|
|
24934
|
-
top: 0;
|
|
24978
|
+
.v-stepper-header .v-divider:last-child {
|
|
24979
|
+
margin-inline-end: 0;
|
|
24935
24980
|
}
|
|
24936
|
-
.v-
|
|
24937
|
-
|
|
24981
|
+
.v-stepper-header .v-divider:first-child {
|
|
24982
|
+
margin-inline-start: 0;
|
|
24938
24983
|
}
|
|
24939
|
-
.v-
|
|
24940
|
-
|
|
24941
|
-
z-index: 1;
|
|
24984
|
+
.v-stepper--alt-labels .v-stepper-header {
|
|
24985
|
+
height: auto;
|
|
24942
24986
|
}
|
|
24943
|
-
.v-
|
|
24944
|
-
|
|
24987
|
+
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
|
24988
|
+
align-self: flex-start;
|
|
24989
|
+
margin: 35px -67px 0;
|
|
24945
24990
|
}
|
|
24946
|
-
|
|
24947
|
-
|
|
24991
|
+
|
|
24992
|
+
.v-stepper-window {
|
|
24993
|
+
margin: 1.5rem;
|
|
24948
24994
|
}
|
|
24949
|
-
|
|
24950
|
-
|
|
24951
|
-
|
|
24995
|
+
|
|
24996
|
+
.v-stepper-actions {
|
|
24997
|
+
display: flex;
|
|
24998
|
+
align-items: center;
|
|
24999
|
+
justify-content: space-between;
|
|
25000
|
+
padding: 1rem;
|
|
24952
25001
|
}
|
|
24953
|
-
.v-
|
|
25002
|
+
.v-stepper .v-stepper-actions {
|
|
25003
|
+
padding: 0 1.5rem 1rem;
|
|
25004
|
+
}
|
|
25005
|
+
.v-stepper-window-item .v-stepper-actions {
|
|
25006
|
+
padding: 1.5rem 0 0;
|
|
25007
|
+
}.v-stepper-item {
|
|
24954
25008
|
align-items: center;
|
|
24955
|
-
|
|
25009
|
+
align-self: stretch;
|
|
25010
|
+
display: inline-flex;
|
|
25011
|
+
flex: none;
|
|
25012
|
+
outline: none;
|
|
25013
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
25014
|
+
padding: 1.5rem;
|
|
25015
|
+
position: relative;
|
|
25016
|
+
transition-duration: 0.2s;
|
|
25017
|
+
transition-property: opacity;
|
|
25018
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
24956
25019
|
}
|
|
24957
|
-
.v-
|
|
24958
|
-
|
|
25020
|
+
.v-stepper-item:hover > .v-stepper-item__overlay {
|
|
25021
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
24959
25022
|
}
|
|
24960
|
-
.v-
|
|
24961
|
-
|
|
25023
|
+
.v-stepper-item:focus-visible > .v-stepper-item__overlay {
|
|
25024
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
24962
25025
|
}
|
|
24963
|
-
|
|
24964
|
-
|
|
25026
|
+
@supports not selector(:focus-visible) {
|
|
25027
|
+
.v-stepper-item:focus > .v-stepper-item__overlay {
|
|
25028
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
25029
|
+
}
|
|
24965
25030
|
}
|
|
24966
|
-
.v-
|
|
24967
|
-
|
|
25031
|
+
.v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
|
|
25032
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
24968
25033
|
}
|
|
24969
|
-
|
|
24970
|
-
|
|
24971
|
-
transition-duration: 0.15s;
|
|
24972
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
25034
|
+
.v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
|
|
25035
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
24973
25036
|
}
|
|
24974
|
-
.v-
|
|
24975
|
-
|
|
25037
|
+
.v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
|
|
25038
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
24976
25039
|
}
|
|
24977
|
-
|
|
24978
|
-
|
|
24979
|
-
|
|
25040
|
+
@supports not selector(:focus-visible) {
|
|
25041
|
+
.v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
|
|
25042
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
25043
|
+
}
|
|
24980
25044
|
}
|
|
24981
|
-
.v-
|
|
24982
|
-
|
|
25045
|
+
.v-stepper--non-linear .v-stepper-item {
|
|
25046
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
24983
25047
|
}
|
|
24984
|
-
.v-
|
|
24985
|
-
opacity:
|
|
24986
|
-
}.v-speed-dial__content {
|
|
24987
|
-
gap: 8px;
|
|
25048
|
+
.v-stepper-item--selected {
|
|
25049
|
+
opacity: 1;
|
|
24988
25050
|
}
|
|
24989
|
-
.v-
|
|
24990
|
-
|
|
25051
|
+
.v-stepper-item--error {
|
|
25052
|
+
color: rgb(var(--v-theme-error));
|
|
24991
25053
|
}
|
|
24992
|
-
.v-
|
|
24993
|
-
|
|
25054
|
+
.v-stepper-item--disabled {
|
|
25055
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
25056
|
+
pointer-events: none;
|
|
24994
25057
|
}
|
|
24995
|
-
.v-
|
|
24996
|
-
flex-direction: column
|
|
25058
|
+
.v-stepper--alt-labels .v-stepper-item {
|
|
25059
|
+
flex-direction: column;
|
|
25060
|
+
justify-content: flex-start;
|
|
25061
|
+
align-items: center;
|
|
25062
|
+
flex-basis: 175px;
|
|
24997
25063
|
}
|
|
24998
|
-
|
|
24999
|
-
|
|
25064
|
+
|
|
25065
|
+
.v-stepper-item__avatar.v-avatar {
|
|
25066
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
|
25067
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
25068
|
+
font-size: 0.75rem;
|
|
25069
|
+
margin-inline-end: 8px;
|
|
25000
25070
|
}
|
|
25001
|
-
.v-
|
|
25002
|
-
|
|
25071
|
+
.v-stepper-item__avatar.v-avatar .v-icon {
|
|
25072
|
+
font-size: 0.875rem;
|
|
25003
25073
|
}
|
|
25004
|
-
.v-
|
|
25005
|
-
|
|
25074
|
+
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
|
25075
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
25006
25076
|
}
|
|
25007
|
-
.v-
|
|
25008
|
-
|
|
25077
|
+
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
|
25078
|
+
background: rgb(var(--v-theme-error));
|
|
25009
25079
|
}
|
|
25010
|
-
.v-
|
|
25011
|
-
|
|
25080
|
+
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
|
25081
|
+
margin-bottom: 16px;
|
|
25082
|
+
margin-inline-end: 0;
|
|
25012
25083
|
}
|
|
25013
|
-
|
|
25014
|
-
|
|
25084
|
+
|
|
25085
|
+
.v-stepper-item__title {
|
|
25086
|
+
line-height: 1;
|
|
25015
25087
|
}
|
|
25016
|
-
.v-
|
|
25017
|
-
|
|
25088
|
+
.v-stepper--mobile .v-stepper-item__title {
|
|
25089
|
+
display: none;
|
|
25018
25090
|
}
|
|
25019
|
-
|
|
25020
|
-
|
|
25091
|
+
|
|
25092
|
+
.v-stepper-item__subtitle {
|
|
25093
|
+
font-size: 0.75rem;
|
|
25094
|
+
text-align: left;
|
|
25095
|
+
line-height: 1;
|
|
25096
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
25021
25097
|
}
|
|
25022
|
-
.v-
|
|
25023
|
-
|
|
25098
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
|
25099
|
+
text-align: center;
|
|
25024
25100
|
}
|
|
25025
|
-
.v-
|
|
25026
|
-
|
|
25101
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
|
25102
|
+
display: none;
|
|
25103
|
+
}
|
|
25104
|
+
|
|
25105
|
+
.v-stepper-item__overlay {
|
|
25106
|
+
background-color: currentColor;
|
|
25107
|
+
border-radius: inherit;
|
|
25108
|
+
opacity: 0;
|
|
25109
|
+
transition: opacity 0.2s ease-in-out;
|
|
25110
|
+
}
|
|
25111
|
+
|
|
25112
|
+
.v-stepper-item__overlay,
|
|
25113
|
+
.v-stepper-item__underlay {
|
|
25114
|
+
position: absolute;
|
|
25115
|
+
top: 0;
|
|
25116
|
+
left: 0;
|
|
25117
|
+
width: 100%;
|
|
25118
|
+
height: 100%;
|
|
25119
|
+
pointer-events: none;
|
|
25027
25120
|
}.v-switch .v-label {
|
|
25028
25121
|
padding-inline-start: 10px;
|
|
25029
25122
|
}
|
|
@@ -25160,217 +25253,345 @@ html.v-overlay-scroll-blocked {
|
|
|
25160
25253
|
}
|
|
25161
25254
|
.v-switch.v-input--vertical .v-selection-control__wrapper {
|
|
25162
25255
|
transform: rotate(-90deg);
|
|
25163
|
-
}.v-
|
|
25164
|
-
|
|
25165
|
-
border-radius:
|
|
25166
|
-
|
|
25256
|
+
}.v-tab.v-tab.v-btn {
|
|
25257
|
+
height: var(--v-tabs-height);
|
|
25258
|
+
border-radius: 0;
|
|
25259
|
+
min-width: 90px;
|
|
25167
25260
|
}
|
|
25168
|
-
.v-
|
|
25169
|
-
|
|
25261
|
+
.v-slide-group--horizontal .v-tab {
|
|
25262
|
+
max-width: 360px;
|
|
25170
25263
|
}
|
|
25171
|
-
|
|
25172
|
-
|
|
25173
|
-
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));
|
|
25174
|
-
align-items: center;
|
|
25175
|
-
display: flex;
|
|
25176
|
-
position: relative;
|
|
25177
|
-
overflow-x: auto;
|
|
25178
|
-
justify-content: space-between;
|
|
25179
|
-
z-index: 1;
|
|
25264
|
+
.v-slide-group--vertical .v-tab {
|
|
25265
|
+
justify-content: start;
|
|
25180
25266
|
}
|
|
25181
|
-
|
|
25182
|
-
|
|
25267
|
+
|
|
25268
|
+
.v-tab__slider {
|
|
25269
|
+
position: absolute;
|
|
25270
|
+
bottom: 0;
|
|
25271
|
+
left: 0;
|
|
25272
|
+
height: 2px;
|
|
25273
|
+
width: 100%;
|
|
25274
|
+
background: currentColor;
|
|
25275
|
+
pointer-events: none;
|
|
25276
|
+
opacity: 0;
|
|
25183
25277
|
}
|
|
25184
|
-
.v-
|
|
25185
|
-
|
|
25278
|
+
.v-tab--selected .v-tab__slider {
|
|
25279
|
+
opacity: 1;
|
|
25186
25280
|
}
|
|
25187
|
-
.v-
|
|
25188
|
-
|
|
25281
|
+
.v-slide-group--vertical .v-tab__slider {
|
|
25282
|
+
top: 0;
|
|
25283
|
+
height: 100%;
|
|
25284
|
+
width: 2px;
|
|
25285
|
+
}.v-tabs {
|
|
25286
|
+
display: flex;
|
|
25287
|
+
height: var(--v-tabs-height);
|
|
25189
25288
|
}
|
|
25190
|
-
.v-
|
|
25191
|
-
height:
|
|
25289
|
+
.v-tabs--density-default {
|
|
25290
|
+
--v-tabs-height: 48px;
|
|
25192
25291
|
}
|
|
25193
|
-
.v-
|
|
25194
|
-
|
|
25195
|
-
margin: 35px -67px 0;
|
|
25292
|
+
.v-tabs--density-default.v-tabs--stacked {
|
|
25293
|
+
--v-tabs-height: 72px;
|
|
25196
25294
|
}
|
|
25197
25295
|
|
|
25198
|
-
.v-
|
|
25199
|
-
|
|
25296
|
+
.v-tabs--density-comfortable {
|
|
25297
|
+
--v-tabs-height: 44px;
|
|
25298
|
+
}
|
|
25299
|
+
.v-tabs--density-comfortable.v-tabs--stacked {
|
|
25300
|
+
--v-tabs-height: 68px;
|
|
25200
25301
|
}
|
|
25201
25302
|
|
|
25202
|
-
.v-
|
|
25203
|
-
|
|
25204
|
-
align-items: center;
|
|
25205
|
-
justify-content: space-between;
|
|
25206
|
-
padding: 1rem;
|
|
25303
|
+
.v-tabs--density-compact {
|
|
25304
|
+
--v-tabs-height: 36px;
|
|
25207
25305
|
}
|
|
25208
|
-
.v-
|
|
25209
|
-
|
|
25306
|
+
.v-tabs--density-compact.v-tabs--stacked {
|
|
25307
|
+
--v-tabs-height: 60px;
|
|
25210
25308
|
}
|
|
25211
|
-
|
|
25212
|
-
|
|
25213
|
-
|
|
25214
|
-
align-items: center;
|
|
25215
|
-
align-self: stretch;
|
|
25216
|
-
display: inline-flex;
|
|
25309
|
+
|
|
25310
|
+
.v-tabs.v-slide-group--vertical {
|
|
25311
|
+
height: auto;
|
|
25217
25312
|
flex: none;
|
|
25218
|
-
|
|
25219
|
-
padding: 1.5rem;
|
|
25220
|
-
transition-duration: 0.2s;
|
|
25221
|
-
transition-property: opacity;
|
|
25222
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
25313
|
+
--v-tabs-height: 48px;
|
|
25223
25314
|
}
|
|
25224
|
-
|
|
25225
|
-
|
|
25315
|
+
|
|
25316
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
25317
|
+
margin-inline-start: 42px;
|
|
25226
25318
|
}
|
|
25227
|
-
|
|
25228
|
-
|
|
25319
|
+
|
|
25320
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
|
25321
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
|
25322
|
+
margin-inline-end: auto;
|
|
25229
25323
|
}
|
|
25230
|
-
.v-
|
|
25231
|
-
|
|
25324
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
|
25325
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
|
25326
|
+
margin-inline-start: auto;
|
|
25327
|
+
}
|
|
25328
|
+
|
|
25329
|
+
.v-tabs--grow {
|
|
25330
|
+
flex-grow: 1;
|
|
25331
|
+
}
|
|
25332
|
+
.v-tabs--grow .v-tab {
|
|
25333
|
+
flex: 1 0 auto;
|
|
25334
|
+
max-width: none;
|
|
25335
|
+
}
|
|
25336
|
+
|
|
25337
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
|
25338
|
+
margin-inline-start: auto;
|
|
25339
|
+
}
|
|
25340
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
|
25341
|
+
margin-inline-end: 0;
|
|
25342
|
+
}
|
|
25343
|
+
|
|
25344
|
+
@media (max-width: 1279.98px) {
|
|
25345
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
25346
|
+
margin-inline-start: 52px;
|
|
25347
|
+
}
|
|
25348
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
25349
|
+
margin-inline-end: 52px;
|
|
25350
|
+
}
|
|
25351
|
+
}.v-textarea .v-field {
|
|
25352
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
|
25353
|
+
}
|
|
25354
|
+
.v-textarea .v-field__field {
|
|
25355
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
|
25356
|
+
}
|
|
25357
|
+
.v-textarea .v-field__input {
|
|
25358
|
+
flex: 1 1 auto;
|
|
25359
|
+
outline: none;
|
|
25360
|
+
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
25361
|
+
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
25362
|
+
}
|
|
25363
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
|
25364
|
+
visibility: hidden;
|
|
25365
|
+
position: absolute;
|
|
25366
|
+
top: 0;
|
|
25367
|
+
left: 0;
|
|
25368
|
+
height: 0 !important;
|
|
25369
|
+
min-height: 0 !important;
|
|
25232
25370
|
pointer-events: none;
|
|
25233
25371
|
}
|
|
25234
|
-
.v-
|
|
25235
|
-
|
|
25236
|
-
|
|
25237
|
-
|
|
25238
|
-
|
|
25372
|
+
.v-textarea--no-resize .v-field__input {
|
|
25373
|
+
resize: none;
|
|
25374
|
+
}
|
|
25375
|
+
.v-textarea .v-field--no-label textarea,
|
|
25376
|
+
.v-textarea .v-field--active textarea {
|
|
25377
|
+
opacity: 1;
|
|
25378
|
+
}
|
|
25379
|
+
.v-textarea textarea {
|
|
25380
|
+
opacity: 0;
|
|
25381
|
+
flex: 1;
|
|
25382
|
+
min-width: 0;
|
|
25383
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
25384
|
+
}
|
|
25385
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
25386
|
+
outline: none;
|
|
25387
|
+
}
|
|
25388
|
+
.v-textarea textarea:invalid {
|
|
25389
|
+
box-shadow: none;
|
|
25390
|
+
}/* region BLOCK */
|
|
25391
|
+
.v-text-field input {
|
|
25392
|
+
color: inherit;
|
|
25393
|
+
opacity: 0;
|
|
25394
|
+
flex: 1;
|
|
25395
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
25396
|
+
min-width: 0;
|
|
25397
|
+
}
|
|
25398
|
+
.v-text-field input:focus, .v-text-field input:active {
|
|
25399
|
+
outline: none;
|
|
25400
|
+
}
|
|
25401
|
+
.v-text-field input:invalid {
|
|
25402
|
+
box-shadow: none;
|
|
25403
|
+
}
|
|
25404
|
+
.v-text-field .v-field {
|
|
25405
|
+
cursor: text;
|
|
25406
|
+
}
|
|
25407
|
+
.v-text-field--prefixed.v-text-field .v-field__input {
|
|
25408
|
+
--v-field-padding-start: 6px;
|
|
25239
25409
|
}
|
|
25240
25410
|
|
|
25241
|
-
.v-
|
|
25242
|
-
|
|
25243
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
25244
|
-
font-size: 0.75rem;
|
|
25245
|
-
margin-inline-end: 8px;
|
|
25411
|
+
.v-text-field--suffixed.v-text-field .v-field__input {
|
|
25412
|
+
--v-field-padding-end: 0;
|
|
25246
25413
|
}
|
|
25247
|
-
|
|
25248
|
-
|
|
25414
|
+
|
|
25415
|
+
.v-text-field .v-input__details {
|
|
25416
|
+
padding-inline: 16px;
|
|
25249
25417
|
}
|
|
25250
|
-
.v-
|
|
25251
|
-
|
|
25418
|
+
.v-input--plain-underlined.v-text-field .v-input__details {
|
|
25419
|
+
padding-inline: 0;
|
|
25252
25420
|
}
|
|
25253
|
-
|
|
25254
|
-
|
|
25421
|
+
|
|
25422
|
+
.v-text-field .v-field--no-label input,
|
|
25423
|
+
.v-text-field .v-field--active input {
|
|
25424
|
+
opacity: 1;
|
|
25255
25425
|
}
|
|
25256
|
-
.v-
|
|
25257
|
-
|
|
25258
|
-
margin-inline-end: 0;
|
|
25426
|
+
.v-text-field .v-field--single-line input {
|
|
25427
|
+
transition: none;
|
|
25259
25428
|
}
|
|
25260
25429
|
|
|
25261
|
-
|
|
25262
|
-
|
|
25430
|
+
/* endregion */
|
|
25431
|
+
/* region ELEMENTS */
|
|
25432
|
+
.v-text-field__prefix, .v-text-field__suffix {
|
|
25433
|
+
align-items: center;
|
|
25434
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
25435
|
+
cursor: default;
|
|
25436
|
+
display: flex;
|
|
25437
|
+
opacity: 0;
|
|
25438
|
+
transition: inherit;
|
|
25439
|
+
white-space: nowrap;
|
|
25440
|
+
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
|
25441
|
+
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
|
25442
|
+
padding-bottom: var(--v-field-padding-bottom, 6px);
|
|
25263
25443
|
}
|
|
25264
|
-
.v-
|
|
25265
|
-
|
|
25444
|
+
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
|
25445
|
+
opacity: 1;
|
|
25446
|
+
}
|
|
25447
|
+
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
|
25448
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
|
25449
|
+
}
|
|
25450
|
+
.v-text-field__prefix {
|
|
25451
|
+
padding-inline-start: var(--v-field-padding-start);
|
|
25452
|
+
}
|
|
25453
|
+
.v-text-field__suffix {
|
|
25454
|
+
padding-inline-end: var(--v-field-padding-end);
|
|
25266
25455
|
}
|
|
25267
25456
|
|
|
25268
|
-
|
|
25269
|
-
|
|
25270
|
-
|
|
25271
|
-
|
|
25272
|
-
|
|
25457
|
+
/* endregion */.v-snackbar {
|
|
25458
|
+
justify-content: center;
|
|
25459
|
+
z-index: 10000;
|
|
25460
|
+
margin: 8px;
|
|
25461
|
+
margin-inline-end: calc(8px + var(--v-scrollbar-offset));
|
|
25462
|
+
padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
|
|
25273
25463
|
}
|
|
25274
|
-
.v-
|
|
25275
|
-
|
|
25464
|
+
.v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
|
|
25465
|
+
align-items: flex-end;
|
|
25276
25466
|
}
|
|
25277
|
-
.v-
|
|
25467
|
+
.v-snackbar__wrapper {
|
|
25468
|
+
align-items: center;
|
|
25469
|
+
display: flex;
|
|
25470
|
+
max-width: 672px;
|
|
25471
|
+
min-height: 48px;
|
|
25472
|
+
min-width: 344px;
|
|
25473
|
+
overflow: hidden;
|
|
25474
|
+
padding: 0;
|
|
25475
|
+
border-radius: 4px;
|
|
25476
|
+
}
|
|
25477
|
+
.v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
|
|
25478
|
+
background: transparent;
|
|
25479
|
+
color: inherit;
|
|
25480
|
+
}
|
|
25481
|
+
.v-snackbar--variant-plain {
|
|
25482
|
+
opacity: 0.62;
|
|
25483
|
+
}
|
|
25484
|
+
.v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
|
|
25485
|
+
opacity: 1;
|
|
25486
|
+
}
|
|
25487
|
+
.v-snackbar--variant-plain .v-snackbar__overlay {
|
|
25278
25488
|
display: none;
|
|
25279
|
-
}.v-tab.v-tab.v-btn {
|
|
25280
|
-
height: var(--v-tabs-height);
|
|
25281
|
-
border-radius: 0;
|
|
25282
|
-
min-width: 90px;
|
|
25283
25489
|
}
|
|
25284
|
-
.v-
|
|
25285
|
-
|
|
25490
|
+
.v-snackbar--variant-elevated, .v-snackbar--variant-flat {
|
|
25491
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
25492
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
25286
25493
|
}
|
|
25287
|
-
.v-
|
|
25288
|
-
|
|
25494
|
+
.v-snackbar--variant-elevated {
|
|
25495
|
+
box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
25289
25496
|
}
|
|
25290
|
-
|
|
25291
|
-
.v-
|
|
25292
|
-
|
|
25497
|
+
.v-snackbar--variant-flat {
|
|
25498
|
+
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));
|
|
25499
|
+
}
|
|
25500
|
+
.v-snackbar--variant-outlined {
|
|
25501
|
+
border: thin solid currentColor;
|
|
25502
|
+
}
|
|
25503
|
+
.v-snackbar--variant-text .v-snackbar__overlay {
|
|
25504
|
+
background: currentColor;
|
|
25505
|
+
}
|
|
25506
|
+
.v-snackbar--variant-tonal .v-snackbar__underlay {
|
|
25507
|
+
background: currentColor;
|
|
25508
|
+
opacity: var(--v-activated-opacity);
|
|
25509
|
+
border-radius: inherit;
|
|
25510
|
+
top: 0;
|
|
25511
|
+
right: 0;
|
|
25293
25512
|
bottom: 0;
|
|
25294
25513
|
left: 0;
|
|
25295
|
-
height: 2px;
|
|
25296
|
-
width: 100%;
|
|
25297
|
-
background: currentColor;
|
|
25298
25514
|
pointer-events: none;
|
|
25299
|
-
opacity: 0;
|
|
25300
25515
|
}
|
|
25301
|
-
.v-
|
|
25302
|
-
|
|
25516
|
+
.v-snackbar .v-snackbar__underlay {
|
|
25517
|
+
position: absolute;
|
|
25303
25518
|
}
|
|
25304
|
-
|
|
25305
|
-
|
|
25306
|
-
|
|
25307
|
-
|
|
25308
|
-
|
|
25519
|
+
|
|
25520
|
+
.v-snackbar__content {
|
|
25521
|
+
flex-grow: 1;
|
|
25522
|
+
font-size: 0.875rem;
|
|
25523
|
+
font-weight: 400;
|
|
25524
|
+
letter-spacing: 0.0178571429em;
|
|
25525
|
+
line-height: 1.425;
|
|
25526
|
+
margin-right: auto;
|
|
25527
|
+
padding: 14px 16px;
|
|
25528
|
+
text-align: initial;
|
|
25529
|
+
}
|
|
25530
|
+
.v-snackbar__actions {
|
|
25531
|
+
align-items: center;
|
|
25532
|
+
align-self: center;
|
|
25309
25533
|
display: flex;
|
|
25310
|
-
|
|
25534
|
+
margin-inline-end: 8px;
|
|
25311
25535
|
}
|
|
25312
|
-
.v-
|
|
25313
|
-
|
|
25536
|
+
.v-snackbar__actions > .v-btn {
|
|
25537
|
+
padding: 0 8px;
|
|
25538
|
+
min-width: auto;
|
|
25314
25539
|
}
|
|
25315
|
-
.v-
|
|
25316
|
-
|
|
25540
|
+
.v-snackbar__timer {
|
|
25541
|
+
width: 100%;
|
|
25542
|
+
position: absolute;
|
|
25543
|
+
top: 0;
|
|
25317
25544
|
}
|
|
25318
|
-
|
|
25319
|
-
.
|
|
25320
|
-
--v-tabs-height: 44px;
|
|
25545
|
+
.v-snackbar__timer .v-progress-linear {
|
|
25546
|
+
transition: 0.2s linear;
|
|
25321
25547
|
}
|
|
25322
|
-
.v-
|
|
25323
|
-
|
|
25548
|
+
.v-snackbar--absolute {
|
|
25549
|
+
position: absolute;
|
|
25550
|
+
z-index: 1;
|
|
25324
25551
|
}
|
|
25325
|
-
|
|
25326
|
-
|
|
25327
|
-
--v-tabs-height: 36px;
|
|
25552
|
+
.v-snackbar--multi-line .v-snackbar__wrapper {
|
|
25553
|
+
min-height: 68px;
|
|
25328
25554
|
}
|
|
25329
|
-
.v-
|
|
25330
|
-
|
|
25555
|
+
.v-snackbar--vertical .v-snackbar__wrapper {
|
|
25556
|
+
flex-direction: column;
|
|
25331
25557
|
}
|
|
25332
|
-
|
|
25333
|
-
|
|
25334
|
-
|
|
25335
|
-
flex: none;
|
|
25336
|
-
--v-tabs-height: 48px;
|
|
25558
|
+
.v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
|
|
25559
|
+
align-self: flex-end;
|
|
25560
|
+
margin-bottom: 8px;
|
|
25337
25561
|
}
|
|
25338
|
-
|
|
25339
|
-
|
|
25340
|
-
|
|
25562
|
+
.v-snackbar--center {
|
|
25563
|
+
align-items: center;
|
|
25564
|
+
justify-content: center;
|
|
25341
25565
|
}
|
|
25342
|
-
|
|
25343
|
-
|
|
25344
|
-
|
|
25345
|
-
|
|
25566
|
+
.v-snackbar--top {
|
|
25567
|
+
align-items: flex-start;
|
|
25568
|
+
}
|
|
25569
|
+
.v-snackbar--bottom {
|
|
25570
|
+
align-items: flex-end;
|
|
25571
|
+
}
|
|
25572
|
+
.v-snackbar--left, .v-snackbar--start {
|
|
25573
|
+
justify-content: flex-start;
|
|
25346
25574
|
}
|
|
25347
|
-
.v-
|
|
25348
|
-
|
|
25349
|
-
margin-inline-start: auto;
|
|
25575
|
+
.v-snackbar--right, .v-snackbar--end {
|
|
25576
|
+
justify-content: flex-end;
|
|
25350
25577
|
}
|
|
25351
25578
|
|
|
25352
|
-
.v-
|
|
25353
|
-
|
|
25579
|
+
.v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
|
|
25580
|
+
transition-duration: 0.15s;
|
|
25581
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
25354
25582
|
}
|
|
25355
|
-
.v-
|
|
25356
|
-
|
|
25357
|
-
max-width: none;
|
|
25583
|
+
.v-snackbar-transition-enter-active {
|
|
25584
|
+
transition-property: opacity, transform;
|
|
25358
25585
|
}
|
|
25359
|
-
|
|
25360
|
-
|
|
25361
|
-
|
|
25586
|
+
.v-snackbar-transition-enter-from {
|
|
25587
|
+
opacity: 0;
|
|
25588
|
+
transform: scale(0.8);
|
|
25362
25589
|
}
|
|
25363
|
-
.v-
|
|
25364
|
-
|
|
25590
|
+
.v-snackbar-transition-leave-active {
|
|
25591
|
+
transition-property: opacity;
|
|
25365
25592
|
}
|
|
25366
|
-
|
|
25367
|
-
|
|
25368
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
|
25369
|
-
margin-inline-start: 52px;
|
|
25370
|
-
}
|
|
25371
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
|
25372
|
-
margin-inline-end: 52px;
|
|
25373
|
-
}
|
|
25593
|
+
.v-snackbar-transition-leave-to {
|
|
25594
|
+
opacity: 0;
|
|
25374
25595
|
}.v-table {
|
|
25375
25596
|
background: rgb(var(--v-theme-surface));
|
|
25376
25597
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
@@ -25546,112 +25767,6 @@ html.v-overlay-scroll-blocked {
|
|
|
25546
25767
|
}
|
|
25547
25768
|
.v-system-bar:not(.v-system-bar--absolute) {
|
|
25548
25769
|
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
|
25549
|
-
}/* region BLOCK */
|
|
25550
|
-
.v-text-field input {
|
|
25551
|
-
color: inherit;
|
|
25552
|
-
opacity: 0;
|
|
25553
|
-
flex: 1;
|
|
25554
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
25555
|
-
min-width: 0;
|
|
25556
|
-
}
|
|
25557
|
-
.v-text-field input:focus, .v-text-field input:active {
|
|
25558
|
-
outline: none;
|
|
25559
|
-
}
|
|
25560
|
-
.v-text-field input:invalid {
|
|
25561
|
-
box-shadow: none;
|
|
25562
|
-
}
|
|
25563
|
-
.v-text-field .v-field {
|
|
25564
|
-
cursor: text;
|
|
25565
|
-
}
|
|
25566
|
-
.v-text-field--prefixed.v-text-field .v-field__input {
|
|
25567
|
-
--v-field-padding-start: 6px;
|
|
25568
|
-
}
|
|
25569
|
-
|
|
25570
|
-
.v-text-field--suffixed.v-text-field .v-field__input {
|
|
25571
|
-
--v-field-padding-end: 0;
|
|
25572
|
-
}
|
|
25573
|
-
|
|
25574
|
-
.v-text-field .v-input__details {
|
|
25575
|
-
padding-inline: 16px;
|
|
25576
|
-
}
|
|
25577
|
-
.v-input--plain-underlined.v-text-field .v-input__details {
|
|
25578
|
-
padding-inline: 0;
|
|
25579
|
-
}
|
|
25580
|
-
|
|
25581
|
-
.v-text-field .v-field--no-label input,
|
|
25582
|
-
.v-text-field .v-field--active input {
|
|
25583
|
-
opacity: 1;
|
|
25584
|
-
}
|
|
25585
|
-
.v-text-field .v-field--single-line input {
|
|
25586
|
-
transition: none;
|
|
25587
|
-
}
|
|
25588
|
-
|
|
25589
|
-
/* endregion */
|
|
25590
|
-
/* region ELEMENTS */
|
|
25591
|
-
.v-text-field__prefix, .v-text-field__suffix {
|
|
25592
|
-
align-items: center;
|
|
25593
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
25594
|
-
cursor: default;
|
|
25595
|
-
display: flex;
|
|
25596
|
-
opacity: 0;
|
|
25597
|
-
transition: inherit;
|
|
25598
|
-
white-space: nowrap;
|
|
25599
|
-
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
|
25600
|
-
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
|
25601
|
-
padding-bottom: var(--v-field-padding-bottom, 6px);
|
|
25602
|
-
}
|
|
25603
|
-
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
|
25604
|
-
opacity: 1;
|
|
25605
|
-
}
|
|
25606
|
-
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
|
25607
|
-
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
|
25608
|
-
}
|
|
25609
|
-
.v-text-field__prefix {
|
|
25610
|
-
padding-inline-start: var(--v-field-padding-start);
|
|
25611
|
-
}
|
|
25612
|
-
.v-text-field__suffix {
|
|
25613
|
-
padding-inline-end: var(--v-field-padding-end);
|
|
25614
|
-
}
|
|
25615
|
-
|
|
25616
|
-
/* endregion */.v-textarea .v-field {
|
|
25617
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
|
25618
|
-
}
|
|
25619
|
-
.v-textarea .v-field__field {
|
|
25620
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
|
25621
|
-
}
|
|
25622
|
-
.v-textarea .v-field__input {
|
|
25623
|
-
flex: 1 1 auto;
|
|
25624
|
-
outline: none;
|
|
25625
|
-
-webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
25626
|
-
mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
|
|
25627
|
-
}
|
|
25628
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
|
25629
|
-
visibility: hidden;
|
|
25630
|
-
position: absolute;
|
|
25631
|
-
top: 0;
|
|
25632
|
-
left: 0;
|
|
25633
|
-
height: 0 !important;
|
|
25634
|
-
min-height: 0 !important;
|
|
25635
|
-
pointer-events: none;
|
|
25636
|
-
}
|
|
25637
|
-
.v-textarea--no-resize .v-field__input {
|
|
25638
|
-
resize: none;
|
|
25639
|
-
}
|
|
25640
|
-
.v-textarea .v-field--no-label textarea,
|
|
25641
|
-
.v-textarea .v-field--active textarea {
|
|
25642
|
-
opacity: 1;
|
|
25643
|
-
}
|
|
25644
|
-
.v-textarea textarea {
|
|
25645
|
-
opacity: 0;
|
|
25646
|
-
flex: 1;
|
|
25647
|
-
min-width: 0;
|
|
25648
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
|
25649
|
-
}
|
|
25650
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
|
25651
|
-
outline: none;
|
|
25652
|
-
}
|
|
25653
|
-
.v-textarea textarea:invalid {
|
|
25654
|
-
box-shadow: none;
|
|
25655
25770
|
}.v-theme-provider {
|
|
25656
25771
|
background: rgb(var(--v-theme-background));
|
|
25657
25772
|
color: rgb(var(--v-theme-on-background));
|
|
@@ -26071,28 +26186,6 @@ html.v-overlay-scroll-blocked {
|
|
|
26071
26186
|
|
|
26072
26187
|
.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
|
26073
26188
|
padding-inline-end: 0;
|
|
26074
|
-
}.v-tooltip > .v-overlay__content {
|
|
26075
|
-
background: rgb(var(--v-theme-surface-variant));
|
|
26076
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
|
26077
|
-
border-radius: 4px;
|
|
26078
|
-
font-size: 0.875rem;
|
|
26079
|
-
line-height: 1.6;
|
|
26080
|
-
display: inline-block;
|
|
26081
|
-
padding: 5px 16px;
|
|
26082
|
-
text-transform: initial;
|
|
26083
|
-
width: auto;
|
|
26084
|
-
opacity: 1;
|
|
26085
|
-
pointer-events: none;
|
|
26086
|
-
transition-property: opacity, transform;
|
|
26087
|
-
overflow-wrap: break-word;
|
|
26088
|
-
}
|
|
26089
|
-
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
|
26090
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
26091
|
-
transition-duration: 150ms;
|
|
26092
|
-
}
|
|
26093
|
-
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
26094
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
26095
|
-
transition-duration: 75ms;
|
|
26096
26189
|
}.v-toolbar {
|
|
26097
26190
|
align-items: flex-start;
|
|
26098
26191
|
display: flex;
|
|
@@ -26222,6 +26315,28 @@ html.v-overlay-scroll-blocked {
|
|
|
26222
26315
|
}
|
|
26223
26316
|
.v-toolbar-items > .v-btn {
|
|
26224
26317
|
border-radius: 0;
|
|
26318
|
+
}.v-tooltip > .v-overlay__content {
|
|
26319
|
+
background: rgb(var(--v-theme-surface-variant));
|
|
26320
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
26321
|
+
border-radius: 4px;
|
|
26322
|
+
font-size: 0.875rem;
|
|
26323
|
+
line-height: 1.6;
|
|
26324
|
+
display: inline-block;
|
|
26325
|
+
padding: 5px 16px;
|
|
26326
|
+
text-transform: initial;
|
|
26327
|
+
width: auto;
|
|
26328
|
+
opacity: 1;
|
|
26329
|
+
pointer-events: none;
|
|
26330
|
+
transition-property: opacity, transform;
|
|
26331
|
+
overflow-wrap: break-word;
|
|
26332
|
+
}
|
|
26333
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
|
26334
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
26335
|
+
transition-duration: 150ms;
|
|
26336
|
+
}
|
|
26337
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
26338
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
26339
|
+
transition-duration: 75ms;
|
|
26225
26340
|
}.v-virtual-scroll {
|
|
26226
26341
|
display: block;
|
|
26227
26342
|
flex: 1 1 auto;
|
|
@@ -26323,6 +26438,41 @@ html.v-overlay-scroll-blocked {
|
|
|
26323
26438
|
}
|
|
26324
26439
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
26325
26440
|
will-change: transform;
|
|
26441
|
+
}.v-color-picker-swatches {
|
|
26442
|
+
overflow-y: auto;
|
|
26443
|
+
}
|
|
26444
|
+
.v-color-picker-swatches > div {
|
|
26445
|
+
display: flex;
|
|
26446
|
+
flex-wrap: wrap;
|
|
26447
|
+
justify-content: center;
|
|
26448
|
+
padding: 8px;
|
|
26449
|
+
}
|
|
26450
|
+
|
|
26451
|
+
.v-color-picker-swatches__swatch {
|
|
26452
|
+
display: flex;
|
|
26453
|
+
flex-direction: column;
|
|
26454
|
+
margin-bottom: 10px;
|
|
26455
|
+
}
|
|
26456
|
+
|
|
26457
|
+
.v-color-picker-swatches__color {
|
|
26458
|
+
position: relative;
|
|
26459
|
+
height: 18px;
|
|
26460
|
+
max-height: 18px;
|
|
26461
|
+
width: 45px;
|
|
26462
|
+
margin: 2px 4px;
|
|
26463
|
+
border-radius: 2px;
|
|
26464
|
+
-webkit-user-select: none;
|
|
26465
|
+
user-select: none;
|
|
26466
|
+
overflow: hidden;
|
|
26467
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
26468
|
+
cursor: pointer;
|
|
26469
|
+
}
|
|
26470
|
+
.v-color-picker-swatches__color > div {
|
|
26471
|
+
display: flex;
|
|
26472
|
+
align-items: center;
|
|
26473
|
+
justify-content: center;
|
|
26474
|
+
width: 100%;
|
|
26475
|
+
height: 100%;
|
|
26326
26476
|
}.v-color-picker-edit {
|
|
26327
26477
|
display: flex;
|
|
26328
26478
|
margin-top: 24px;
|
|
@@ -26421,41 +26571,6 @@ html.v-overlay-scroll-blocked {
|
|
|
26421
26571
|
.v-color-picker-preview__eye-dropper {
|
|
26422
26572
|
position: relative;
|
|
26423
26573
|
margin-right: 12px;
|
|
26424
|
-
}.v-color-picker-swatches {
|
|
26425
|
-
overflow-y: auto;
|
|
26426
|
-
}
|
|
26427
|
-
.v-color-picker-swatches > div {
|
|
26428
|
-
display: flex;
|
|
26429
|
-
flex-wrap: wrap;
|
|
26430
|
-
justify-content: center;
|
|
26431
|
-
padding: 8px;
|
|
26432
|
-
}
|
|
26433
|
-
|
|
26434
|
-
.v-color-picker-swatches__swatch {
|
|
26435
|
-
display: flex;
|
|
26436
|
-
flex-direction: column;
|
|
26437
|
-
margin-bottom: 10px;
|
|
26438
|
-
}
|
|
26439
|
-
|
|
26440
|
-
.v-color-picker-swatches__color {
|
|
26441
|
-
position: relative;
|
|
26442
|
-
height: 18px;
|
|
26443
|
-
max-height: 18px;
|
|
26444
|
-
width: 45px;
|
|
26445
|
-
margin: 2px 4px;
|
|
26446
|
-
border-radius: 2px;
|
|
26447
|
-
-webkit-user-select: none;
|
|
26448
|
-
user-select: none;
|
|
26449
|
-
overflow: hidden;
|
|
26450
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
|
26451
|
-
cursor: pointer;
|
|
26452
|
-
}
|
|
26453
|
-
.v-color-picker-swatches__color > div {
|
|
26454
|
-
display: flex;
|
|
26455
|
-
align-items: center;
|
|
26456
|
-
justify-content: center;
|
|
26457
|
-
width: 100%;
|
|
26458
|
-
height: 100%;
|
|
26459
26574
|
}.v-slider-thumb {
|
|
26460
26575
|
touch-action: none;
|
|
26461
26576
|
color: rgb(var(--v-theme-surface-variant));
|