@vuetify/nightly 3.6.13-3.7.0-beta.0.0-dev.2024-07-24 → 3.6.13-3.7.0-beta.0.0-dev.2024-07-25
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/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +142 -142
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +1853 -1853
- package/dist/vuetify-labs.d.ts +6 -3
- package/dist/vuetify-labs.esm.js +62 -42
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +62 -42
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1851 -1851
- package/dist/vuetify.d.ts +57 -54
- package/dist/vuetify.esm.js +62 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +62 -42
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +984 -985
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +15 -8
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +15 -8
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +7 -5
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMenu/index.d.mts +3 -3
- package/lib/components/VOverlay/locationStrategies.mjs +0 -6
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +15 -13
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/useScrolling.mjs +3 -3
- package/lib/components/VSelect/useScrolling.mjs.map +1 -1
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs +2 -0
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +1 -1
- package/lib/components/VVirtualScroll/index.d.mts +3 -0
- package/lib/components/index.d.mts +6 -3
- package/lib/composables/virtual.mjs +1 -0
- package/lib/composables/virtual.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- package/lib/util/helpers.mjs +5 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.13-3.7.0-beta.0.0-dev.2024-07-
|
2
|
+
* Vuetify v3.6.13-3.7.0-beta.0.0-dev.2024-07-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17456,19 +17456,6 @@ html.overflow-y-hidden {
|
|
17456
17456
|
font-weight: normal;
|
17457
17457
|
padding: 0.2em 0.4rem;
|
17458
17458
|
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));
|
17459
|
-
}.v-calendar-header {
|
17460
|
-
align-items: center;
|
17461
|
-
display: flex;
|
17462
|
-
min-height: 64px;
|
17463
|
-
}
|
17464
|
-
|
17465
|
-
.v-calendar-header__today {
|
17466
|
-
margin-inline-end: 24px;
|
17467
|
-
}
|
17468
|
-
|
17469
|
-
.v-calendar-header__title {
|
17470
|
-
font-size: 1.5rem;
|
17471
|
-
margin-inline-start: 24px;
|
17472
17459
|
}.v-calendar {
|
17473
17460
|
background: rgb(var(--v-theme-background));
|
17474
17461
|
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
@@ -17728,11 +17715,61 @@ html.overflow-y-hidden {
|
|
17728
17715
|
}
|
17729
17716
|
.v-calendar-weekly .v-calendar__container.days__0 {
|
17730
17717
|
grid-template-columns: repeat(1, 1fr);
|
17731
|
-
}.v-calendar-
|
17718
|
+
}.v-calendar-day__row-with-label {
|
17719
|
+
display: grid;
|
17720
|
+
grid-template-columns: 48px 8px 1fr;
|
17721
|
+
border-right: thin solid #e0e0e0;
|
17722
|
+
}
|
17723
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-hairline {
|
17724
|
+
position: relative;
|
17725
|
+
border-right: thin solid #e0e0e0;
|
17726
|
+
}
|
17727
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
|
17728
|
+
content: "";
|
17729
|
+
border-bottom: thin solid #e0e0e0;
|
17730
|
+
position: absolute;
|
17731
|
+
width: 100%;
|
17732
|
+
margin-top: -1px;
|
17733
|
+
z-index: 3;
|
17734
|
+
pointer-events: none;
|
17735
|
+
}
|
17736
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-label {
|
17737
|
+
font-size: 10px;
|
17738
|
+
text-align: center;
|
17739
|
+
position: relative;
|
17740
|
+
top: -8px;
|
17741
|
+
}
|
17742
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-content {
|
17743
|
+
border-bottom: thin solid #e0e0e0;
|
17744
|
+
}
|
17745
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17746
|
+
border-bottom: none;
|
17747
|
+
}
|
17748
|
+
|
17749
|
+
.v-calendar-day__row-without-label {
|
17750
|
+
display: grid;
|
17751
|
+
grid-template-columns: 1fr;
|
17752
|
+
border-right: thin solid #e0e0e0;
|
17753
|
+
}
|
17754
|
+
.v-calendar-day__row-without-label .v-calendar-day__row-content {
|
17732
17755
|
overflow: hidden;
|
17733
|
-
|
17734
|
-
|
17735
|
-
|
17756
|
+
border-bottom: thin solid #e0e0e0;
|
17757
|
+
}
|
17758
|
+
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17759
|
+
border-bottom: none;
|
17760
|
+
}.v-calendar-header {
|
17761
|
+
align-items: center;
|
17762
|
+
display: flex;
|
17763
|
+
min-height: 64px;
|
17764
|
+
}
|
17765
|
+
|
17766
|
+
.v-calendar-header__today {
|
17767
|
+
margin-inline-end: 24px;
|
17768
|
+
}
|
17769
|
+
|
17770
|
+
.v-calendar-header__title {
|
17771
|
+
font-size: 1.5rem;
|
17772
|
+
margin-inline-start: 24px;
|
17736
17773
|
}.v-calendar-month__day {
|
17737
17774
|
position: relative;
|
17738
17775
|
display: flex;
|
@@ -17796,48 +17833,102 @@ html.overflow-y-hidden {
|
|
17796
17833
|
|
17797
17834
|
.v-calendar-weekly__day-alldayevents-container {
|
17798
17835
|
min-height: 24px;
|
17799
|
-
}.v-calendar-
|
17836
|
+
}.v-calendar-internal-event {
|
17837
|
+
overflow: hidden;
|
17838
|
+
padding: 4px;
|
17839
|
+
text-overflow: ellipsis;
|
17840
|
+
white-space: nowrap;
|
17841
|
+
}.v-picker.v-sheet {
|
17842
|
+
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));
|
17843
|
+
border-radius: 4px;
|
17800
17844
|
display: grid;
|
17801
|
-
grid-
|
17802
|
-
|
17845
|
+
grid-auto-rows: min-content;
|
17846
|
+
grid-template-areas: "title" "header" "body";
|
17847
|
+
overflow: hidden;
|
17803
17848
|
}
|
17804
|
-
.v-
|
17849
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
17850
|
+
grid-template-areas: "title" "header" "body" "actions";
|
17851
|
+
}
|
17852
|
+
|
17853
|
+
.v-picker__body {
|
17854
|
+
grid-area: body;
|
17855
|
+
overflow: hidden;
|
17805
17856
|
position: relative;
|
17806
|
-
border-right: thin solid #e0e0e0;
|
17807
17857
|
}
|
17808
|
-
|
17809
|
-
|
17810
|
-
|
17811
|
-
position: absolute;
|
17812
|
-
width: 100%;
|
17813
|
-
margin-top: -1px;
|
17814
|
-
z-index: 3;
|
17815
|
-
pointer-events: none;
|
17858
|
+
|
17859
|
+
.v-picker__header {
|
17860
|
+
grid-area: header;
|
17816
17861
|
}
|
17817
|
-
|
17818
|
-
|
17819
|
-
|
17820
|
-
|
17821
|
-
|
17862
|
+
|
17863
|
+
.v-picker__actions {
|
17864
|
+
grid-area: actions;
|
17865
|
+
padding: 0 12px 12px;
|
17866
|
+
display: flex;
|
17867
|
+
align-items: center;
|
17868
|
+
justify-content: flex-end;
|
17822
17869
|
}
|
17823
|
-
.v-
|
17824
|
-
|
17870
|
+
.v-picker__actions .v-btn {
|
17871
|
+
min-width: 48px;
|
17825
17872
|
}
|
17826
|
-
.v-
|
17827
|
-
|
17873
|
+
.v-picker__actions .v-btn:not(:last-child) {
|
17874
|
+
margin-inline-end: 8px;
|
17828
17875
|
}
|
17829
17876
|
|
17830
|
-
.v-
|
17831
|
-
|
17832
|
-
grid-template-columns: 1fr;
|
17833
|
-
border-right: thin solid #e0e0e0;
|
17877
|
+
.v-picker--landscape {
|
17878
|
+
grid-template-areas: "title" "header body" "header body";
|
17834
17879
|
}
|
17835
|
-
|
17836
|
-
|
17837
|
-
|
17880
|
+
|
17881
|
+
.v-picker--landscape.v-picker--with-actions {
|
17882
|
+
grid-template-areas: "title" "header body" "header actions";
|
17838
17883
|
}
|
17839
|
-
|
17840
|
-
|
17884
|
+
|
17885
|
+
.v-picker-title {
|
17886
|
+
text-transform: uppercase;
|
17887
|
+
font-size: 0.75rem;
|
17888
|
+
grid-area: title;
|
17889
|
+
padding-inline: 24px 12px;
|
17890
|
+
padding-top: 16px;
|
17891
|
+
padding-bottom: 16px;
|
17892
|
+
font-weight: 400;
|
17893
|
+
letter-spacing: 0.1666666667em;
|
17894
|
+
}.v-number-input input[type=number] {
|
17895
|
+
-moz-appearance: textfield;
|
17896
|
+
}
|
17897
|
+
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
17898
|
+
-webkit-appearance: none;
|
17899
|
+
}
|
17900
|
+
.v-number-input .v-field {
|
17901
|
+
padding-inline-end: 0;
|
17902
|
+
padding-inline-start: 0;
|
17903
|
+
}
|
17904
|
+
.v-number-input--inset .v-divider {
|
17905
|
+
height: 55%;
|
17906
|
+
width: 55%;
|
17907
|
+
align-self: center;
|
17908
|
+
}
|
17909
|
+
.v-number-input--split .v-field__input {
|
17910
|
+
text-align: center;
|
17911
|
+
}
|
17912
|
+
.v-number-input--stacked .v-number-input__control {
|
17913
|
+
flex-direction: column-reverse;
|
17914
|
+
}
|
17915
|
+
.v-number-input--stacked .v-number-input__control .v-btn {
|
17916
|
+
flex: 1;
|
17917
|
+
}
|
17918
|
+
.v-number-input--hide-input .v-field {
|
17919
|
+
flex: none;
|
17920
|
+
}
|
17921
|
+
.v-number-input--hide-input .v-field__input {
|
17922
|
+
width: 0;
|
17923
|
+
padding-inline: 0;
|
17924
|
+
}
|
17925
|
+
.v-number-input__control {
|
17926
|
+
display: flex;
|
17927
|
+
height: 100%;
|
17928
|
+
}
|
17929
|
+
.v-number-input__control .v-btn {
|
17930
|
+
background-color: transparent;
|
17931
|
+
border-radius: 0;
|
17841
17932
|
}.v-stepper-vertical-item {
|
17842
17933
|
position: relative;
|
17843
17934
|
transition-duration: 0.2s;
|
@@ -17906,59 +17997,6 @@ html.overflow-y-hidden {
|
|
17906
17997
|
justify-content: flex-end;
|
17907
17998
|
padding: 24px 0 0;
|
17908
17999
|
flex-direction: row-reverse;
|
17909
|
-
}.v-picker.v-sheet {
|
17910
|
-
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));
|
17911
|
-
border-radius: 4px;
|
17912
|
-
display: grid;
|
17913
|
-
grid-auto-rows: min-content;
|
17914
|
-
grid-template-areas: "title" "header" "body";
|
17915
|
-
overflow: hidden;
|
17916
|
-
}
|
17917
|
-
.v-picker.v-sheet.v-picker--with-actions {
|
17918
|
-
grid-template-areas: "title" "header" "body" "actions";
|
17919
|
-
}
|
17920
|
-
|
17921
|
-
.v-picker__body {
|
17922
|
-
grid-area: body;
|
17923
|
-
overflow: hidden;
|
17924
|
-
position: relative;
|
17925
|
-
}
|
17926
|
-
|
17927
|
-
.v-picker__header {
|
17928
|
-
grid-area: header;
|
17929
|
-
}
|
17930
|
-
|
17931
|
-
.v-picker__actions {
|
17932
|
-
grid-area: actions;
|
17933
|
-
padding: 0 12px 12px;
|
17934
|
-
display: flex;
|
17935
|
-
align-items: center;
|
17936
|
-
justify-content: flex-end;
|
17937
|
-
}
|
17938
|
-
.v-picker__actions .v-btn {
|
17939
|
-
min-width: 48px;
|
17940
|
-
}
|
17941
|
-
.v-picker__actions .v-btn:not(:last-child) {
|
17942
|
-
margin-inline-end: 8px;
|
17943
|
-
}
|
17944
|
-
|
17945
|
-
.v-picker--landscape {
|
17946
|
-
grid-template-areas: "title" "header body" "header body";
|
17947
|
-
}
|
17948
|
-
|
17949
|
-
.v-picker--landscape.v-picker--with-actions {
|
17950
|
-
grid-template-areas: "title" "header body" "header actions";
|
17951
|
-
}
|
17952
|
-
|
17953
|
-
.v-picker-title {
|
17954
|
-
text-transform: uppercase;
|
17955
|
-
font-size: 0.75rem;
|
17956
|
-
grid-area: title;
|
17957
|
-
padding-inline: 24px 12px;
|
17958
|
-
padding-top: 16px;
|
17959
|
-
padding-bottom: 16px;
|
17960
|
-
font-weight: 400;
|
17961
|
-
letter-spacing: 0.1666666667em;
|
17962
18000
|
}.v-pull-to-refresh {
|
17963
18001
|
overflow: hidden;
|
17964
18002
|
position: relative;
|
@@ -17985,13 +18023,6 @@ html.overflow-y-hidden {
|
|
17985
18023
|
}
|
17986
18024
|
.v-pull-to-refresh__scroll-container--touching {
|
17987
18025
|
transition: none;
|
17988
|
-
}.v-time-picker.v-picker {
|
17989
|
-
padding: 24px;
|
17990
|
-
width: 328px;
|
17991
|
-
}
|
17992
|
-
.v-time-picker.v-picker .v-picker-title {
|
17993
|
-
padding: 0;
|
17994
|
-
margin-bottom: 20px;
|
17995
18026
|
}.v-time-picker-clock {
|
17996
18027
|
background: rgb(var(--v-theme-background));
|
17997
18028
|
color: rgb(var(--v-theme-on-background));
|
@@ -18226,6 +18257,13 @@ html.overflow-y-hidden {
|
|
18226
18257
|
}
|
18227
18258
|
.v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
|
18228
18259
|
text-align: center;
|
18260
|
+
}.v-time-picker.v-picker {
|
18261
|
+
padding: 24px;
|
18262
|
+
width: 328px;
|
18263
|
+
}
|
18264
|
+
.v-time-picker.v-picker .v-picker-title {
|
18265
|
+
padding: 0;
|
18266
|
+
margin-bottom: 20px;
|
18229
18267
|
}.v-treeview-item.v-treeview-item--filtered {
|
18230
18268
|
display: none;
|
18231
18269
|
}
|
@@ -18242,141 +18280,6 @@ html.overflow-y-hidden {
|
|
18242
18280
|
}
|
18243
18281
|
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
18244
18282
|
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
18245
|
-
}.v-number-input input[type=number] {
|
18246
|
-
-moz-appearance: textfield;
|
18247
|
-
}
|
18248
|
-
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
18249
|
-
-webkit-appearance: none;
|
18250
|
-
}
|
18251
|
-
.v-number-input .v-field {
|
18252
|
-
padding-inline-end: 0;
|
18253
|
-
padding-inline-start: 0;
|
18254
|
-
}
|
18255
|
-
.v-number-input--inset .v-divider {
|
18256
|
-
height: 55%;
|
18257
|
-
width: 55%;
|
18258
|
-
align-self: center;
|
18259
|
-
}
|
18260
|
-
.v-number-input--split .v-field__input {
|
18261
|
-
text-align: center;
|
18262
|
-
}
|
18263
|
-
.v-number-input--stacked .v-number-input__control {
|
18264
|
-
flex-direction: column-reverse;
|
18265
|
-
}
|
18266
|
-
.v-number-input--stacked .v-number-input__control .v-btn {
|
18267
|
-
flex: 1;
|
18268
|
-
}
|
18269
|
-
.v-number-input--hide-input .v-field {
|
18270
|
-
flex: none;
|
18271
|
-
}
|
18272
|
-
.v-number-input--hide-input .v-field__input {
|
18273
|
-
width: 0;
|
18274
|
-
padding-inline: 0;
|
18275
|
-
}
|
18276
|
-
.v-number-input__control {
|
18277
|
-
display: flex;
|
18278
|
-
height: 100%;
|
18279
|
-
}
|
18280
|
-
.v-number-input__control .v-btn {
|
18281
|
-
background-color: transparent;
|
18282
|
-
border-radius: 0;
|
18283
|
-
}.v-application {
|
18284
|
-
display: flex;
|
18285
|
-
background: rgb(var(--v-theme-background));
|
18286
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
18287
|
-
}
|
18288
|
-
|
18289
|
-
.v-application__wrap {
|
18290
|
-
-webkit-backface-visibility: hidden;
|
18291
|
-
backface-visibility: hidden;
|
18292
|
-
display: flex;
|
18293
|
-
flex-direction: column;
|
18294
|
-
flex: 1 1 auto;
|
18295
|
-
max-width: 100%;
|
18296
|
-
min-height: 100vh;
|
18297
|
-
min-height: 100dvh;
|
18298
|
-
position: relative;
|
18299
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
18300
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
18301
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18302
|
-
cursor: text;
|
18303
|
-
}
|
18304
|
-
.v-autocomplete .v-field .v-field__input > input {
|
18305
|
-
flex: 1 1;
|
18306
|
-
}
|
18307
|
-
.v-autocomplete .v-field input {
|
18308
|
-
min-width: 64px;
|
18309
|
-
}
|
18310
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18311
|
-
min-width: 0;
|
18312
|
-
}
|
18313
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18314
|
-
margin-inline-end: 2px;
|
18315
|
-
}
|
18316
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
18317
|
-
overflow: hidden;
|
18318
|
-
text-overflow: ellipsis;
|
18319
|
-
white-space: nowrap;
|
18320
|
-
}
|
18321
|
-
|
18322
|
-
.v-autocomplete__content {
|
18323
|
-
overflow: hidden;
|
18324
|
-
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));
|
18325
|
-
border-radius: 4px;
|
18326
|
-
}
|
18327
|
-
.v-autocomplete__mask {
|
18328
|
-
background: rgb(var(--v-theme-surface-light));
|
18329
|
-
}
|
18330
|
-
.v-autocomplete__selection {
|
18331
|
-
display: inline-flex;
|
18332
|
-
align-items: center;
|
18333
|
-
height: 1.5rem;
|
18334
|
-
letter-spacing: inherit;
|
18335
|
-
line-height: inherit;
|
18336
|
-
max-width: calc(100% - 2px - 2px);
|
18337
|
-
}
|
18338
|
-
.v-autocomplete__selection:first-child {
|
18339
|
-
margin-inline-start: 0;
|
18340
|
-
}
|
18341
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18342
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18343
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18344
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18345
|
-
top: 0px;
|
18346
|
-
}
|
18347
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18348
|
-
opacity: var(--v-medium-emphasis-opacity);
|
18349
|
-
}
|
18350
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18351
|
-
opacity: 1;
|
18352
|
-
}
|
18353
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
18354
|
-
caret-color: transparent;
|
18355
|
-
}
|
18356
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18357
|
-
flex: 1 1;
|
18358
|
-
position: absolute;
|
18359
|
-
left: 0;
|
18360
|
-
right: 0;
|
18361
|
-
width: 100%;
|
18362
|
-
padding-inline: inherit;
|
18363
|
-
}
|
18364
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18365
|
-
transition: none;
|
18366
|
-
}
|
18367
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18368
|
-
opacity: 0;
|
18369
|
-
}
|
18370
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18371
|
-
opacity: 0;
|
18372
|
-
}
|
18373
|
-
.v-autocomplete__menu-icon {
|
18374
|
-
margin-inline-start: 4px;
|
18375
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18376
|
-
}
|
18377
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18378
|
-
opacity: var(--v-high-emphasis-opacity);
|
18379
|
-
transform: rotate(180deg);
|
18380
18283
|
}.v-alert {
|
18381
18284
|
display: grid;
|
18382
18285
|
flex: 1 1;
|
@@ -18601,132 +18504,276 @@ html.overflow-y-hidden {
|
|
18601
18504
|
}
|
18602
18505
|
.v-app-bar:not(.v-toolbar--absolute) {
|
18603
18506
|
padding-inline-end: var(--v-scrollbar-offset);
|
18604
|
-
}.v-
|
18605
|
-
display:
|
18606
|
-
|
18507
|
+
}.v-application {
|
18508
|
+
display: flex;
|
18509
|
+
background: rgb(var(--v-theme-background));
|
18510
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
18607
18511
|
}
|
18608
18512
|
|
18609
|
-
.v-
|
18610
|
-
|
18611
|
-
|
18612
|
-
|
18613
|
-
|
18614
|
-
|
18615
|
-
|
18616
|
-
|
18617
|
-
min-
|
18618
|
-
|
18619
|
-
|
18620
|
-
|
18621
|
-
|
18622
|
-
|
18623
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18624
|
-
white-space: nowrap;
|
18625
|
-
background: rgb(var(--v-theme-surface-variant));
|
18626
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18627
|
-
}
|
18628
|
-
.v-badge--bordered .v-badge__badge::after {
|
18629
|
-
border-radius: inherit;
|
18630
|
-
border-style: solid;
|
18631
|
-
border-width: 2px;
|
18632
|
-
bottom: 0;
|
18633
|
-
color: rgb(var(--v-theme-background));
|
18634
|
-
content: "";
|
18635
|
-
left: 0;
|
18636
|
-
position: absolute;
|
18637
|
-
right: 0;
|
18638
|
-
top: 0;
|
18639
|
-
transform: scale(1.05);
|
18513
|
+
.v-application__wrap {
|
18514
|
+
-webkit-backface-visibility: hidden;
|
18515
|
+
backface-visibility: hidden;
|
18516
|
+
display: flex;
|
18517
|
+
flex-direction: column;
|
18518
|
+
flex: 1 1 auto;
|
18519
|
+
max-width: 100%;
|
18520
|
+
min-height: 100vh;
|
18521
|
+
min-height: 100dvh;
|
18522
|
+
position: relative;
|
18523
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18524
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18525
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18526
|
+
cursor: text;
|
18640
18527
|
}
|
18641
|
-
.v-
|
18642
|
-
|
18643
|
-
height: 9px;
|
18644
|
-
min-width: 0;
|
18645
|
-
padding: 0;
|
18646
|
-
width: 9px;
|
18528
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18529
|
+
flex: 1 1;
|
18647
18530
|
}
|
18648
|
-
.v-
|
18649
|
-
|
18531
|
+
.v-autocomplete .v-field input {
|
18532
|
+
min-width: 64px;
|
18650
18533
|
}
|
18651
|
-
.v-
|
18652
|
-
|
18653
|
-
vertical-align: middle;
|
18534
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18535
|
+
min-width: 0;
|
18654
18536
|
}
|
18655
|
-
.v-
|
18656
|
-
|
18657
|
-
font-size: 0.75rem;
|
18658
|
-
margin: 0 -2px;
|
18537
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18538
|
+
margin-inline-end: 2px;
|
18659
18539
|
}
|
18660
|
-
.v-
|
18661
|
-
|
18662
|
-
|
18663
|
-
|
18540
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
18541
|
+
overflow: hidden;
|
18542
|
+
text-overflow: ellipsis;
|
18543
|
+
white-space: nowrap;
|
18664
18544
|
}
|
18665
18545
|
|
18666
|
-
.v-
|
18667
|
-
display: flex;
|
18668
|
-
position: relative;
|
18669
|
-
}
|
18670
|
-
.v-badge--inline .v-badge__wrapper {
|
18671
|
-
align-items: center;
|
18672
|
-
display: inline-flex;
|
18673
|
-
justify-content: center;
|
18674
|
-
margin: 0 4px;
|
18675
|
-
}.v-bottom-navigation {
|
18676
|
-
display: flex;
|
18677
|
-
max-width: 100%;
|
18546
|
+
.v-autocomplete__content {
|
18678
18547
|
overflow: hidden;
|
18679
|
-
position: absolute;
|
18680
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18681
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18682
|
-
border-style: solid;
|
18683
|
-
border-width: 0;
|
18684
|
-
border-radius: 0;
|
18685
|
-
background: rgb(var(--v-theme-surface));
|
18686
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18687
|
-
}
|
18688
|
-
.v-bottom-navigation--border {
|
18689
|
-
border-width: thin;
|
18690
|
-
box-shadow: none;
|
18691
|
-
}
|
18692
|
-
.v-bottom-navigation--active {
|
18693
18548
|
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));
|
18549
|
+
border-radius: 4px;
|
18694
18550
|
}
|
18695
|
-
|
18696
|
-
|
18697
|
-
display: flex;
|
18698
|
-
flex: none;
|
18699
|
-
font-size: 0.75rem;
|
18700
|
-
justify-content: center;
|
18701
|
-
transition: inherit;
|
18702
|
-
width: 100%;
|
18551
|
+
.v-autocomplete__mask {
|
18552
|
+
background: rgb(var(--v-theme-surface-light));
|
18703
18553
|
}
|
18704
|
-
.v-
|
18705
|
-
|
18706
|
-
|
18707
|
-
|
18708
|
-
|
18709
|
-
|
18710
|
-
|
18711
|
-
width: auto;
|
18712
|
-
border-radius: 0;
|
18554
|
+
.v-autocomplete__selection {
|
18555
|
+
display: inline-flex;
|
18556
|
+
align-items: center;
|
18557
|
+
height: 1.5rem;
|
18558
|
+
letter-spacing: inherit;
|
18559
|
+
line-height: inherit;
|
18560
|
+
max-width: calc(100% - 2px - 2px);
|
18713
18561
|
}
|
18714
|
-
.v-
|
18715
|
-
|
18716
|
-
transition: inherit;
|
18562
|
+
.v-autocomplete__selection:first-child {
|
18563
|
+
margin-inline-start: 0;
|
18717
18564
|
}
|
18718
|
-
.v-
|
18719
|
-
|
18565
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18566
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18567
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18568
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18569
|
+
top: 0px;
|
18720
18570
|
}
|
18721
|
-
.v-
|
18722
|
-
|
18571
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18572
|
+
opacity: var(--v-medium-emphasis-opacity);
|
18723
18573
|
}
|
18724
|
-
.v-
|
18725
|
-
|
18574
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18575
|
+
opacity: 1;
|
18576
|
+
}
|
18577
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
18578
|
+
caret-color: transparent;
|
18579
|
+
}
|
18580
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18581
|
+
flex: 1 1;
|
18582
|
+
position: absolute;
|
18583
|
+
left: 0;
|
18584
|
+
right: 0;
|
18585
|
+
width: 100%;
|
18586
|
+
padding-inline: inherit;
|
18587
|
+
}
|
18588
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18589
|
+
transition: none;
|
18590
|
+
}
|
18591
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18726
18592
|
opacity: 0;
|
18727
18593
|
}
|
18728
|
-
.v-
|
18729
|
-
|
18594
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18595
|
+
opacity: 0;
|
18596
|
+
}
|
18597
|
+
.v-autocomplete__menu-icon {
|
18598
|
+
margin-inline-start: 4px;
|
18599
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18600
|
+
}
|
18601
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18602
|
+
opacity: var(--v-high-emphasis-opacity);
|
18603
|
+
transform: rotate(180deg);
|
18604
|
+
}.v-avatar {
|
18605
|
+
flex: none;
|
18606
|
+
align-items: center;
|
18607
|
+
display: inline-flex;
|
18608
|
+
justify-content: center;
|
18609
|
+
line-height: normal;
|
18610
|
+
overflow: hidden;
|
18611
|
+
position: relative;
|
18612
|
+
text-align: center;
|
18613
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18614
|
+
transition-property: width, height;
|
18615
|
+
vertical-align: middle;
|
18616
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18617
|
+
border-style: solid;
|
18618
|
+
border-width: thin;
|
18619
|
+
border-radius: 50%;
|
18620
|
+
}
|
18621
|
+
.v-avatar.v-avatar--size-x-small {
|
18622
|
+
--v-avatar-height: 24px;
|
18623
|
+
}
|
18624
|
+
.v-avatar.v-avatar--size-small {
|
18625
|
+
--v-avatar-height: 32px;
|
18626
|
+
}
|
18627
|
+
.v-avatar.v-avatar--size-default {
|
18628
|
+
--v-avatar-height: 40px;
|
18629
|
+
}
|
18630
|
+
.v-avatar.v-avatar--size-large {
|
18631
|
+
--v-avatar-height: 48px;
|
18632
|
+
}
|
18633
|
+
.v-avatar.v-avatar--size-x-large {
|
18634
|
+
--v-avatar-height: 56px;
|
18635
|
+
}
|
18636
|
+
.v-avatar.v-avatar--density-default {
|
18637
|
+
height: calc(var(--v-avatar-height) + 0px);
|
18638
|
+
width: calc(var(--v-avatar-height) + 0px);
|
18639
|
+
}
|
18640
|
+
.v-avatar.v-avatar--density-comfortable {
|
18641
|
+
height: calc(var(--v-avatar-height) + -4px);
|
18642
|
+
width: calc(var(--v-avatar-height) + -4px);
|
18643
|
+
}
|
18644
|
+
.v-avatar.v-avatar--density-compact {
|
18645
|
+
height: calc(var(--v-avatar-height) + -8px);
|
18646
|
+
width: calc(var(--v-avatar-height) + -8px);
|
18647
|
+
}
|
18648
|
+
.v-avatar--border {
|
18649
|
+
border-width: thin;
|
18650
|
+
box-shadow: none;
|
18651
|
+
}
|
18652
|
+
.v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
|
18653
|
+
background: transparent;
|
18654
|
+
color: inherit;
|
18655
|
+
}
|
18656
|
+
.v-avatar--variant-plain {
|
18657
|
+
opacity: 0.62;
|
18658
|
+
}
|
18659
|
+
.v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
|
18660
|
+
opacity: 1;
|
18661
|
+
}
|
18662
|
+
.v-avatar--variant-plain .v-avatar__overlay {
|
18663
|
+
display: none;
|
18664
|
+
}
|
18665
|
+
.v-avatar--variant-elevated, .v-avatar--variant-flat {
|
18666
|
+
background: var(--v-theme-surface);
|
18667
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
18668
|
+
}
|
18669
|
+
.v-avatar--variant-elevated {
|
18670
|
+
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));
|
18671
|
+
}
|
18672
|
+
.v-avatar--variant-flat {
|
18673
|
+
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));
|
18674
|
+
}
|
18675
|
+
.v-avatar--variant-outlined {
|
18676
|
+
border: thin solid currentColor;
|
18677
|
+
}
|
18678
|
+
.v-avatar--variant-text .v-avatar__overlay {
|
18679
|
+
background: currentColor;
|
18680
|
+
}
|
18681
|
+
.v-avatar--variant-tonal .v-avatar__underlay {
|
18682
|
+
background: currentColor;
|
18683
|
+
opacity: var(--v-activated-opacity);
|
18684
|
+
border-radius: inherit;
|
18685
|
+
top: 0;
|
18686
|
+
right: 0;
|
18687
|
+
bottom: 0;
|
18688
|
+
left: 0;
|
18689
|
+
pointer-events: none;
|
18690
|
+
}
|
18691
|
+
.v-avatar .v-avatar__underlay {
|
18692
|
+
position: absolute;
|
18693
|
+
}
|
18694
|
+
.v-avatar--rounded {
|
18695
|
+
border-radius: 4px;
|
18696
|
+
}
|
18697
|
+
.v-avatar--start {
|
18698
|
+
margin-inline-end: 8px;
|
18699
|
+
}
|
18700
|
+
.v-avatar--end {
|
18701
|
+
margin-inline-start: 8px;
|
18702
|
+
}
|
18703
|
+
.v-avatar .v-img {
|
18704
|
+
height: 100%;
|
18705
|
+
width: 100%;
|
18706
|
+
}.v-badge {
|
18707
|
+
display: inline-block;
|
18708
|
+
line-height: 1;
|
18709
|
+
}
|
18710
|
+
|
18711
|
+
.v-badge__badge {
|
18712
|
+
align-items: center;
|
18713
|
+
display: inline-flex;
|
18714
|
+
border-radius: 10px;
|
18715
|
+
font-size: 0.75rem;
|
18716
|
+
font-weight: 500;
|
18717
|
+
height: 1.25rem;
|
18718
|
+
justify-content: center;
|
18719
|
+
min-width: 20px;
|
18720
|
+
padding: 4px 6px;
|
18721
|
+
pointer-events: auto;
|
18722
|
+
position: absolute;
|
18723
|
+
text-align: center;
|
18724
|
+
text-indent: 0;
|
18725
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18726
|
+
white-space: nowrap;
|
18727
|
+
background: rgb(var(--v-theme-surface-variant));
|
18728
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18729
|
+
}
|
18730
|
+
.v-badge--bordered .v-badge__badge::after {
|
18731
|
+
border-radius: inherit;
|
18732
|
+
border-style: solid;
|
18733
|
+
border-width: 2px;
|
18734
|
+
bottom: 0;
|
18735
|
+
color: rgb(var(--v-theme-background));
|
18736
|
+
content: "";
|
18737
|
+
left: 0;
|
18738
|
+
position: absolute;
|
18739
|
+
right: 0;
|
18740
|
+
top: 0;
|
18741
|
+
transform: scale(1.05);
|
18742
|
+
}
|
18743
|
+
.v-badge--dot .v-badge__badge {
|
18744
|
+
border-radius: 4.5px;
|
18745
|
+
height: 9px;
|
18746
|
+
min-width: 0;
|
18747
|
+
padding: 0;
|
18748
|
+
width: 9px;
|
18749
|
+
}
|
18750
|
+
.v-badge--dot .v-badge__badge::after {
|
18751
|
+
border-width: 1.5px;
|
18752
|
+
}
|
18753
|
+
.v-badge--inline .v-badge__badge {
|
18754
|
+
position: relative;
|
18755
|
+
vertical-align: middle;
|
18756
|
+
}
|
18757
|
+
.v-badge__badge .v-icon {
|
18758
|
+
color: inherit;
|
18759
|
+
font-size: 0.75rem;
|
18760
|
+
margin: 0 -2px;
|
18761
|
+
}
|
18762
|
+
.v-badge__badge img,
|
18763
|
+
.v-badge__badge .v-img {
|
18764
|
+
height: 100%;
|
18765
|
+
width: 100%;
|
18766
|
+
}
|
18767
|
+
|
18768
|
+
.v-badge__wrapper {
|
18769
|
+
display: flex;
|
18770
|
+
position: relative;
|
18771
|
+
}
|
18772
|
+
.v-badge--inline .v-badge__wrapper {
|
18773
|
+
align-items: center;
|
18774
|
+
display: inline-flex;
|
18775
|
+
justify-content: center;
|
18776
|
+
margin: 0 4px;
|
18730
18777
|
}.v-banner {
|
18731
18778
|
display: grid;
|
18732
18779
|
flex: 1 1;
|
@@ -18885,108 +18932,118 @@ html.overflow-y-hidden {
|
|
18885
18932
|
}
|
18886
18933
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18887
18934
|
align-self: flex-start;
|
18888
|
-
}.v-
|
18889
|
-
|
18935
|
+
}.v-breadcrumbs {
|
18936
|
+
display: flex;
|
18890
18937
|
align-items: center;
|
18891
|
-
|
18892
|
-
|
18893
|
-
line-height: normal;
|
18894
|
-
overflow: hidden;
|
18895
|
-
position: relative;
|
18896
|
-
text-align: center;
|
18897
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18898
|
-
transition-property: width, height;
|
18899
|
-
vertical-align: middle;
|
18900
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18901
|
-
border-style: solid;
|
18902
|
-
border-width: thin;
|
18903
|
-
border-radius: 50%;
|
18938
|
+
line-height: 1.6;
|
18939
|
+
padding: 16px 12px;
|
18904
18940
|
}
|
18905
|
-
.v-
|
18906
|
-
|
18907
|
-
}
|
18908
|
-
.v-avatar.v-avatar--size-small {
|
18909
|
-
--v-avatar-height: 32px;
|
18910
|
-
}
|
18911
|
-
.v-avatar.v-avatar--size-default {
|
18912
|
-
--v-avatar-height: 40px;
|
18913
|
-
}
|
18914
|
-
.v-avatar.v-avatar--size-large {
|
18915
|
-
--v-avatar-height: 48px;
|
18916
|
-
}
|
18917
|
-
.v-avatar.v-avatar--size-x-large {
|
18918
|
-
--v-avatar-height: 56px;
|
18941
|
+
.v-breadcrumbs--rounded {
|
18942
|
+
border-radius: 4px;
|
18919
18943
|
}
|
18920
|
-
.v-
|
18921
|
-
|
18922
|
-
|
18944
|
+
.v-breadcrumbs--density-default {
|
18945
|
+
padding-top: 16px;
|
18946
|
+
padding-bottom: 16px;
|
18923
18947
|
}
|
18924
|
-
|
18925
|
-
|
18926
|
-
|
18948
|
+
|
18949
|
+
.v-breadcrumbs--density-comfortable {
|
18950
|
+
padding-top: 12px;
|
18951
|
+
padding-bottom: 12px;
|
18927
18952
|
}
|
18928
|
-
|
18929
|
-
|
18930
|
-
|
18953
|
+
|
18954
|
+
.v-breadcrumbs--density-compact {
|
18955
|
+
padding-top: 8px;
|
18956
|
+
padding-bottom: 8px;
|
18931
18957
|
}
|
18932
|
-
|
18933
|
-
|
18934
|
-
|
18958
|
+
|
18959
|
+
.v-breadcrumbs__prepend {
|
18960
|
+
align-items: center;
|
18961
|
+
display: inline-flex;
|
18935
18962
|
}
|
18936
|
-
|
18937
|
-
|
18963
|
+
|
18964
|
+
.v-breadcrumbs-item {
|
18965
|
+
align-items: center;
|
18938
18966
|
color: inherit;
|
18967
|
+
display: inline-flex;
|
18968
|
+
padding: 0 4px;
|
18969
|
+
text-decoration: none;
|
18970
|
+
vertical-align: middle;
|
18939
18971
|
}
|
18940
|
-
.v-
|
18941
|
-
opacity:
|
18972
|
+
.v-breadcrumbs-item--disabled {
|
18973
|
+
opacity: var(--v-disabled-opacity);
|
18974
|
+
pointer-events: none;
|
18942
18975
|
}
|
18943
|
-
.v-
|
18944
|
-
|
18976
|
+
.v-breadcrumbs-item--link {
|
18977
|
+
color: inherit;
|
18978
|
+
text-decoration: none;
|
18945
18979
|
}
|
18946
|
-
.v-
|
18947
|
-
|
18980
|
+
.v-breadcrumbs-item--link:hover {
|
18981
|
+
text-decoration: underline;
|
18948
18982
|
}
|
18949
|
-
.v-
|
18950
|
-
|
18951
|
-
|
18983
|
+
.v-breadcrumbs-item .v-icon {
|
18984
|
+
font-size: 1rem;
|
18985
|
+
margin-inline: -4px 2px;
|
18952
18986
|
}
|
18953
|
-
|
18954
|
-
|
18987
|
+
|
18988
|
+
.v-breadcrumbs-divider {
|
18989
|
+
display: inline-block;
|
18990
|
+
padding: 0 8px;
|
18991
|
+
vertical-align: middle;
|
18992
|
+
}.v-bottom-navigation {
|
18993
|
+
display: flex;
|
18994
|
+
max-width: 100%;
|
18995
|
+
overflow: hidden;
|
18996
|
+
position: absolute;
|
18997
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18998
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18999
|
+
border-style: solid;
|
19000
|
+
border-width: 0;
|
19001
|
+
border-radius: 0;
|
19002
|
+
background: rgb(var(--v-theme-surface));
|
19003
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18955
19004
|
}
|
18956
|
-
.v-
|
18957
|
-
|
19005
|
+
.v-bottom-navigation--border {
|
19006
|
+
border-width: thin;
|
19007
|
+
box-shadow: none;
|
18958
19008
|
}
|
18959
|
-
.v-
|
18960
|
-
|
19009
|
+
.v-bottom-navigation--active {
|
19010
|
+
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));
|
18961
19011
|
}
|
18962
|
-
|
18963
|
-
|
19012
|
+
|
19013
|
+
.v-bottom-navigation__content {
|
19014
|
+
display: flex;
|
19015
|
+
flex: none;
|
19016
|
+
font-size: 0.75rem;
|
19017
|
+
justify-content: center;
|
19018
|
+
transition: inherit;
|
19019
|
+
width: 100%;
|
18964
19020
|
}
|
18965
|
-
.v-
|
18966
|
-
|
18967
|
-
|
18968
|
-
|
18969
|
-
|
18970
|
-
|
18971
|
-
|
18972
|
-
|
18973
|
-
|
19021
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
19022
|
+
font-size: inherit;
|
19023
|
+
height: 100%;
|
19024
|
+
max-width: 168px;
|
19025
|
+
min-width: 80px;
|
19026
|
+
text-transform: none;
|
19027
|
+
transition: inherit;
|
19028
|
+
width: auto;
|
19029
|
+
border-radius: 0;
|
18974
19030
|
}
|
18975
|
-
.v-
|
18976
|
-
|
19031
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
19032
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19033
|
+
transition: inherit;
|
18977
19034
|
}
|
18978
|
-
.v-
|
18979
|
-
|
19035
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19036
|
+
font-size: 1.5rem;
|
18980
19037
|
}
|
18981
|
-
.v-
|
18982
|
-
|
19038
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
19039
|
+
flex-grow: 1;
|
18983
19040
|
}
|
18984
|
-
.v-
|
18985
|
-
|
19041
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
19042
|
+
transition: inherit;
|
19043
|
+
opacity: 0;
|
18986
19044
|
}
|
18987
|
-
.v-
|
18988
|
-
|
18989
|
-
width: 100%;
|
19045
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
19046
|
+
transform: translateY(0.5rem);
|
18990
19047
|
}.bottom-sheet-transition-enter-from {
|
18991
19048
|
transform: translateY(100%);
|
18992
19049
|
}
|
@@ -19019,63 +19076,6 @@ html.overflow-y-hidden {
|
|
19019
19076
|
.v-bottom-sheet.v-bottom-sheet--inset {
|
19020
19077
|
max-width: 70%;
|
19021
19078
|
}
|
19022
|
-
}.v-breadcrumbs {
|
19023
|
-
display: flex;
|
19024
|
-
align-items: center;
|
19025
|
-
line-height: 1.6;
|
19026
|
-
padding: 16px 12px;
|
19027
|
-
}
|
19028
|
-
.v-breadcrumbs--rounded {
|
19029
|
-
border-radius: 4px;
|
19030
|
-
}
|
19031
|
-
.v-breadcrumbs--density-default {
|
19032
|
-
padding-top: 16px;
|
19033
|
-
padding-bottom: 16px;
|
19034
|
-
}
|
19035
|
-
|
19036
|
-
.v-breadcrumbs--density-comfortable {
|
19037
|
-
padding-top: 12px;
|
19038
|
-
padding-bottom: 12px;
|
19039
|
-
}
|
19040
|
-
|
19041
|
-
.v-breadcrumbs--density-compact {
|
19042
|
-
padding-top: 8px;
|
19043
|
-
padding-bottom: 8px;
|
19044
|
-
}
|
19045
|
-
|
19046
|
-
.v-breadcrumbs__prepend {
|
19047
|
-
align-items: center;
|
19048
|
-
display: inline-flex;
|
19049
|
-
}
|
19050
|
-
|
19051
|
-
.v-breadcrumbs-item {
|
19052
|
-
align-items: center;
|
19053
|
-
color: inherit;
|
19054
|
-
display: inline-flex;
|
19055
|
-
padding: 0 4px;
|
19056
|
-
text-decoration: none;
|
19057
|
-
vertical-align: middle;
|
19058
|
-
}
|
19059
|
-
.v-breadcrumbs-item--disabled {
|
19060
|
-
opacity: var(--v-disabled-opacity);
|
19061
|
-
pointer-events: none;
|
19062
|
-
}
|
19063
|
-
.v-breadcrumbs-item--link {
|
19064
|
-
color: inherit;
|
19065
|
-
text-decoration: none;
|
19066
|
-
}
|
19067
|
-
.v-breadcrumbs-item--link:hover {
|
19068
|
-
text-decoration: underline;
|
19069
|
-
}
|
19070
|
-
.v-breadcrumbs-item .v-icon {
|
19071
|
-
font-size: 1rem;
|
19072
|
-
margin-inline: -4px 2px;
|
19073
|
-
}
|
19074
|
-
|
19075
|
-
.v-breadcrumbs-divider {
|
19076
|
-
display: inline-block;
|
19077
|
-
padding: 0 8px;
|
19078
|
-
vertical-align: middle;
|
19079
19079
|
}.v-btn {
|
19080
19080
|
align-items: center;
|
19081
19081
|
border-radius: 4px;
|
@@ -19852,6 +19852,11 @@ html.overflow-y-hidden {
|
|
19852
19852
|
pointer-events: none;
|
19853
19853
|
opacity: 0;
|
19854
19854
|
transition: opacity 0.2s ease-in-out;
|
19855
|
+
}.v-checkbox.v-input {
|
19856
|
+
flex: 0 1 auto;
|
19857
|
+
}
|
19858
|
+
.v-checkbox .v-selection-control {
|
19859
|
+
min-height: var(--v-input-control-height);
|
19855
19860
|
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19856
19861
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19857
19862
|
}
|
@@ -19928,29 +19933,6 @@ html.overflow-y-hidden {
|
|
19928
19933
|
flex-direction: column;
|
19929
19934
|
height: 100% !important;
|
19930
19935
|
width: 50px;
|
19931
|
-
}.v-checkbox.v-input {
|
19932
|
-
flex: 0 1 auto;
|
19933
|
-
}
|
19934
|
-
.v-checkbox .v-selection-control {
|
19935
|
-
min-height: var(--v-input-control-height);
|
19936
|
-
}.v-chip-group {
|
19937
|
-
display: flex;
|
19938
|
-
max-width: 100%;
|
19939
|
-
min-width: 0;
|
19940
|
-
overflow-x: auto;
|
19941
|
-
padding: 4px 0;
|
19942
|
-
}
|
19943
|
-
.v-chip-group .v-chip {
|
19944
|
-
margin: 4px 8px 4px 0;
|
19945
|
-
}
|
19946
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
19947
|
-
opacity: var(--v-activated-opacity);
|
19948
|
-
}
|
19949
|
-
|
19950
|
-
.v-chip-group--column .v-slide-group__content {
|
19951
|
-
white-space: normal;
|
19952
|
-
flex-wrap: wrap;
|
19953
|
-
max-width: 100%;
|
19954
19936
|
}.v-chip {
|
19955
19937
|
align-items: center;
|
19956
19938
|
display: inline-flex;
|
@@ -20363,6 +20345,24 @@ html.overflow-y-hidden {
|
|
20363
20345
|
|
20364
20346
|
.v-chip--label {
|
20365
20347
|
border-radius: 4px;
|
20348
|
+
}.v-chip-group {
|
20349
|
+
display: flex;
|
20350
|
+
max-width: 100%;
|
20351
|
+
min-width: 0;
|
20352
|
+
overflow-x: auto;
|
20353
|
+
padding: 4px 0;
|
20354
|
+
}
|
20355
|
+
.v-chip-group .v-chip {
|
20356
|
+
margin: 4px 8px 4px 0;
|
20357
|
+
}
|
20358
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20359
|
+
opacity: var(--v-activated-opacity);
|
20360
|
+
}
|
20361
|
+
|
20362
|
+
.v-chip-group--column .v-slide-group__content {
|
20363
|
+
white-space: normal;
|
20364
|
+
flex-wrap: wrap;
|
20365
|
+
max-width: 100%;
|
20366
20366
|
}.v-color-picker {
|
20367
20367
|
align-self: flex-start;
|
20368
20368
|
contain: content;
|
@@ -21141,68 +21141,290 @@ html.overflow-y-hidden {
|
|
21141
21141
|
.v-combobox--active-menu .v-combobox__menu-icon {
|
21142
21142
|
opacity: var(--v-high-emphasis-opacity);
|
21143
21143
|
transform: rotate(180deg);
|
21144
|
-
}.v-
|
21145
|
-
|
21146
|
-
|
21147
|
-
|
21148
|
-
.v-
|
21149
|
-
width:
|
21150
|
-
|
21144
|
+
}.v-data-table {
|
21145
|
+
width: 100%;
|
21146
|
+
}
|
21147
|
+
|
21148
|
+
.v-data-table__table {
|
21149
|
+
width: 100%;
|
21150
|
+
border-collapse: separate;
|
21151
|
+
border-spacing: 0;
|
21152
|
+
}
|
21153
|
+
|
21154
|
+
.v-data-table__tr--focus {
|
21155
|
+
border: 1px dotted black;
|
21156
|
+
}
|
21157
|
+
.v-data-table__tr--clickable {
|
21158
|
+
cursor: pointer;
|
21159
|
+
}
|
21160
|
+
|
21161
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
|
21162
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
|
21163
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
|
21164
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
|
21165
|
+
text-align: end;
|
21166
|
+
}
|
21167
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
21168
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
|
21169
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
21170
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
21171
|
+
flex-direction: row-reverse;
|
21172
|
+
}
|
21173
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
|
21174
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
|
21175
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
|
21176
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
21177
|
+
text-align: center;
|
21178
|
+
}
|
21179
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
21180
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
|
21181
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
21182
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
|
21183
|
+
justify-content: center;
|
21184
|
+
}
|
21185
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
|
21186
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
|
21187
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
|
21188
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
|
21189
|
+
padding: 0 8px;
|
21190
|
+
}
|
21191
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
|
21192
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
|
21193
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
|
21194
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
|
21195
|
+
text-overflow: ellipsis;
|
21196
|
+
text-wrap: nowrap;
|
21197
|
+
overflow: hidden;
|
21198
|
+
}
|
21199
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
|
21200
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
|
21201
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
|
21202
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
|
21203
|
+
display: contents;
|
21204
|
+
}
|
21205
|
+
.v-data-table .v-table__wrapper > table > thead > tr > th,
|
21206
|
+
.v-data-table .v-table__wrapper > table tbody > tr > th {
|
21207
|
+
align-items: center;
|
21208
|
+
}
|
21209
|
+
.v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
|
21210
|
+
.v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
|
21211
|
+
position: sticky;
|
21212
|
+
}
|
21213
|
+
.v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
|
21214
|
+
.v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
|
21215
|
+
cursor: pointer;
|
21216
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21217
|
+
}
|
21218
|
+
.v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
|
21219
|
+
.v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
|
21220
|
+
opacity: 0;
|
21221
|
+
}
|
21222
|
+
.v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
|
21223
|
+
.v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
|
21224
|
+
opacity: 0.5;
|
21225
|
+
}
|
21226
|
+
.v-data-table .v-table__wrapper > table > thead > tr.v-data-table__tr--mobile > td,
|
21227
|
+
.v-data-table .v-table__wrapper > table tbody > tr.v-data-table__tr--mobile > td {
|
21228
|
+
height: -moz-fit-content;
|
21229
|
+
height: fit-content;
|
21230
|
+
}
|
21231
|
+
|
21232
|
+
.v-data-table-column--fixed,
|
21233
|
+
.v-data-table__th--sticky {
|
21234
|
+
background: rgb(var(--v-theme-surface));
|
21235
|
+
position: sticky !important;
|
21236
|
+
left: 0;
|
21237
|
+
z-index: 1;
|
21238
|
+
}
|
21239
|
+
|
21240
|
+
.v-data-table-column--last-fixed {
|
21241
|
+
border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
21242
|
+
}
|
21243
|
+
|
21244
|
+
.v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
|
21245
|
+
z-index: 2;
|
21246
|
+
}
|
21247
|
+
|
21248
|
+
.v-data-table-group-header-row td {
|
21249
|
+
background: rgba(var(--v-theme-surface));
|
21250
|
+
color: rgba(var(--v-theme-on-surface));
|
21251
|
+
}
|
21252
|
+
.v-data-table-group-header-row td > span {
|
21253
|
+
padding-left: 5px;
|
21254
|
+
}
|
21255
|
+
|
21256
|
+
.v-data-table--loading .v-data-table__td {
|
21257
|
+
opacity: var(--v-disabled-opacity);
|
21258
|
+
}
|
21259
|
+
|
21260
|
+
.v-data-table-group-header-row__column {
|
21261
|
+
padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
|
21262
|
+
}
|
21263
|
+
|
21264
|
+
.v-data-table-header__content {
|
21151
21265
|
display: flex;
|
21152
21266
|
align-items: center;
|
21153
|
-
|
21267
|
+
}
|
21268
|
+
|
21269
|
+
.v-data-table-header__sort-badge {
|
21270
|
+
display: inline-flex;
|
21271
|
+
justify-content: center;
|
21272
|
+
align-items: center;
|
21154
21273
|
font-size: 0.875rem;
|
21155
|
-
padding
|
21156
|
-
|
21157
|
-
|
21158
|
-
|
21274
|
+
padding: 4px;
|
21275
|
+
border-radius: 50%;
|
21276
|
+
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
21277
|
+
min-width: 20px;
|
21278
|
+
min-height: 20px;
|
21279
|
+
width: 20px;
|
21280
|
+
height: 20px;
|
21159
21281
|
}
|
21160
|
-
|
21161
|
-
|
21162
|
-
|
21163
|
-
|
21164
|
-
|
21282
|
+
|
21283
|
+
.v-data-table-progress > th {
|
21284
|
+
border: none !important;
|
21285
|
+
height: auto !important;
|
21286
|
+
padding: 0 !important;
|
21165
21287
|
}
|
21166
|
-
|
21167
|
-
|
21288
|
+
|
21289
|
+
.v-data-table-progress__loader {
|
21290
|
+
position: relative;
|
21168
21291
|
}
|
21169
|
-
|
21170
|
-
|
21292
|
+
|
21293
|
+
.v-data-table-rows-loading,
|
21294
|
+
.v-data-table-rows-no-data {
|
21295
|
+
text-align: center;
|
21171
21296
|
}
|
21172
|
-
|
21173
|
-
|
21297
|
+
|
21298
|
+
.v-data-table__tr--mobile > .v-data-table__td--expanded-row {
|
21299
|
+
grid-template-columns: 0;
|
21300
|
+
justify-content: center;
|
21174
21301
|
}
|
21175
|
-
.v-
|
21176
|
-
|
21302
|
+
.v-data-table__tr--mobile > .v-data-table__td--select-row {
|
21303
|
+
grid-template-columns: 0;
|
21304
|
+
justify-content: end;
|
21177
21305
|
}
|
21178
|
-
.v-
|
21179
|
-
|
21306
|
+
.v-data-table__tr--mobile > td {
|
21307
|
+
align-items: center;
|
21308
|
+
column-gap: 4px;
|
21309
|
+
display: grid;
|
21310
|
+
grid-template-columns: repeat(2, 1fr);
|
21311
|
+
min-height: var(--v-table-row-height);
|
21180
21312
|
}
|
21181
|
-
.v-
|
21182
|
-
|
21313
|
+
.v-data-table__tr--mobile > td:not(:last-child) {
|
21314
|
+
border-bottom: 0 !important;
|
21183
21315
|
}
|
21184
21316
|
|
21185
|
-
.v-
|
21186
|
-
|
21317
|
+
.v-data-table__td-title {
|
21318
|
+
font-weight: 500;
|
21319
|
+
text-align: left;
|
21187
21320
|
}
|
21188
|
-
|
21189
|
-
|
21190
|
-
text-align:
|
21321
|
+
|
21322
|
+
.v-data-table__td-value {
|
21323
|
+
text-align: right;
|
21191
21324
|
}
|
21192
21325
|
|
21193
|
-
.v-
|
21326
|
+
.v-data-table__td-sort-icon {
|
21327
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
21328
|
+
}
|
21329
|
+
.v-data-table__td-sort-icon-active {
|
21330
|
+
color: rgba(var(--v-theme-on-surface));
|
21331
|
+
}.v-data-table-footer {
|
21332
|
+
align-items: center;
|
21333
|
+
display: flex;
|
21334
|
+
flex-wrap: wrap;
|
21335
|
+
justify-content: flex-end;
|
21336
|
+
padding: 8px 4px;
|
21337
|
+
}
|
21338
|
+
.v-data-table-footer__items-per-page {
|
21339
|
+
align-items: center;
|
21194
21340
|
display: flex;
|
21341
|
+
justify-content: center;
|
21195
21342
|
}
|
21196
|
-
.v-
|
21197
|
-
|
21343
|
+
.v-data-table-footer__items-per-page > span {
|
21344
|
+
padding-inline-end: 8px;
|
21345
|
+
}
|
21346
|
+
.v-data-table-footer__items-per-page > .v-select {
|
21347
|
+
width: 90px;
|
21348
|
+
}
|
21349
|
+
.v-data-table-footer__info {
|
21350
|
+
display: flex;
|
21351
|
+
justify-content: flex-end;
|
21352
|
+
min-width: 116px;
|
21353
|
+
padding: 0 16px;
|
21354
|
+
}
|
21355
|
+
.v-data-table-footer__paginationz {
|
21356
|
+
align-items: center;
|
21357
|
+
display: flex;
|
21358
|
+
margin-inline-start: 16px;
|
21359
|
+
}
|
21360
|
+
.v-data-table-footer__page {
|
21361
|
+
padding: 0 8px;
|
21362
|
+
}.v-date-picker {
|
21363
|
+
overflow: hidden;
|
21364
|
+
width: 328px;
|
21365
|
+
}
|
21366
|
+
.v-date-picker--show-week {
|
21367
|
+
width: 368px;
|
21368
|
+
}.v-date-picker-header {
|
21369
|
+
align-items: flex-end;
|
21370
|
+
height: 70px;
|
21371
|
+
display: grid;
|
21372
|
+
grid-template-areas: "prepend content append";
|
21373
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21374
|
+
overflow: hidden;
|
21375
|
+
padding-inline: 24px 12px;
|
21376
|
+
padding-bottom: 12px;
|
21198
21377
|
}
|
21199
21378
|
|
21200
|
-
.v-date-picker-
|
21201
|
-
|
21379
|
+
.v-date-picker-header__append {
|
21380
|
+
grid-area: append;
|
21202
21381
|
}
|
21203
21382
|
|
21204
|
-
.v-date-
|
21205
|
-
|
21383
|
+
.v-date-picker-header__prepend {
|
21384
|
+
grid-area: prepend;
|
21385
|
+
padding-inline-start: 8px;
|
21386
|
+
}
|
21387
|
+
|
21388
|
+
.v-date-picker-header__content {
|
21389
|
+
align-items: center;
|
21390
|
+
display: inline-flex;
|
21391
|
+
font-size: 32px;
|
21392
|
+
line-height: 40px;
|
21393
|
+
grid-area: content;
|
21394
|
+
justify-content: space-between;
|
21395
|
+
}
|
21396
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
21397
|
+
cursor: pointer;
|
21398
|
+
}
|
21399
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21400
|
+
opacity: 0.7;
|
21401
|
+
}
|
21402
|
+
|
21403
|
+
.date-picker-header-transition-enter-active,
|
21404
|
+
.date-picker-header-reverse-transition-enter-active {
|
21405
|
+
transition-duration: 0.3s;
|
21406
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21407
|
+
}
|
21408
|
+
.date-picker-header-transition-leave-active,
|
21409
|
+
.date-picker-header-reverse-transition-leave-active {
|
21410
|
+
transition-duration: 0.3s;
|
21411
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21412
|
+
}
|
21413
|
+
|
21414
|
+
.date-picker-header-transition-enter-from {
|
21415
|
+
transform: translate(0, 100%);
|
21416
|
+
}
|
21417
|
+
.date-picker-header-transition-leave-to {
|
21418
|
+
opacity: 0;
|
21419
|
+
transform: translate(0, -100%);
|
21420
|
+
}
|
21421
|
+
|
21422
|
+
.date-picker-header-reverse-transition-enter-from {
|
21423
|
+
transform: translate(0, -100%);
|
21424
|
+
}
|
21425
|
+
.date-picker-header-reverse-transition-leave-to {
|
21426
|
+
opacity: 0;
|
21427
|
+
transform: translate(0, 100%);
|
21206
21428
|
}.v-date-picker-month {
|
21207
21429
|
display: flex;
|
21208
21430
|
justify-content: center;
|
@@ -21224,40 +21446,96 @@ html.overflow-y-hidden {
|
|
21224
21446
|
font-size: 0.85rem;
|
21225
21447
|
}
|
21226
21448
|
|
21227
|
-
.v-date-picker-month__days {
|
21228
|
-
display: grid;
|
21229
|
-
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
21230
|
-
column-gap: 4px;
|
21231
|
-
flex: 1 1;
|
21232
|
-
justify-content: space-around;
|
21449
|
+
.v-date-picker-month__days {
|
21450
|
+
display: grid;
|
21451
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
21452
|
+
column-gap: 4px;
|
21453
|
+
flex: 1 1;
|
21454
|
+
justify-content: space-around;
|
21455
|
+
}
|
21456
|
+
|
21457
|
+
.v-date-picker-month__day {
|
21458
|
+
align-items: center;
|
21459
|
+
display: flex;
|
21460
|
+
justify-content: center;
|
21461
|
+
position: relative;
|
21462
|
+
height: 40px;
|
21463
|
+
width: 40px;
|
21464
|
+
}
|
21465
|
+
.v-date-picker-month__day--selected .v-btn {
|
21466
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
21467
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
21468
|
+
}
|
21469
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
21470
|
+
--v-btn-height: 24px;
|
21471
|
+
--v-btn-size: 0.85rem;
|
21472
|
+
}
|
21473
|
+
.v-date-picker-month__day--week {
|
21474
|
+
font-size: var(--v-btn-size);
|
21475
|
+
}
|
21476
|
+
|
21477
|
+
.v-date-picker-month__day--adjacent {
|
21478
|
+
opacity: 0.5;
|
21479
|
+
}
|
21480
|
+
|
21481
|
+
.v-date-picker-month__day--hide-adjacent {
|
21482
|
+
opacity: 0;
|
21483
|
+
}.v-date-picker-controls {
|
21484
|
+
display: flex;
|
21485
|
+
align-items: center;
|
21486
|
+
justify-content: space-between;
|
21487
|
+
font-size: 0.875rem;
|
21488
|
+
padding-top: 4px;
|
21489
|
+
padding-bottom: 4px;
|
21490
|
+
padding-inline-start: 6px;
|
21491
|
+
padding-inline-end: 12px;
|
21492
|
+
}
|
21493
|
+
.v-date-picker-controls > .v-btn:first-child {
|
21494
|
+
text-transform: none;
|
21495
|
+
font-weight: 400;
|
21496
|
+
line-height: initial;
|
21497
|
+
letter-spacing: initial;
|
21498
|
+
}
|
21499
|
+
.v-date-picker-controls--variant-classic {
|
21500
|
+
padding-inline-start: 12px;
|
21501
|
+
}
|
21502
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
21503
|
+
opacity: 0.7;
|
21504
|
+
}
|
21505
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21506
|
+
cursor: pointer;
|
21507
|
+
}
|
21508
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21509
|
+
opacity: 1;
|
21510
|
+
}
|
21511
|
+
.v-date-picker-controls .v-btn:last-child {
|
21512
|
+
margin-inline-start: 4px;
|
21513
|
+
}
|
21514
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
21515
|
+
transform: rotate(180deg);
|
21516
|
+
}
|
21517
|
+
|
21518
|
+
.v-date-picker-controls__date {
|
21519
|
+
margin-inline-end: 4px;
|
21520
|
+
}
|
21521
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
21522
|
+
margin: auto;
|
21523
|
+
text-align: center;
|
21233
21524
|
}
|
21234
21525
|
|
21235
|
-
.v-date-picker-
|
21236
|
-
align-items: center;
|
21526
|
+
.v-date-picker-controls__month {
|
21237
21527
|
display: flex;
|
21238
|
-
justify-content: center;
|
21239
|
-
position: relative;
|
21240
|
-
height: 40px;
|
21241
|
-
width: 40px;
|
21242
|
-
}
|
21243
|
-
.v-date-picker-month__day--selected .v-btn {
|
21244
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
21245
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
21246
21528
|
}
|
21247
|
-
.v-date-picker-
|
21248
|
-
|
21249
|
-
--v-btn-size: 0.85rem;
|
21250
|
-
}
|
21251
|
-
.v-date-picker-month__day--week {
|
21252
|
-
font-size: var(--v-btn-size);
|
21529
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
21530
|
+
flex-direction: row-reverse;
|
21253
21531
|
}
|
21254
21532
|
|
21255
|
-
.v-date-picker-
|
21256
|
-
|
21533
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
21534
|
+
flex: 1 0 auto;
|
21257
21535
|
}
|
21258
21536
|
|
21259
|
-
.v-date-
|
21260
|
-
|
21537
|
+
.v-date-picker__title {
|
21538
|
+
display: inline-block;
|
21261
21539
|
}.v-date-picker-months {
|
21262
21540
|
height: 288px;
|
21263
21541
|
}
|
@@ -21277,66 +21555,6 @@ html.overflow-y-hidden {
|
|
21277
21555
|
text-transform: none;
|
21278
21556
|
padding-inline-start: 8px;
|
21279
21557
|
padding-inline-end: 8px;
|
21280
|
-
}.v-date-picker-header {
|
21281
|
-
align-items: flex-end;
|
21282
|
-
height: 70px;
|
21283
|
-
display: grid;
|
21284
|
-
grid-template-areas: "prepend content append";
|
21285
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21286
|
-
overflow: hidden;
|
21287
|
-
padding-inline: 24px 12px;
|
21288
|
-
padding-bottom: 12px;
|
21289
|
-
}
|
21290
|
-
|
21291
|
-
.v-date-picker-header__append {
|
21292
|
-
grid-area: append;
|
21293
|
-
}
|
21294
|
-
|
21295
|
-
.v-date-picker-header__prepend {
|
21296
|
-
grid-area: prepend;
|
21297
|
-
padding-inline-start: 8px;
|
21298
|
-
}
|
21299
|
-
|
21300
|
-
.v-date-picker-header__content {
|
21301
|
-
align-items: center;
|
21302
|
-
display: inline-flex;
|
21303
|
-
font-size: 32px;
|
21304
|
-
line-height: 40px;
|
21305
|
-
grid-area: content;
|
21306
|
-
justify-content: space-between;
|
21307
|
-
}
|
21308
|
-
.v-date-picker-header--clickable .v-date-picker-header__content {
|
21309
|
-
cursor: pointer;
|
21310
|
-
}
|
21311
|
-
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21312
|
-
opacity: 0.7;
|
21313
|
-
}
|
21314
|
-
|
21315
|
-
.date-picker-header-transition-enter-active,
|
21316
|
-
.date-picker-header-reverse-transition-enter-active {
|
21317
|
-
transition-duration: 0.3s;
|
21318
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21319
|
-
}
|
21320
|
-
.date-picker-header-transition-leave-active,
|
21321
|
-
.date-picker-header-reverse-transition-leave-active {
|
21322
|
-
transition-duration: 0.3s;
|
21323
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21324
|
-
}
|
21325
|
-
|
21326
|
-
.date-picker-header-transition-enter-from {
|
21327
|
-
transform: translate(0, 100%);
|
21328
|
-
}
|
21329
|
-
.date-picker-header-transition-leave-to {
|
21330
|
-
opacity: 0;
|
21331
|
-
transform: translate(0, -100%);
|
21332
|
-
}
|
21333
|
-
|
21334
|
-
.date-picker-header-reverse-transition-enter-from {
|
21335
|
-
transform: translate(0, -100%);
|
21336
|
-
}
|
21337
|
-
.date-picker-header-reverse-transition-leave-to {
|
21338
|
-
opacity: 0;
|
21339
|
-
transform: translate(0, 100%);
|
21340
21558
|
}.v-date-picker-years {
|
21341
21559
|
height: 288px;
|
21342
21560
|
overflow-y: scroll;
|
@@ -21352,224 +21570,266 @@ html.overflow-y-hidden {
|
|
21352
21570
|
}
|
21353
21571
|
.v-date-picker-years__content .v-btn {
|
21354
21572
|
padding-inline: 8px;
|
21355
|
-
}.v-
|
21356
|
-
|
21357
|
-
|
21358
|
-
|
21359
|
-
|
21360
|
-
|
21573
|
+
}.v-divider {
|
21574
|
+
display: block;
|
21575
|
+
flex: 1 1 100%;
|
21576
|
+
height: 0px;
|
21577
|
+
max-height: 0px;
|
21578
|
+
opacity: var(--v-border-opacity);
|
21579
|
+
transition: inherit;
|
21580
|
+
border-style: solid;
|
21581
|
+
border-width: thin 0 0 0;
|
21361
21582
|
}
|
21362
|
-
.v-
|
21363
|
-
align-
|
21364
|
-
|
21365
|
-
|
21583
|
+
.v-divider--vertical {
|
21584
|
+
align-self: stretch;
|
21585
|
+
border-width: 0 thin 0 0;
|
21586
|
+
display: inline-flex;
|
21587
|
+
height: auto;
|
21588
|
+
margin-left: -1px;
|
21589
|
+
max-height: 100%;
|
21590
|
+
max-width: 0px;
|
21591
|
+
vertical-align: text-bottom;
|
21592
|
+
width: 0px;
|
21366
21593
|
}
|
21367
|
-
.v-
|
21368
|
-
|
21594
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
21595
|
+
max-width: calc(100% - 72px);
|
21596
|
+
margin-inline-start: 72px;
|
21369
21597
|
}
|
21370
|
-
.v-
|
21371
|
-
|
21598
|
+
.v-divider--inset.v-divider--vertical {
|
21599
|
+
margin-bottom: 8px;
|
21600
|
+
margin-top: 8px;
|
21601
|
+
max-height: calc(100% - 16px);
|
21372
21602
|
}
|
21373
|
-
|
21374
|
-
|
21375
|
-
justify-content: flex-end;
|
21376
|
-
min-width: 116px;
|
21603
|
+
|
21604
|
+
.v-divider__content {
|
21377
21605
|
padding: 0 16px;
|
21606
|
+
text-wrap: nowrap;
|
21378
21607
|
}
|
21379
|
-
.v-
|
21380
|
-
|
21608
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
21609
|
+
padding: 4px 0;
|
21610
|
+
}
|
21611
|
+
|
21612
|
+
.v-divider__wrapper {
|
21381
21613
|
display: flex;
|
21382
|
-
|
21614
|
+
align-items: center;
|
21615
|
+
justify-content: center;
|
21383
21616
|
}
|
21384
|
-
.v-
|
21385
|
-
|
21386
|
-
|
21387
|
-
width: 100%;
|
21617
|
+
.v-divider__wrapper--vertical {
|
21618
|
+
flex-direction: column;
|
21619
|
+
height: 100%;
|
21388
21620
|
}
|
21389
|
-
|
21390
|
-
|
21391
|
-
|
21392
|
-
|
21393
|
-
|
21621
|
+
.v-divider__wrapper--vertical .v-divider {
|
21622
|
+
margin: 0 auto;
|
21623
|
+
}.v-expansion-panel {
|
21624
|
+
background-color: rgb(var(--v-theme-surface));
|
21625
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21394
21626
|
}
|
21395
|
-
|
21396
|
-
|
21397
|
-
border: 1px dotted black;
|
21627
|
+
.v-expansion-panel:not(:first-child)::after {
|
21628
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21398
21629
|
}
|
21399
|
-
.v-
|
21400
|
-
|
21630
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21631
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
21632
|
+
}
|
21633
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
21634
|
+
opacity: 0.4615384615;
|
21401
21635
|
}
|
21402
21636
|
|
21403
|
-
.v-
|
21404
|
-
|
21405
|
-
|
21406
|
-
|
21407
|
-
|
21637
|
+
.v-expansion-panels {
|
21638
|
+
display: flex;
|
21639
|
+
flex-wrap: wrap;
|
21640
|
+
justify-content: center;
|
21641
|
+
list-style-type: none;
|
21642
|
+
padding: 0;
|
21643
|
+
width: 100%;
|
21644
|
+
position: relative;
|
21645
|
+
z-index: 1;
|
21408
21646
|
}
|
21409
|
-
.v-
|
21410
|
-
|
21411
|
-
|
21412
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
21413
|
-
flex-direction: row-reverse;
|
21647
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21648
|
+
border-bottom-left-radius: 0 !important;
|
21649
|
+
border-bottom-right-radius: 0 !important;
|
21414
21650
|
}
|
21415
|
-
.v-
|
21416
|
-
|
21417
|
-
|
21418
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
21419
|
-
text-align: center;
|
21651
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21652
|
+
border-top-left-radius: 0 !important;
|
21653
|
+
border-top-right-radius: 0 !important;
|
21420
21654
|
}
|
21421
|
-
.v-
|
21422
|
-
|
21423
|
-
|
21424
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
|
21425
|
-
justify-content: center;
|
21655
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21656
|
+
border-bottom-left-radius: 0 !important;
|
21657
|
+
border-bottom-right-radius: 0 !important;
|
21426
21658
|
}
|
21427
|
-
.v-
|
21428
|
-
|
21429
|
-
|
21430
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
|
21431
|
-
padding: 0 8px;
|
21659
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21660
|
+
border-top-left-radius: 0 !important;
|
21661
|
+
border-top-right-radius: 0 !important;
|
21432
21662
|
}
|
21433
|
-
.v-
|
21434
|
-
|
21435
|
-
|
21436
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
|
21437
|
-
text-overflow: ellipsis;
|
21438
|
-
text-wrap: nowrap;
|
21439
|
-
overflow: hidden;
|
21663
|
+
.v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
|
21664
|
+
border-bottom-left-radius: 0 !important;
|
21665
|
+
border-bottom-right-radius: 0 !important;
|
21440
21666
|
}
|
21441
|
-
.v-
|
21442
|
-
|
21443
|
-
|
21444
|
-
|
21445
|
-
|
21667
|
+
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
|
21668
|
+
border-top-left-radius: 0 !important;
|
21669
|
+
border-top-right-radius: 0 !important;
|
21670
|
+
}
|
21671
|
+
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
|
21672
|
+
border-bottom-left-radius: initial;
|
21673
|
+
border-bottom-right-radius: initial;
|
21674
|
+
}
|
21675
|
+
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
21676
|
+
border-radius: 0 !important;
|
21446
21677
|
}
|
21447
|
-
.v-
|
21448
|
-
.
|
21449
|
-
align-items: center;
|
21678
|
+
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
21679
|
+
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
21450
21680
|
}
|
21451
|
-
|
21452
|
-
.v-
|
21453
|
-
|
21681
|
+
|
21682
|
+
.v-expansion-panel {
|
21683
|
+
flex: 1 0 100%;
|
21684
|
+
max-width: 100%;
|
21685
|
+
position: relative;
|
21686
|
+
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
21687
|
+
transition-property: margin-top, border-radius, border, max-width;
|
21688
|
+
border-radius: 4px;
|
21454
21689
|
}
|
21455
|
-
.v-
|
21456
|
-
|
21457
|
-
|
21458
|
-
|
21690
|
+
.v-expansion-panel:not(:first-child)::after {
|
21691
|
+
border-top-style: solid;
|
21692
|
+
border-top-width: thin;
|
21693
|
+
content: "";
|
21694
|
+
left: 0;
|
21695
|
+
position: absolute;
|
21696
|
+
right: 0;
|
21697
|
+
top: 0;
|
21698
|
+
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
21459
21699
|
}
|
21460
|
-
.v-
|
21461
|
-
|
21700
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21701
|
+
pointer-events: none;
|
21702
|
+
}
|
21703
|
+
.v-expansion-panel--active:not(:first-child),
|
21704
|
+
.v-expansion-panel--active + .v-expansion-panel {
|
21705
|
+
margin-top: 16px;
|
21706
|
+
}
|
21707
|
+
.v-expansion-panel--active:not(:first-child)::after,
|
21708
|
+
.v-expansion-panel--active + .v-expansion-panel::after {
|
21462
21709
|
opacity: 0;
|
21463
21710
|
}
|
21464
|
-
.v-
|
21465
|
-
|
21466
|
-
|
21711
|
+
.v-expansion-panel--active > .v-expansion-panel-title {
|
21712
|
+
border-bottom-left-radius: 0;
|
21713
|
+
border-bottom-right-radius: 0;
|
21467
21714
|
}
|
21468
|
-
.v-
|
21469
|
-
|
21470
|
-
height: -moz-fit-content;
|
21471
|
-
height: fit-content;
|
21715
|
+
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
21716
|
+
min-height: 64px;
|
21472
21717
|
}
|
21473
21718
|
|
21474
|
-
.v-
|
21475
|
-
|
21476
|
-
|
21477
|
-
position: sticky !important;
|
21719
|
+
.v-expansion-panel__shadow {
|
21720
|
+
position: absolute;
|
21721
|
+
top: 0;
|
21478
21722
|
left: 0;
|
21479
|
-
|
21723
|
+
width: 100%;
|
21724
|
+
height: 100%;
|
21725
|
+
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));
|
21726
|
+
border-radius: inherit;
|
21727
|
+
z-index: -1;
|
21480
21728
|
}
|
21481
21729
|
|
21482
|
-
.v-
|
21483
|
-
|
21730
|
+
.v-expansion-panel-title {
|
21731
|
+
align-items: center;
|
21732
|
+
text-align: start;
|
21733
|
+
border-radius: inherit;
|
21734
|
+
display: flex;
|
21735
|
+
font-size: 0.9375rem;
|
21736
|
+
line-height: 1;
|
21737
|
+
min-height: 48px;
|
21738
|
+
outline: none;
|
21739
|
+
padding: 16px 24px;
|
21740
|
+
position: relative;
|
21741
|
+
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
21742
|
+
width: 100%;
|
21743
|
+
justify-content: space-between;
|
21484
21744
|
}
|
21485
|
-
|
21486
|
-
|
21487
|
-
z-index: 2;
|
21745
|
+
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
21746
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
21488
21747
|
}
|
21489
|
-
|
21490
|
-
|
21491
|
-
background: rgba(var(--v-theme-surface));
|
21492
|
-
color: rgba(var(--v-theme-on-surface));
|
21748
|
+
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
21749
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
21493
21750
|
}
|
21494
|
-
|
21495
|
-
|
21751
|
+
@supports not selector(:focus-visible) {
|
21752
|
+
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
21753
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
21754
|
+
}
|
21496
21755
|
}
|
21497
|
-
|
21498
|
-
|
21499
|
-
opacity: var(--v-disabled-opacity);
|
21756
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
21757
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
21500
21758
|
}
|
21501
|
-
|
21502
|
-
|
21503
|
-
|
21759
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
21760
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
21761
|
+
}
|
21762
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
21763
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
21764
|
+
}
|
21765
|
+
@supports not selector(:focus-visible) {
|
21766
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
21767
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
21768
|
+
}
|
21504
21769
|
}
|
21505
21770
|
|
21506
|
-
.v-
|
21507
|
-
|
21508
|
-
|
21771
|
+
.v-expansion-panel-title__overlay {
|
21772
|
+
position: absolute;
|
21773
|
+
top: 0;
|
21774
|
+
left: 0;
|
21775
|
+
width: 100%;
|
21776
|
+
height: 100%;
|
21777
|
+
background-color: currentColor;
|
21778
|
+
border-radius: inherit;
|
21779
|
+
opacity: 0;
|
21509
21780
|
}
|
21510
21781
|
|
21511
|
-
.v-
|
21782
|
+
.v-expansion-panel-title__icon {
|
21512
21783
|
display: inline-flex;
|
21513
|
-
|
21514
|
-
|
21515
|
-
|
21516
|
-
|
21517
|
-
|
21518
|
-
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
21519
|
-
min-width: 20px;
|
21520
|
-
min-height: 20px;
|
21521
|
-
width: 20px;
|
21522
|
-
height: 20px;
|
21784
|
+
margin-bottom: -4px;
|
21785
|
+
margin-top: -4px;
|
21786
|
+
-webkit-user-select: none;
|
21787
|
+
user-select: none;
|
21788
|
+
margin-inline-start: auto;
|
21523
21789
|
}
|
21524
21790
|
|
21525
|
-
.v-
|
21526
|
-
|
21527
|
-
height: auto !important;
|
21528
|
-
padding: 0 !important;
|
21791
|
+
.v-expansion-panel-text {
|
21792
|
+
display: flex;
|
21529
21793
|
}
|
21530
|
-
|
21531
|
-
|
21532
|
-
|
21794
|
+
.v-expansion-panel-text__wrapper {
|
21795
|
+
padding: 8px 24px 16px;
|
21796
|
+
flex: 1 1 auto;
|
21797
|
+
max-width: 100%;
|
21533
21798
|
}
|
21534
21799
|
|
21535
|
-
.v-
|
21536
|
-
|
21537
|
-
|
21800
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
21801
|
+
margin-top: 0;
|
21802
|
+
}
|
21803
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
21804
|
+
opacity: 1;
|
21538
21805
|
}
|
21539
21806
|
|
21540
|
-
.v-
|
21541
|
-
|
21542
|
-
justify-content: center;
|
21807
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel {
|
21808
|
+
max-width: calc(100% - 32px);
|
21543
21809
|
}
|
21544
|
-
.v-
|
21545
|
-
|
21546
|
-
justify-content: end;
|
21810
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel--active {
|
21811
|
+
max-width: calc(100% + 16px);
|
21547
21812
|
}
|
21548
|
-
|
21549
|
-
|
21550
|
-
|
21551
|
-
display: grid;
|
21552
|
-
grid-template-columns: repeat(2, 1fr);
|
21553
|
-
min-height: var(--v-table-row-height);
|
21813
|
+
|
21814
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel {
|
21815
|
+
max-width: 100%;
|
21554
21816
|
}
|
21555
|
-
.v-
|
21556
|
-
|
21817
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
21818
|
+
max-width: calc(100% - 32px);
|
21557
21819
|
}
|
21558
21820
|
|
21559
|
-
.v-
|
21560
|
-
|
21561
|
-
text-align: left;
|
21821
|
+
.v-expansion-panels--flat > .v-expansion-panel::after {
|
21822
|
+
border-top: none;
|
21562
21823
|
}
|
21563
|
-
|
21564
|
-
|
21565
|
-
text-align: right;
|
21824
|
+
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
21825
|
+
display: none;
|
21566
21826
|
}
|
21567
21827
|
|
21568
|
-
.v-
|
21569
|
-
|
21828
|
+
.v-expansion-panels--tile {
|
21829
|
+
border-radius: 0;
|
21570
21830
|
}
|
21571
|
-
.v-
|
21572
|
-
|
21831
|
+
.v-expansion-panels--tile > .v-expansion-panel {
|
21832
|
+
border-radius: 0;
|
21573
21833
|
}.v-dialog {
|
21574
21834
|
align-items: center;
|
21575
21835
|
justify-content: center;
|
@@ -21713,72 +21973,22 @@ html.overflow-y-hidden {
|
|
21713
21973
|
font-weight: 400;
|
21714
21974
|
line-height: 1.425;
|
21715
21975
|
padding: 0 16px;
|
21716
|
-
text-align: center;
|
21717
|
-
}
|
21718
|
-
|
21719
|
-
.v-empty-state__content {
|
21720
|
-
padding: 24px 0;
|
21721
|
-
}
|
21722
|
-
|
21723
|
-
.v-empty-state__actions {
|
21724
|
-
display: flex;
|
21725
|
-
gap: 8px;
|
21726
|
-
padding: 16px;
|
21727
|
-
}
|
21728
|
-
|
21729
|
-
.v-empty-state__action-btn.v-btn {
|
21730
|
-
background-color: initial;
|
21731
|
-
color: initial;
|
21732
|
-
}.v-divider {
|
21733
|
-
display: block;
|
21734
|
-
flex: 1 1 100%;
|
21735
|
-
height: 0px;
|
21736
|
-
max-height: 0px;
|
21737
|
-
opacity: var(--v-border-opacity);
|
21738
|
-
transition: inherit;
|
21739
|
-
border-style: solid;
|
21740
|
-
border-width: thin 0 0 0;
|
21741
|
-
}
|
21742
|
-
.v-divider--vertical {
|
21743
|
-
align-self: stretch;
|
21744
|
-
border-width: 0 thin 0 0;
|
21745
|
-
display: inline-flex;
|
21746
|
-
height: auto;
|
21747
|
-
margin-left: -1px;
|
21748
|
-
max-height: 100%;
|
21749
|
-
max-width: 0px;
|
21750
|
-
vertical-align: text-bottom;
|
21751
|
-
width: 0px;
|
21752
|
-
}
|
21753
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
21754
|
-
max-width: calc(100% - 72px);
|
21755
|
-
margin-inline-start: 72px;
|
21756
|
-
}
|
21757
|
-
.v-divider--inset.v-divider--vertical {
|
21758
|
-
margin-bottom: 8px;
|
21759
|
-
margin-top: 8px;
|
21760
|
-
max-height: calc(100% - 16px);
|
21761
|
-
}
|
21762
|
-
|
21763
|
-
.v-divider__content {
|
21764
|
-
padding: 0 16px;
|
21765
|
-
text-wrap: nowrap;
|
21976
|
+
text-align: center;
|
21766
21977
|
}
|
21767
|
-
|
21768
|
-
|
21978
|
+
|
21979
|
+
.v-empty-state__content {
|
21980
|
+
padding: 24px 0;
|
21769
21981
|
}
|
21770
21982
|
|
21771
|
-
.v-
|
21983
|
+
.v-empty-state__actions {
|
21772
21984
|
display: flex;
|
21773
|
-
|
21774
|
-
|
21775
|
-
}
|
21776
|
-
.v-divider__wrapper--vertical {
|
21777
|
-
flex-direction: column;
|
21778
|
-
height: 100%;
|
21985
|
+
gap: 8px;
|
21986
|
+
padding: 16px;
|
21779
21987
|
}
|
21780
|
-
|
21781
|
-
|
21988
|
+
|
21989
|
+
.v-empty-state__action-btn.v-btn {
|
21990
|
+
background-color: initial;
|
21991
|
+
color: initial;
|
21782
21992
|
}/* region INPUT */
|
21783
21993
|
.v-field {
|
21784
21994
|
--v-theme-overlay-multiplier: 1;
|
@@ -22257,310 +22467,100 @@ textarea.v-field__input::placeholder {
|
|
22257
22467
|
left: 0;
|
22258
22468
|
position: absolute;
|
22259
22469
|
right: 0;
|
22260
|
-
width: 100%;
|
22261
|
-
border-top-left-radius: 0;
|
22262
|
-
border-top-right-radius: 0;
|
22263
|
-
border-bottom-left-radius: inherit;
|
22264
|
-
border-bottom-right-radius: inherit;
|
22265
|
-
overflow: hidden;
|
22266
|
-
}
|
22267
|
-
.v-field--variant-outlined .v-field__loader {
|
22268
|
-
top: calc(100% - 3px);
|
22269
|
-
width: calc(100% - 1px * 2);
|
22270
|
-
left: 1px;
|
22271
|
-
}
|
22272
|
-
|
22273
|
-
/* endregion */
|
22274
|
-
/* region OVERLAY */
|
22275
|
-
.v-field__overlay {
|
22276
|
-
border-radius: inherit;
|
22277
|
-
pointer-events: none;
|
22278
|
-
position: absolute;
|
22279
|
-
top: 0;
|
22280
|
-
left: 0;
|
22281
|
-
width: 100%;
|
22282
|
-
height: 100%;
|
22283
|
-
}
|
22284
|
-
|
22285
|
-
.v-field--variant-filled .v-field__overlay {
|
22286
|
-
background-color: currentColor;
|
22287
|
-
opacity: 0.04;
|
22288
|
-
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
22289
|
-
}
|
22290
|
-
.v-field--variant-filled.v-field--has-background .v-field__overlay {
|
22291
|
-
opacity: 0;
|
22292
|
-
}
|
22293
|
-
@media (hover: hover) {
|
22294
|
-
.v-field--variant-filled:hover .v-field__overlay {
|
22295
|
-
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22296
|
-
}
|
22297
|
-
}
|
22298
|
-
.v-field--variant-filled.v-field--focused .v-field__overlay {
|
22299
|
-
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22300
|
-
}
|
22301
|
-
|
22302
|
-
.v-field--variant-solo-filled .v-field__overlay {
|
22303
|
-
background-color: currentColor;
|
22304
|
-
opacity: 0.04;
|
22305
|
-
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
22306
|
-
}
|
22307
|
-
@media (hover: hover) {
|
22308
|
-
.v-field--variant-solo-filled:hover .v-field__overlay {
|
22309
|
-
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22310
|
-
}
|
22311
|
-
}
|
22312
|
-
.v-field--variant-solo-filled.v-field--focused .v-field__overlay {
|
22313
|
-
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22314
|
-
}
|
22315
|
-
|
22316
|
-
.v-field--variant-solo-inverted .v-field__overlay {
|
22317
|
-
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
22318
|
-
}
|
22319
|
-
.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
|
22320
|
-
opacity: 0;
|
22321
|
-
}
|
22322
|
-
@media (hover: hover) {
|
22323
|
-
.v-field--variant-solo-inverted:hover .v-field__overlay {
|
22324
|
-
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22325
|
-
}
|
22326
|
-
}
|
22327
|
-
.v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
|
22328
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
22329
|
-
opacity: 1;
|
22330
|
-
}
|
22331
|
-
|
22332
|
-
/* endregion */
|
22333
|
-
/* region MODIFIERS */
|
22334
|
-
.v-field--reverse .v-field__field,
|
22335
|
-
.v-field--reverse .v-field__input,
|
22336
|
-
.v-field--reverse .v-field__outline {
|
22337
|
-
flex-direction: row-reverse;
|
22338
|
-
}
|
22339
|
-
.v-field--reverse .v-field__input, .v-field--reverse input {
|
22340
|
-
text-align: end;
|
22341
|
-
}
|
22342
|
-
|
22343
|
-
.v-input--disabled .v-field--variant-filled .v-field__outline::before,
|
22344
|
-
.v-input--disabled .v-field--variant-underlined .v-field__outline::before {
|
22345
|
-
border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
|
22346
|
-
}
|
22347
|
-
|
22348
|
-
.v-field--loading .v-field__outline::after,
|
22349
|
-
.v-field--loading .v-field__outline::before {
|
22350
|
-
opacity: 0;
|
22351
|
-
}
|
22352
|
-
|
22353
|
-
/* endregion */.v-expansion-panel {
|
22354
|
-
background-color: rgb(var(--v-theme-surface));
|
22355
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22356
|
-
}
|
22357
|
-
.v-expansion-panel:not(:first-child)::after {
|
22358
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22359
|
-
}
|
22360
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
22361
|
-
color: rgba(var(--v-theme-on-surface), 0.26);
|
22362
|
-
}
|
22363
|
-
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
22364
|
-
opacity: 0.4615384615;
|
22365
|
-
}
|
22366
|
-
|
22367
|
-
.v-expansion-panels {
|
22368
|
-
display: flex;
|
22369
|
-
flex-wrap: wrap;
|
22370
|
-
justify-content: center;
|
22371
|
-
list-style-type: none;
|
22372
|
-
padding: 0;
|
22373
|
-
width: 100%;
|
22374
|
-
position: relative;
|
22375
|
-
z-index: 1;
|
22376
|
-
}
|
22377
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
22378
|
-
border-bottom-left-radius: 0 !important;
|
22379
|
-
border-bottom-right-radius: 0 !important;
|
22380
|
-
}
|
22381
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
22382
|
-
border-top-left-radius: 0 !important;
|
22383
|
-
border-top-right-radius: 0 !important;
|
22384
|
-
}
|
22385
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
22386
|
-
border-bottom-left-radius: 0 !important;
|
22387
|
-
border-bottom-right-radius: 0 !important;
|
22388
|
-
}
|
22389
|
-
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
22390
|
-
border-top-left-radius: 0 !important;
|
22391
|
-
border-top-right-radius: 0 !important;
|
22392
|
-
}
|
22393
|
-
.v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
|
22394
|
-
border-bottom-left-radius: 0 !important;
|
22395
|
-
border-bottom-right-radius: 0 !important;
|
22396
|
-
}
|
22397
|
-
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
|
22398
|
-
border-top-left-radius: 0 !important;
|
22399
|
-
border-top-right-radius: 0 !important;
|
22400
|
-
}
|
22401
|
-
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
|
22402
|
-
border-bottom-left-radius: initial;
|
22403
|
-
border-bottom-right-radius: initial;
|
22404
|
-
}
|
22405
|
-
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
22406
|
-
border-radius: 0 !important;
|
22407
|
-
}
|
22408
|
-
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
22409
|
-
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
22410
|
-
}
|
22411
|
-
|
22412
|
-
.v-expansion-panel {
|
22413
|
-
flex: 1 0 100%;
|
22414
|
-
max-width: 100%;
|
22415
|
-
position: relative;
|
22416
|
-
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
22417
|
-
transition-property: margin-top, border-radius, border, max-width;
|
22418
|
-
border-radius: 4px;
|
22419
|
-
}
|
22420
|
-
.v-expansion-panel:not(:first-child)::after {
|
22421
|
-
border-top-style: solid;
|
22422
|
-
border-top-width: thin;
|
22423
|
-
content: "";
|
22424
|
-
left: 0;
|
22425
|
-
position: absolute;
|
22426
|
-
right: 0;
|
22427
|
-
top: 0;
|
22428
|
-
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
22429
|
-
}
|
22430
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
22431
|
-
pointer-events: none;
|
22432
|
-
}
|
22433
|
-
.v-expansion-panel--active:not(:first-child),
|
22434
|
-
.v-expansion-panel--active + .v-expansion-panel {
|
22435
|
-
margin-top: 16px;
|
22436
|
-
}
|
22437
|
-
.v-expansion-panel--active:not(:first-child)::after,
|
22438
|
-
.v-expansion-panel--active + .v-expansion-panel::after {
|
22439
|
-
opacity: 0;
|
22440
|
-
}
|
22441
|
-
.v-expansion-panel--active > .v-expansion-panel-title {
|
22442
|
-
border-bottom-left-radius: 0;
|
22443
|
-
border-bottom-right-radius: 0;
|
22444
|
-
}
|
22445
|
-
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
22446
|
-
min-height: 64px;
|
22447
|
-
}
|
22448
|
-
|
22449
|
-
.v-expansion-panel__shadow {
|
22450
|
-
position: absolute;
|
22451
|
-
top: 0;
|
22452
|
-
left: 0;
|
22453
|
-
width: 100%;
|
22454
|
-
height: 100%;
|
22455
|
-
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));
|
22456
|
-
border-radius: inherit;
|
22457
|
-
z-index: -1;
|
22458
|
-
}
|
22459
|
-
|
22460
|
-
.v-expansion-panel-title {
|
22461
|
-
align-items: center;
|
22462
|
-
text-align: start;
|
22463
|
-
border-radius: inherit;
|
22464
|
-
display: flex;
|
22465
|
-
font-size: 0.9375rem;
|
22466
|
-
line-height: 1;
|
22467
|
-
min-height: 48px;
|
22468
|
-
outline: none;
|
22469
|
-
padding: 16px 24px;
|
22470
|
-
position: relative;
|
22471
|
-
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
22472
|
-
width: 100%;
|
22473
|
-
justify-content: space-between;
|
22474
|
-
}
|
22475
|
-
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
22476
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
22477
|
-
}
|
22478
|
-
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
22479
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
22480
|
-
}
|
22481
|
-
@supports not selector(:focus-visible) {
|
22482
|
-
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
22483
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
22484
|
-
}
|
22485
|
-
}
|
22486
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
22487
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
22488
|
-
}
|
22489
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
22490
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22491
|
-
}
|
22492
|
-
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
22493
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22470
|
+
width: 100%;
|
22471
|
+
border-top-left-radius: 0;
|
22472
|
+
border-top-right-radius: 0;
|
22473
|
+
border-bottom-left-radius: inherit;
|
22474
|
+
border-bottom-right-radius: inherit;
|
22475
|
+
overflow: hidden;
|
22494
22476
|
}
|
22495
|
-
|
22496
|
-
|
22497
|
-
|
22498
|
-
|
22477
|
+
.v-field--variant-outlined .v-field__loader {
|
22478
|
+
top: calc(100% - 3px);
|
22479
|
+
width: calc(100% - 1px * 2);
|
22480
|
+
left: 1px;
|
22499
22481
|
}
|
22500
22482
|
|
22501
|
-
|
22483
|
+
/* endregion */
|
22484
|
+
/* region OVERLAY */
|
22485
|
+
.v-field__overlay {
|
22486
|
+
border-radius: inherit;
|
22487
|
+
pointer-events: none;
|
22502
22488
|
position: absolute;
|
22503
22489
|
top: 0;
|
22504
22490
|
left: 0;
|
22505
22491
|
width: 100%;
|
22506
22492
|
height: 100%;
|
22493
|
+
}
|
22494
|
+
|
22495
|
+
.v-field--variant-filled .v-field__overlay {
|
22507
22496
|
background-color: currentColor;
|
22508
|
-
|
22497
|
+
opacity: 0.04;
|
22498
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
22499
|
+
}
|
22500
|
+
.v-field--variant-filled.v-field--has-background .v-field__overlay {
|
22509
22501
|
opacity: 0;
|
22510
22502
|
}
|
22511
|
-
|
22512
|
-
.v-
|
22513
|
-
|
22514
|
-
|
22515
|
-
|
22516
|
-
|
22517
|
-
|
22518
|
-
margin-inline-start: auto;
|
22503
|
+
@media (hover: hover) {
|
22504
|
+
.v-field--variant-filled:hover .v-field__overlay {
|
22505
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22506
|
+
}
|
22507
|
+
}
|
22508
|
+
.v-field--variant-filled.v-field--focused .v-field__overlay {
|
22509
|
+
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22519
22510
|
}
|
22520
22511
|
|
22521
|
-
.v-
|
22522
|
-
|
22512
|
+
.v-field--variant-solo-filled .v-field__overlay {
|
22513
|
+
background-color: currentColor;
|
22514
|
+
opacity: 0.04;
|
22515
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
22523
22516
|
}
|
22524
|
-
|
22525
|
-
|
22526
|
-
|
22527
|
-
|
22517
|
+
@media (hover: hover) {
|
22518
|
+
.v-field--variant-solo-filled:hover .v-field__overlay {
|
22519
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22520
|
+
}
|
22521
|
+
}
|
22522
|
+
.v-field--variant-solo-filled.v-field--focused .v-field__overlay {
|
22523
|
+
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
22528
22524
|
}
|
22529
22525
|
|
22530
|
-
.v-
|
22531
|
-
|
22526
|
+
.v-field--variant-solo-inverted .v-field__overlay {
|
22527
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
22532
22528
|
}
|
22533
|
-
.v-
|
22534
|
-
opacity:
|
22529
|
+
.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
|
22530
|
+
opacity: 0;
|
22535
22531
|
}
|
22536
|
-
|
22537
|
-
.v-
|
22538
|
-
|
22532
|
+
@media (hover: hover) {
|
22533
|
+
.v-field--variant-solo-inverted:hover .v-field__overlay {
|
22534
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
22535
|
+
}
|
22539
22536
|
}
|
22540
|
-
.v-
|
22541
|
-
|
22537
|
+
.v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
|
22538
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
22539
|
+
opacity: 1;
|
22542
22540
|
}
|
22543
22541
|
|
22544
|
-
|
22545
|
-
|
22542
|
+
/* endregion */
|
22543
|
+
/* region MODIFIERS */
|
22544
|
+
.v-field--reverse .v-field__field,
|
22545
|
+
.v-field--reverse .v-field__input,
|
22546
|
+
.v-field--reverse .v-field__outline {
|
22547
|
+
flex-direction: row-reverse;
|
22546
22548
|
}
|
22547
|
-
.v-
|
22548
|
-
|
22549
|
+
.v-field--reverse .v-field__input, .v-field--reverse input {
|
22550
|
+
text-align: end;
|
22549
22551
|
}
|
22550
22552
|
|
22551
|
-
.v-
|
22552
|
-
|
22553
|
-
|
22554
|
-
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
22555
|
-
display: none;
|
22553
|
+
.v-input--disabled .v-field--variant-filled .v-field__outline::before,
|
22554
|
+
.v-input--disabled .v-field--variant-underlined .v-field__outline::before {
|
22555
|
+
border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
|
22556
22556
|
}
|
22557
22557
|
|
22558
|
-
.v-
|
22559
|
-
|
22558
|
+
.v-field--loading .v-field__outline::after,
|
22559
|
+
.v-field--loading .v-field__outline::before {
|
22560
|
+
opacity: 0;
|
22560
22561
|
}
|
22561
|
-
|
22562
|
-
|
22563
|
-
}.v-fab {
|
22562
|
+
|
22563
|
+
/* endregion */.v-fab {
|
22564
22564
|
align-items: center;
|
22565
22565
|
display: inline-flex;
|
22566
22566
|
flex: 1 1 auto;
|
@@ -22739,76 +22739,6 @@ textarea.v-field__input::placeholder {
|
|
22739
22739
|
|
22740
22740
|
.v-icon--end {
|
22741
22741
|
margin-inline-start: 8px;
|
22742
|
-
}.v-img {
|
22743
|
-
--v-theme-overlay-multiplier: 3;
|
22744
|
-
z-index: 0;
|
22745
|
-
}
|
22746
|
-
.v-img.v-img--absolute {
|
22747
|
-
height: 100%;
|
22748
|
-
left: 0;
|
22749
|
-
overflow: hidden;
|
22750
|
-
position: absolute;
|
22751
|
-
top: 0;
|
22752
|
-
width: 100%;
|
22753
|
-
z-index: -1;
|
22754
|
-
}
|
22755
|
-
.v-img--booting .v-responsive__sizer {
|
22756
|
-
transition: none;
|
22757
|
-
}
|
22758
|
-
.v-img--rounded {
|
22759
|
-
border-radius: 4px;
|
22760
|
-
}
|
22761
|
-
|
22762
|
-
.v-img__img,
|
22763
|
-
.v-img__picture,
|
22764
|
-
.v-img__gradient,
|
22765
|
-
.v-img__placeholder,
|
22766
|
-
.v-img__error {
|
22767
|
-
z-index: -1;
|
22768
|
-
position: absolute;
|
22769
|
-
top: 0;
|
22770
|
-
left: 0;
|
22771
|
-
width: 100%;
|
22772
|
-
height: 100%;
|
22773
|
-
}
|
22774
|
-
|
22775
|
-
.v-img__img--preload {
|
22776
|
-
filter: blur(4px);
|
22777
|
-
}
|
22778
|
-
.v-img__img--contain {
|
22779
|
-
object-fit: contain;
|
22780
|
-
}
|
22781
|
-
.v-img__img--cover {
|
22782
|
-
object-fit: cover;
|
22783
|
-
}
|
22784
|
-
|
22785
|
-
.v-img__gradient {
|
22786
|
-
background-repeat: no-repeat;
|
22787
|
-
}.v-infinite-scroll--horizontal {
|
22788
|
-
display: flex;
|
22789
|
-
flex-direction: row;
|
22790
|
-
overflow-x: auto;
|
22791
|
-
}
|
22792
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22793
|
-
height: 100%;
|
22794
|
-
width: 1px;
|
22795
|
-
}
|
22796
|
-
|
22797
|
-
.v-infinite-scroll--vertical {
|
22798
|
-
display: flex;
|
22799
|
-
flex-direction: column;
|
22800
|
-
overflow-y: auto;
|
22801
|
-
}
|
22802
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22803
|
-
height: 1px;
|
22804
|
-
width: 100%;
|
22805
|
-
}
|
22806
|
-
|
22807
|
-
.v-infinite-scroll__side {
|
22808
|
-
align-items: center;
|
22809
|
-
display: flex;
|
22810
|
-
justify-content: center;
|
22811
|
-
padding: 8px;
|
22812
22742
|
}.v-input {
|
22813
22743
|
display: grid;
|
22814
22744
|
flex: 1 1 auto;
|
@@ -22929,28 +22859,98 @@ textarea.v-field__input::placeholder {
|
|
22929
22859
|
grid-area: control;
|
22930
22860
|
}
|
22931
22861
|
|
22932
|
-
.v-input--hide-spin-buttons input::-webkit-outer-spin-button,
|
22933
|
-
.v-input--hide-spin-buttons input::-webkit-inner-spin-button {
|
22934
|
-
-webkit-appearance: none;
|
22935
|
-
margin: 0;
|
22936
|
-
}
|
22937
|
-
.v-input--hide-spin-buttons input[type=number] {
|
22938
|
-
-moz-appearance: textfield;
|
22939
|
-
}
|
22940
|
-
.v-input--plain-underlined .v-input__prepend,
|
22941
|
-
.v-input--plain-underlined .v-input__append {
|
22942
|
-
align-items: flex-start;
|
22862
|
+
.v-input--hide-spin-buttons input::-webkit-outer-spin-button,
|
22863
|
+
.v-input--hide-spin-buttons input::-webkit-inner-spin-button {
|
22864
|
+
-webkit-appearance: none;
|
22865
|
+
margin: 0;
|
22866
|
+
}
|
22867
|
+
.v-input--hide-spin-buttons input[type=number] {
|
22868
|
+
-moz-appearance: textfield;
|
22869
|
+
}
|
22870
|
+
.v-input--plain-underlined .v-input__prepend,
|
22871
|
+
.v-input--plain-underlined .v-input__append {
|
22872
|
+
align-items: flex-start;
|
22873
|
+
}
|
22874
|
+
.v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
|
22875
|
+
padding-top: calc(var(--v-input-padding-top) + 4px);
|
22876
|
+
}
|
22877
|
+
|
22878
|
+
.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
|
22879
|
+
padding-top: calc(var(--v-input-padding-top) + 2px);
|
22880
|
+
}
|
22881
|
+
|
22882
|
+
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22883
|
+
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22884
|
+
}.v-infinite-scroll--horizontal {
|
22885
|
+
display: flex;
|
22886
|
+
flex-direction: row;
|
22887
|
+
overflow-x: auto;
|
22888
|
+
}
|
22889
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22890
|
+
height: 100%;
|
22891
|
+
width: 1px;
|
22892
|
+
}
|
22893
|
+
|
22894
|
+
.v-infinite-scroll--vertical {
|
22895
|
+
display: flex;
|
22896
|
+
flex-direction: column;
|
22897
|
+
overflow-y: auto;
|
22898
|
+
}
|
22899
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22900
|
+
height: 1px;
|
22901
|
+
width: 100%;
|
22902
|
+
}
|
22903
|
+
|
22904
|
+
.v-infinite-scroll__side {
|
22905
|
+
align-items: center;
|
22906
|
+
display: flex;
|
22907
|
+
justify-content: center;
|
22908
|
+
padding: 8px;
|
22909
|
+
}.v-img {
|
22910
|
+
--v-theme-overlay-multiplier: 3;
|
22911
|
+
z-index: 0;
|
22912
|
+
}
|
22913
|
+
.v-img.v-img--absolute {
|
22914
|
+
height: 100%;
|
22915
|
+
left: 0;
|
22916
|
+
overflow: hidden;
|
22917
|
+
position: absolute;
|
22918
|
+
top: 0;
|
22919
|
+
width: 100%;
|
22920
|
+
z-index: -1;
|
22921
|
+
}
|
22922
|
+
.v-img--booting .v-responsive__sizer {
|
22923
|
+
transition: none;
|
22924
|
+
}
|
22925
|
+
.v-img--rounded {
|
22926
|
+
border-radius: 4px;
|
22927
|
+
}
|
22928
|
+
|
22929
|
+
.v-img__img,
|
22930
|
+
.v-img__picture,
|
22931
|
+
.v-img__gradient,
|
22932
|
+
.v-img__placeholder,
|
22933
|
+
.v-img__error {
|
22934
|
+
z-index: -1;
|
22935
|
+
position: absolute;
|
22936
|
+
top: 0;
|
22937
|
+
left: 0;
|
22938
|
+
width: 100%;
|
22939
|
+
height: 100%;
|
22940
|
+
}
|
22941
|
+
|
22942
|
+
.v-img__img--preload {
|
22943
|
+
filter: blur(4px);
|
22943
22944
|
}
|
22944
|
-
.v-
|
22945
|
-
|
22945
|
+
.v-img__img--contain {
|
22946
|
+
object-fit: contain;
|
22946
22947
|
}
|
22947
|
-
|
22948
|
-
|
22949
|
-
padding-top: calc(var(--v-input-padding-top) + 2px);
|
22948
|
+
.v-img__img--cover {
|
22949
|
+
object-fit: cover;
|
22950
22950
|
}
|
22951
22951
|
|
22952
|
-
.v-
|
22953
|
-
|
22952
|
+
.v-img__gradient {
|
22953
|
+
background-repeat: no-repeat;
|
22954
22954
|
}.v-item-group {
|
22955
22955
|
flex: 0 1 auto;
|
22956
22956
|
max-width: 100%;
|
@@ -22986,34 +22986,24 @@ textarea.v-field__input::placeholder {
|
|
22986
22986
|
|
22987
22987
|
.v-layout-item--absolute {
|
22988
22988
|
position: absolute;
|
22989
|
-
}.v-
|
22990
|
-
|
22991
|
-
|
22992
|
-
|
22993
|
-
|
22994
|
-
|
22995
|
-
|
22996
|
-
|
22997
|
-
}
|
22998
|
-
.v-main__scroller {
|
22999
|
-
max-width: 100%;
|
22989
|
+
}.v-locale-provider {
|
22990
|
+
display: contents;
|
22991
|
+
}.v-messages {
|
22992
|
+
flex: 1 1 auto;
|
22993
|
+
font-size: 12px;
|
22994
|
+
min-height: 14px;
|
22995
|
+
min-width: 1px;
|
22996
|
+
opacity: var(--v-medium-emphasis-opacity);
|
23000
22997
|
position: relative;
|
23001
22998
|
}
|
23002
|
-
.v-
|
23003
|
-
|
23004
|
-
|
23005
|
-
|
23006
|
-
|
23007
|
-
|
23008
|
-
|
23009
|
-
|
23010
|
-
.v-main--scrollable > .v-main__scroller {
|
23011
|
-
flex: 1 1 auto;
|
23012
|
-
overflow-y: auto;
|
23013
|
-
--v-layout-left: 0px;
|
23014
|
-
--v-layout-right: 0px;
|
23015
|
-
--v-layout-top: 0px;
|
23016
|
-
--v-layout-bottom: 0px;
|
22999
|
+
.v-messages__message {
|
23000
|
+
line-height: 12px;
|
23001
|
+
word-break: break-word;
|
23002
|
+
overflow-wrap: break-word;
|
23003
|
+
word-wrap: break-word;
|
23004
|
+
-webkit-hyphens: auto;
|
23005
|
+
hyphens: auto;
|
23006
|
+
transition-duration: 150ms;
|
23017
23007
|
}.v-list {
|
23018
23008
|
overflow: auto;
|
23019
23009
|
padding: 8px 0;
|
@@ -23571,24 +23561,6 @@ textarea.v-field__input::placeholder {
|
|
23571
23561
|
}
|
23572
23562
|
.v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23573
23563
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23574
|
-
}.v-locale-provider {
|
23575
|
-
display: contents;
|
23576
|
-
}.v-messages {
|
23577
|
-
flex: 1 1 auto;
|
23578
|
-
font-size: 12px;
|
23579
|
-
min-height: 14px;
|
23580
|
-
min-width: 1px;
|
23581
|
-
opacity: var(--v-medium-emphasis-opacity);
|
23582
|
-
position: relative;
|
23583
|
-
}
|
23584
|
-
.v-messages__message {
|
23585
|
-
line-height: 12px;
|
23586
|
-
word-break: break-word;
|
23587
|
-
overflow-wrap: break-word;
|
23588
|
-
word-wrap: break-word;
|
23589
|
-
-webkit-hyphens: auto;
|
23590
|
-
hyphens: auto;
|
23591
|
-
transition-duration: 150ms;
|
23592
23564
|
}.v-menu > .v-overlay__content {
|
23593
23565
|
display: flex;
|
23594
23566
|
flex-direction: column;
|
@@ -23602,6 +23574,34 @@ textarea.v-field__input::placeholder {
|
|
23602
23574
|
overflow: auto;
|
23603
23575
|
height: 100%;
|
23604
23576
|
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));
|
23577
|
+
}.v-main {
|
23578
|
+
flex: 1 0 auto;
|
23579
|
+
max-width: 100%;
|
23580
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23581
|
+
padding-left: var(--v-layout-left);
|
23582
|
+
padding-right: var(--v-layout-right);
|
23583
|
+
padding-top: var(--v-layout-top);
|
23584
|
+
padding-bottom: var(--v-layout-bottom);
|
23585
|
+
}
|
23586
|
+
.v-main__scroller {
|
23587
|
+
max-width: 100%;
|
23588
|
+
position: relative;
|
23589
|
+
}
|
23590
|
+
.v-main--scrollable {
|
23591
|
+
display: flex;
|
23592
|
+
position: absolute;
|
23593
|
+
top: 0;
|
23594
|
+
left: 0;
|
23595
|
+
width: 100%;
|
23596
|
+
height: 100%;
|
23597
|
+
}
|
23598
|
+
.v-main--scrollable > .v-main__scroller {
|
23599
|
+
flex: 1 1 auto;
|
23600
|
+
overflow-y: auto;
|
23601
|
+
--v-layout-left: 0px;
|
23602
|
+
--v-layout-right: 0px;
|
23603
|
+
--v-layout-top: 0px;
|
23604
|
+
--v-layout-bottom: 0px;
|
23605
23605
|
}.v-navigation-drawer {
|
23606
23606
|
-webkit-overflow-scrolling: touch;
|
23607
23607
|
background: rgb(var(--v-theme-surface));
|
@@ -23704,76 +23704,6 @@ textarea.v-field__input::placeholder {
|
|
23704
23704
|
.v-navigation-drawer__append {
|
23705
23705
|
flex: none;
|
23706
23706
|
overflow: hidden;
|
23707
|
-
}.v-otp-input {
|
23708
|
-
border-radius: 4px;
|
23709
|
-
align-items: center;
|
23710
|
-
display: flex;
|
23711
|
-
justify-content: center;
|
23712
|
-
padding: 0.5rem 0;
|
23713
|
-
position: relative;
|
23714
|
-
}
|
23715
|
-
.v-otp-input .v-field {
|
23716
|
-
height: 100%;
|
23717
|
-
}
|
23718
|
-
|
23719
|
-
.v-otp-input__divider {
|
23720
|
-
margin: 0 8px;
|
23721
|
-
}
|
23722
|
-
|
23723
|
-
.v-otp-input__content {
|
23724
|
-
align-items: center;
|
23725
|
-
display: flex;
|
23726
|
-
gap: 0.5rem;
|
23727
|
-
height: 64px;
|
23728
|
-
padding: 0.5rem;
|
23729
|
-
justify-content: center;
|
23730
|
-
max-width: 320px;
|
23731
|
-
position: relative;
|
23732
|
-
border-radius: inherit;
|
23733
|
-
}
|
23734
|
-
.v-otp-input--divided .v-otp-input__content {
|
23735
|
-
max-width: 360px;
|
23736
|
-
}
|
23737
|
-
|
23738
|
-
.v-otp-input__field {
|
23739
|
-
color: inherit;
|
23740
|
-
font-size: 1.25rem;
|
23741
|
-
height: 100%;
|
23742
|
-
outline: none;
|
23743
|
-
text-align: center;
|
23744
|
-
width: 100%;
|
23745
|
-
}
|
23746
|
-
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
23747
|
-
-webkit-appearance: none;
|
23748
|
-
margin: 0;
|
23749
|
-
}
|
23750
|
-
.v-otp-input__field[type=number] {
|
23751
|
-
-moz-appearance: textfield;
|
23752
|
-
}
|
23753
|
-
|
23754
|
-
.v-otp-input__loader {
|
23755
|
-
align-items: center;
|
23756
|
-
display: flex;
|
23757
|
-
height: 100%;
|
23758
|
-
justify-content: center;
|
23759
|
-
width: 100%;
|
23760
|
-
}
|
23761
|
-
.v-otp-input__loader .v-progress-linear {
|
23762
|
-
position: absolute;
|
23763
|
-
}.v-parallax {
|
23764
|
-
position: relative;
|
23765
|
-
overflow: hidden;
|
23766
|
-
}
|
23767
|
-
.v-parallax--active > .v-img__img {
|
23768
|
-
will-change: transform;
|
23769
|
-
}.v-pagination__list {
|
23770
|
-
display: inline-flex;
|
23771
|
-
list-style-type: none;
|
23772
|
-
justify-content: center;
|
23773
|
-
width: 100%;
|
23774
|
-
}
|
23775
|
-
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23776
|
-
margin: 0.3rem;
|
23777
23707
|
}.v-overlay-container {
|
23778
23708
|
contain: layout;
|
23779
23709
|
left: 0;
|
@@ -23837,63 +23767,76 @@ html.v-overlay-scroll-blocked {
|
|
23837
23767
|
|
23838
23768
|
.v-overlay--scroll-blocked {
|
23839
23769
|
padding-inline-end: var(--v-scrollbar-offset);
|
23840
|
-
}.v-
|
23841
|
-
cursor: default;
|
23842
|
-
padding: 0;
|
23843
|
-
width: 100%;
|
23844
|
-
display: none;
|
23845
|
-
}
|
23846
|
-
.v-slider > .v-input__append,
|
23847
|
-
.v-slider > .v-input__prepend {
|
23848
|
-
padding: 0;
|
23849
|
-
}
|
23850
|
-
|
23851
|
-
.v-slider__container {
|
23770
|
+
}.v-parallax {
|
23852
23771
|
position: relative;
|
23853
|
-
|
23854
|
-
|
23855
|
-
|
23772
|
+
overflow: hidden;
|
23773
|
+
}
|
23774
|
+
.v-parallax--active > .v-img__img {
|
23775
|
+
will-change: transform;
|
23776
|
+
}.v-otp-input {
|
23777
|
+
border-radius: 4px;
|
23778
|
+
align-items: center;
|
23856
23779
|
display: flex;
|
23857
23780
|
justify-content: center;
|
23858
|
-
|
23859
|
-
|
23781
|
+
padding: 0.5rem 0;
|
23782
|
+
position: relative;
|
23860
23783
|
}
|
23861
|
-
.v-input
|
23862
|
-
|
23784
|
+
.v-otp-input .v-field {
|
23785
|
+
height: 100%;
|
23863
23786
|
}
|
23864
|
-
|
23865
|
-
|
23787
|
+
|
23788
|
+
.v-otp-input__divider {
|
23789
|
+
margin: 0 8px;
|
23866
23790
|
}
|
23867
23791
|
|
23868
|
-
.v-
|
23792
|
+
.v-otp-input__content {
|
23869
23793
|
align-items: center;
|
23870
|
-
margin-inline: 8px 8px;
|
23871
|
-
}
|
23872
|
-
.v-slider.v-input--horizontal > .v-input__control {
|
23873
|
-
min-height: 32px;
|
23874
23794
|
display: flex;
|
23875
|
-
|
23795
|
+
gap: 0.5rem;
|
23796
|
+
height: 64px;
|
23797
|
+
padding: 0.5rem;
|
23798
|
+
justify-content: center;
|
23799
|
+
max-width: 320px;
|
23800
|
+
position: relative;
|
23801
|
+
border-radius: inherit;
|
23802
|
+
}
|
23803
|
+
.v-otp-input--divided .v-otp-input__content {
|
23804
|
+
max-width: 360px;
|
23876
23805
|
}
|
23877
23806
|
|
23878
|
-
.v-
|
23879
|
-
|
23880
|
-
|
23881
|
-
|
23807
|
+
.v-otp-input__field {
|
23808
|
+
color: inherit;
|
23809
|
+
font-size: 1.25rem;
|
23810
|
+
height: 100%;
|
23811
|
+
outline: none;
|
23812
|
+
text-align: center;
|
23813
|
+
width: 100%;
|
23882
23814
|
}
|
23883
|
-
.v-
|
23884
|
-
|
23815
|
+
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
23816
|
+
-webkit-appearance: none;
|
23817
|
+
margin: 0;
|
23818
|
+
}
|
23819
|
+
.v-otp-input__field[type=number] {
|
23820
|
+
-moz-appearance: textfield;
|
23885
23821
|
}
|
23886
23822
|
|
23887
|
-
.v-
|
23888
|
-
|
23823
|
+
.v-otp-input__loader {
|
23824
|
+
align-items: center;
|
23825
|
+
display: flex;
|
23826
|
+
height: 100%;
|
23827
|
+
justify-content: center;
|
23828
|
+
width: 100%;
|
23889
23829
|
}
|
23890
|
-
|
23891
|
-
|
23892
|
-
|
23830
|
+
.v-otp-input__loader .v-progress-linear {
|
23831
|
+
position: absolute;
|
23832
|
+
}.v-pagination__list {
|
23833
|
+
display: inline-flex;
|
23834
|
+
list-style-type: none;
|
23835
|
+
justify-content: center;
|
23836
|
+
width: 100%;
|
23893
23837
|
}
|
23894
|
-
|
23895
|
-
.
|
23896
|
-
margin-inline-end: 12px;
|
23838
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23839
|
+
margin: 0.3rem;
|
23897
23840
|
}.v-progress-circular {
|
23898
23841
|
align-items: center;
|
23899
23842
|
display: inline-flex;
|
@@ -23996,120 +23939,6 @@ html.v-overlay-scroll-blocked {
|
|
23996
23939
|
100% {
|
23997
23940
|
transform: rotate(270deg);
|
23998
23941
|
}
|
23999
|
-
}.v-rating {
|
24000
|
-
max-width: 100%;
|
24001
|
-
display: inline-flex;
|
24002
|
-
white-space: nowrap;
|
24003
|
-
}
|
24004
|
-
.v-rating--readonly {
|
24005
|
-
pointer-events: none;
|
24006
|
-
}
|
24007
|
-
|
24008
|
-
.v-rating__wrapper {
|
24009
|
-
align-items: center;
|
24010
|
-
display: inline-flex;
|
24011
|
-
flex-direction: column;
|
24012
|
-
}
|
24013
|
-
.v-rating__wrapper--bottom {
|
24014
|
-
flex-direction: column-reverse;
|
24015
|
-
}
|
24016
|
-
|
24017
|
-
.v-rating__item {
|
24018
|
-
display: inline-flex;
|
24019
|
-
position: relative;
|
24020
|
-
}
|
24021
|
-
.v-rating__item label {
|
24022
|
-
cursor: pointer;
|
24023
|
-
}
|
24024
|
-
.v-rating__item .v-btn--variant-plain {
|
24025
|
-
opacity: 1;
|
24026
|
-
}
|
24027
|
-
.v-rating__item .v-btn {
|
24028
|
-
transition-property: transform;
|
24029
|
-
}
|
24030
|
-
.v-rating__item .v-btn .v-icon {
|
24031
|
-
transition: inherit;
|
24032
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24033
|
-
}
|
24034
|
-
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
24035
|
-
transform: scale(1.25);
|
24036
|
-
}
|
24037
|
-
.v-rating__item--half {
|
24038
|
-
overflow: hidden;
|
24039
|
-
position: absolute;
|
24040
|
-
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24041
|
-
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24042
|
-
z-index: 1;
|
24043
|
-
}
|
24044
|
-
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24045
|
-
opacity: 0;
|
24046
|
-
}
|
24047
|
-
|
24048
|
-
.v-rating__hidden {
|
24049
|
-
height: 0;
|
24050
|
-
opacity: 0;
|
24051
|
-
position: absolute;
|
24052
|
-
width: 0;
|
24053
|
-
}.v-select .v-field .v-text-field__prefix,
|
24054
|
-
.v-select .v-field .v-text-field__suffix,
|
24055
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24056
|
-
cursor: pointer;
|
24057
|
-
}
|
24058
|
-
.v-select .v-field .v-field__input > input {
|
24059
|
-
align-self: flex-start;
|
24060
|
-
opacity: 1;
|
24061
|
-
flex: 0 0;
|
24062
|
-
position: absolute;
|
24063
|
-
width: 100%;
|
24064
|
-
transition: none;
|
24065
|
-
pointer-events: none;
|
24066
|
-
caret-color: transparent;
|
24067
|
-
}
|
24068
|
-
.v-select .v-field--dirty .v-select__selection {
|
24069
|
-
margin-inline-end: 2px;
|
24070
|
-
}
|
24071
|
-
.v-select .v-select__selection-text {
|
24072
|
-
overflow: hidden;
|
24073
|
-
text-overflow: ellipsis;
|
24074
|
-
white-space: nowrap;
|
24075
|
-
}
|
24076
|
-
.v-select__content {
|
24077
|
-
overflow: hidden;
|
24078
|
-
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));
|
24079
|
-
border-radius: 4px;
|
24080
|
-
}
|
24081
|
-
.v-select__selection {
|
24082
|
-
display: inline-flex;
|
24083
|
-
align-items: center;
|
24084
|
-
letter-spacing: inherit;
|
24085
|
-
line-height: inherit;
|
24086
|
-
max-width: 100%;
|
24087
|
-
}
|
24088
|
-
.v-select .v-select__selection:first-child {
|
24089
|
-
margin-inline-start: 0;
|
24090
|
-
}
|
24091
|
-
.v-select--selected .v-field .v-field__input > input {
|
24092
|
-
opacity: 0;
|
24093
|
-
}
|
24094
|
-
.v-select__menu-icon {
|
24095
|
-
margin-inline-start: 4px;
|
24096
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24097
|
-
}
|
24098
|
-
.v-select--active-menu .v-select__menu-icon {
|
24099
|
-
opacity: var(--v-high-emphasis-opacity);
|
24100
|
-
transform: rotate(180deg);
|
24101
|
-
}.v-radio-group > .v-input__control {
|
24102
|
-
flex-direction: column;
|
24103
|
-
}
|
24104
|
-
.v-radio-group > .v-input__control > .v-label {
|
24105
|
-
margin-inline-start: 16px;
|
24106
|
-
}
|
24107
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24108
|
-
padding-inline-start: 6px;
|
24109
|
-
margin-top: 8px;
|
24110
|
-
}
|
24111
|
-
.v-radio-group .v-input__details {
|
24112
|
-
padding-inline: 16px;
|
24113
23942
|
}.v-progress-linear {
|
24114
23943
|
background: transparent;
|
24115
23944
|
overflow: hidden;
|
@@ -24338,6 +24167,129 @@ html.v-overlay-scroll-blocked {
|
|
24338
24167
|
0% {
|
24339
24168
|
background-position-x: var(--v-progress-linear-height);
|
24340
24169
|
}
|
24170
|
+
}.v-slider .v-slider__container input {
|
24171
|
+
cursor: default;
|
24172
|
+
padding: 0;
|
24173
|
+
width: 100%;
|
24174
|
+
display: none;
|
24175
|
+
}
|
24176
|
+
.v-slider > .v-input__append,
|
24177
|
+
.v-slider > .v-input__prepend {
|
24178
|
+
padding: 0;
|
24179
|
+
}
|
24180
|
+
|
24181
|
+
.v-slider__container {
|
24182
|
+
position: relative;
|
24183
|
+
min-height: inherit;
|
24184
|
+
width: 100%;
|
24185
|
+
height: 100%;
|
24186
|
+
display: flex;
|
24187
|
+
justify-content: center;
|
24188
|
+
align-items: center;
|
24189
|
+
cursor: pointer;
|
24190
|
+
}
|
24191
|
+
.v-input--disabled .v-slider__container {
|
24192
|
+
opacity: var(--v-disabled-opacity);
|
24193
|
+
}
|
24194
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
24195
|
+
color: rgb(var(--v-theme-error));
|
24196
|
+
}
|
24197
|
+
|
24198
|
+
.v-slider.v-input--horizontal {
|
24199
|
+
align-items: center;
|
24200
|
+
margin-inline: 8px 8px;
|
24201
|
+
}
|
24202
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
24203
|
+
min-height: 32px;
|
24204
|
+
display: flex;
|
24205
|
+
align-items: center;
|
24206
|
+
}
|
24207
|
+
|
24208
|
+
.v-slider.v-input--vertical {
|
24209
|
+
justify-content: center;
|
24210
|
+
margin-top: 12px;
|
24211
|
+
margin-bottom: 12px;
|
24212
|
+
}
|
24213
|
+
.v-slider.v-input--vertical > .v-input__control {
|
24214
|
+
min-height: 300px;
|
24215
|
+
}
|
24216
|
+
|
24217
|
+
.v-slider.v-input--disabled {
|
24218
|
+
pointer-events: none;
|
24219
|
+
}
|
24220
|
+
|
24221
|
+
.v-slider--has-labels > .v-input__control {
|
24222
|
+
margin-bottom: 4px;
|
24223
|
+
}
|
24224
|
+
|
24225
|
+
.v-slider__label {
|
24226
|
+
margin-inline-end: 12px;
|
24227
|
+
}.v-radio-group > .v-input__control {
|
24228
|
+
flex-direction: column;
|
24229
|
+
}
|
24230
|
+
.v-radio-group > .v-input__control > .v-label {
|
24231
|
+
margin-inline-start: 16px;
|
24232
|
+
}
|
24233
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24234
|
+
padding-inline-start: 6px;
|
24235
|
+
margin-top: 8px;
|
24236
|
+
}
|
24237
|
+
.v-radio-group .v-input__details {
|
24238
|
+
padding-inline: 16px;
|
24239
|
+
}.v-rating {
|
24240
|
+
max-width: 100%;
|
24241
|
+
display: inline-flex;
|
24242
|
+
white-space: nowrap;
|
24243
|
+
}
|
24244
|
+
.v-rating--readonly {
|
24245
|
+
pointer-events: none;
|
24246
|
+
}
|
24247
|
+
|
24248
|
+
.v-rating__wrapper {
|
24249
|
+
align-items: center;
|
24250
|
+
display: inline-flex;
|
24251
|
+
flex-direction: column;
|
24252
|
+
}
|
24253
|
+
.v-rating__wrapper--bottom {
|
24254
|
+
flex-direction: column-reverse;
|
24255
|
+
}
|
24256
|
+
|
24257
|
+
.v-rating__item {
|
24258
|
+
display: inline-flex;
|
24259
|
+
position: relative;
|
24260
|
+
}
|
24261
|
+
.v-rating__item label {
|
24262
|
+
cursor: pointer;
|
24263
|
+
}
|
24264
|
+
.v-rating__item .v-btn--variant-plain {
|
24265
|
+
opacity: 1;
|
24266
|
+
}
|
24267
|
+
.v-rating__item .v-btn {
|
24268
|
+
transition-property: transform;
|
24269
|
+
}
|
24270
|
+
.v-rating__item .v-btn .v-icon {
|
24271
|
+
transition: inherit;
|
24272
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24273
|
+
}
|
24274
|
+
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
24275
|
+
transform: scale(1.25);
|
24276
|
+
}
|
24277
|
+
.v-rating__item--half {
|
24278
|
+
overflow: hidden;
|
24279
|
+
position: absolute;
|
24280
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24281
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24282
|
+
z-index: 1;
|
24283
|
+
}
|
24284
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24285
|
+
opacity: 0;
|
24286
|
+
}
|
24287
|
+
|
24288
|
+
.v-rating__hidden {
|
24289
|
+
height: 0;
|
24290
|
+
opacity: 0;
|
24291
|
+
position: absolute;
|
24292
|
+
width: 0;
|
24341
24293
|
}.v-responsive {
|
24342
24294
|
display: flex;
|
24343
24295
|
flex: 1 0 auto;
|
@@ -24364,42 +24316,6 @@ html.v-overlay-scroll-blocked {
|
|
24364
24316
|
flex: 1 0 0px;
|
24365
24317
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24366
24318
|
pointer-events: none;
|
24367
|
-
}.v-selection-control-group {
|
24368
|
-
grid-area: control;
|
24369
|
-
display: flex;
|
24370
|
-
flex-direction: column;
|
24371
|
-
}
|
24372
|
-
.v-selection-control-group--inline {
|
24373
|
-
flex-direction: row;
|
24374
|
-
flex-wrap: wrap;
|
24375
|
-
}.v-sheet {
|
24376
|
-
display: block;
|
24377
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24378
|
-
border-style: solid;
|
24379
|
-
border-width: 0;
|
24380
|
-
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));
|
24381
|
-
border-radius: 0;
|
24382
|
-
background: rgb(var(--v-theme-surface));
|
24383
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24384
|
-
}
|
24385
|
-
.v-sheet--border {
|
24386
|
-
border-width: thin;
|
24387
|
-
box-shadow: none;
|
24388
|
-
}
|
24389
|
-
.v-sheet--absolute {
|
24390
|
-
position: absolute;
|
24391
|
-
}
|
24392
|
-
.v-sheet--fixed {
|
24393
|
-
position: fixed;
|
24394
|
-
}
|
24395
|
-
.v-sheet--relative {
|
24396
|
-
position: relative;
|
24397
|
-
}
|
24398
|
-
.v-sheet--sticky {
|
24399
|
-
position: sticky;
|
24400
|
-
}
|
24401
|
-
.v-sheet--rounded {
|
24402
|
-
border-radius: 4px;
|
24403
24319
|
}.v-selection-control {
|
24404
24320
|
align-items: center;
|
24405
24321
|
contain: layout;
|
@@ -24501,6 +24417,42 @@ html.v-overlay-scroll-blocked {
|
|
24501
24417
|
}
|
24502
24418
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24503
24419
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24420
|
+
}.v-sheet {
|
24421
|
+
display: block;
|
24422
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24423
|
+
border-style: solid;
|
24424
|
+
border-width: 0;
|
24425
|
+
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));
|
24426
|
+
border-radius: 0;
|
24427
|
+
background: rgb(var(--v-theme-surface));
|
24428
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24429
|
+
}
|
24430
|
+
.v-sheet--border {
|
24431
|
+
border-width: thin;
|
24432
|
+
box-shadow: none;
|
24433
|
+
}
|
24434
|
+
.v-sheet--absolute {
|
24435
|
+
position: absolute;
|
24436
|
+
}
|
24437
|
+
.v-sheet--fixed {
|
24438
|
+
position: fixed;
|
24439
|
+
}
|
24440
|
+
.v-sheet--relative {
|
24441
|
+
position: relative;
|
24442
|
+
}
|
24443
|
+
.v-sheet--sticky {
|
24444
|
+
position: sticky;
|
24445
|
+
}
|
24446
|
+
.v-sheet--rounded {
|
24447
|
+
border-radius: 4px;
|
24448
|
+
}.v-selection-control-group {
|
24449
|
+
grid-area: control;
|
24450
|
+
display: flex;
|
24451
|
+
flex-direction: column;
|
24452
|
+
}
|
24453
|
+
.v-selection-control-group--inline {
|
24454
|
+
flex-direction: row;
|
24455
|
+
flex-wrap: wrap;
|
24504
24456
|
}.v-slide-group {
|
24505
24457
|
display: flex;
|
24506
24458
|
overflow: hidden;
|
@@ -24556,6 +24508,54 @@ html.v-overlay-scroll-blocked {
|
|
24556
24508
|
.v-slide-group--vertical .v-slide-group__container {
|
24557
24509
|
overflow-x: hidden;
|
24558
24510
|
overflow-y: auto;
|
24511
|
+
}.v-select .v-field .v-text-field__prefix,
|
24512
|
+
.v-select .v-field .v-text-field__suffix,
|
24513
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24514
|
+
cursor: pointer;
|
24515
|
+
}
|
24516
|
+
.v-select .v-field .v-field__input > input {
|
24517
|
+
align-self: flex-start;
|
24518
|
+
opacity: 1;
|
24519
|
+
flex: 0 0;
|
24520
|
+
position: absolute;
|
24521
|
+
width: 100%;
|
24522
|
+
transition: none;
|
24523
|
+
pointer-events: none;
|
24524
|
+
caret-color: transparent;
|
24525
|
+
}
|
24526
|
+
.v-select .v-field--dirty .v-select__selection {
|
24527
|
+
margin-inline-end: 2px;
|
24528
|
+
}
|
24529
|
+
.v-select .v-select__selection-text {
|
24530
|
+
overflow: hidden;
|
24531
|
+
text-overflow: ellipsis;
|
24532
|
+
white-space: nowrap;
|
24533
|
+
}
|
24534
|
+
.v-select__content {
|
24535
|
+
overflow: hidden;
|
24536
|
+
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));
|
24537
|
+
border-radius: 4px;
|
24538
|
+
}
|
24539
|
+
.v-select__selection {
|
24540
|
+
display: inline-flex;
|
24541
|
+
align-items: center;
|
24542
|
+
letter-spacing: inherit;
|
24543
|
+
line-height: inherit;
|
24544
|
+
max-width: 100%;
|
24545
|
+
}
|
24546
|
+
.v-select .v-select__selection:first-child {
|
24547
|
+
margin-inline-start: 0;
|
24548
|
+
}
|
24549
|
+
.v-select--selected .v-field .v-field__input > input {
|
24550
|
+
opacity: 0;
|
24551
|
+
}
|
24552
|
+
.v-select__menu-icon {
|
24553
|
+
margin-inline-start: 4px;
|
24554
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24555
|
+
}
|
24556
|
+
.v-select--active-menu .v-select__menu-icon {
|
24557
|
+
opacity: var(--v-high-emphasis-opacity);
|
24558
|
+
transform: rotate(180deg);
|
24559
24559
|
}.v-skeleton-loader {
|
24560
24560
|
align-items: center;
|
24561
24561
|
background: rgb(var(--v-theme-surface));
|
@@ -24917,47 +24917,6 @@ html.v-overlay-scroll-blocked {
|
|
24917
24917
|
}
|
24918
24918
|
.v-snackbar-transition-leave-to {
|
24919
24919
|
opacity: 0;
|
24920
|
-
}.v-speed-dial__content {
|
24921
|
-
gap: 8px;
|
24922
|
-
}
|
24923
|
-
.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 {
|
24924
|
-
flex-direction: row;
|
24925
|
-
}
|
24926
|
-
.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 {
|
24927
|
-
flex-direction: row-reverse;
|
24928
|
-
}
|
24929
|
-
.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 {
|
24930
|
-
flex-direction: column-reverse;
|
24931
|
-
}
|
24932
|
-
.v-speed-dial__content > *:nth-child(1) {
|
24933
|
-
transition-delay: 0s;
|
24934
|
-
}
|
24935
|
-
.v-speed-dial__content > *:nth-child(2) {
|
24936
|
-
transition-delay: 0.05s;
|
24937
|
-
}
|
24938
|
-
.v-speed-dial__content > *:nth-child(3) {
|
24939
|
-
transition-delay: 0.1s;
|
24940
|
-
}
|
24941
|
-
.v-speed-dial__content > *:nth-child(4) {
|
24942
|
-
transition-delay: 0.15s;
|
24943
|
-
}
|
24944
|
-
.v-speed-dial__content > *:nth-child(5) {
|
24945
|
-
transition-delay: 0.2s;
|
24946
|
-
}
|
24947
|
-
.v-speed-dial__content > *:nth-child(6) {
|
24948
|
-
transition-delay: 0.25s;
|
24949
|
-
}
|
24950
|
-
.v-speed-dial__content > *:nth-child(7) {
|
24951
|
-
transition-delay: 0.3s;
|
24952
|
-
}
|
24953
|
-
.v-speed-dial__content > *:nth-child(8) {
|
24954
|
-
transition-delay: 0.35s;
|
24955
|
-
}
|
24956
|
-
.v-speed-dial__content > *:nth-child(9) {
|
24957
|
-
transition-delay: 0.4s;
|
24958
|
-
}
|
24959
|
-
.v-speed-dial__content > *:nth-child(10) {
|
24960
|
-
transition-delay: 0.45s;
|
24961
24920
|
}.v-stepper.v-sheet {
|
24962
24921
|
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));
|
24963
24922
|
border-radius: 4px;
|
@@ -25124,181 +25083,84 @@ html.v-overlay-scroll-blocked {
|
|
25124
25083
|
width: 100%;
|
25125
25084
|
height: 100%;
|
25126
25085
|
pointer-events: none;
|
25127
|
-
}.v-
|
25128
|
-
|
25129
|
-
display: flex;
|
25130
|
-
flex: 1 1 auto;
|
25131
|
-
height: 24px;
|
25132
|
-
justify-content: flex-end;
|
25133
|
-
max-width: 100%;
|
25134
|
-
padding-inline: 8px;
|
25135
|
-
position: relative;
|
25136
|
-
text-align: end;
|
25137
|
-
width: 100%;
|
25138
|
-
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));
|
25139
|
-
background: rgba(var(--v-theme-surface-light));
|
25140
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25141
|
-
font-size: 0.75rem;
|
25142
|
-
font-weight: 400;
|
25143
|
-
letter-spacing: 0.0333333333em;
|
25144
|
-
line-height: 1.667;
|
25145
|
-
text-transform: none;
|
25146
|
-
}
|
25147
|
-
.v-system-bar .v-icon {
|
25148
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25149
|
-
}
|
25150
|
-
.v-system-bar--absolute {
|
25151
|
-
position: absolute;
|
25152
|
-
}
|
25153
|
-
.v-system-bar--fixed {
|
25154
|
-
position: fixed;
|
25155
|
-
}
|
25156
|
-
.v-system-bar--rounded {
|
25157
|
-
border-radius: 0;
|
25158
|
-
}
|
25159
|
-
.v-system-bar--window {
|
25160
|
-
height: 32px;
|
25161
|
-
}
|
25162
|
-
.v-system-bar:not(.v-system-bar--absolute) {
|
25163
|
-
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25164
|
-
}.v-table {
|
25165
|
-
background: rgb(var(--v-theme-surface));
|
25166
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25167
|
-
font-size: 0.875rem;
|
25168
|
-
transition-duration: 0.28s;
|
25169
|
-
transition-property: box-shadow, opacity, background, height;
|
25170
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25171
|
-
}
|
25172
|
-
.v-table .v-table-divider {
|
25173
|
-
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25174
|
-
}
|
25175
|
-
.v-table .v-table__wrapper > table > thead > tr > th {
|
25176
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25177
|
-
}
|
25178
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25179
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25180
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25181
|
-
}
|
25182
|
-
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25183
|
-
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25184
|
-
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25185
|
-
}
|
25186
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25187
|
-
position: relative;
|
25188
|
-
}
|
25189
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25190
|
-
content: "";
|
25191
|
-
position: absolute;
|
25192
|
-
top: 0;
|
25193
|
-
left: 0;
|
25194
|
-
width: 100%;
|
25195
|
-
height: 100%;
|
25196
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25197
|
-
pointer-events: none;
|
25198
|
-
}
|
25199
|
-
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25200
|
-
background: rgb(var(--v-theme-surface));
|
25201
|
-
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25202
|
-
z-index: 1;
|
25203
|
-
}
|
25204
|
-
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25205
|
-
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25206
|
-
background: rgb(var(--v-theme-surface));
|
25207
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25208
|
-
}
|
25209
|
-
|
25210
|
-
.v-table {
|
25211
|
-
border-radius: inherit;
|
25212
|
-
line-height: 1.5;
|
25213
|
-
max-width: 100%;
|
25214
|
-
display: flex;
|
25215
|
-
flex-direction: column;
|
25086
|
+
}.v-speed-dial__content {
|
25087
|
+
gap: 8px;
|
25216
25088
|
}
|
25217
|
-
.v-
|
25218
|
-
|
25219
|
-
border-spacing: 0;
|
25089
|
+
.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 {
|
25090
|
+
flex-direction: row;
|
25220
25091
|
}
|
25221
|
-
.v-
|
25222
|
-
|
25223
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25224
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25225
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25226
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25227
|
-
padding: 0 16px;
|
25228
|
-
transition-duration: 0.28s;
|
25229
|
-
transition-property: box-shadow, opacity, background, height;
|
25230
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25092
|
+
.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 {
|
25093
|
+
flex-direction: row-reverse;
|
25231
25094
|
}
|
25232
|
-
.v-
|
25233
|
-
|
25234
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25235
|
-
height: var(--v-table-row-height);
|
25095
|
+
.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 {
|
25096
|
+
flex-direction: column-reverse;
|
25236
25097
|
}
|
25237
|
-
.v-
|
25238
|
-
|
25239
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25240
|
-
height: var(--v-table-header-height);
|
25241
|
-
font-weight: 500;
|
25242
|
-
-webkit-user-select: none;
|
25243
|
-
user-select: none;
|
25244
|
-
text-align: start;
|
25098
|
+
.v-speed-dial__content > *:nth-child(1) {
|
25099
|
+
transition-delay: 0s;
|
25245
25100
|
}
|
25246
|
-
.v-
|
25247
|
-
|
25248
|
-
--v-table-row-height: 52px;
|
25101
|
+
.v-speed-dial__content > *:nth-child(2) {
|
25102
|
+
transition-delay: 0.05s;
|
25249
25103
|
}
|
25250
|
-
|
25251
|
-
|
25252
|
-
--v-table-header-height: 48px;
|
25253
|
-
--v-table-row-height: 44px;
|
25104
|
+
.v-speed-dial__content > *:nth-child(3) {
|
25105
|
+
transition-delay: 0.1s;
|
25254
25106
|
}
|
25255
|
-
|
25256
|
-
|
25257
|
-
--v-table-header-height: 40px;
|
25258
|
-
--v-table-row-height: 36px;
|
25107
|
+
.v-speed-dial__content > *:nth-child(4) {
|
25108
|
+
transition-delay: 0.15s;
|
25259
25109
|
}
|
25260
|
-
|
25261
|
-
|
25262
|
-
border-radius: inherit;
|
25263
|
-
overflow: auto;
|
25264
|
-
flex: 1 1 auto;
|
25110
|
+
.v-speed-dial__content > *:nth-child(5) {
|
25111
|
+
transition-delay: 0.2s;
|
25265
25112
|
}
|
25266
|
-
|
25267
|
-
|
25268
|
-
border-top-left-radius: 0;
|
25113
|
+
.v-speed-dial__content > *:nth-child(6) {
|
25114
|
+
transition-delay: 0.25s;
|
25269
25115
|
}
|
25270
|
-
.v-
|
25271
|
-
|
25116
|
+
.v-speed-dial__content > *:nth-child(7) {
|
25117
|
+
transition-delay: 0.3s;
|
25272
25118
|
}
|
25273
|
-
|
25274
|
-
|
25275
|
-
border-bottom-left-radius: 0;
|
25119
|
+
.v-speed-dial__content > *:nth-child(8) {
|
25120
|
+
transition-delay: 0.35s;
|
25276
25121
|
}
|
25277
|
-
.v-
|
25278
|
-
|
25122
|
+
.v-speed-dial__content > *:nth-child(9) {
|
25123
|
+
transition-delay: 0.4s;
|
25279
25124
|
}
|
25280
|
-
|
25281
|
-
|
25282
|
-
|
25125
|
+
.v-speed-dial__content > *:nth-child(10) {
|
25126
|
+
transition-delay: 0.45s;
|
25127
|
+
}.v-system-bar {
|
25128
|
+
align-items: center;
|
25129
|
+
display: flex;
|
25130
|
+
flex: 1 1 auto;
|
25131
|
+
height: 24px;
|
25132
|
+
justify-content: flex-end;
|
25133
|
+
max-width: 100%;
|
25134
|
+
padding-inline: 8px;
|
25135
|
+
position: relative;
|
25136
|
+
text-align: end;
|
25137
|
+
width: 100%;
|
25138
|
+
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));
|
25139
|
+
background: rgba(var(--v-theme-surface-light));
|
25140
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25141
|
+
font-size: 0.75rem;
|
25142
|
+
font-weight: 400;
|
25143
|
+
letter-spacing: 0.0333333333em;
|
25144
|
+
line-height: 1.667;
|
25145
|
+
text-transform: none;
|
25283
25146
|
}
|
25284
|
-
|
25285
|
-
|
25286
|
-
position: sticky;
|
25287
|
-
top: 0;
|
25288
|
-
z-index: 2;
|
25147
|
+
.v-system-bar .v-icon {
|
25148
|
+
opacity: var(--v-medium-emphasis-opacity);
|
25289
25149
|
}
|
25290
|
-
.v-
|
25291
|
-
|
25150
|
+
.v-system-bar--absolute {
|
25151
|
+
position: absolute;
|
25292
25152
|
}
|
25293
|
-
|
25294
|
-
|
25295
|
-
position: sticky;
|
25296
|
-
bottom: 0;
|
25297
|
-
z-index: 1;
|
25153
|
+
.v-system-bar--fixed {
|
25154
|
+
position: fixed;
|
25298
25155
|
}
|
25299
|
-
.v-
|
25300
|
-
|
25301
|
-
|
25156
|
+
.v-system-bar--rounded {
|
25157
|
+
border-radius: 0;
|
25158
|
+
}
|
25159
|
+
.v-system-bar--window {
|
25160
|
+
height: 32px;
|
25161
|
+
}
|
25162
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25163
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25302
25164
|
}.v-switch .v-label {
|
25303
25165
|
padding-inline-start: 10px;
|
25304
25166
|
}
|
@@ -25533,89 +25395,185 @@ html.v-overlay-scroll-blocked {
|
|
25533
25395
|
--v-tabs-height: 60px;
|
25534
25396
|
}
|
25535
25397
|
|
25536
|
-
.v-tabs.v-slide-group--vertical {
|
25537
|
-
height: auto;
|
25538
|
-
flex: none;
|
25539
|
-
--v-tabs-height: 48px;
|
25398
|
+
.v-tabs.v-slide-group--vertical {
|
25399
|
+
height: auto;
|
25400
|
+
flex: none;
|
25401
|
+
--v-tabs-height: 48px;
|
25402
|
+
}
|
25403
|
+
|
25404
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25405
|
+
margin-inline-start: 42px;
|
25406
|
+
}
|
25407
|
+
|
25408
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
25409
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
25410
|
+
margin-inline-end: auto;
|
25411
|
+
}
|
25412
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
25413
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
25414
|
+
margin-inline-start: auto;
|
25415
|
+
}
|
25416
|
+
|
25417
|
+
.v-tabs--grow {
|
25418
|
+
flex-grow: 1;
|
25419
|
+
}
|
25420
|
+
.v-tabs--grow .v-tab {
|
25421
|
+
flex: 1 0 auto;
|
25422
|
+
max-width: none;
|
25423
|
+
}
|
25424
|
+
|
25425
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
25426
|
+
margin-inline-start: auto;
|
25427
|
+
}
|
25428
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
25429
|
+
margin-inline-end: 0;
|
25430
|
+
}
|
25431
|
+
|
25432
|
+
@media (max-width: 1279.98px) {
|
25433
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25434
|
+
margin-inline-start: 52px;
|
25435
|
+
}
|
25436
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25437
|
+
margin-inline-end: 52px;
|
25438
|
+
}
|
25439
|
+
}.v-table {
|
25440
|
+
background: rgb(var(--v-theme-surface));
|
25441
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25442
|
+
font-size: 0.875rem;
|
25443
|
+
transition-duration: 0.28s;
|
25444
|
+
transition-property: box-shadow, opacity, background, height;
|
25445
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25446
|
+
}
|
25447
|
+
.v-table .v-table-divider {
|
25448
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25449
|
+
}
|
25450
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
25451
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25452
|
+
}
|
25453
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25454
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25455
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25456
|
+
}
|
25457
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25458
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25459
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25460
|
+
}
|
25461
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25462
|
+
position: relative;
|
25463
|
+
}
|
25464
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25465
|
+
content: "";
|
25466
|
+
position: absolute;
|
25467
|
+
top: 0;
|
25468
|
+
left: 0;
|
25469
|
+
width: 100%;
|
25470
|
+
height: 100%;
|
25471
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25472
|
+
pointer-events: none;
|
25473
|
+
}
|
25474
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25475
|
+
background: rgb(var(--v-theme-surface));
|
25476
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25477
|
+
z-index: 1;
|
25478
|
+
}
|
25479
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25480
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25481
|
+
background: rgb(var(--v-theme-surface));
|
25482
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25483
|
+
}
|
25484
|
+
|
25485
|
+
.v-table {
|
25486
|
+
border-radius: inherit;
|
25487
|
+
line-height: 1.5;
|
25488
|
+
max-width: 100%;
|
25489
|
+
display: flex;
|
25490
|
+
flex-direction: column;
|
25491
|
+
}
|
25492
|
+
.v-table > .v-table__wrapper > table {
|
25493
|
+
width: 100%;
|
25494
|
+
border-spacing: 0;
|
25495
|
+
}
|
25496
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25497
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25498
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25499
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25500
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25501
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25502
|
+
padding: 0 16px;
|
25503
|
+
transition-duration: 0.28s;
|
25504
|
+
transition-property: box-shadow, opacity, background, height;
|
25505
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25506
|
+
}
|
25507
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25508
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25509
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25510
|
+
height: var(--v-table-row-height);
|
25511
|
+
}
|
25512
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25513
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25514
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25515
|
+
height: var(--v-table-header-height);
|
25516
|
+
font-weight: 500;
|
25517
|
+
-webkit-user-select: none;
|
25518
|
+
user-select: none;
|
25519
|
+
text-align: start;
|
25520
|
+
}
|
25521
|
+
.v-table--density-default {
|
25522
|
+
--v-table-header-height: 56px;
|
25523
|
+
--v-table-row-height: 52px;
|
25524
|
+
}
|
25525
|
+
|
25526
|
+
.v-table--density-comfortable {
|
25527
|
+
--v-table-header-height: 48px;
|
25528
|
+
--v-table-row-height: 44px;
|
25540
25529
|
}
|
25541
25530
|
|
25542
|
-
.v-
|
25543
|
-
|
25531
|
+
.v-table--density-compact {
|
25532
|
+
--v-table-header-height: 40px;
|
25533
|
+
--v-table-row-height: 36px;
|
25544
25534
|
}
|
25545
25535
|
|
25546
|
-
.v-
|
25547
|
-
|
25548
|
-
|
25549
|
-
|
25550
|
-
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
25551
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
25552
|
-
margin-inline-start: auto;
|
25536
|
+
.v-table__wrapper {
|
25537
|
+
border-radius: inherit;
|
25538
|
+
overflow: auto;
|
25539
|
+
flex: 1 1 auto;
|
25553
25540
|
}
|
25554
25541
|
|
25555
|
-
.v-
|
25556
|
-
|
25542
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25543
|
+
border-top-left-radius: 0;
|
25557
25544
|
}
|
25558
|
-
.v-
|
25559
|
-
|
25560
|
-
max-width: none;
|
25545
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25546
|
+
border-top-right-radius: 0;
|
25561
25547
|
}
|
25562
25548
|
|
25563
|
-
.v-
|
25564
|
-
|
25549
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25550
|
+
border-bottom-left-radius: 0;
|
25565
25551
|
}
|
25566
|
-
.v-
|
25567
|
-
|
25552
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25553
|
+
border-bottom-right-radius: 0;
|
25568
25554
|
}
|
25569
25555
|
|
25570
|
-
|
25571
|
-
|
25572
|
-
margin-inline-start: 52px;
|
25573
|
-
}
|
25574
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25575
|
-
margin-inline-end: 52px;
|
25576
|
-
}
|
25577
|
-
}.v-theme-provider {
|
25578
|
-
background: rgb(var(--v-theme-background));
|
25579
|
-
color: rgb(var(--v-theme-on-background));
|
25580
|
-
}.v-textarea .v-field {
|
25581
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
25582
|
-
}
|
25583
|
-
.v-textarea .v-field__field {
|
25584
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
25585
|
-
}
|
25586
|
-
.v-textarea .v-field__input {
|
25587
|
-
flex: 1 1 auto;
|
25588
|
-
outline: none;
|
25589
|
-
-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));
|
25590
|
-
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));
|
25556
|
+
.v-table--fixed-height > .v-table__wrapper {
|
25557
|
+
overflow-y: auto;
|
25591
25558
|
}
|
25592
|
-
|
25593
|
-
|
25594
|
-
position:
|
25559
|
+
|
25560
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25561
|
+
position: sticky;
|
25595
25562
|
top: 0;
|
25596
|
-
|
25597
|
-
height: 0 !important;
|
25598
|
-
min-height: 0 !important;
|
25599
|
-
pointer-events: none;
|
25600
|
-
}
|
25601
|
-
.v-textarea--no-resize .v-field__input {
|
25602
|
-
resize: none;
|
25603
|
-
}
|
25604
|
-
.v-textarea .v-field--no-label textarea,
|
25605
|
-
.v-textarea .v-field--active textarea {
|
25606
|
-
opacity: 1;
|
25563
|
+
z-index: 2;
|
25607
25564
|
}
|
25608
|
-
.v-
|
25609
|
-
|
25610
|
-
flex: 1;
|
25611
|
-
min-width: 0;
|
25612
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25565
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25566
|
+
border-bottom: 0px !important;
|
25613
25567
|
}
|
25614
|
-
|
25615
|
-
|
25568
|
+
|
25569
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25570
|
+
position: sticky;
|
25571
|
+
bottom: 0;
|
25572
|
+
z-index: 1;
|
25616
25573
|
}
|
25617
|
-
.v-
|
25618
|
-
|
25574
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25575
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25576
|
+
border-top: 0px !important;
|
25619
25577
|
}/* region BLOCK */
|
25620
25578
|
.v-text-field input {
|
25621
25579
|
color: inherit;
|
@@ -25683,7 +25641,46 @@ html.v-overlay-scroll-blocked {
|
|
25683
25641
|
padding-inline-end: var(--v-field-padding-end);
|
25684
25642
|
}
|
25685
25643
|
|
25686
|
-
/* endregion */.v-
|
25644
|
+
/* endregion */.v-textarea .v-field {
|
25645
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
25646
|
+
}
|
25647
|
+
.v-textarea .v-field__field {
|
25648
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
25649
|
+
}
|
25650
|
+
.v-textarea .v-field__input {
|
25651
|
+
flex: 1 1 auto;
|
25652
|
+
outline: none;
|
25653
|
+
-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));
|
25654
|
+
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));
|
25655
|
+
}
|
25656
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
25657
|
+
visibility: hidden;
|
25658
|
+
position: absolute;
|
25659
|
+
top: 0;
|
25660
|
+
left: 0;
|
25661
|
+
height: 0 !important;
|
25662
|
+
min-height: 0 !important;
|
25663
|
+
pointer-events: none;
|
25664
|
+
}
|
25665
|
+
.v-textarea--no-resize .v-field__input {
|
25666
|
+
resize: none;
|
25667
|
+
}
|
25668
|
+
.v-textarea .v-field--no-label textarea,
|
25669
|
+
.v-textarea .v-field--active textarea {
|
25670
|
+
opacity: 1;
|
25671
|
+
}
|
25672
|
+
.v-textarea textarea {
|
25673
|
+
opacity: 0;
|
25674
|
+
flex: 1;
|
25675
|
+
min-width: 0;
|
25676
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25677
|
+
}
|
25678
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25679
|
+
outline: none;
|
25680
|
+
}
|
25681
|
+
.v-textarea textarea:invalid {
|
25682
|
+
box-shadow: none;
|
25683
|
+
}.v-toolbar {
|
25687
25684
|
align-items: flex-start;
|
25688
25685
|
display: flex;
|
25689
25686
|
flex: none;
|
@@ -26228,6 +26225,9 @@ html.v-overlay-scroll-blocked {
|
|
26228
26225
|
|
26229
26226
|
.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 {
|
26230
26227
|
padding-inline-end: 0;
|
26228
|
+
}.v-theme-provider {
|
26229
|
+
background: rgb(var(--v-theme-background));
|
26230
|
+
color: rgb(var(--v-theme-on-background));
|
26231
26231
|
}.v-tooltip > .v-overlay__content {
|
26232
26232
|
background: rgb(var(--v-theme-surface-variant));
|
26233
26233
|
color: rgb(var(--v-theme-on-surface-variant));
|
@@ -26329,6 +26329,28 @@ html.v-overlay-scroll-blocked {
|
|
26329
26329
|
}
|
26330
26330
|
.v-window-y-reverse-transition-leave-to {
|
26331
26331
|
transform: translateY(100%);
|
26332
|
+
}.v-color-picker-canvas {
|
26333
|
+
display: flex;
|
26334
|
+
position: relative;
|
26335
|
+
overflow: hidden;
|
26336
|
+
contain: content;
|
26337
|
+
touch-action: none;
|
26338
|
+
}
|
26339
|
+
.v-color-picker-canvas__dot {
|
26340
|
+
position: absolute;
|
26341
|
+
top: 0;
|
26342
|
+
left: 0;
|
26343
|
+
width: 15px;
|
26344
|
+
height: 15px;
|
26345
|
+
background: transparent;
|
26346
|
+
border-radius: 50%;
|
26347
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26348
|
+
}
|
26349
|
+
.v-color-picker-canvas__dot--disabled {
|
26350
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26351
|
+
}
|
26352
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26353
|
+
will-change: transform;
|
26332
26354
|
}.v-color-picker-edit {
|
26333
26355
|
display: flex;
|
26334
26356
|
margin-top: 24px;
|
@@ -26357,63 +26379,6 @@ html.v-overlay-scroll-blocked {
|
|
26357
26379
|
}
|
26358
26380
|
.v-color-picker-edit__input span {
|
26359
26381
|
font-size: 0.75rem;
|
26360
|
-
}.v-color-picker-swatches {
|
26361
|
-
overflow-y: auto;
|
26362
|
-
}
|
26363
|
-
.v-color-picker-swatches > div {
|
26364
|
-
display: flex;
|
26365
|
-
flex-wrap: wrap;
|
26366
|
-
justify-content: center;
|
26367
|
-
padding: 8px;
|
26368
|
-
}
|
26369
|
-
|
26370
|
-
.v-color-picker-swatches__swatch {
|
26371
|
-
display: flex;
|
26372
|
-
flex-direction: column;
|
26373
|
-
margin-bottom: 10px;
|
26374
|
-
}
|
26375
|
-
|
26376
|
-
.v-color-picker-swatches__color {
|
26377
|
-
position: relative;
|
26378
|
-
height: 18px;
|
26379
|
-
max-height: 18px;
|
26380
|
-
width: 45px;
|
26381
|
-
margin: 2px 4px;
|
26382
|
-
border-radius: 2px;
|
26383
|
-
-webkit-user-select: none;
|
26384
|
-
user-select: none;
|
26385
|
-
overflow: hidden;
|
26386
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26387
|
-
cursor: pointer;
|
26388
|
-
}
|
26389
|
-
.v-color-picker-swatches__color > div {
|
26390
|
-
display: flex;
|
26391
|
-
align-items: center;
|
26392
|
-
justify-content: center;
|
26393
|
-
width: 100%;
|
26394
|
-
height: 100%;
|
26395
|
-
}.v-color-picker-canvas {
|
26396
|
-
display: flex;
|
26397
|
-
position: relative;
|
26398
|
-
overflow: hidden;
|
26399
|
-
contain: content;
|
26400
|
-
touch-action: none;
|
26401
|
-
}
|
26402
|
-
.v-color-picker-canvas__dot {
|
26403
|
-
position: absolute;
|
26404
|
-
top: 0;
|
26405
|
-
left: 0;
|
26406
|
-
width: 15px;
|
26407
|
-
height: 15px;
|
26408
|
-
background: transparent;
|
26409
|
-
border-radius: 50%;
|
26410
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26411
|
-
}
|
26412
|
-
.v-color-picker-canvas__dot--disabled {
|
26413
|
-
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26414
|
-
}
|
26415
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26416
|
-
will-change: transform;
|
26417
26382
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26418
26383
|
background-color: transparent !important;
|
26419
26384
|
}
|
@@ -26484,6 +26449,41 @@ html.v-overlay-scroll-blocked {
|
|
26484
26449
|
.v-color-picker-preview__eye-dropper {
|
26485
26450
|
position: relative;
|
26486
26451
|
margin-right: 12px;
|
26452
|
+
}.v-color-picker-swatches {
|
26453
|
+
overflow-y: auto;
|
26454
|
+
}
|
26455
|
+
.v-color-picker-swatches > div {
|
26456
|
+
display: flex;
|
26457
|
+
flex-wrap: wrap;
|
26458
|
+
justify-content: center;
|
26459
|
+
padding: 8px;
|
26460
|
+
}
|
26461
|
+
|
26462
|
+
.v-color-picker-swatches__swatch {
|
26463
|
+
display: flex;
|
26464
|
+
flex-direction: column;
|
26465
|
+
margin-bottom: 10px;
|
26466
|
+
}
|
26467
|
+
|
26468
|
+
.v-color-picker-swatches__color {
|
26469
|
+
position: relative;
|
26470
|
+
height: 18px;
|
26471
|
+
max-height: 18px;
|
26472
|
+
width: 45px;
|
26473
|
+
margin: 2px 4px;
|
26474
|
+
border-radius: 2px;
|
26475
|
+
-webkit-user-select: none;
|
26476
|
+
user-select: none;
|
26477
|
+
overflow: hidden;
|
26478
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26479
|
+
cursor: pointer;
|
26480
|
+
}
|
26481
|
+
.v-color-picker-swatches__color > div {
|
26482
|
+
display: flex;
|
26483
|
+
align-items: center;
|
26484
|
+
justify-content: center;
|
26485
|
+
width: 100%;
|
26486
|
+
height: 100%;
|
26487
26487
|
}.v-slider-thumb {
|
26488
26488
|
touch-action: none;
|
26489
26489
|
color: rgb(var(--v-theme-surface-variant));
|