@vuetify/nightly 3.4.10-dev.2024-01-16 → 3.4.10-dev.2024-01-17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -2
- package/dist/json/importMap.json +128 -128
- package/dist/json/web-types.json +76 -1
- package/dist/vuetify-labs.css +954 -952
- package/dist/vuetify-labs.d.ts +9 -2
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +638 -638
- package/dist/vuetify.d.ts +45 -38
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +2 -2
- package/lib/components/VAlert/_variables.scss +2 -2
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +9 -2
- package/lib/components/VSlider/VSliderTrack.css +1 -1
- package/lib/components/VSlider/VSliderTrack.sass +1 -1
- package/lib/components/VSlider/_variables.scss +1 -0
- package/lib/components/VSystemBar/VSystemBar.css +2 -2
- package/lib/components/VSystemBar/_variables.scss +2 -2
- package/lib/components/VTimeline/VTimeline.css +1 -1
- package/lib/components/VTimeline/_variables.scss +1 -1
- package/lib/components/VToolbar/VToolbar.css +2 -2
- package/lib/components/VToolbar/_variables.scss +2 -2
- package/lib/components/index.d.mts +9 -2
- package/lib/composables/theme.mjs +2 -0
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +36 -36
- package/lib/labs/VCalendar/VCalendar.css +4 -2
- package/lib/labs/VCalendar/VCalendar.sass +4 -2
- package/lib/labs/VCalendar/_variables.scss +5 -0
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.4.10-dev.2024-01-
|
|
2
|
+
* Vuetify v3.4.10-dev.2024-01-17
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17009,6 +17009,87 @@ html.overflow-y-hidden {
|
|
|
17009
17009
|
min-height: 100vh;
|
|
17010
17010
|
min-height: 100dvh;
|
|
17011
17011
|
position: relative;
|
|
17012
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17013
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17014
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17015
|
+
cursor: text;
|
|
17016
|
+
}
|
|
17017
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
17018
|
+
flex: 1 1;
|
|
17019
|
+
}
|
|
17020
|
+
.v-autocomplete .v-field input {
|
|
17021
|
+
min-width: 64px;
|
|
17022
|
+
}
|
|
17023
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17024
|
+
min-width: 0;
|
|
17025
|
+
}
|
|
17026
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17027
|
+
margin-inline-end: 2px;
|
|
17028
|
+
}
|
|
17029
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
17030
|
+
overflow: hidden;
|
|
17031
|
+
text-overflow: ellipsis;
|
|
17032
|
+
white-space: nowrap;
|
|
17033
|
+
}
|
|
17034
|
+
|
|
17035
|
+
.v-autocomplete__content {
|
|
17036
|
+
overflow: hidden;
|
|
17037
|
+
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));
|
|
17038
|
+
border-radius: 4px;
|
|
17039
|
+
}
|
|
17040
|
+
.v-autocomplete__mask {
|
|
17041
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17042
|
+
}
|
|
17043
|
+
.v-autocomplete__selection {
|
|
17044
|
+
display: inline-flex;
|
|
17045
|
+
align-items: center;
|
|
17046
|
+
height: 1.5rem;
|
|
17047
|
+
letter-spacing: inherit;
|
|
17048
|
+
line-height: inherit;
|
|
17049
|
+
max-width: calc(100% - 2px - 2px);
|
|
17050
|
+
}
|
|
17051
|
+
.v-autocomplete__selection:first-child {
|
|
17052
|
+
margin-inline-start: 0;
|
|
17053
|
+
}
|
|
17054
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17055
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17056
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17057
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17058
|
+
top: 0px;
|
|
17059
|
+
}
|
|
17060
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17061
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
17062
|
+
}
|
|
17063
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17064
|
+
opacity: 1;
|
|
17065
|
+
}
|
|
17066
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17067
|
+
caret-color: transparent;
|
|
17068
|
+
}
|
|
17069
|
+
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17070
|
+
flex: 1 1;
|
|
17071
|
+
position: absolute;
|
|
17072
|
+
left: 0;
|
|
17073
|
+
right: 0;
|
|
17074
|
+
width: 100%;
|
|
17075
|
+
padding-inline: inherit;
|
|
17076
|
+
}
|
|
17077
|
+
.v-autocomplete--single .v-field--active input {
|
|
17078
|
+
transition: none;
|
|
17079
|
+
}
|
|
17080
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17081
|
+
opacity: 0;
|
|
17082
|
+
}
|
|
17083
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17084
|
+
opacity: 0;
|
|
17085
|
+
}
|
|
17086
|
+
.v-autocomplete__menu-icon {
|
|
17087
|
+
margin-inline-start: 4px;
|
|
17088
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17089
|
+
}
|
|
17090
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17091
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
17092
|
+
transform: rotate(180deg);
|
|
17012
17093
|
}.v-alert {
|
|
17013
17094
|
display: grid;
|
|
17014
17095
|
flex: 1 1;
|
|
@@ -17043,8 +17124,8 @@ html.overflow-y-hidden {
|
|
|
17043
17124
|
display: none;
|
|
17044
17125
|
}
|
|
17045
17126
|
.v-alert--variant-elevated, .v-alert--variant-flat {
|
|
17046
|
-
background: rgb(var(--v-theme-
|
|
17047
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
17127
|
+
background: rgb(var(--v-theme-surface-light));
|
|
17128
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
17048
17129
|
}
|
|
17049
17130
|
.v-alert--variant-elevated {
|
|
17050
17131
|
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));
|
|
@@ -17219,87 +17300,6 @@ html.overflow-y-hidden {
|
|
|
17219
17300
|
text-transform: none;
|
|
17220
17301
|
word-break: normal;
|
|
17221
17302
|
word-wrap: break-word;
|
|
17222
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
|
17223
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
|
17224
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
17225
|
-
cursor: text;
|
|
17226
|
-
}
|
|
17227
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
17228
|
-
flex: 1 1;
|
|
17229
|
-
}
|
|
17230
|
-
.v-autocomplete .v-field input {
|
|
17231
|
-
min-width: 64px;
|
|
17232
|
-
}
|
|
17233
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
17234
|
-
min-width: 0;
|
|
17235
|
-
}
|
|
17236
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
17237
|
-
margin-inline-end: 2px;
|
|
17238
|
-
}
|
|
17239
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
|
17240
|
-
overflow: hidden;
|
|
17241
|
-
text-overflow: ellipsis;
|
|
17242
|
-
white-space: nowrap;
|
|
17243
|
-
}
|
|
17244
|
-
|
|
17245
|
-
.v-autocomplete__content {
|
|
17246
|
-
overflow: hidden;
|
|
17247
|
-
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));
|
|
17248
|
-
border-radius: 4px;
|
|
17249
|
-
}
|
|
17250
|
-
.v-autocomplete__mask {
|
|
17251
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
17252
|
-
}
|
|
17253
|
-
.v-autocomplete__selection {
|
|
17254
|
-
display: inline-flex;
|
|
17255
|
-
align-items: center;
|
|
17256
|
-
height: 1.5rem;
|
|
17257
|
-
letter-spacing: inherit;
|
|
17258
|
-
line-height: inherit;
|
|
17259
|
-
max-width: calc(100% - 2px - 2px);
|
|
17260
|
-
}
|
|
17261
|
-
.v-autocomplete__selection:first-child {
|
|
17262
|
-
margin-inline-start: 0;
|
|
17263
|
-
}
|
|
17264
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
17265
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
17266
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
17267
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
17268
|
-
top: 0px;
|
|
17269
|
-
}
|
|
17270
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
17271
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
17272
|
-
}
|
|
17273
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
|
17274
|
-
opacity: 1;
|
|
17275
|
-
}
|
|
17276
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
|
17277
|
-
caret-color: transparent;
|
|
17278
|
-
}
|
|
17279
|
-
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
17280
|
-
flex: 1 1;
|
|
17281
|
-
position: absolute;
|
|
17282
|
-
left: 0;
|
|
17283
|
-
right: 0;
|
|
17284
|
-
width: 100%;
|
|
17285
|
-
padding-inline: inherit;
|
|
17286
|
-
}
|
|
17287
|
-
.v-autocomplete--single .v-field--active input {
|
|
17288
|
-
transition: none;
|
|
17289
|
-
}
|
|
17290
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
17291
|
-
opacity: 0;
|
|
17292
|
-
}
|
|
17293
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
17294
|
-
opacity: 0;
|
|
17295
|
-
}
|
|
17296
|
-
.v-autocomplete__menu-icon {
|
|
17297
|
-
margin-inline-start: 4px;
|
|
17298
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
17299
|
-
}
|
|
17300
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
|
17301
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
17302
|
-
transform: rotate(180deg);
|
|
17303
17303
|
}.v-avatar {
|
|
17304
17304
|
flex: none;
|
|
17305
17305
|
align-items: center;
|
|
@@ -19000,6 +19000,24 @@ html.overflow-y-hidden {
|
|
|
19000
19000
|
|
|
19001
19001
|
.v-chip--label {
|
|
19002
19002
|
border-radius: 4px;
|
|
19003
|
+
}.v-chip-group {
|
|
19004
|
+
display: flex;
|
|
19005
|
+
max-width: 100%;
|
|
19006
|
+
min-width: 0;
|
|
19007
|
+
overflow-x: auto;
|
|
19008
|
+
padding: 4px 0;
|
|
19009
|
+
}
|
|
19010
|
+
.v-chip-group .v-chip {
|
|
19011
|
+
margin: 4px 8px 4px 0;
|
|
19012
|
+
}
|
|
19013
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19014
|
+
opacity: var(--v-activated-opacity);
|
|
19015
|
+
}
|
|
19016
|
+
|
|
19017
|
+
.v-chip-group--column .v-slide-group__content {
|
|
19018
|
+
white-space: normal;
|
|
19019
|
+
flex-wrap: wrap;
|
|
19020
|
+
max-width: 100%;
|
|
19003
19021
|
}.v-container {
|
|
19004
19022
|
width: 100%;
|
|
19005
19023
|
padding: 16px;
|
|
@@ -19672,24 +19690,6 @@ html.overflow-y-hidden {
|
|
|
19672
19690
|
.offset-xxl-11 {
|
|
19673
19691
|
margin-inline-start: 91.6666666667%;
|
|
19674
19692
|
}
|
|
19675
|
-
}.v-chip-group {
|
|
19676
|
-
display: flex;
|
|
19677
|
-
max-width: 100%;
|
|
19678
|
-
min-width: 0;
|
|
19679
|
-
overflow-x: auto;
|
|
19680
|
-
padding: 4px 0;
|
|
19681
|
-
}
|
|
19682
|
-
.v-chip-group .v-chip {
|
|
19683
|
-
margin: 4px 8px 4px 0;
|
|
19684
|
-
}
|
|
19685
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
|
19686
|
-
opacity: var(--v-activated-opacity);
|
|
19687
|
-
}
|
|
19688
|
-
|
|
19689
|
-
.v-chip-group--column .v-slide-group__content {
|
|
19690
|
-
white-space: normal;
|
|
19691
|
-
flex-wrap: wrap;
|
|
19692
|
-
max-width: 100%;
|
|
19693
19693
|
}.v-color-picker {
|
|
19694
19694
|
align-self: flex-start;
|
|
19695
19695
|
contain: content;
|
|
@@ -19739,7 +19739,7 @@ html.overflow-y-hidden {
|
|
|
19739
19739
|
border-radius: 4px;
|
|
19740
19740
|
}
|
|
19741
19741
|
.v-combobox__mask {
|
|
19742
|
-
background: rgb(var(--v-theme-
|
|
19742
|
+
background: rgb(var(--v-theme-surface-light));
|
|
19743
19743
|
}
|
|
19744
19744
|
.v-combobox__selection {
|
|
19745
19745
|
display: inline-flex;
|
|
@@ -19796,6 +19796,41 @@ html.overflow-y-hidden {
|
|
|
19796
19796
|
flex: 0 1 auto;
|
|
19797
19797
|
font-size: 12px;
|
|
19798
19798
|
transition-duration: 150ms;
|
|
19799
|
+
}.v-data-table-footer {
|
|
19800
|
+
display: flex;
|
|
19801
|
+
align-items: center;
|
|
19802
|
+
flex-wrap: wrap;
|
|
19803
|
+
padding: 4px;
|
|
19804
|
+
justify-content: flex-end;
|
|
19805
|
+
}
|
|
19806
|
+
|
|
19807
|
+
.v-data-table-footer__items-per-page {
|
|
19808
|
+
display: flex;
|
|
19809
|
+
align-items: center;
|
|
19810
|
+
justify-content: center;
|
|
19811
|
+
}
|
|
19812
|
+
.v-data-table-footer__items-per-page > span {
|
|
19813
|
+
padding-inline-end: 8px;
|
|
19814
|
+
}
|
|
19815
|
+
.v-data-table-footer__items-per-page > .v-select {
|
|
19816
|
+
width: 90px;
|
|
19817
|
+
}
|
|
19818
|
+
|
|
19819
|
+
.v-data-table-footer__info {
|
|
19820
|
+
display: flex;
|
|
19821
|
+
justify-content: flex-end;
|
|
19822
|
+
min-width: 116px;
|
|
19823
|
+
padding: 0 16px;
|
|
19824
|
+
}
|
|
19825
|
+
|
|
19826
|
+
.v-data-table-footer__pagination {
|
|
19827
|
+
display: flex;
|
|
19828
|
+
align-items: center;
|
|
19829
|
+
margin-inline-start: 16px;
|
|
19830
|
+
}
|
|
19831
|
+
|
|
19832
|
+
.v-data-table-footer__page {
|
|
19833
|
+
padding: 0 8px;
|
|
19799
19834
|
}.v-data-table {
|
|
19800
19835
|
width: 100%;
|
|
19801
19836
|
}
|
|
@@ -19928,81 +19963,21 @@ html.overflow-y-hidden {
|
|
|
19928
19963
|
.v-data-table-rows-loading,
|
|
19929
19964
|
.v-data-table-rows-no-data {
|
|
19930
19965
|
text-align: center;
|
|
19931
|
-
}.v-
|
|
19932
|
-
display: flex;
|
|
19933
|
-
align-items: center;
|
|
19934
|
-
flex-wrap: wrap;
|
|
19935
|
-
padding: 4px;
|
|
19936
|
-
justify-content: flex-end;
|
|
19937
|
-
}
|
|
19938
|
-
|
|
19939
|
-
.v-data-table-footer__items-per-page {
|
|
19966
|
+
}.v-date-picker-controls {
|
|
19940
19967
|
display: flex;
|
|
19941
19968
|
align-items: center;
|
|
19942
|
-
justify-content:
|
|
19969
|
+
justify-content: space-between;
|
|
19970
|
+
font-size: 0.875rem;
|
|
19971
|
+
padding-top: 4px;
|
|
19972
|
+
padding-bottom: 4px;
|
|
19973
|
+
padding-inline-start: 6px;
|
|
19974
|
+
padding-inline-end: 12px;
|
|
19943
19975
|
}
|
|
19944
|
-
.v-
|
|
19945
|
-
|
|
19946
|
-
|
|
19947
|
-
|
|
19948
|
-
|
|
19949
|
-
}
|
|
19950
|
-
|
|
19951
|
-
.v-data-table-footer__info {
|
|
19952
|
-
display: flex;
|
|
19953
|
-
justify-content: flex-end;
|
|
19954
|
-
min-width: 116px;
|
|
19955
|
-
padding: 0 16px;
|
|
19956
|
-
}
|
|
19957
|
-
|
|
19958
|
-
.v-data-table-footer__pagination {
|
|
19959
|
-
display: flex;
|
|
19960
|
-
align-items: center;
|
|
19961
|
-
margin-inline-start: 16px;
|
|
19962
|
-
}
|
|
19963
|
-
|
|
19964
|
-
.v-data-table-footer__page {
|
|
19965
|
-
padding: 0 8px;
|
|
19966
|
-
}.v-date-picker__input {
|
|
19967
|
-
padding-top: 16px;
|
|
19968
|
-
padding-left: 24px;
|
|
19969
|
-
padding-right: 24px;
|
|
19970
|
-
}
|
|
19971
|
-
|
|
19972
|
-
.v-date-picker {
|
|
19973
|
-
overflow: hidden;
|
|
19974
|
-
width: 360px;
|
|
19975
|
-
}
|
|
19976
|
-
.v-date-picker--show-week {
|
|
19977
|
-
width: 408px;
|
|
19978
|
-
}
|
|
19979
|
-
|
|
19980
|
-
.v-date-picker-month {
|
|
19981
|
-
padding: 0 12px 12px;
|
|
19982
|
-
}
|
|
19983
|
-
|
|
19984
|
-
.v-date-picker-month__day {
|
|
19985
|
-
height: 48px;
|
|
19986
|
-
width: 48px;
|
|
19987
|
-
}
|
|
19988
|
-
.v-date-picker-month__day .v-btn {
|
|
19989
|
-
--v-btn-height: 28px;
|
|
19990
|
-
--v-btn-size: 0.85rem;
|
|
19991
|
-
}.v-date-picker-controls {
|
|
19992
|
-
display: flex;
|
|
19993
|
-
align-items: center;
|
|
19994
|
-
justify-content: space-between;
|
|
19995
|
-
font-size: 0.875rem;
|
|
19996
|
-
padding-top: 4px;
|
|
19997
|
-
padding-bottom: 4px;
|
|
19998
|
-
padding-inline-start: 6px;
|
|
19999
|
-
padding-inline-end: 12px;
|
|
20000
|
-
}
|
|
20001
|
-
.v-date-picker-controls > .v-btn:first-child {
|
|
20002
|
-
text-transform: none;
|
|
20003
|
-
font-weight: 400;
|
|
20004
|
-
line-height: initial;
|
|
20005
|
-
letter-spacing: initial;
|
|
19976
|
+
.v-date-picker-controls > .v-btn:first-child {
|
|
19977
|
+
text-transform: none;
|
|
19978
|
+
font-weight: 400;
|
|
19979
|
+
line-height: initial;
|
|
19980
|
+
letter-spacing: initial;
|
|
20006
19981
|
}
|
|
20007
19982
|
.v-date-picker-controls--variant-classic {
|
|
20008
19983
|
padding-inline-start: 12px;
|
|
@@ -20044,41 +20019,31 @@ html.overflow-y-hidden {
|
|
|
20044
20019
|
|
|
20045
20020
|
.v-date-picker__title {
|
|
20046
20021
|
display: inline-block;
|
|
20047
|
-
}.v-date-
|
|
20048
|
-
|
|
20049
|
-
|
|
20022
|
+
}.v-date-picker__input {
|
|
20023
|
+
padding-top: 16px;
|
|
20024
|
+
padding-left: 24px;
|
|
20025
|
+
padding-right: 24px;
|
|
20050
20026
|
}
|
|
20051
20027
|
|
|
20052
|
-
.v-date-picker
|
|
20053
|
-
|
|
20054
|
-
|
|
20055
|
-
flex: 1 1;
|
|
20056
|
-
height: inherit;
|
|
20057
|
-
justify-content: space-around;
|
|
20058
|
-
grid-template-columns: repeat(2, 1fr);
|
|
20059
|
-
grid-gap: 4px 24px;
|
|
20060
|
-
padding-inline-start: 36px;
|
|
20061
|
-
padding-inline-end: 36px;
|
|
20028
|
+
.v-date-picker {
|
|
20029
|
+
overflow: hidden;
|
|
20030
|
+
width: 360px;
|
|
20062
20031
|
}
|
|
20063
|
-
.v-date-picker-
|
|
20064
|
-
|
|
20065
|
-
padding-inline-start: 8px;
|
|
20066
|
-
padding-inline-end: 8px;
|
|
20067
|
-
}.v-date-picker-years {
|
|
20068
|
-
height: 320px;
|
|
20069
|
-
overflow-y: scroll;
|
|
20032
|
+
.v-date-picker--show-week {
|
|
20033
|
+
width: 408px;
|
|
20070
20034
|
}
|
|
20071
20035
|
|
|
20072
|
-
.v-date-picker-
|
|
20073
|
-
|
|
20074
|
-
flex: 1 1;
|
|
20075
|
-
justify-content: space-around;
|
|
20076
|
-
grid-template-columns: repeat(3, 1fr);
|
|
20077
|
-
gap: 8px 24px;
|
|
20078
|
-
padding-inline: 36px;
|
|
20036
|
+
.v-date-picker-month {
|
|
20037
|
+
padding: 0 12px 12px;
|
|
20079
20038
|
}
|
|
20080
|
-
|
|
20081
|
-
|
|
20039
|
+
|
|
20040
|
+
.v-date-picker-month__day {
|
|
20041
|
+
height: 48px;
|
|
20042
|
+
width: 48px;
|
|
20043
|
+
}
|
|
20044
|
+
.v-date-picker-month__day .v-btn {
|
|
20045
|
+
--v-btn-height: 28px;
|
|
20046
|
+
--v-btn-size: 0.85rem;
|
|
20082
20047
|
}.v-date-picker-header {
|
|
20083
20048
|
display: grid;
|
|
20084
20049
|
grid-template-areas: "prepend content append";
|
|
@@ -20186,6 +20151,41 @@ html.overflow-y-hidden {
|
|
|
20186
20151
|
|
|
20187
20152
|
.v-date-picker-month__day--hide-adjacent {
|
|
20188
20153
|
opacity: 0;
|
|
20154
|
+
}.v-date-picker-months {
|
|
20155
|
+
height: 320px;
|
|
20156
|
+
overflow-y: scroll;
|
|
20157
|
+
}
|
|
20158
|
+
|
|
20159
|
+
.v-date-picker-months__content {
|
|
20160
|
+
align-items: center;
|
|
20161
|
+
display: grid;
|
|
20162
|
+
flex: 1 1;
|
|
20163
|
+
height: inherit;
|
|
20164
|
+
justify-content: space-around;
|
|
20165
|
+
grid-template-columns: repeat(2, 1fr);
|
|
20166
|
+
grid-gap: 4px 24px;
|
|
20167
|
+
padding-inline-start: 36px;
|
|
20168
|
+
padding-inline-end: 36px;
|
|
20169
|
+
}
|
|
20170
|
+
.v-date-picker-months__content .v-btn {
|
|
20171
|
+
text-transform: none;
|
|
20172
|
+
padding-inline-start: 8px;
|
|
20173
|
+
padding-inline-end: 8px;
|
|
20174
|
+
}.v-date-picker-years {
|
|
20175
|
+
height: 320px;
|
|
20176
|
+
overflow-y: scroll;
|
|
20177
|
+
}
|
|
20178
|
+
|
|
20179
|
+
.v-date-picker-years__content {
|
|
20180
|
+
display: grid;
|
|
20181
|
+
flex: 1 1;
|
|
20182
|
+
justify-content: space-around;
|
|
20183
|
+
grid-template-columns: repeat(3, 1fr);
|
|
20184
|
+
gap: 8px 24px;
|
|
20185
|
+
padding-inline: 36px;
|
|
20186
|
+
}
|
|
20187
|
+
.v-date-picker-years__content .v-btn {
|
|
20188
|
+
padding-inline: 8px;
|
|
20189
20189
|
}.v-dialog {
|
|
20190
20190
|
align-items: center;
|
|
20191
20191
|
justify-content: center;
|
|
@@ -21371,14 +21371,6 @@ textarea.v-field__input::placeholder {
|
|
|
21371
21371
|
|
|
21372
21372
|
.v-label--clickable {
|
|
21373
21373
|
cursor: pointer;
|
|
21374
|
-
}.v-layout {
|
|
21375
|
-
--v-scrollbar-offset: 0px;
|
|
21376
|
-
display: flex;
|
|
21377
|
-
flex: 1 1 auto;
|
|
21378
|
-
}
|
|
21379
|
-
.v-layout--full-height {
|
|
21380
|
-
--v-scrollbar-offset: inherit;
|
|
21381
|
-
height: 100%;
|
|
21382
21374
|
}.v-layout-item {
|
|
21383
21375
|
position: absolute;
|
|
21384
21376
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -21386,202 +21378,55 @@ textarea.v-field__input::placeholder {
|
|
|
21386
21378
|
|
|
21387
21379
|
.v-layout-item--absolute {
|
|
21388
21380
|
position: absolute;
|
|
21389
|
-
}.v-
|
|
21390
|
-
|
|
21391
|
-
max-width: 100%;
|
|
21392
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21393
|
-
padding-left: var(--v-layout-left);
|
|
21394
|
-
padding-right: var(--v-layout-right);
|
|
21395
|
-
padding-top: var(--v-layout-top);
|
|
21396
|
-
padding-bottom: var(--v-layout-bottom);
|
|
21397
|
-
}
|
|
21398
|
-
.v-main__scroller {
|
|
21399
|
-
max-width: 100%;
|
|
21400
|
-
position: relative;
|
|
21401
|
-
}
|
|
21402
|
-
.v-main--scrollable {
|
|
21381
|
+
}.v-layout {
|
|
21382
|
+
--v-scrollbar-offset: 0px;
|
|
21403
21383
|
display: flex;
|
|
21404
|
-
position: absolute;
|
|
21405
|
-
top: 0;
|
|
21406
|
-
left: 0;
|
|
21407
|
-
width: 100%;
|
|
21408
|
-
height: 100%;
|
|
21409
|
-
}
|
|
21410
|
-
.v-main--scrollable > .v-main__scroller {
|
|
21411
21384
|
flex: 1 1 auto;
|
|
21412
|
-
|
|
21413
|
-
|
|
21414
|
-
--v-
|
|
21415
|
-
|
|
21416
|
-
--v-layout-bottom: 0px;
|
|
21385
|
+
}
|
|
21386
|
+
.v-layout--full-height {
|
|
21387
|
+
--v-scrollbar-offset: inherit;
|
|
21388
|
+
height: 100%;
|
|
21417
21389
|
}.v-locale-provider {
|
|
21418
21390
|
display: contents;
|
|
21419
|
-
}.v-
|
|
21420
|
-
display: flex;
|
|
21421
|
-
flex-direction: column;
|
|
21422
|
-
border-radius: 4px;
|
|
21423
|
-
}
|
|
21424
|
-
.v-menu > .v-overlay__content > .v-card,
|
|
21425
|
-
.v-menu > .v-overlay__content > .v-sheet,
|
|
21426
|
-
.v-menu > .v-overlay__content > .v-list {
|
|
21427
|
-
background: rgb(var(--v-theme-surface));
|
|
21428
|
-
border-radius: inherit;
|
|
21391
|
+
}.v-list {
|
|
21429
21392
|
overflow: auto;
|
|
21430
|
-
|
|
21431
|
-
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));
|
|
21432
|
-
}.v-messages {
|
|
21433
|
-
flex: 1 1 auto;
|
|
21434
|
-
font-size: 12px;
|
|
21435
|
-
min-height: 14px;
|
|
21436
|
-
min-width: 1px;
|
|
21437
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
21393
|
+
padding: 8px 0;
|
|
21438
21394
|
position: relative;
|
|
21439
|
-
|
|
21440
|
-
.v-messages__message {
|
|
21441
|
-
line-height: 12px;
|
|
21442
|
-
word-break: break-word;
|
|
21443
|
-
overflow-wrap: break-word;
|
|
21444
|
-
word-wrap: break-word;
|
|
21445
|
-
-webkit-hyphens: auto;
|
|
21446
|
-
hyphens: auto;
|
|
21447
|
-
transition-duration: 150ms;
|
|
21448
|
-
}.v-navigation-drawer {
|
|
21449
|
-
-webkit-overflow-scrolling: touch;
|
|
21450
|
-
background: rgb(var(--v-theme-surface));
|
|
21451
|
-
display: flex;
|
|
21452
|
-
flex-direction: column;
|
|
21453
|
-
height: 100%;
|
|
21454
|
-
max-width: 100%;
|
|
21455
|
-
pointer-events: auto;
|
|
21456
|
-
transition-duration: 0.2s;
|
|
21457
|
-
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
|
21458
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21459
|
-
position: absolute;
|
|
21395
|
+
outline: none;
|
|
21460
21396
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
21461
21397
|
border-style: solid;
|
|
21462
21398
|
border-width: 0;
|
|
21463
21399
|
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));
|
|
21464
|
-
|
|
21400
|
+
border-radius: 0;
|
|
21401
|
+
background: rgba(var(--v-theme-surface));
|
|
21465
21402
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21466
21403
|
}
|
|
21467
|
-
.v-
|
|
21404
|
+
.v-list--border {
|
|
21468
21405
|
border-width: thin;
|
|
21469
21406
|
box-shadow: none;
|
|
21470
21407
|
}
|
|
21471
|
-
.v-
|
|
21408
|
+
.v-list--disabled {
|
|
21409
|
+
pointer-events: none;
|
|
21410
|
+
-webkit-user-select: none;
|
|
21411
|
+
user-select: none;
|
|
21412
|
+
}
|
|
21413
|
+
.v-list--nav {
|
|
21414
|
+
padding-inline: 8px;
|
|
21415
|
+
}
|
|
21416
|
+
.v-list--rounded {
|
|
21472
21417
|
border-radius: 4px;
|
|
21473
21418
|
}
|
|
21474
|
-
.v-
|
|
21475
|
-
top: 0;
|
|
21476
|
-
border-bottom-width: thin;
|
|
21419
|
+
.v-list--subheader {
|
|
21420
|
+
padding-top: 0;
|
|
21477
21421
|
}
|
|
21478
|
-
|
|
21422
|
+
|
|
21423
|
+
.v-list-img {
|
|
21424
|
+
border-radius: inherit;
|
|
21425
|
+
display: flex;
|
|
21426
|
+
height: 100%;
|
|
21479
21427
|
left: 0;
|
|
21480
|
-
|
|
21481
|
-
|
|
21482
|
-
.v-navigation-drawer--left {
|
|
21483
|
-
top: 0;
|
|
21484
|
-
left: 0;
|
|
21485
|
-
right: auto;
|
|
21486
|
-
border-right-width: thin;
|
|
21487
|
-
}
|
|
21488
|
-
.v-navigation-drawer--right {
|
|
21489
|
-
top: 0;
|
|
21490
|
-
left: auto;
|
|
21491
|
-
right: 0;
|
|
21492
|
-
border-left-width: thin;
|
|
21493
|
-
}
|
|
21494
|
-
.v-navigation-drawer--floating {
|
|
21495
|
-
border: none;
|
|
21496
|
-
}
|
|
21497
|
-
.v-navigation-drawer--temporary {
|
|
21498
|
-
box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
21499
|
-
}
|
|
21500
|
-
.v-navigation-drawer--sticky {
|
|
21501
|
-
height: auto;
|
|
21502
|
-
transition: box-shadow, transform, visibility, width, height, left, right;
|
|
21503
|
-
}
|
|
21504
|
-
.v-navigation-drawer .v-list {
|
|
21505
|
-
overflow: hidden;
|
|
21506
|
-
}
|
|
21507
|
-
|
|
21508
|
-
.v-navigation-drawer__content {
|
|
21509
|
-
flex: 0 1 auto;
|
|
21510
|
-
height: 100%;
|
|
21511
|
-
max-width: 100%;
|
|
21512
|
-
overflow-x: hidden;
|
|
21513
|
-
overflow-y: auto;
|
|
21514
|
-
}
|
|
21515
|
-
|
|
21516
|
-
.v-navigation-drawer__img {
|
|
21517
|
-
height: 100%;
|
|
21518
|
-
left: 0;
|
|
21519
|
-
position: absolute;
|
|
21520
|
-
top: 0;
|
|
21521
|
-
width: 100%;
|
|
21522
|
-
z-index: -1;
|
|
21523
|
-
}
|
|
21524
|
-
.v-navigation-drawer__img img {
|
|
21525
|
-
height: inherit;
|
|
21526
|
-
object-fit: cover;
|
|
21527
|
-
width: inherit;
|
|
21528
|
-
}
|
|
21529
|
-
|
|
21530
|
-
.v-navigation-drawer__scrim {
|
|
21531
|
-
position: absolute;
|
|
21532
|
-
top: 0;
|
|
21533
|
-
left: 0;
|
|
21534
|
-
width: 100%;
|
|
21535
|
-
height: 100%;
|
|
21536
|
-
background: black;
|
|
21537
|
-
opacity: 0.2;
|
|
21538
|
-
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21539
|
-
z-index: 1;
|
|
21540
|
-
}
|
|
21541
|
-
|
|
21542
|
-
.v-navigation-drawer__prepend,
|
|
21543
|
-
.v-navigation-drawer__append {
|
|
21544
|
-
flex: none;
|
|
21545
|
-
overflow: hidden;
|
|
21546
|
-
}.v-list {
|
|
21547
|
-
overflow: auto;
|
|
21548
|
-
padding: 8px 0;
|
|
21549
|
-
position: relative;
|
|
21550
|
-
outline: none;
|
|
21551
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
21552
|
-
border-style: solid;
|
|
21553
|
-
border-width: 0;
|
|
21554
|
-
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));
|
|
21555
|
-
border-radius: 0;
|
|
21556
|
-
background: rgba(var(--v-theme-surface));
|
|
21557
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21558
|
-
}
|
|
21559
|
-
.v-list--border {
|
|
21560
|
-
border-width: thin;
|
|
21561
|
-
box-shadow: none;
|
|
21562
|
-
}
|
|
21563
|
-
.v-list--disabled {
|
|
21564
|
-
pointer-events: none;
|
|
21565
|
-
-webkit-user-select: none;
|
|
21566
|
-
user-select: none;
|
|
21567
|
-
}
|
|
21568
|
-
.v-list--nav {
|
|
21569
|
-
padding-inline: 8px;
|
|
21570
|
-
}
|
|
21571
|
-
.v-list--rounded {
|
|
21572
|
-
border-radius: 4px;
|
|
21573
|
-
}
|
|
21574
|
-
.v-list--subheader {
|
|
21575
|
-
padding-top: 0;
|
|
21576
|
-
}
|
|
21577
|
-
|
|
21578
|
-
.v-list-img {
|
|
21579
|
-
border-radius: inherit;
|
|
21580
|
-
display: flex;
|
|
21581
|
-
height: 100%;
|
|
21582
|
-
left: 0;
|
|
21583
|
-
overflow: hidden;
|
|
21584
|
-
position: absolute;
|
|
21428
|
+
overflow: hidden;
|
|
21429
|
+
position: absolute;
|
|
21585
21430
|
top: 0;
|
|
21586
21431
|
width: 100%;
|
|
21587
21432
|
z-index: -1;
|
|
@@ -22081,6 +21926,161 @@ textarea.v-field__input::placeholder {
|
|
|
22081
21926
|
}
|
|
22082
21927
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
|
22083
21928
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
|
21929
|
+
}.v-main {
|
|
21930
|
+
flex: 1 0 auto;
|
|
21931
|
+
max-width: 100%;
|
|
21932
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
21933
|
+
padding-left: var(--v-layout-left);
|
|
21934
|
+
padding-right: var(--v-layout-right);
|
|
21935
|
+
padding-top: var(--v-layout-top);
|
|
21936
|
+
padding-bottom: var(--v-layout-bottom);
|
|
21937
|
+
}
|
|
21938
|
+
.v-main__scroller {
|
|
21939
|
+
max-width: 100%;
|
|
21940
|
+
position: relative;
|
|
21941
|
+
}
|
|
21942
|
+
.v-main--scrollable {
|
|
21943
|
+
display: flex;
|
|
21944
|
+
position: absolute;
|
|
21945
|
+
top: 0;
|
|
21946
|
+
left: 0;
|
|
21947
|
+
width: 100%;
|
|
21948
|
+
height: 100%;
|
|
21949
|
+
}
|
|
21950
|
+
.v-main--scrollable > .v-main__scroller {
|
|
21951
|
+
flex: 1 1 auto;
|
|
21952
|
+
overflow-y: auto;
|
|
21953
|
+
--v-layout-left: 0px;
|
|
21954
|
+
--v-layout-right: 0px;
|
|
21955
|
+
--v-layout-top: 0px;
|
|
21956
|
+
--v-layout-bottom: 0px;
|
|
21957
|
+
}.v-menu > .v-overlay__content {
|
|
21958
|
+
display: flex;
|
|
21959
|
+
flex-direction: column;
|
|
21960
|
+
border-radius: 4px;
|
|
21961
|
+
}
|
|
21962
|
+
.v-menu > .v-overlay__content > .v-card,
|
|
21963
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
|
21964
|
+
.v-menu > .v-overlay__content > .v-list {
|
|
21965
|
+
background: rgb(var(--v-theme-surface));
|
|
21966
|
+
border-radius: inherit;
|
|
21967
|
+
overflow: auto;
|
|
21968
|
+
height: 100%;
|
|
21969
|
+
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));
|
|
21970
|
+
}.v-messages {
|
|
21971
|
+
flex: 1 1 auto;
|
|
21972
|
+
font-size: 12px;
|
|
21973
|
+
min-height: 14px;
|
|
21974
|
+
min-width: 1px;
|
|
21975
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
21976
|
+
position: relative;
|
|
21977
|
+
}
|
|
21978
|
+
.v-messages__message {
|
|
21979
|
+
line-height: 12px;
|
|
21980
|
+
word-break: break-word;
|
|
21981
|
+
overflow-wrap: break-word;
|
|
21982
|
+
word-wrap: break-word;
|
|
21983
|
+
-webkit-hyphens: auto;
|
|
21984
|
+
hyphens: auto;
|
|
21985
|
+
transition-duration: 150ms;
|
|
21986
|
+
}.v-navigation-drawer {
|
|
21987
|
+
-webkit-overflow-scrolling: touch;
|
|
21988
|
+
background: rgb(var(--v-theme-surface));
|
|
21989
|
+
display: flex;
|
|
21990
|
+
flex-direction: column;
|
|
21991
|
+
height: 100%;
|
|
21992
|
+
max-width: 100%;
|
|
21993
|
+
pointer-events: auto;
|
|
21994
|
+
transition-duration: 0.2s;
|
|
21995
|
+
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
|
21996
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21997
|
+
position: absolute;
|
|
21998
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
21999
|
+
border-style: solid;
|
|
22000
|
+
border-width: 0;
|
|
22001
|
+
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));
|
|
22002
|
+
background: rgb(var(--v-theme-surface));
|
|
22003
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
22004
|
+
}
|
|
22005
|
+
.v-navigation-drawer--border {
|
|
22006
|
+
border-width: thin;
|
|
22007
|
+
box-shadow: none;
|
|
22008
|
+
}
|
|
22009
|
+
.v-navigation-drawer--rounded {
|
|
22010
|
+
border-radius: 4px;
|
|
22011
|
+
}
|
|
22012
|
+
.v-navigation-drawer--top {
|
|
22013
|
+
top: 0;
|
|
22014
|
+
border-bottom-width: thin;
|
|
22015
|
+
}
|
|
22016
|
+
.v-navigation-drawer--bottom {
|
|
22017
|
+
left: 0;
|
|
22018
|
+
border-top-width: thin;
|
|
22019
|
+
}
|
|
22020
|
+
.v-navigation-drawer--left {
|
|
22021
|
+
top: 0;
|
|
22022
|
+
left: 0;
|
|
22023
|
+
right: auto;
|
|
22024
|
+
border-right-width: thin;
|
|
22025
|
+
}
|
|
22026
|
+
.v-navigation-drawer--right {
|
|
22027
|
+
top: 0;
|
|
22028
|
+
left: auto;
|
|
22029
|
+
right: 0;
|
|
22030
|
+
border-left-width: thin;
|
|
22031
|
+
}
|
|
22032
|
+
.v-navigation-drawer--floating {
|
|
22033
|
+
border: none;
|
|
22034
|
+
}
|
|
22035
|
+
.v-navigation-drawer--temporary {
|
|
22036
|
+
box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
22037
|
+
}
|
|
22038
|
+
.v-navigation-drawer--sticky {
|
|
22039
|
+
height: auto;
|
|
22040
|
+
transition: box-shadow, transform, visibility, width, height, left, right;
|
|
22041
|
+
}
|
|
22042
|
+
.v-navigation-drawer .v-list {
|
|
22043
|
+
overflow: hidden;
|
|
22044
|
+
}
|
|
22045
|
+
|
|
22046
|
+
.v-navigation-drawer__content {
|
|
22047
|
+
flex: 0 1 auto;
|
|
22048
|
+
height: 100%;
|
|
22049
|
+
max-width: 100%;
|
|
22050
|
+
overflow-x: hidden;
|
|
22051
|
+
overflow-y: auto;
|
|
22052
|
+
}
|
|
22053
|
+
|
|
22054
|
+
.v-navigation-drawer__img {
|
|
22055
|
+
height: 100%;
|
|
22056
|
+
left: 0;
|
|
22057
|
+
position: absolute;
|
|
22058
|
+
top: 0;
|
|
22059
|
+
width: 100%;
|
|
22060
|
+
z-index: -1;
|
|
22061
|
+
}
|
|
22062
|
+
.v-navigation-drawer__img img {
|
|
22063
|
+
height: inherit;
|
|
22064
|
+
object-fit: cover;
|
|
22065
|
+
width: inherit;
|
|
22066
|
+
}
|
|
22067
|
+
|
|
22068
|
+
.v-navigation-drawer__scrim {
|
|
22069
|
+
position: absolute;
|
|
22070
|
+
top: 0;
|
|
22071
|
+
left: 0;
|
|
22072
|
+
width: 100%;
|
|
22073
|
+
height: 100%;
|
|
22074
|
+
background: black;
|
|
22075
|
+
opacity: 0.2;
|
|
22076
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22077
|
+
z-index: 1;
|
|
22078
|
+
}
|
|
22079
|
+
|
|
22080
|
+
.v-navigation-drawer__prepend,
|
|
22081
|
+
.v-navigation-drawer__append {
|
|
22082
|
+
flex: none;
|
|
22083
|
+
overflow: hidden;
|
|
22084
22084
|
}.v-otp-input {
|
|
22085
22085
|
border-radius: 4px;
|
|
22086
22086
|
align-items: center;
|
|
@@ -22214,6 +22214,108 @@ html.v-overlay-scroll-blocked {
|
|
|
22214
22214
|
}
|
|
22215
22215
|
.v-parallax--active > .v-img__img {
|
|
22216
22216
|
will-change: transform;
|
|
22217
|
+
}.v-progress-circular {
|
|
22218
|
+
align-items: center;
|
|
22219
|
+
display: inline-flex;
|
|
22220
|
+
justify-content: center;
|
|
22221
|
+
position: relative;
|
|
22222
|
+
vertical-align: middle;
|
|
22223
|
+
}
|
|
22224
|
+
.v-progress-circular > svg {
|
|
22225
|
+
width: 100%;
|
|
22226
|
+
height: 100%;
|
|
22227
|
+
margin: auto;
|
|
22228
|
+
position: absolute;
|
|
22229
|
+
top: 0;
|
|
22230
|
+
bottom: 0;
|
|
22231
|
+
left: 0;
|
|
22232
|
+
right: 0;
|
|
22233
|
+
z-index: 0;
|
|
22234
|
+
}
|
|
22235
|
+
|
|
22236
|
+
.v-progress-circular__content {
|
|
22237
|
+
align-items: center;
|
|
22238
|
+
display: flex;
|
|
22239
|
+
justify-content: center;
|
|
22240
|
+
}
|
|
22241
|
+
|
|
22242
|
+
.v-progress-circular__underlay {
|
|
22243
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22244
|
+
stroke: currentColor;
|
|
22245
|
+
z-index: 1;
|
|
22246
|
+
}
|
|
22247
|
+
|
|
22248
|
+
.v-progress-circular__overlay {
|
|
22249
|
+
stroke: currentColor;
|
|
22250
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
|
22251
|
+
z-index: 2;
|
|
22252
|
+
}
|
|
22253
|
+
|
|
22254
|
+
.v-progress-circular--size-x-small {
|
|
22255
|
+
height: 16px;
|
|
22256
|
+
width: 16px;
|
|
22257
|
+
}
|
|
22258
|
+
.v-progress-circular--size-small {
|
|
22259
|
+
height: 24px;
|
|
22260
|
+
width: 24px;
|
|
22261
|
+
}
|
|
22262
|
+
.v-progress-circular--size-default {
|
|
22263
|
+
height: 32px;
|
|
22264
|
+
width: 32px;
|
|
22265
|
+
}
|
|
22266
|
+
.v-progress-circular--size-large {
|
|
22267
|
+
height: 48px;
|
|
22268
|
+
width: 48px;
|
|
22269
|
+
}
|
|
22270
|
+
.v-progress-circular--size-x-large {
|
|
22271
|
+
height: 64px;
|
|
22272
|
+
width: 64px;
|
|
22273
|
+
}
|
|
22274
|
+
|
|
22275
|
+
.v-progress-circular--indeterminate > svg {
|
|
22276
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
|
22277
|
+
transform-origin: center center;
|
|
22278
|
+
transition: all 0.2s ease-in-out;
|
|
22279
|
+
}
|
|
22280
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
|
22281
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
|
22282
|
+
stroke-dasharray: 25, 200;
|
|
22283
|
+
stroke-dashoffset: 0;
|
|
22284
|
+
stroke-linecap: round;
|
|
22285
|
+
transform-origin: center center;
|
|
22286
|
+
transform: rotate(-90deg);
|
|
22287
|
+
}
|
|
22288
|
+
|
|
22289
|
+
.v-progress-circular--disable-shrink > svg {
|
|
22290
|
+
animation-duration: 0.7s;
|
|
22291
|
+
}
|
|
22292
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
|
22293
|
+
animation: none;
|
|
22294
|
+
}
|
|
22295
|
+
|
|
22296
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
|
22297
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
|
22298
|
+
animation-play-state: paused !important;
|
|
22299
|
+
}
|
|
22300
|
+
|
|
22301
|
+
@keyframes progress-circular-dash {
|
|
22302
|
+
0% {
|
|
22303
|
+
stroke-dasharray: 1, 200;
|
|
22304
|
+
stroke-dashoffset: 0px;
|
|
22305
|
+
}
|
|
22306
|
+
50% {
|
|
22307
|
+
stroke-dasharray: 100, 200;
|
|
22308
|
+
stroke-dashoffset: -15px;
|
|
22309
|
+
}
|
|
22310
|
+
100% {
|
|
22311
|
+
stroke-dasharray: 100, 200;
|
|
22312
|
+
stroke-dashoffset: -124px;
|
|
22313
|
+
}
|
|
22314
|
+
}
|
|
22315
|
+
@keyframes progress-circular-rotate {
|
|
22316
|
+
100% {
|
|
22317
|
+
transform: rotate(270deg);
|
|
22318
|
+
}
|
|
22217
22319
|
}.v-progress-linear {
|
|
22218
22320
|
background: transparent;
|
|
22219
22321
|
overflow: hidden;
|
|
@@ -22371,160 +22473,58 @@ html.v-overlay-scroll-blocked {
|
|
|
22371
22473
|
100% {
|
|
22372
22474
|
left: 100%;
|
|
22373
22475
|
right: -35%;
|
|
22374
|
-
}
|
|
22375
|
-
}
|
|
22376
|
-
@keyframes indeterminate-rtl {
|
|
22377
|
-
0% {
|
|
22378
|
-
left: 100%;
|
|
22379
|
-
right: -90%;
|
|
22380
|
-
}
|
|
22381
|
-
60% {
|
|
22382
|
-
left: 100%;
|
|
22383
|
-
right: -90%;
|
|
22384
|
-
}
|
|
22385
|
-
100% {
|
|
22386
|
-
left: -35%;
|
|
22387
|
-
right: 100%;
|
|
22388
|
-
}
|
|
22389
|
-
}
|
|
22390
|
-
@keyframes indeterminate-short-ltr {
|
|
22391
|
-
0% {
|
|
22392
|
-
left: -200%;
|
|
22393
|
-
right: 100%;
|
|
22394
|
-
}
|
|
22395
|
-
60% {
|
|
22396
|
-
left: 107%;
|
|
22397
|
-
right: -8%;
|
|
22398
|
-
}
|
|
22399
|
-
100% {
|
|
22400
|
-
left: 107%;
|
|
22401
|
-
right: -8%;
|
|
22402
|
-
}
|
|
22403
|
-
}
|
|
22404
|
-
@keyframes indeterminate-short-rtl {
|
|
22405
|
-
0% {
|
|
22406
|
-
left: 100%;
|
|
22407
|
-
right: -200%;
|
|
22408
|
-
}
|
|
22409
|
-
60% {
|
|
22410
|
-
left: -8%;
|
|
22411
|
-
right: 107%;
|
|
22412
|
-
}
|
|
22413
|
-
100% {
|
|
22414
|
-
left: -8%;
|
|
22415
|
-
right: 107%;
|
|
22416
|
-
}
|
|
22417
|
-
}
|
|
22418
|
-
@keyframes stream {
|
|
22419
|
-
to {
|
|
22420
|
-
transform: translateX(var(--v-progress-linear-stream-to));
|
|
22421
|
-
}
|
|
22422
|
-
}
|
|
22423
|
-
@keyframes progress-linear-stripes {
|
|
22424
|
-
0% {
|
|
22425
|
-
background-position-x: var(--v-progress-linear-height);
|
|
22426
|
-
}
|
|
22427
|
-
}.v-progress-circular {
|
|
22428
|
-
align-items: center;
|
|
22429
|
-
display: inline-flex;
|
|
22430
|
-
justify-content: center;
|
|
22431
|
-
position: relative;
|
|
22432
|
-
vertical-align: middle;
|
|
22433
|
-
}
|
|
22434
|
-
.v-progress-circular > svg {
|
|
22435
|
-
width: 100%;
|
|
22436
|
-
height: 100%;
|
|
22437
|
-
margin: auto;
|
|
22438
|
-
position: absolute;
|
|
22439
|
-
top: 0;
|
|
22440
|
-
bottom: 0;
|
|
22441
|
-
left: 0;
|
|
22442
|
-
right: 0;
|
|
22443
|
-
z-index: 0;
|
|
22444
|
-
}
|
|
22445
|
-
|
|
22446
|
-
.v-progress-circular__content {
|
|
22447
|
-
align-items: center;
|
|
22448
|
-
display: flex;
|
|
22449
|
-
justify-content: center;
|
|
22450
|
-
}
|
|
22451
|
-
|
|
22452
|
-
.v-progress-circular__underlay {
|
|
22453
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22454
|
-
stroke: currentColor;
|
|
22455
|
-
z-index: 1;
|
|
22456
|
-
}
|
|
22457
|
-
|
|
22458
|
-
.v-progress-circular__overlay {
|
|
22459
|
-
stroke: currentColor;
|
|
22460
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
|
22461
|
-
z-index: 2;
|
|
22462
|
-
}
|
|
22463
|
-
|
|
22464
|
-
.v-progress-circular--size-x-small {
|
|
22465
|
-
height: 16px;
|
|
22466
|
-
width: 16px;
|
|
22467
|
-
}
|
|
22468
|
-
.v-progress-circular--size-small {
|
|
22469
|
-
height: 24px;
|
|
22470
|
-
width: 24px;
|
|
22471
|
-
}
|
|
22472
|
-
.v-progress-circular--size-default {
|
|
22473
|
-
height: 32px;
|
|
22474
|
-
width: 32px;
|
|
22475
|
-
}
|
|
22476
|
-
.v-progress-circular--size-large {
|
|
22477
|
-
height: 48px;
|
|
22478
|
-
width: 48px;
|
|
22479
|
-
}
|
|
22480
|
-
.v-progress-circular--size-x-large {
|
|
22481
|
-
height: 64px;
|
|
22482
|
-
width: 64px;
|
|
22483
|
-
}
|
|
22484
|
-
|
|
22485
|
-
.v-progress-circular--indeterminate > svg {
|
|
22486
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
|
22487
|
-
transform-origin: center center;
|
|
22488
|
-
transition: all 0.2s ease-in-out;
|
|
22489
|
-
}
|
|
22490
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
|
22491
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
|
22492
|
-
stroke-dasharray: 25, 200;
|
|
22493
|
-
stroke-dashoffset: 0;
|
|
22494
|
-
stroke-linecap: round;
|
|
22495
|
-
transform-origin: center center;
|
|
22496
|
-
transform: rotate(-90deg);
|
|
22497
|
-
}
|
|
22498
|
-
|
|
22499
|
-
.v-progress-circular--disable-shrink > svg {
|
|
22500
|
-
animation-duration: 0.7s;
|
|
22501
|
-
}
|
|
22502
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
|
22503
|
-
animation: none;
|
|
22476
|
+
}
|
|
22504
22477
|
}
|
|
22505
|
-
|
|
22506
|
-
|
|
22507
|
-
|
|
22508
|
-
|
|
22478
|
+
@keyframes indeterminate-rtl {
|
|
22479
|
+
0% {
|
|
22480
|
+
left: 100%;
|
|
22481
|
+
right: -90%;
|
|
22482
|
+
}
|
|
22483
|
+
60% {
|
|
22484
|
+
left: 100%;
|
|
22485
|
+
right: -90%;
|
|
22486
|
+
}
|
|
22487
|
+
100% {
|
|
22488
|
+
left: -35%;
|
|
22489
|
+
right: 100%;
|
|
22490
|
+
}
|
|
22509
22491
|
}
|
|
22510
|
-
|
|
22511
|
-
@keyframes progress-circular-dash {
|
|
22492
|
+
@keyframes indeterminate-short-ltr {
|
|
22512
22493
|
0% {
|
|
22513
|
-
|
|
22514
|
-
|
|
22494
|
+
left: -200%;
|
|
22495
|
+
right: 100%;
|
|
22515
22496
|
}
|
|
22516
|
-
|
|
22517
|
-
|
|
22518
|
-
|
|
22497
|
+
60% {
|
|
22498
|
+
left: 107%;
|
|
22499
|
+
right: -8%;
|
|
22519
22500
|
}
|
|
22520
22501
|
100% {
|
|
22521
|
-
|
|
22522
|
-
|
|
22502
|
+
left: 107%;
|
|
22503
|
+
right: -8%;
|
|
22523
22504
|
}
|
|
22524
22505
|
}
|
|
22525
|
-
@keyframes
|
|
22506
|
+
@keyframes indeterminate-short-rtl {
|
|
22507
|
+
0% {
|
|
22508
|
+
left: 100%;
|
|
22509
|
+
right: -200%;
|
|
22510
|
+
}
|
|
22511
|
+
60% {
|
|
22512
|
+
left: -8%;
|
|
22513
|
+
right: 107%;
|
|
22514
|
+
}
|
|
22526
22515
|
100% {
|
|
22527
|
-
|
|
22516
|
+
left: -8%;
|
|
22517
|
+
right: 107%;
|
|
22518
|
+
}
|
|
22519
|
+
}
|
|
22520
|
+
@keyframes stream {
|
|
22521
|
+
to {
|
|
22522
|
+
transform: translateX(var(--v-progress-linear-stream-to));
|
|
22523
|
+
}
|
|
22524
|
+
}
|
|
22525
|
+
@keyframes progress-linear-stripes {
|
|
22526
|
+
0% {
|
|
22527
|
+
background-position-x: var(--v-progress-linear-height);
|
|
22528
22528
|
}
|
|
22529
22529
|
}.v-radio-group > .v-input__control {
|
|
22530
22530
|
flex-direction: column;
|
|
@@ -22675,6 +22675,54 @@ html.v-overlay-scroll-blocked {
|
|
|
22675
22675
|
flex: 1 0 0px;
|
|
22676
22676
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22677
22677
|
pointer-events: none;
|
|
22678
|
+
}.v-select .v-field .v-text-field__prefix,
|
|
22679
|
+
.v-select .v-field .v-text-field__suffix,
|
|
22680
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
|
22681
|
+
cursor: pointer;
|
|
22682
|
+
}
|
|
22683
|
+
.v-select .v-field .v-field__input > input {
|
|
22684
|
+
align-self: flex-start;
|
|
22685
|
+
opacity: 1;
|
|
22686
|
+
flex: 0 0;
|
|
22687
|
+
position: absolute;
|
|
22688
|
+
width: 100%;
|
|
22689
|
+
transition: none;
|
|
22690
|
+
pointer-events: none;
|
|
22691
|
+
caret-color: transparent;
|
|
22692
|
+
}
|
|
22693
|
+
.v-select .v-field--dirty .v-select__selection {
|
|
22694
|
+
margin-inline-end: 2px;
|
|
22695
|
+
}
|
|
22696
|
+
.v-select .v-select__selection-text {
|
|
22697
|
+
overflow: hidden;
|
|
22698
|
+
text-overflow: ellipsis;
|
|
22699
|
+
white-space: nowrap;
|
|
22700
|
+
}
|
|
22701
|
+
.v-select__content {
|
|
22702
|
+
overflow: hidden;
|
|
22703
|
+
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));
|
|
22704
|
+
border-radius: 4px;
|
|
22705
|
+
}
|
|
22706
|
+
.v-select__selection {
|
|
22707
|
+
display: inline-flex;
|
|
22708
|
+
align-items: center;
|
|
22709
|
+
letter-spacing: inherit;
|
|
22710
|
+
line-height: inherit;
|
|
22711
|
+
max-width: 100%;
|
|
22712
|
+
}
|
|
22713
|
+
.v-select .v-select__selection:first-child {
|
|
22714
|
+
margin-inline-start: 0;
|
|
22715
|
+
}
|
|
22716
|
+
.v-select--selected .v-field .v-field__input > input {
|
|
22717
|
+
opacity: 0;
|
|
22718
|
+
}
|
|
22719
|
+
.v-select__menu-icon {
|
|
22720
|
+
margin-inline-start: 4px;
|
|
22721
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22722
|
+
}
|
|
22723
|
+
.v-select--active-menu .v-select__menu-icon {
|
|
22724
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
22725
|
+
transform: rotate(180deg);
|
|
22678
22726
|
}.v-selection-control {
|
|
22679
22727
|
align-items: center;
|
|
22680
22728
|
contain: layout;
|
|
@@ -22776,54 +22824,34 @@ html.v-overlay-scroll-blocked {
|
|
|
22776
22824
|
}
|
|
22777
22825
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
22778
22826
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
22779
|
-
}.v-
|
|
22780
|
-
|
|
22781
|
-
|
|
22782
|
-
|
|
22783
|
-
|
|
22784
|
-
|
|
22785
|
-
|
|
22786
|
-
|
|
22787
|
-
|
|
22788
|
-
position: absolute;
|
|
22789
|
-
width: 100%;
|
|
22790
|
-
transition: none;
|
|
22791
|
-
pointer-events: none;
|
|
22792
|
-
caret-color: transparent;
|
|
22793
|
-
}
|
|
22794
|
-
.v-select .v-field--dirty .v-select__selection {
|
|
22795
|
-
margin-inline-end: 2px;
|
|
22796
|
-
}
|
|
22797
|
-
.v-select .v-select__selection-text {
|
|
22798
|
-
overflow: hidden;
|
|
22799
|
-
text-overflow: ellipsis;
|
|
22800
|
-
white-space: nowrap;
|
|
22827
|
+
}.v-sheet {
|
|
22828
|
+
display: block;
|
|
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-background), var(--v-high-emphasis-opacity));
|
|
22801
22836
|
}
|
|
22802
|
-
.v-
|
|
22803
|
-
|
|
22804
|
-
box-shadow:
|
|
22805
|
-
border-radius: 4px;
|
|
22837
|
+
.v-sheet--border {
|
|
22838
|
+
border-width: thin;
|
|
22839
|
+
box-shadow: none;
|
|
22806
22840
|
}
|
|
22807
|
-
.v-
|
|
22808
|
-
|
|
22809
|
-
align-items: center;
|
|
22810
|
-
letter-spacing: inherit;
|
|
22811
|
-
line-height: inherit;
|
|
22812
|
-
max-width: 100%;
|
|
22841
|
+
.v-sheet--absolute {
|
|
22842
|
+
position: absolute;
|
|
22813
22843
|
}
|
|
22814
|
-
.v-
|
|
22815
|
-
|
|
22844
|
+
.v-sheet--fixed {
|
|
22845
|
+
position: fixed;
|
|
22816
22846
|
}
|
|
22817
|
-
.v-
|
|
22818
|
-
|
|
22847
|
+
.v-sheet--relative {
|
|
22848
|
+
position: relative;
|
|
22819
22849
|
}
|
|
22820
|
-
.v-
|
|
22821
|
-
|
|
22822
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22850
|
+
.v-sheet--sticky {
|
|
22851
|
+
position: sticky;
|
|
22823
22852
|
}
|
|
22824
|
-
.v-
|
|
22825
|
-
|
|
22826
|
-
transform: rotate(180deg);
|
|
22853
|
+
.v-sheet--rounded {
|
|
22854
|
+
border-radius: 4px;
|
|
22827
22855
|
}.v-selection-control-group {
|
|
22828
22856
|
grid-area: control;
|
|
22829
22857
|
display: flex;
|
|
@@ -23055,34 +23083,6 @@ html.v-overlay-scroll-blocked {
|
|
|
23055
23083
|
100% {
|
|
23056
23084
|
transform: translateX(100%);
|
|
23057
23085
|
}
|
|
23058
|
-
}.v-sheet {
|
|
23059
|
-
display: block;
|
|
23060
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
23061
|
-
border-style: solid;
|
|
23062
|
-
border-width: 0;
|
|
23063
|
-
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));
|
|
23064
|
-
border-radius: 0;
|
|
23065
|
-
background: rgb(var(--v-theme-surface));
|
|
23066
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
23067
|
-
}
|
|
23068
|
-
.v-sheet--border {
|
|
23069
|
-
border-width: thin;
|
|
23070
|
-
box-shadow: none;
|
|
23071
|
-
}
|
|
23072
|
-
.v-sheet--absolute {
|
|
23073
|
-
position: absolute;
|
|
23074
|
-
}
|
|
23075
|
-
.v-sheet--fixed {
|
|
23076
|
-
position: fixed;
|
|
23077
|
-
}
|
|
23078
|
-
.v-sheet--relative {
|
|
23079
|
-
position: relative;
|
|
23080
|
-
}
|
|
23081
|
-
.v-sheet--sticky {
|
|
23082
|
-
position: sticky;
|
|
23083
|
-
}
|
|
23084
|
-
.v-sheet--rounded {
|
|
23085
|
-
border-radius: 4px;
|
|
23086
23086
|
}.v-slide-group {
|
|
23087
23087
|
display: flex;
|
|
23088
23088
|
overflow: hidden;
|
|
@@ -23463,8 +23463,8 @@ html.v-overlay-scroll-blocked {
|
|
|
23463
23463
|
text-align: end;
|
|
23464
23464
|
width: 100%;
|
|
23465
23465
|
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));
|
|
23466
|
-
background: rgba(var(--v-theme-
|
|
23467
|
-
color: rgba(var(--v-theme-on-surface), var(--v-
|
|
23466
|
+
background: rgba(var(--v-theme-surface-light));
|
|
23467
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
23468
23468
|
font-size: 0.75rem;
|
|
23469
23469
|
font-weight: 400;
|
|
23470
23470
|
letter-spacing: 0.0333333333em;
|
|
@@ -23844,7 +23844,7 @@ html.v-overlay-scroll-blocked {
|
|
|
23844
23844
|
background: rgb(var(--v-theme-background));
|
|
23845
23845
|
color: rgb(var(--v-theme-on-background));
|
|
23846
23846
|
}.v-timeline .v-timeline-divider__dot {
|
|
23847
|
-
background: rgb(var(--v-theme-
|
|
23847
|
+
background: rgb(var(--v-theme-surface-light));
|
|
23848
23848
|
}
|
|
23849
23849
|
.v-timeline .v-timeline-divider__inner-dot {
|
|
23850
23850
|
background: rgb(var(--v-theme-on-surface));
|
|
@@ -24276,8 +24276,8 @@ html.v-overlay-scroll-blocked {
|
|
|
24276
24276
|
border-width: 0;
|
|
24277
24277
|
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));
|
|
24278
24278
|
border-radius: 0;
|
|
24279
|
-
background: rgb(var(--v-theme-
|
|
24280
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
24279
|
+
background: rgb(var(--v-theme-surface-light));
|
|
24280
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
|
24281
24281
|
}
|
|
24282
24282
|
.v-toolbar--border {
|
|
24283
24283
|
border-width: thin;
|
|
@@ -24507,34 +24507,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24507
24507
|
}
|
|
24508
24508
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
24509
24509
|
will-change: transform;
|
|
24510
|
-
}.v-color-picker-edit {
|
|
24511
|
-
display: flex;
|
|
24512
|
-
margin-top: 24px;
|
|
24513
|
-
}
|
|
24514
|
-
|
|
24515
|
-
.v-color-picker-edit__input {
|
|
24516
|
-
width: 100%;
|
|
24517
|
-
display: flex;
|
|
24518
|
-
flex-wrap: wrap;
|
|
24519
|
-
justify-content: center;
|
|
24520
|
-
text-align: center;
|
|
24521
|
-
}
|
|
24522
|
-
.v-color-picker-edit__input:not(:last-child) {
|
|
24523
|
-
margin-inline-end: 8px;
|
|
24524
|
-
}
|
|
24525
|
-
.v-color-picker-edit__input input {
|
|
24526
|
-
border-radius: 4px;
|
|
24527
|
-
margin-bottom: 8px;
|
|
24528
|
-
min-width: 0;
|
|
24529
|
-
outline: none;
|
|
24530
|
-
text-align: center;
|
|
24531
|
-
width: 100%;
|
|
24532
|
-
height: 32px;
|
|
24533
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
|
24534
|
-
color: rgba(var(--v-theme-on-surface));
|
|
24535
|
-
}
|
|
24536
|
-
.v-color-picker-edit__input span {
|
|
24537
|
-
font-size: 0.75rem;
|
|
24538
24510
|
}.v-color-picker-swatches {
|
|
24539
24511
|
overflow-y: auto;
|
|
24540
24512
|
}
|
|
@@ -24570,6 +24542,34 @@ html.v-overlay-scroll-blocked {
|
|
|
24570
24542
|
justify-content: center;
|
|
24571
24543
|
width: 100%;
|
|
24572
24544
|
height: 100%;
|
|
24545
|
+
}.v-color-picker-edit {
|
|
24546
|
+
display: flex;
|
|
24547
|
+
margin-top: 24px;
|
|
24548
|
+
}
|
|
24549
|
+
|
|
24550
|
+
.v-color-picker-edit__input {
|
|
24551
|
+
width: 100%;
|
|
24552
|
+
display: flex;
|
|
24553
|
+
flex-wrap: wrap;
|
|
24554
|
+
justify-content: center;
|
|
24555
|
+
text-align: center;
|
|
24556
|
+
}
|
|
24557
|
+
.v-color-picker-edit__input:not(:last-child) {
|
|
24558
|
+
margin-inline-end: 8px;
|
|
24559
|
+
}
|
|
24560
|
+
.v-color-picker-edit__input input {
|
|
24561
|
+
border-radius: 4px;
|
|
24562
|
+
margin-bottom: 8px;
|
|
24563
|
+
min-width: 0;
|
|
24564
|
+
outline: none;
|
|
24565
|
+
text-align: center;
|
|
24566
|
+
width: 100%;
|
|
24567
|
+
height: 32px;
|
|
24568
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
|
24569
|
+
color: rgba(var(--v-theme-on-surface));
|
|
24570
|
+
}
|
|
24571
|
+
.v-color-picker-edit__input span {
|
|
24572
|
+
font-size: 0.75rem;
|
|
24573
24573
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
|
24574
24574
|
background-color: transparent !important;
|
|
24575
24575
|
}
|
|
@@ -24856,7 +24856,7 @@ html.v-overlay-scroll-blocked {
|
|
|
24856
24856
|
background-color: rgb(var(--v-theme-surface-variant));
|
|
24857
24857
|
}
|
|
24858
24858
|
.v-slider-track__tick--filled {
|
|
24859
|
-
background-color: rgb(var(--v-theme-
|
|
24859
|
+
background-color: rgb(var(--v-theme-surface-light));
|
|
24860
24860
|
}
|
|
24861
24861
|
|
|
24862
24862
|
.v-slider-track {
|