@vuetify/nightly 3.6.6-master.2024-05-21 → 3.6.7-master.2024-05-22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -15
- package/dist/json/attributes.json +42 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +11 -1
- package/dist/json/web-types.json +101 -4
- package/dist/vuetify-labs.css +2143 -2138
- package/dist/vuetify-labs.d.ts +93 -12
- package/dist/vuetify-labs.esm.js +52 -29
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +52 -29
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +873 -868
- package/dist/vuetify.d.ts +132 -51
- package/dist/vuetify.esm.js +50 -27
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +50 -27
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +103 -102
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +3 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +4 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +4 -0
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.sass +4 -0
- package/lib/components/VDataTable/VDataTableHeaders.mjs +4 -3
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +1 -1
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +63 -0
- package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonths.mjs +10 -1
- package/lib/components/VDatePicker/VDatePickerMonths.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +24 -6
- package/lib/components/VDivider/VDivider.css +1 -1
- package/lib/components/VDivider/VDivider.sass +1 -1
- package/lib/components/VList/VListChildren.mjs +2 -1
- package/lib/components/VList/VListChildren.mjs.map +1 -1
- package/lib/components/index.d.mts +87 -6
- package/lib/composables/defaults.mjs +1 -1
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/dimensions.mjs +16 -8
- package/lib/composables/dimensions.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +45 -45
- package/lib/labs/VCalendar/VCalendar.mjs +2 -2
- package/lib/labs/VCalendar/VCalendar.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +6 -6
- package/lib/labs/components.d.mts +6 -6
- package/lib/locale/fa.mjs +10 -10
- package/lib/locale/fa.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.
|
2
|
+
* Vuetify v3.6.7-master.2024-05-22
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17607,6 +17607,19 @@ html.overflow-y-hidden {
|
|
17607
17607
|
}
|
17608
17608
|
.v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
|
17609
17609
|
border-right: none;
|
17610
|
+
}.v-calendar-header {
|
17611
|
+
align-items: center;
|
17612
|
+
display: flex;
|
17613
|
+
min-height: 64px;
|
17614
|
+
}
|
17615
|
+
|
17616
|
+
.v-calendar-header__today {
|
17617
|
+
margin-inline-end: 24px;
|
17618
|
+
}
|
17619
|
+
|
17620
|
+
.v-calendar-header__title {
|
17621
|
+
font-size: 1.5rem;
|
17622
|
+
margin-inline-start: 24px;
|
17610
17623
|
}.v-calendar-day {
|
17611
17624
|
position: relative;
|
17612
17625
|
display: flex;
|
@@ -17639,61 +17652,11 @@ html.overflow-y-hidden {
|
|
17639
17652
|
}
|
17640
17653
|
.v-calendar-weekly .v-calendar__container.days__0 {
|
17641
17654
|
grid-template-columns: repeat(1, 1fr);
|
17642
|
-
}.v-calendar-
|
17643
|
-
align-items: center;
|
17644
|
-
display: flex;
|
17645
|
-
min-height: 64px;
|
17646
|
-
}
|
17647
|
-
|
17648
|
-
.v-calendar-header__today {
|
17649
|
-
margin-inline-end: 24px;
|
17650
|
-
}
|
17651
|
-
|
17652
|
-
.v-calendar-header__title {
|
17653
|
-
font-size: 1.5rem;
|
17654
|
-
margin-inline-start: 24px;
|
17655
|
-
}.v-calendar-day__row-with-label {
|
17656
|
-
display: grid;
|
17657
|
-
grid-template-columns: 48px 8px 1fr;
|
17658
|
-
border-right: thin solid #e0e0e0;
|
17659
|
-
}
|
17660
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-hairline {
|
17661
|
-
position: relative;
|
17662
|
-
border-right: thin solid #e0e0e0;
|
17663
|
-
}
|
17664
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
|
17665
|
-
content: "";
|
17666
|
-
border-bottom: thin solid #e0e0e0;
|
17667
|
-
position: absolute;
|
17668
|
-
width: 100%;
|
17669
|
-
margin-top: -1px;
|
17670
|
-
z-index: 3;
|
17671
|
-
pointer-events: none;
|
17672
|
-
}
|
17673
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-label {
|
17674
|
-
font-size: 10px;
|
17675
|
-
text-align: center;
|
17676
|
-
position: relative;
|
17677
|
-
top: -8px;
|
17678
|
-
}
|
17679
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-content {
|
17680
|
-
border-bottom: thin solid #e0e0e0;
|
17681
|
-
}
|
17682
|
-
.v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17683
|
-
border-bottom: none;
|
17684
|
-
}
|
17685
|
-
|
17686
|
-
.v-calendar-day__row-without-label {
|
17687
|
-
display: grid;
|
17688
|
-
grid-template-columns: 1fr;
|
17689
|
-
border-right: thin solid #e0e0e0;
|
17690
|
-
}
|
17691
|
-
.v-calendar-day__row-without-label .v-calendar-day__row-content {
|
17655
|
+
}.v-calendar-internal-event {
|
17692
17656
|
overflow: hidden;
|
17693
|
-
|
17694
|
-
|
17695
|
-
|
17696
|
-
border-bottom: none;
|
17657
|
+
padding: 4px;
|
17658
|
+
text-overflow: ellipsis;
|
17659
|
+
white-space: nowrap;
|
17697
17660
|
}.v-calendar-month__day {
|
17698
17661
|
position: relative;
|
17699
17662
|
display: flex;
|
@@ -17757,75 +17720,116 @@ html.overflow-y-hidden {
|
|
17757
17720
|
|
17758
17721
|
.v-calendar-weekly__day-alldayevents-container {
|
17759
17722
|
min-height: 24px;
|
17760
|
-
}.v-calendar-
|
17761
|
-
|
17762
|
-
|
17763
|
-
|
17764
|
-
white-space: nowrap;
|
17765
|
-
}.v-number-input input[type=number] {
|
17766
|
-
-moz-appearance: textfield;
|
17767
|
-
}
|
17768
|
-
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
17769
|
-
-webkit-appearance: none;
|
17723
|
+
}.v-calendar-day__row-with-label {
|
17724
|
+
display: grid;
|
17725
|
+
grid-template-columns: 48px 8px 1fr;
|
17726
|
+
border-right: thin solid #e0e0e0;
|
17770
17727
|
}
|
17771
|
-
.v-
|
17772
|
-
|
17773
|
-
|
17728
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-hairline {
|
17729
|
+
position: relative;
|
17730
|
+
border-right: thin solid #e0e0e0;
|
17774
17731
|
}
|
17775
|
-
.v-
|
17776
|
-
|
17777
|
-
|
17778
|
-
|
17732
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
|
17733
|
+
content: "";
|
17734
|
+
border-bottom: thin solid #e0e0e0;
|
17735
|
+
position: absolute;
|
17736
|
+
width: 100%;
|
17737
|
+
margin-top: -1px;
|
17738
|
+
z-index: 3;
|
17739
|
+
pointer-events: none;
|
17779
17740
|
}
|
17780
|
-
.v-
|
17741
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-label {
|
17742
|
+
font-size: 10px;
|
17781
17743
|
text-align: center;
|
17744
|
+
position: relative;
|
17745
|
+
top: -8px;
|
17782
17746
|
}
|
17783
|
-
.v-
|
17784
|
-
|
17785
|
-
}
|
17786
|
-
.v-number-input--stacked .v-number-input__control .v-btn {
|
17787
|
-
flex: 1;
|
17788
|
-
}
|
17789
|
-
.v-number-input--hide-input .v-field {
|
17790
|
-
flex: none;
|
17747
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-content {
|
17748
|
+
border-bottom: thin solid #e0e0e0;
|
17791
17749
|
}
|
17792
|
-
.v-
|
17793
|
-
|
17794
|
-
padding-inline: 0;
|
17750
|
+
.v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17751
|
+
border-bottom: none;
|
17795
17752
|
}
|
17796
|
-
|
17797
|
-
|
17798
|
-
|
17753
|
+
|
17754
|
+
.v-calendar-day__row-without-label {
|
17755
|
+
display: grid;
|
17756
|
+
grid-template-columns: 1fr;
|
17757
|
+
border-right: thin solid #e0e0e0;
|
17799
17758
|
}
|
17800
|
-
.v-
|
17801
|
-
background-color: transparent;
|
17802
|
-
border-radius: 0;
|
17803
|
-
}.v-pull-to-refresh {
|
17759
|
+
.v-calendar-day__row-without-label .v-calendar-day__row-content {
|
17804
17760
|
overflow: hidden;
|
17761
|
+
border-bottom: thin solid #e0e0e0;
|
17762
|
+
}
|
17763
|
+
.v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
|
17764
|
+
border-bottom: none;
|
17765
|
+
}.v-stepper-vertical-item {
|
17805
17766
|
position: relative;
|
17767
|
+
transition-duration: 0.2s;
|
17768
|
+
transition-property: opacity;
|
17769
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
17806
17770
|
}
|
17807
|
-
.v-
|
17771
|
+
.v-stepper-vertical-item__title {
|
17772
|
+
font-size: 1rem;
|
17773
|
+
}
|
17774
|
+
.v-stepper-vertical-item__subtitle {
|
17775
|
+
font-size: 0.75rem;
|
17776
|
+
}
|
17777
|
+
.v-stepper-vertical-item .v-expansion-panel-text {
|
17778
|
+
padding-inline-start: 32px;
|
17779
|
+
}
|
17780
|
+
.v-stepper-vertical-item:not(:last-child):before {
|
17781
|
+
content: "";
|
17808
17782
|
position: absolute;
|
17809
|
-
width:
|
17810
|
-
|
17783
|
+
width: 2px;
|
17784
|
+
height: calc(100% - 30px);
|
17785
|
+
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
17786
|
+
left: 35px;
|
17787
|
+
top: 44px;
|
17788
|
+
z-index: 1;
|
17789
|
+
transition-duration: 300ms;
|
17790
|
+
transition-property: height;
|
17811
17791
|
}
|
17812
|
-
.v-
|
17813
|
-
|
17792
|
+
.v-stepper-vertical-item:after {
|
17793
|
+
display: none;
|
17814
17794
|
}
|
17815
|
-
.v-
|
17816
|
-
|
17817
|
-
width: 100%;
|
17818
|
-
height: 100%;
|
17819
|
-
justify-content: center;
|
17820
|
-
align-items: flex-end;
|
17821
|
-
padding-bottom: 10px;
|
17795
|
+
.v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title {
|
17796
|
+
pointer-events: none;
|
17822
17797
|
}
|
17823
|
-
.v-
|
17824
|
-
|
17825
|
-
transition: top 0.3s ease-out;
|
17798
|
+
.v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
17799
|
+
opacity: 0;
|
17826
17800
|
}
|
17827
|
-
|
17828
|
-
|
17801
|
+
|
17802
|
+
.v-stepper-vertical-item__avatar.v-avatar {
|
17803
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
17804
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
17805
|
+
transition-property: background;
|
17806
|
+
}
|
17807
|
+
.v-stepper-vertical-item__avatar.v-avatar .v-icon {
|
17808
|
+
font-size: 0.875rem;
|
17809
|
+
}
|
17810
|
+
.v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
|
17811
|
+
background: rgb(var(--v-theme-surface-variant));
|
17812
|
+
}
|
17813
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
|
17814
|
+
background: rgb(var(--v-theme-error));
|
17815
|
+
color: rgb(var(--v-theme-on-error));
|
17816
|
+
}
|
17817
|
+
|
17818
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__title {
|
17819
|
+
color: rgb(var(--v-theme-error));
|
17820
|
+
}
|
17821
|
+
|
17822
|
+
.v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
|
17823
|
+
color: rgb(var(--v-theme-error));
|
17824
|
+
}
|
17825
|
+
|
17826
|
+
.v-stepper-vertical-actions.v-stepper-actions .v-btn {
|
17827
|
+
margin-inline-end: 8px;
|
17828
|
+
}
|
17829
|
+
.v-stepper .v-stepper-vertical-actions.v-stepper-actions {
|
17830
|
+
justify-content: flex-end;
|
17831
|
+
padding: 24px 0 0;
|
17832
|
+
flex-direction: row-reverse;
|
17829
17833
|
}.v-picker.v-sheet {
|
17830
17834
|
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));
|
17831
17835
|
border-radius: 4px;
|
@@ -17879,35 +17883,115 @@ html.overflow-y-hidden {
|
|
17879
17883
|
padding-bottom: 16px;
|
17880
17884
|
font-weight: 400;
|
17881
17885
|
letter-spacing: 0.1666666667em;
|
17882
|
-
}.v-
|
17883
|
-
|
17884
|
-
width: 328px;
|
17886
|
+
}.v-number-input input[type=number] {
|
17887
|
+
-moz-appearance: textfield;
|
17885
17888
|
}
|
17886
|
-
.v-
|
17887
|
-
|
17888
|
-
margin-bottom: 20px;
|
17889
|
-
}.v-time-picker-controls {
|
17890
|
-
display: flex;
|
17891
|
-
align-items: center;
|
17892
|
-
justify-content: center;
|
17893
|
-
font-size: 0.875rem;
|
17894
|
-
padding-top: 4px;
|
17895
|
-
padding-bottom: 4px;
|
17896
|
-
margin-bottom: 36px;
|
17889
|
+
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
17890
|
+
-webkit-appearance: none;
|
17897
17891
|
}
|
17898
|
-
.v-
|
17899
|
-
padding-
|
17892
|
+
.v-number-input .v-field {
|
17893
|
+
padding-inline-end: 0;
|
17894
|
+
padding-inline-start: 0;
|
17900
17895
|
}
|
17901
|
-
.v-
|
17902
|
-
|
17903
|
-
|
17904
|
-
|
17905
|
-
justify-content: center;
|
17896
|
+
.v-number-input--inset .v-divider {
|
17897
|
+
height: 55%;
|
17898
|
+
width: 55%;
|
17899
|
+
align-self: center;
|
17906
17900
|
}
|
17907
|
-
.v-
|
17908
|
-
|
17909
|
-
|
17910
|
-
|
17901
|
+
.v-number-input--split .v-field__input {
|
17902
|
+
text-align: center;
|
17903
|
+
}
|
17904
|
+
.v-number-input--stacked .v-number-input__control {
|
17905
|
+
flex-direction: column-reverse;
|
17906
|
+
}
|
17907
|
+
.v-number-input--stacked .v-number-input__control .v-btn {
|
17908
|
+
flex: 1;
|
17909
|
+
}
|
17910
|
+
.v-number-input--hide-input .v-field {
|
17911
|
+
flex: none;
|
17912
|
+
}
|
17913
|
+
.v-number-input--hide-input .v-field__input {
|
17914
|
+
width: 0;
|
17915
|
+
padding-inline: 0;
|
17916
|
+
}
|
17917
|
+
.v-number-input__control {
|
17918
|
+
display: flex;
|
17919
|
+
height: 100%;
|
17920
|
+
}
|
17921
|
+
.v-number-input__control .v-btn {
|
17922
|
+
background-color: transparent;
|
17923
|
+
border-radius: 0;
|
17924
|
+
}.v-pull-to-refresh {
|
17925
|
+
overflow: hidden;
|
17926
|
+
position: relative;
|
17927
|
+
}
|
17928
|
+
.v-pull-to-refresh__pull-down {
|
17929
|
+
position: absolute;
|
17930
|
+
width: 100%;
|
17931
|
+
transition: top 0.3s ease-out;
|
17932
|
+
}
|
17933
|
+
.v-pull-to-refresh__pull-down--touching {
|
17934
|
+
transition: none;
|
17935
|
+
}
|
17936
|
+
.v-pull-to-refresh__pull-down-default {
|
17937
|
+
display: flex;
|
17938
|
+
width: 100%;
|
17939
|
+
height: 100%;
|
17940
|
+
justify-content: center;
|
17941
|
+
align-items: flex-end;
|
17942
|
+
padding-bottom: 10px;
|
17943
|
+
}
|
17944
|
+
.v-pull-to-refresh__scroll-container {
|
17945
|
+
position: relative;
|
17946
|
+
transition: top 0.3s ease-out;
|
17947
|
+
}
|
17948
|
+
.v-pull-to-refresh__scroll-container--touching {
|
17949
|
+
transition: none;
|
17950
|
+
}.v-time-picker.v-picker {
|
17951
|
+
padding: 24px;
|
17952
|
+
width: 328px;
|
17953
|
+
}
|
17954
|
+
.v-time-picker.v-picker .v-picker-title {
|
17955
|
+
padding: 0;
|
17956
|
+
margin-bottom: 20px;
|
17957
|
+
}.v-treeview-item--filtered {
|
17958
|
+
display: none;
|
17959
|
+
}
|
17960
|
+
|
17961
|
+
.v-treeview {
|
17962
|
+
--indent-padding: 0px;
|
17963
|
+
}
|
17964
|
+
|
17965
|
+
.v-treeview-group.v-list-group {
|
17966
|
+
--list-indent-size: 16px;
|
17967
|
+
}
|
17968
|
+
.v-list--slim .v-treeview-group.v-list-group {
|
17969
|
+
--prepend-width: 16px;
|
17970
|
+
}
|
17971
|
+
.v-treeview-group.v-list-group .v-list-group__items .v-list-item {
|
17972
|
+
padding-inline-start: calc(12px + var(--indent-padding)) !important;
|
17973
|
+
}.v-time-picker-controls {
|
17974
|
+
display: flex;
|
17975
|
+
align-items: center;
|
17976
|
+
justify-content: center;
|
17977
|
+
font-size: 0.875rem;
|
17978
|
+
padding-top: 4px;
|
17979
|
+
padding-bottom: 4px;
|
17980
|
+
margin-bottom: 36px;
|
17981
|
+
}
|
17982
|
+
.v-time-picker-controls__text {
|
17983
|
+
padding-bottom: 12px;
|
17984
|
+
}
|
17985
|
+
.v-time-picker-controls__time {
|
17986
|
+
display: flex;
|
17987
|
+
white-space: nowrap;
|
17988
|
+
direction: ltr;
|
17989
|
+
justify-content: center;
|
17990
|
+
}
|
17991
|
+
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
|
17992
|
+
width: 96px;
|
17993
|
+
height: 80px;
|
17994
|
+
font-size: 56px;
|
17911
17995
|
}
|
17912
17996
|
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
|
17913
17997
|
background: rgb(var(--v-theme-primary));
|
@@ -18120,128 +18204,256 @@ html.overflow-y-hidden {
|
|
18120
18204
|
|
18121
18205
|
.v-picker--landscape .v-time-picker-clock__container {
|
18122
18206
|
flex-direction: row;
|
18123
|
-
}.v-
|
18207
|
+
}.v-alert {
|
18208
|
+
display: grid;
|
18209
|
+
flex: 1 1;
|
18210
|
+
grid-template-areas: "prepend content append close" ". content . .";
|
18211
|
+
grid-template-columns: max-content auto max-content max-content;
|
18124
18212
|
position: relative;
|
18125
|
-
|
18126
|
-
|
18127
|
-
|
18213
|
+
padding: 16px;
|
18214
|
+
overflow: hidden;
|
18215
|
+
--v-border-color: currentColor;
|
18216
|
+
border-radius: 4px;
|
18128
18217
|
}
|
18129
|
-
.v-
|
18130
|
-
|
18218
|
+
.v-alert--absolute {
|
18219
|
+
position: absolute;
|
18131
18220
|
}
|
18132
|
-
.v-
|
18133
|
-
|
18221
|
+
.v-alert--fixed {
|
18222
|
+
position: fixed;
|
18134
18223
|
}
|
18135
|
-
.v-
|
18136
|
-
|
18224
|
+
.v-alert--sticky {
|
18225
|
+
position: sticky;
|
18137
18226
|
}
|
18138
|
-
.v-
|
18139
|
-
|
18140
|
-
|
18141
|
-
width: 2px;
|
18142
|
-
height: calc(100% - 30px);
|
18143
|
-
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
18144
|
-
left: 35px;
|
18145
|
-
top: 44px;
|
18146
|
-
z-index: 1;
|
18147
|
-
transition-duration: 300ms;
|
18148
|
-
transition-property: height;
|
18227
|
+
.v-alert--variant-plain, .v-alert--variant-outlined, .v-alert--variant-text, .v-alert--variant-tonal {
|
18228
|
+
background: transparent;
|
18229
|
+
color: inherit;
|
18149
18230
|
}
|
18150
|
-
.v-
|
18151
|
-
|
18231
|
+
.v-alert--variant-plain {
|
18232
|
+
opacity: 0.62;
|
18152
18233
|
}
|
18153
|
-
.v-
|
18154
|
-
|
18234
|
+
.v-alert--variant-plain:focus, .v-alert--variant-plain:hover {
|
18235
|
+
opacity: 1;
|
18155
18236
|
}
|
18156
|
-
.v-
|
18157
|
-
|
18237
|
+
.v-alert--variant-plain .v-alert__overlay {
|
18238
|
+
display: none;
|
18158
18239
|
}
|
18159
|
-
|
18160
|
-
|
18161
|
-
|
18162
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
18163
|
-
transition-property: background;
|
18240
|
+
.v-alert--variant-elevated, .v-alert--variant-flat {
|
18241
|
+
background: rgb(var(--v-theme-surface-light));
|
18242
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
18164
18243
|
}
|
18165
|
-
.v-
|
18166
|
-
|
18244
|
+
.v-alert--variant-elevated {
|
18245
|
+
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));
|
18167
18246
|
}
|
18168
|
-
.v-
|
18169
|
-
|
18247
|
+
.v-alert--variant-flat {
|
18248
|
+
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));
|
18170
18249
|
}
|
18171
|
-
.v-
|
18172
|
-
|
18173
|
-
color: rgb(var(--v-theme-on-error));
|
18250
|
+
.v-alert--variant-outlined {
|
18251
|
+
border: thin solid currentColor;
|
18174
18252
|
}
|
18175
|
-
|
18176
|
-
|
18177
|
-
color: rgb(var(--v-theme-error));
|
18253
|
+
.v-alert--variant-text .v-alert__overlay {
|
18254
|
+
background: currentColor;
|
18178
18255
|
}
|
18179
|
-
|
18180
|
-
|
18181
|
-
|
18256
|
+
.v-alert--variant-tonal .v-alert__underlay {
|
18257
|
+
background: currentColor;
|
18258
|
+
opacity: var(--v-activated-opacity);
|
18259
|
+
border-radius: inherit;
|
18260
|
+
top: 0;
|
18261
|
+
right: 0;
|
18262
|
+
bottom: 0;
|
18263
|
+
left: 0;
|
18264
|
+
pointer-events: none;
|
18182
18265
|
}
|
18183
|
-
|
18184
|
-
|
18185
|
-
margin-inline-end: 8px;
|
18266
|
+
.v-alert .v-alert__underlay {
|
18267
|
+
position: absolute;
|
18186
18268
|
}
|
18187
|
-
.v-
|
18188
|
-
|
18189
|
-
padding: 24px 0 0;
|
18190
|
-
flex-direction: row-reverse;
|
18191
|
-
}.v-treeview-item--filtered {
|
18192
|
-
display: none;
|
18269
|
+
.v-alert--prominent {
|
18270
|
+
grid-template-areas: "prepend content append close" "prepend content . .";
|
18193
18271
|
}
|
18194
|
-
|
18195
|
-
|
18196
|
-
--indent-padding: 0px;
|
18272
|
+
.v-alert.v-alert--border {
|
18273
|
+
--v-border-opacity: 0.38;
|
18197
18274
|
}
|
18198
|
-
|
18199
|
-
|
18200
|
-
--list-indent-size: 16px;
|
18275
|
+
.v-alert.v-alert--border.v-alert--border-start {
|
18276
|
+
padding-inline-start: 24px;
|
18201
18277
|
}
|
18202
|
-
.v-
|
18203
|
-
|
18278
|
+
.v-alert.v-alert--border.v-alert--border-end {
|
18279
|
+
padding-inline-end: 24px;
|
18204
18280
|
}
|
18205
|
-
.v-
|
18206
|
-
|
18207
|
-
}.v-app-bar {
|
18208
|
-
display: flex;
|
18281
|
+
.v-alert--variant-plain {
|
18282
|
+
transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
18209
18283
|
}
|
18210
|
-
.v-
|
18211
|
-
|
18212
|
-
|
18284
|
+
.v-alert--density-default {
|
18285
|
+
padding-bottom: 16px;
|
18286
|
+
padding-top: 16px;
|
18213
18287
|
}
|
18214
|
-
.v-
|
18215
|
-
|
18288
|
+
.v-alert--density-default.v-alert--border-top {
|
18289
|
+
padding-top: 24px;
|
18216
18290
|
}
|
18217
|
-
.v-
|
18218
|
-
padding-
|
18219
|
-
}.v-application {
|
18220
|
-
display: flex;
|
18221
|
-
background: rgb(var(--v-theme-background));
|
18222
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
18291
|
+
.v-alert--density-default.v-alert--border-bottom {
|
18292
|
+
padding-bottom: 24px;
|
18223
18293
|
}
|
18224
18294
|
|
18225
|
-
.v-
|
18226
|
-
-
|
18227
|
-
|
18228
|
-
display: flex;
|
18229
|
-
flex-direction: column;
|
18230
|
-
flex: 1 1 auto;
|
18231
|
-
max-width: 100%;
|
18232
|
-
min-height: 100vh;
|
18233
|
-
min-height: 100dvh;
|
18234
|
-
position: relative;
|
18235
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
18236
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
18237
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18238
|
-
cursor: text;
|
18239
|
-
}
|
18240
|
-
.v-autocomplete .v-field .v-field__input > input {
|
18241
|
-
flex: 1 1;
|
18295
|
+
.v-alert--density-comfortable {
|
18296
|
+
padding-bottom: 12px;
|
18297
|
+
padding-top: 12px;
|
18242
18298
|
}
|
18243
|
-
.v-
|
18244
|
-
|
18299
|
+
.v-alert--density-comfortable.v-alert--border-top {
|
18300
|
+
padding-top: 20px;
|
18301
|
+
}
|
18302
|
+
.v-alert--density-comfortable.v-alert--border-bottom {
|
18303
|
+
padding-bottom: 20px;
|
18304
|
+
}
|
18305
|
+
|
18306
|
+
.v-alert--density-compact {
|
18307
|
+
padding-bottom: 8px;
|
18308
|
+
padding-top: 8px;
|
18309
|
+
}
|
18310
|
+
.v-alert--density-compact.v-alert--border-top {
|
18311
|
+
padding-top: 16px;
|
18312
|
+
}
|
18313
|
+
.v-alert--density-compact.v-alert--border-bottom {
|
18314
|
+
padding-bottom: 16px;
|
18315
|
+
}
|
18316
|
+
|
18317
|
+
.v-alert__border {
|
18318
|
+
border-radius: inherit;
|
18319
|
+
bottom: 0;
|
18320
|
+
left: 0;
|
18321
|
+
opacity: var(--v-border-opacity);
|
18322
|
+
position: absolute;
|
18323
|
+
pointer-events: none;
|
18324
|
+
right: 0;
|
18325
|
+
top: 0;
|
18326
|
+
width: 100%;
|
18327
|
+
border-color: currentColor;
|
18328
|
+
border-style: solid;
|
18329
|
+
border-width: 0;
|
18330
|
+
}
|
18331
|
+
.v-alert__border--border {
|
18332
|
+
border-width: 8px;
|
18333
|
+
box-shadow: none;
|
18334
|
+
}
|
18335
|
+
.v-alert--border-start .v-alert__border {
|
18336
|
+
border-inline-start-width: 8px;
|
18337
|
+
}
|
18338
|
+
.v-alert--border-end .v-alert__border {
|
18339
|
+
border-inline-end-width: 8px;
|
18340
|
+
}
|
18341
|
+
.v-alert--border-top .v-alert__border {
|
18342
|
+
border-top-width: 8px;
|
18343
|
+
}
|
18344
|
+
.v-alert--border-bottom .v-alert__border {
|
18345
|
+
border-bottom-width: 8px;
|
18346
|
+
}
|
18347
|
+
|
18348
|
+
.v-alert__close {
|
18349
|
+
flex: 0 1 auto;
|
18350
|
+
grid-area: close;
|
18351
|
+
}
|
18352
|
+
|
18353
|
+
.v-alert__content {
|
18354
|
+
align-self: center;
|
18355
|
+
grid-area: content;
|
18356
|
+
overflow: hidden;
|
18357
|
+
}
|
18358
|
+
|
18359
|
+
.v-alert__append,
|
18360
|
+
.v-alert__close {
|
18361
|
+
align-self: flex-start;
|
18362
|
+
margin-inline-start: 16px;
|
18363
|
+
}
|
18364
|
+
|
18365
|
+
.v-alert__append {
|
18366
|
+
align-self: flex-start;
|
18367
|
+
grid-area: append;
|
18368
|
+
}
|
18369
|
+
.v-alert__append + .v-alert__close {
|
18370
|
+
margin-inline-start: 16px;
|
18371
|
+
}
|
18372
|
+
|
18373
|
+
.v-alert__prepend {
|
18374
|
+
align-self: flex-start;
|
18375
|
+
display: flex;
|
18376
|
+
align-items: center;
|
18377
|
+
grid-area: prepend;
|
18378
|
+
margin-inline-end: 16px;
|
18379
|
+
}
|
18380
|
+
.v-alert--prominent .v-alert__prepend {
|
18381
|
+
align-self: center;
|
18382
|
+
}
|
18383
|
+
|
18384
|
+
.v-alert__underlay {
|
18385
|
+
grid-area: none;
|
18386
|
+
position: absolute;
|
18387
|
+
}
|
18388
|
+
.v-alert--border-start .v-alert__underlay {
|
18389
|
+
border-top-left-radius: 0;
|
18390
|
+
border-bottom-left-radius: 0;
|
18391
|
+
}
|
18392
|
+
.v-alert--border-end .v-alert__underlay {
|
18393
|
+
border-top-right-radius: 0;
|
18394
|
+
border-bottom-right-radius: 0;
|
18395
|
+
}
|
18396
|
+
.v-alert--border-top .v-alert__underlay {
|
18397
|
+
border-top-left-radius: 0;
|
18398
|
+
border-top-right-radius: 0;
|
18399
|
+
}
|
18400
|
+
.v-alert--border-bottom .v-alert__underlay {
|
18401
|
+
border-bottom-left-radius: 0;
|
18402
|
+
border-bottom-right-radius: 0;
|
18403
|
+
}
|
18404
|
+
|
18405
|
+
.v-alert-title {
|
18406
|
+
align-items: center;
|
18407
|
+
align-self: center;
|
18408
|
+
display: flex;
|
18409
|
+
font-size: 1.25rem;
|
18410
|
+
font-weight: 500;
|
18411
|
+
-webkit-hyphens: auto;
|
18412
|
+
hyphens: auto;
|
18413
|
+
letter-spacing: 0.0125em;
|
18414
|
+
line-height: 1.75rem;
|
18415
|
+
overflow-wrap: normal;
|
18416
|
+
text-transform: none;
|
18417
|
+
word-break: normal;
|
18418
|
+
word-wrap: break-word;
|
18419
|
+
}.v-application {
|
18420
|
+
display: flex;
|
18421
|
+
background: rgb(var(--v-theme-background));
|
18422
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
18423
|
+
}
|
18424
|
+
|
18425
|
+
.v-application__wrap {
|
18426
|
+
-webkit-backface-visibility: hidden;
|
18427
|
+
backface-visibility: hidden;
|
18428
|
+
display: flex;
|
18429
|
+
flex-direction: column;
|
18430
|
+
flex: 1 1 auto;
|
18431
|
+
max-width: 100%;
|
18432
|
+
min-height: 100vh;
|
18433
|
+
min-height: 100dvh;
|
18434
|
+
position: relative;
|
18435
|
+
}.v-app-bar {
|
18436
|
+
display: flex;
|
18437
|
+
}
|
18438
|
+
.v-app-bar.v-toolbar {
|
18439
|
+
background: rgb(var(--v-theme-surface));
|
18440
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18441
|
+
}
|
18442
|
+
.v-app-bar.v-toolbar:not(.v-toolbar--flat) {
|
18443
|
+
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));
|
18444
|
+
}
|
18445
|
+
.v-app-bar:not(.v-toolbar--absolute) {
|
18446
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
18447
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18448
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18449
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18450
|
+
cursor: text;
|
18451
|
+
}
|
18452
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18453
|
+
flex: 1 1;
|
18454
|
+
}
|
18455
|
+
.v-autocomplete .v-field input {
|
18456
|
+
min-width: 64px;
|
18245
18457
|
}
|
18246
18458
|
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18247
18459
|
min-width: 0;
|
@@ -18313,77 +18525,6 @@ html.overflow-y-hidden {
|
|
18313
18525
|
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18314
18526
|
opacity: var(--v-high-emphasis-opacity);
|
18315
18527
|
transform: rotate(180deg);
|
18316
|
-
}.v-badge {
|
18317
|
-
display: inline-block;
|
18318
|
-
line-height: 1;
|
18319
|
-
}
|
18320
|
-
|
18321
|
-
.v-badge__badge {
|
18322
|
-
align-items: center;
|
18323
|
-
display: inline-flex;
|
18324
|
-
border-radius: 10px;
|
18325
|
-
font-size: 0.75rem;
|
18326
|
-
font-weight: 500;
|
18327
|
-
height: 1.25rem;
|
18328
|
-
justify-content: center;
|
18329
|
-
min-width: 20px;
|
18330
|
-
padding: 4px 6px;
|
18331
|
-
pointer-events: auto;
|
18332
|
-
position: absolute;
|
18333
|
-
text-align: center;
|
18334
|
-
text-indent: 0;
|
18335
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18336
|
-
white-space: nowrap;
|
18337
|
-
background: rgb(var(--v-theme-surface-variant));
|
18338
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18339
|
-
}
|
18340
|
-
.v-badge--bordered .v-badge__badge::after {
|
18341
|
-
border-radius: inherit;
|
18342
|
-
border-style: solid;
|
18343
|
-
border-width: 2px;
|
18344
|
-
bottom: 0;
|
18345
|
-
color: rgb(var(--v-theme-background));
|
18346
|
-
content: "";
|
18347
|
-
left: 0;
|
18348
|
-
position: absolute;
|
18349
|
-
right: 0;
|
18350
|
-
top: 0;
|
18351
|
-
transform: scale(1.05);
|
18352
|
-
}
|
18353
|
-
.v-badge--dot .v-badge__badge {
|
18354
|
-
border-radius: 4.5px;
|
18355
|
-
height: 9px;
|
18356
|
-
min-width: 0;
|
18357
|
-
padding: 0;
|
18358
|
-
width: 9px;
|
18359
|
-
}
|
18360
|
-
.v-badge--dot .v-badge__badge::after {
|
18361
|
-
border-width: 1.5px;
|
18362
|
-
}
|
18363
|
-
.v-badge--inline .v-badge__badge {
|
18364
|
-
position: relative;
|
18365
|
-
vertical-align: middle;
|
18366
|
-
}
|
18367
|
-
.v-badge__badge .v-icon {
|
18368
|
-
color: inherit;
|
18369
|
-
font-size: 0.75rem;
|
18370
|
-
margin: 0 -2px;
|
18371
|
-
}
|
18372
|
-
.v-badge__badge img,
|
18373
|
-
.v-badge__badge .v-img {
|
18374
|
-
height: 100%;
|
18375
|
-
width: 100%;
|
18376
|
-
}
|
18377
|
-
|
18378
|
-
.v-badge__wrapper {
|
18379
|
-
display: flex;
|
18380
|
-
position: relative;
|
18381
|
-
}
|
18382
|
-
.v-badge--inline .v-badge__wrapper {
|
18383
|
-
align-items: center;
|
18384
|
-
display: inline-flex;
|
18385
|
-
justify-content: center;
|
18386
|
-
margin: 0 4px;
|
18387
18528
|
}.v-avatar {
|
18388
18529
|
flex: none;
|
18389
18530
|
align-items: center;
|
@@ -18479,218 +18620,132 @@ html.overflow-y-hidden {
|
|
18479
18620
|
.v-avatar .v-img {
|
18480
18621
|
height: 100%;
|
18481
18622
|
width: 100%;
|
18482
|
-
}.v-
|
18483
|
-
display:
|
18484
|
-
|
18485
|
-
grid-template-areas: "prepend content append close" ". content . .";
|
18486
|
-
grid-template-columns: max-content auto max-content max-content;
|
18487
|
-
position: relative;
|
18488
|
-
padding: 16px;
|
18623
|
+
}.v-bottom-navigation {
|
18624
|
+
display: flex;
|
18625
|
+
max-width: 100%;
|
18489
18626
|
overflow: hidden;
|
18490
|
-
--v-border-color: currentColor;
|
18491
|
-
border-radius: 4px;
|
18492
|
-
}
|
18493
|
-
.v-alert--absolute {
|
18494
18627
|
position: absolute;
|
18628
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18629
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18630
|
+
border-style: solid;
|
18631
|
+
border-width: 0;
|
18632
|
+
border-radius: 0;
|
18633
|
+
background: rgb(var(--v-theme-surface));
|
18634
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18495
18635
|
}
|
18496
|
-
.v-
|
18497
|
-
|
18498
|
-
|
18499
|
-
.v-alert--sticky {
|
18500
|
-
position: sticky;
|
18636
|
+
.v-bottom-navigation--border {
|
18637
|
+
border-width: thin;
|
18638
|
+
box-shadow: none;
|
18501
18639
|
}
|
18502
|
-
.v-
|
18503
|
-
|
18504
|
-
color: inherit;
|
18505
|
-
}
|
18506
|
-
.v-alert--variant-plain {
|
18507
|
-
opacity: 0.62;
|
18508
|
-
}
|
18509
|
-
.v-alert--variant-plain:focus, .v-alert--variant-plain:hover {
|
18510
|
-
opacity: 1;
|
18511
|
-
}
|
18512
|
-
.v-alert--variant-plain .v-alert__overlay {
|
18513
|
-
display: none;
|
18514
|
-
}
|
18515
|
-
.v-alert--variant-elevated, .v-alert--variant-flat {
|
18516
|
-
background: rgb(var(--v-theme-surface-light));
|
18517
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
18518
|
-
}
|
18519
|
-
.v-alert--variant-elevated {
|
18520
|
-
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));
|
18521
|
-
}
|
18522
|
-
.v-alert--variant-flat {
|
18523
|
-
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));
|
18524
|
-
}
|
18525
|
-
.v-alert--variant-outlined {
|
18526
|
-
border: thin solid currentColor;
|
18527
|
-
}
|
18528
|
-
.v-alert--variant-text .v-alert__overlay {
|
18529
|
-
background: currentColor;
|
18530
|
-
}
|
18531
|
-
.v-alert--variant-tonal .v-alert__underlay {
|
18532
|
-
background: currentColor;
|
18533
|
-
opacity: var(--v-activated-opacity);
|
18534
|
-
border-radius: inherit;
|
18535
|
-
top: 0;
|
18536
|
-
right: 0;
|
18537
|
-
bottom: 0;
|
18538
|
-
left: 0;
|
18539
|
-
pointer-events: none;
|
18540
|
-
}
|
18541
|
-
.v-alert .v-alert__underlay {
|
18542
|
-
position: absolute;
|
18543
|
-
}
|
18544
|
-
.v-alert--prominent {
|
18545
|
-
grid-template-areas: "prepend content append close" "prepend content . .";
|
18546
|
-
}
|
18547
|
-
.v-alert.v-alert--border {
|
18548
|
-
--v-border-opacity: 0.38;
|
18549
|
-
}
|
18550
|
-
.v-alert.v-alert--border.v-alert--border-start {
|
18551
|
-
padding-inline-start: 24px;
|
18552
|
-
}
|
18553
|
-
.v-alert.v-alert--border.v-alert--border-end {
|
18554
|
-
padding-inline-end: 24px;
|
18640
|
+
.v-bottom-navigation--active {
|
18641
|
+
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));
|
18555
18642
|
}
|
18556
|
-
|
18557
|
-
|
18643
|
+
|
18644
|
+
.v-bottom-navigation__content {
|
18645
|
+
display: flex;
|
18646
|
+
flex: none;
|
18647
|
+
font-size: 0.75rem;
|
18648
|
+
justify-content: center;
|
18649
|
+
transition: inherit;
|
18650
|
+
width: 100%;
|
18558
18651
|
}
|
18559
|
-
.v-
|
18560
|
-
|
18561
|
-
|
18652
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18653
|
+
font-size: inherit;
|
18654
|
+
height: 100%;
|
18655
|
+
max-width: 168px;
|
18656
|
+
min-width: 80px;
|
18657
|
+
text-transform: none;
|
18658
|
+
transition: inherit;
|
18659
|
+
width: auto;
|
18660
|
+
border-radius: 0;
|
18562
18661
|
}
|
18563
|
-
.v-
|
18564
|
-
|
18662
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
18663
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18664
|
+
transition: inherit;
|
18565
18665
|
}
|
18566
|
-
.v-
|
18567
|
-
|
18666
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18667
|
+
font-size: 1.5rem;
|
18568
18668
|
}
|
18569
|
-
|
18570
|
-
|
18571
|
-
padding-bottom: 12px;
|
18572
|
-
padding-top: 12px;
|
18669
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
18670
|
+
flex-grow: 1;
|
18573
18671
|
}
|
18574
|
-
.v-
|
18575
|
-
|
18672
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
18673
|
+
transition: inherit;
|
18674
|
+
opacity: 0;
|
18576
18675
|
}
|
18577
|
-
.v-
|
18578
|
-
|
18676
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18677
|
+
transform: translateY(0.5rem);
|
18678
|
+
}.v-badge {
|
18679
|
+
display: inline-block;
|
18680
|
+
line-height: 1;
|
18579
18681
|
}
|
18580
18682
|
|
18581
|
-
.v-
|
18582
|
-
|
18583
|
-
|
18584
|
-
|
18585
|
-
|
18586
|
-
|
18587
|
-
|
18588
|
-
|
18589
|
-
|
18683
|
+
.v-badge__badge {
|
18684
|
+
align-items: center;
|
18685
|
+
display: inline-flex;
|
18686
|
+
border-radius: 10px;
|
18687
|
+
font-size: 0.75rem;
|
18688
|
+
font-weight: 500;
|
18689
|
+
height: 1.25rem;
|
18690
|
+
justify-content: center;
|
18691
|
+
min-width: 20px;
|
18692
|
+
padding: 4px 6px;
|
18693
|
+
pointer-events: auto;
|
18694
|
+
position: absolute;
|
18695
|
+
text-align: center;
|
18696
|
+
text-indent: 0;
|
18697
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18698
|
+
white-space: nowrap;
|
18699
|
+
background: rgb(var(--v-theme-surface-variant));
|
18700
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18590
18701
|
}
|
18591
|
-
|
18592
|
-
.v-alert__border {
|
18702
|
+
.v-badge--bordered .v-badge__badge::after {
|
18593
18703
|
border-radius: inherit;
|
18704
|
+
border-style: solid;
|
18705
|
+
border-width: 2px;
|
18594
18706
|
bottom: 0;
|
18707
|
+
color: rgb(var(--v-theme-background));
|
18708
|
+
content: "";
|
18595
18709
|
left: 0;
|
18596
|
-
opacity: var(--v-border-opacity);
|
18597
18710
|
position: absolute;
|
18598
|
-
pointer-events: none;
|
18599
18711
|
right: 0;
|
18600
18712
|
top: 0;
|
18601
|
-
|
18602
|
-
border-color: currentColor;
|
18603
|
-
border-style: solid;
|
18604
|
-
border-width: 0;
|
18605
|
-
}
|
18606
|
-
.v-alert__border--border {
|
18607
|
-
border-width: 8px;
|
18608
|
-
box-shadow: none;
|
18609
|
-
}
|
18610
|
-
.v-alert--border-start .v-alert__border {
|
18611
|
-
border-inline-start-width: 8px;
|
18612
|
-
}
|
18613
|
-
.v-alert--border-end .v-alert__border {
|
18614
|
-
border-inline-end-width: 8px;
|
18615
|
-
}
|
18616
|
-
.v-alert--border-top .v-alert__border {
|
18617
|
-
border-top-width: 8px;
|
18618
|
-
}
|
18619
|
-
.v-alert--border-bottom .v-alert__border {
|
18620
|
-
border-bottom-width: 8px;
|
18713
|
+
transform: scale(1.05);
|
18621
18714
|
}
|
18622
|
-
|
18623
|
-
|
18624
|
-
|
18625
|
-
|
18715
|
+
.v-badge--dot .v-badge__badge {
|
18716
|
+
border-radius: 4.5px;
|
18717
|
+
height: 9px;
|
18718
|
+
min-width: 0;
|
18719
|
+
padding: 0;
|
18720
|
+
width: 9px;
|
18626
18721
|
}
|
18627
|
-
|
18628
|
-
|
18629
|
-
align-self: center;
|
18630
|
-
grid-area: content;
|
18631
|
-
overflow: hidden;
|
18722
|
+
.v-badge--dot .v-badge__badge::after {
|
18723
|
+
border-width: 1.5px;
|
18632
18724
|
}
|
18633
|
-
|
18634
|
-
|
18635
|
-
|
18636
|
-
align-self: flex-start;
|
18637
|
-
margin-inline-start: 16px;
|
18725
|
+
.v-badge--inline .v-badge__badge {
|
18726
|
+
position: relative;
|
18727
|
+
vertical-align: middle;
|
18638
18728
|
}
|
18639
|
-
|
18640
|
-
|
18641
|
-
|
18642
|
-
|
18729
|
+
.v-badge__badge .v-icon {
|
18730
|
+
color: inherit;
|
18731
|
+
font-size: 0.75rem;
|
18732
|
+
margin: 0 -2px;
|
18643
18733
|
}
|
18644
|
-
.v-
|
18645
|
-
|
18734
|
+
.v-badge__badge img,
|
18735
|
+
.v-badge__badge .v-img {
|
18736
|
+
height: 100%;
|
18737
|
+
width: 100%;
|
18646
18738
|
}
|
18647
18739
|
|
18648
|
-
.v-
|
18649
|
-
align-self: flex-start;
|
18740
|
+
.v-badge__wrapper {
|
18650
18741
|
display: flex;
|
18651
|
-
|
18652
|
-
grid-area: prepend;
|
18653
|
-
margin-inline-end: 16px;
|
18654
|
-
}
|
18655
|
-
.v-alert--prominent .v-alert__prepend {
|
18656
|
-
align-self: center;
|
18657
|
-
}
|
18658
|
-
|
18659
|
-
.v-alert__underlay {
|
18660
|
-
grid-area: none;
|
18661
|
-
position: absolute;
|
18662
|
-
}
|
18663
|
-
.v-alert--border-start .v-alert__underlay {
|
18664
|
-
border-top-left-radius: 0;
|
18665
|
-
border-bottom-left-radius: 0;
|
18666
|
-
}
|
18667
|
-
.v-alert--border-end .v-alert__underlay {
|
18668
|
-
border-top-right-radius: 0;
|
18669
|
-
border-bottom-right-radius: 0;
|
18670
|
-
}
|
18671
|
-
.v-alert--border-top .v-alert__underlay {
|
18672
|
-
border-top-left-radius: 0;
|
18673
|
-
border-top-right-radius: 0;
|
18674
|
-
}
|
18675
|
-
.v-alert--border-bottom .v-alert__underlay {
|
18676
|
-
border-bottom-left-radius: 0;
|
18677
|
-
border-bottom-right-radius: 0;
|
18742
|
+
position: relative;
|
18678
18743
|
}
|
18679
|
-
|
18680
|
-
.v-alert-title {
|
18744
|
+
.v-badge--inline .v-badge__wrapper {
|
18681
18745
|
align-items: center;
|
18682
|
-
|
18683
|
-
|
18684
|
-
|
18685
|
-
font-weight: 500;
|
18686
|
-
-webkit-hyphens: auto;
|
18687
|
-
hyphens: auto;
|
18688
|
-
letter-spacing: 0.0125em;
|
18689
|
-
line-height: 1.75rem;
|
18690
|
-
overflow-wrap: normal;
|
18691
|
-
text-transform: none;
|
18692
|
-
word-break: normal;
|
18693
|
-
word-wrap: break-word;
|
18746
|
+
display: inline-flex;
|
18747
|
+
justify-content: center;
|
18748
|
+
margin: 0 4px;
|
18694
18749
|
}.bottom-sheet-transition-enter-from {
|
18695
18750
|
transform: translateY(100%);
|
18696
18751
|
}
|
@@ -18723,61 +18778,6 @@ html.overflow-y-hidden {
|
|
18723
18778
|
.v-bottom-sheet.v-bottom-sheet--inset {
|
18724
18779
|
max-width: 70%;
|
18725
18780
|
}
|
18726
|
-
}.v-bottom-navigation {
|
18727
|
-
display: flex;
|
18728
|
-
max-width: 100%;
|
18729
|
-
overflow: hidden;
|
18730
|
-
position: absolute;
|
18731
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18732
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18733
|
-
border-style: solid;
|
18734
|
-
border-width: 0;
|
18735
|
-
border-radius: 0;
|
18736
|
-
background: rgb(var(--v-theme-surface));
|
18737
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18738
|
-
}
|
18739
|
-
.v-bottom-navigation--border {
|
18740
|
-
border-width: thin;
|
18741
|
-
box-shadow: none;
|
18742
|
-
}
|
18743
|
-
.v-bottom-navigation--active {
|
18744
|
-
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));
|
18745
|
-
}
|
18746
|
-
|
18747
|
-
.v-bottom-navigation__content {
|
18748
|
-
display: flex;
|
18749
|
-
flex: none;
|
18750
|
-
font-size: 0.75rem;
|
18751
|
-
justify-content: center;
|
18752
|
-
transition: inherit;
|
18753
|
-
width: 100%;
|
18754
|
-
}
|
18755
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18756
|
-
font-size: inherit;
|
18757
|
-
height: 100%;
|
18758
|
-
max-width: 168px;
|
18759
|
-
min-width: 80px;
|
18760
|
-
text-transform: none;
|
18761
|
-
transition: inherit;
|
18762
|
-
width: auto;
|
18763
|
-
border-radius: 0;
|
18764
|
-
}
|
18765
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
18766
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18767
|
-
transition: inherit;
|
18768
|
-
}
|
18769
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18770
|
-
font-size: 1.5rem;
|
18771
|
-
}
|
18772
|
-
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
18773
|
-
flex-grow: 1;
|
18774
|
-
}
|
18775
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
18776
|
-
transition: inherit;
|
18777
|
-
opacity: 0;
|
18778
|
-
}
|
18779
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18780
|
-
transform: translateY(0.5rem);
|
18781
18781
|
}.v-banner {
|
18782
18782
|
display: grid;
|
18783
18783
|
flex: 1 1;
|
@@ -18935,76 +18935,6 @@ html.overflow-y-hidden {
|
|
18935
18935
|
}
|
18936
18936
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18937
18937
|
align-self: flex-start;
|
18938
|
-
}.v-breadcrumbs {
|
18939
|
-
display: flex;
|
18940
|
-
align-items: center;
|
18941
|
-
line-height: 1.6;
|
18942
|
-
padding: 16px 12px;
|
18943
|
-
}
|
18944
|
-
.v-breadcrumbs--rounded {
|
18945
|
-
border-radius: 4px;
|
18946
|
-
}
|
18947
|
-
.v-breadcrumbs--density-default {
|
18948
|
-
padding-top: 16px;
|
18949
|
-
padding-bottom: 16px;
|
18950
|
-
}
|
18951
|
-
|
18952
|
-
.v-breadcrumbs--density-comfortable {
|
18953
|
-
padding-top: 12px;
|
18954
|
-
padding-bottom: 12px;
|
18955
|
-
}
|
18956
|
-
|
18957
|
-
.v-breadcrumbs--density-compact {
|
18958
|
-
padding-top: 8px;
|
18959
|
-
padding-bottom: 8px;
|
18960
|
-
}
|
18961
|
-
|
18962
|
-
.v-breadcrumbs__prepend {
|
18963
|
-
align-items: center;
|
18964
|
-
display: inline-flex;
|
18965
|
-
}
|
18966
|
-
|
18967
|
-
.v-breadcrumbs-item {
|
18968
|
-
align-items: center;
|
18969
|
-
color: inherit;
|
18970
|
-
display: inline-flex;
|
18971
|
-
padding: 0 4px;
|
18972
|
-
text-decoration: none;
|
18973
|
-
vertical-align: middle;
|
18974
|
-
}
|
18975
|
-
.v-breadcrumbs-item--disabled {
|
18976
|
-
opacity: var(--v-disabled-opacity);
|
18977
|
-
pointer-events: none;
|
18978
|
-
}
|
18979
|
-
.v-breadcrumbs-item--link {
|
18980
|
-
color: inherit;
|
18981
|
-
text-decoration: none;
|
18982
|
-
}
|
18983
|
-
.v-breadcrumbs-item--link:hover {
|
18984
|
-
text-decoration: underline;
|
18985
|
-
}
|
18986
|
-
.v-breadcrumbs-item .v-icon {
|
18987
|
-
font-size: 1rem;
|
18988
|
-
margin-inline: -4px 2px;
|
18989
|
-
}
|
18990
|
-
|
18991
|
-
.v-breadcrumbs-divider {
|
18992
|
-
display: inline-block;
|
18993
|
-
padding: 0 8px;
|
18994
|
-
vertical-align: middle;
|
18995
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
18996
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
18997
|
-
}
|
18998
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
18999
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19000
|
-
}
|
19001
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19002
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19003
|
-
}
|
19004
|
-
@supports not selector(:focus-visible) {
|
19005
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19006
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19007
|
-
}
|
19008
18938
|
}.v-btn {
|
19009
18939
|
align-items: center;
|
19010
18940
|
border-radius: 4px;
|
@@ -19391,38 +19321,108 @@ html.overflow-y-hidden {
|
|
19391
19321
|
white-space: normal;
|
19392
19322
|
}
|
19393
19323
|
|
19394
|
-
.v-btn__overlay {
|
19395
|
-
background-color: currentColor;
|
19396
|
-
border-radius: inherit;
|
19397
|
-
opacity: 0;
|
19398
|
-
transition: opacity 0.2s ease-in-out;
|
19324
|
+
.v-btn__overlay {
|
19325
|
+
background-color: currentColor;
|
19326
|
+
border-radius: inherit;
|
19327
|
+
opacity: 0;
|
19328
|
+
transition: opacity 0.2s ease-in-out;
|
19329
|
+
}
|
19330
|
+
|
19331
|
+
.v-btn__overlay,
|
19332
|
+
.v-btn__underlay {
|
19333
|
+
position: absolute;
|
19334
|
+
top: 0;
|
19335
|
+
left: 0;
|
19336
|
+
width: 100%;
|
19337
|
+
height: 100%;
|
19338
|
+
pointer-events: none;
|
19339
|
+
}
|
19340
|
+
|
19341
|
+
.v-card-actions .v-btn ~ .v-btn:not(.v-btn-toggle .v-btn) {
|
19342
|
+
margin-inline-start: 0.5rem;
|
19343
|
+
}
|
19344
|
+
|
19345
|
+
.v-pagination .v-btn {
|
19346
|
+
border-radius: 4px;
|
19347
|
+
}
|
19348
|
+
.v-pagination .v-btn--rounded {
|
19349
|
+
border-radius: 50%;
|
19350
|
+
}
|
19351
|
+
.v-btn__overlay {
|
19352
|
+
transition: none;
|
19353
|
+
}
|
19354
|
+
.v-pagination__item--is-active .v-btn__overlay {
|
19355
|
+
opacity: var(--v-border-opacity);
|
19356
|
+
}.v-breadcrumbs {
|
19357
|
+
display: flex;
|
19358
|
+
align-items: center;
|
19359
|
+
line-height: 1.6;
|
19360
|
+
padding: 16px 12px;
|
19361
|
+
}
|
19362
|
+
.v-breadcrumbs--rounded {
|
19363
|
+
border-radius: 4px;
|
19364
|
+
}
|
19365
|
+
.v-breadcrumbs--density-default {
|
19366
|
+
padding-top: 16px;
|
19367
|
+
padding-bottom: 16px;
|
19368
|
+
}
|
19369
|
+
|
19370
|
+
.v-breadcrumbs--density-comfortable {
|
19371
|
+
padding-top: 12px;
|
19372
|
+
padding-bottom: 12px;
|
19373
|
+
}
|
19374
|
+
|
19375
|
+
.v-breadcrumbs--density-compact {
|
19376
|
+
padding-top: 8px;
|
19377
|
+
padding-bottom: 8px;
|
19378
|
+
}
|
19379
|
+
|
19380
|
+
.v-breadcrumbs__prepend {
|
19381
|
+
align-items: center;
|
19382
|
+
display: inline-flex;
|
19399
19383
|
}
|
19400
19384
|
|
19401
|
-
.v-
|
19402
|
-
|
19403
|
-
|
19404
|
-
|
19405
|
-
|
19406
|
-
|
19407
|
-
|
19385
|
+
.v-breadcrumbs-item {
|
19386
|
+
align-items: center;
|
19387
|
+
color: inherit;
|
19388
|
+
display: inline-flex;
|
19389
|
+
padding: 0 4px;
|
19390
|
+
text-decoration: none;
|
19391
|
+
vertical-align: middle;
|
19392
|
+
}
|
19393
|
+
.v-breadcrumbs-item--disabled {
|
19394
|
+
opacity: var(--v-disabled-opacity);
|
19408
19395
|
pointer-events: none;
|
19409
19396
|
}
|
19410
|
-
|
19411
|
-
|
19412
|
-
|
19397
|
+
.v-breadcrumbs-item--link {
|
19398
|
+
color: inherit;
|
19399
|
+
text-decoration: none;
|
19400
|
+
}
|
19401
|
+
.v-breadcrumbs-item--link:hover {
|
19402
|
+
text-decoration: underline;
|
19403
|
+
}
|
19404
|
+
.v-breadcrumbs-item .v-icon {
|
19405
|
+
font-size: 1rem;
|
19406
|
+
margin-inline: -4px 2px;
|
19413
19407
|
}
|
19414
19408
|
|
19415
|
-
.v-
|
19416
|
-
|
19409
|
+
.v-breadcrumbs-divider {
|
19410
|
+
display: inline-block;
|
19411
|
+
padding: 0 8px;
|
19412
|
+
vertical-align: middle;
|
19413
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19414
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19417
19415
|
}
|
19418
|
-
.v-
|
19419
|
-
|
19416
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19417
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19420
19418
|
}
|
19421
|
-
.v-btn__overlay {
|
19422
|
-
|
19419
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19420
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19423
19421
|
}
|
19424
|
-
|
19425
|
-
|
19422
|
+
@supports not selector(:focus-visible) {
|
19423
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19424
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19425
|
+
}
|
19426
19426
|
}.v-card {
|
19427
19427
|
display: block;
|
19428
19428
|
overflow: hidden;
|
@@ -19722,6 +19722,69 @@ html.overflow-y-hidden {
|
|
19722
19722
|
pointer-events: none;
|
19723
19723
|
opacity: 0;
|
19724
19724
|
transition: opacity 0.2s ease-in-out;
|
19725
|
+
}.v-carousel {
|
19726
|
+
overflow: hidden;
|
19727
|
+
position: relative;
|
19728
|
+
width: 100%;
|
19729
|
+
}
|
19730
|
+
.v-carousel__controls {
|
19731
|
+
align-items: center;
|
19732
|
+
bottom: 0;
|
19733
|
+
display: flex;
|
19734
|
+
height: 50px;
|
19735
|
+
justify-content: center;
|
19736
|
+
list-style-type: none;
|
19737
|
+
position: absolute;
|
19738
|
+
width: 100%;
|
19739
|
+
z-index: 1;
|
19740
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
19741
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
19742
|
+
}
|
19743
|
+
.v-carousel__controls > .v-item-group {
|
19744
|
+
flex: 0 1 auto;
|
19745
|
+
}
|
19746
|
+
.v-carousel__controls__item {
|
19747
|
+
margin: 0 8px;
|
19748
|
+
}
|
19749
|
+
.v-carousel__controls__item .v-icon {
|
19750
|
+
opacity: 0.5;
|
19751
|
+
}
|
19752
|
+
.v-carousel__controls__item--active .v-icon {
|
19753
|
+
opacity: 1;
|
19754
|
+
vertical-align: middle;
|
19755
|
+
}
|
19756
|
+
.v-carousel__controls__item:hover {
|
19757
|
+
background: none;
|
19758
|
+
}
|
19759
|
+
.v-carousel__controls__item:hover .v-icon {
|
19760
|
+
opacity: 0.8;
|
19761
|
+
}
|
19762
|
+
|
19763
|
+
.v-carousel__progress {
|
19764
|
+
margin: 0;
|
19765
|
+
position: absolute;
|
19766
|
+
bottom: 0;
|
19767
|
+
left: 0;
|
19768
|
+
right: 0;
|
19769
|
+
}
|
19770
|
+
|
19771
|
+
.v-carousel-item {
|
19772
|
+
display: block;
|
19773
|
+
height: inherit;
|
19774
|
+
text-decoration: none;
|
19775
|
+
}
|
19776
|
+
.v-carousel-item > .v-img {
|
19777
|
+
height: inherit;
|
19778
|
+
}
|
19779
|
+
|
19780
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
19781
|
+
background: transparent;
|
19782
|
+
}
|
19783
|
+
|
19784
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
19785
|
+
flex-direction: column;
|
19786
|
+
height: 100% !important;
|
19787
|
+
width: 50px;
|
19725
19788
|
}.v-btn-group {
|
19726
19789
|
display: inline-flex;
|
19727
19790
|
flex-wrap: nowrap;
|
@@ -19778,6 +19841,29 @@ html.overflow-y-hidden {
|
|
19778
19841
|
}
|
19779
19842
|
.v-btn-group--tile {
|
19780
19843
|
border-radius: 0;
|
19844
|
+
}.v-chip-group {
|
19845
|
+
display: flex;
|
19846
|
+
max-width: 100%;
|
19847
|
+
min-width: 0;
|
19848
|
+
overflow-x: auto;
|
19849
|
+
padding: 4px 0;
|
19850
|
+
}
|
19851
|
+
.v-chip-group .v-chip {
|
19852
|
+
margin: 4px 8px 4px 0;
|
19853
|
+
}
|
19854
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
19855
|
+
opacity: var(--v-activated-opacity);
|
19856
|
+
}
|
19857
|
+
|
19858
|
+
.v-chip-group--column .v-slide-group__content {
|
19859
|
+
white-space: normal;
|
19860
|
+
flex-wrap: wrap;
|
19861
|
+
max-width: 100%;
|
19862
|
+
}.v-checkbox.v-input {
|
19863
|
+
flex: 0 1 auto;
|
19864
|
+
}
|
19865
|
+
.v-checkbox .v-selection-control {
|
19866
|
+
min-height: var(--v-input-control-height);
|
19781
19867
|
}.v-chip {
|
19782
19868
|
align-items: center;
|
19783
19869
|
display: inline-flex;
|
@@ -20189,113 +20275,7 @@ html.overflow-y-hidden {
|
|
20189
20275
|
}
|
20190
20276
|
|
20191
20277
|
.v-chip--label {
|
20192
|
-
border-radius: 4px;
|
20193
|
-
}.v-checkbox.v-input {
|
20194
|
-
flex: 0 1 auto;
|
20195
|
-
}
|
20196
|
-
.v-checkbox .v-selection-control {
|
20197
|
-
min-height: var(--v-input-control-height);
|
20198
|
-
}.v-carousel {
|
20199
|
-
overflow: hidden;
|
20200
|
-
position: relative;
|
20201
|
-
width: 100%;
|
20202
|
-
}
|
20203
|
-
.v-carousel__controls {
|
20204
|
-
align-items: center;
|
20205
|
-
bottom: 0;
|
20206
|
-
display: flex;
|
20207
|
-
height: 50px;
|
20208
|
-
justify-content: center;
|
20209
|
-
list-style-type: none;
|
20210
|
-
position: absolute;
|
20211
|
-
width: 100%;
|
20212
|
-
z-index: 1;
|
20213
|
-
background: rgba(var(--v-theme-surface-variant), 0.3);
|
20214
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
20215
|
-
}
|
20216
|
-
.v-carousel__controls > .v-item-group {
|
20217
|
-
flex: 0 1 auto;
|
20218
|
-
}
|
20219
|
-
.v-carousel__controls__item {
|
20220
|
-
margin: 0 8px;
|
20221
|
-
}
|
20222
|
-
.v-carousel__controls__item .v-icon {
|
20223
|
-
opacity: 0.5;
|
20224
|
-
}
|
20225
|
-
.v-carousel__controls__item--active .v-icon {
|
20226
|
-
opacity: 1;
|
20227
|
-
vertical-align: middle;
|
20228
|
-
}
|
20229
|
-
.v-carousel__controls__item:hover {
|
20230
|
-
background: none;
|
20231
|
-
}
|
20232
|
-
.v-carousel__controls__item:hover .v-icon {
|
20233
|
-
opacity: 0.8;
|
20234
|
-
}
|
20235
|
-
|
20236
|
-
.v-carousel__progress {
|
20237
|
-
margin: 0;
|
20238
|
-
position: absolute;
|
20239
|
-
bottom: 0;
|
20240
|
-
left: 0;
|
20241
|
-
right: 0;
|
20242
|
-
}
|
20243
|
-
|
20244
|
-
.v-carousel-item {
|
20245
|
-
display: block;
|
20246
|
-
height: inherit;
|
20247
|
-
text-decoration: none;
|
20248
|
-
}
|
20249
|
-
.v-carousel-item > .v-img {
|
20250
|
-
height: inherit;
|
20251
|
-
}
|
20252
|
-
|
20253
|
-
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
20254
|
-
background: transparent;
|
20255
|
-
}
|
20256
|
-
|
20257
|
-
.v-carousel--vertical-delimiters .v-carousel__controls {
|
20258
|
-
flex-direction: column;
|
20259
|
-
height: 100% !important;
|
20260
|
-
width: 50px;
|
20261
|
-
}.v-chip-group {
|
20262
|
-
display: flex;
|
20263
|
-
max-width: 100%;
|
20264
|
-
min-width: 0;
|
20265
|
-
overflow-x: auto;
|
20266
|
-
padding: 4px 0;
|
20267
|
-
}
|
20268
|
-
.v-chip-group .v-chip {
|
20269
|
-
margin: 4px 8px 4px 0;
|
20270
|
-
}
|
20271
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20272
|
-
opacity: var(--v-activated-opacity);
|
20273
|
-
}
|
20274
|
-
|
20275
|
-
.v-chip-group--column .v-slide-group__content {
|
20276
|
-
white-space: normal;
|
20277
|
-
flex-wrap: wrap;
|
20278
|
-
max-width: 100%;
|
20279
|
-
}.v-color-picker {
|
20280
|
-
align-self: flex-start;
|
20281
|
-
contain: content;
|
20282
|
-
}
|
20283
|
-
.v-color-picker.v-sheet {
|
20284
|
-
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));
|
20285
|
-
border-radius: 4px;
|
20286
|
-
}
|
20287
|
-
|
20288
|
-
.v-color-picker__controls {
|
20289
|
-
display: flex;
|
20290
|
-
flex-direction: column;
|
20291
|
-
padding: 16px;
|
20292
|
-
}
|
20293
|
-
|
20294
|
-
.v-color-picker--flat {
|
20295
|
-
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));
|
20296
|
-
}
|
20297
|
-
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20298
|
-
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));
|
20278
|
+
border-radius: 4px;
|
20299
20279
|
}.v-container {
|
20300
20280
|
width: 100%;
|
20301
20281
|
padding: 16px;
|
@@ -21054,6 +21034,26 @@ html.overflow-y-hidden {
|
|
21054
21034
|
flex: 0 1 auto;
|
21055
21035
|
font-size: 12px;
|
21056
21036
|
transition-duration: 150ms;
|
21037
|
+
}.v-color-picker {
|
21038
|
+
align-self: flex-start;
|
21039
|
+
contain: content;
|
21040
|
+
}
|
21041
|
+
.v-color-picker.v-sheet {
|
21042
|
+
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));
|
21043
|
+
border-radius: 4px;
|
21044
|
+
}
|
21045
|
+
|
21046
|
+
.v-color-picker__controls {
|
21047
|
+
display: flex;
|
21048
|
+
flex-direction: column;
|
21049
|
+
padding: 16px;
|
21050
|
+
}
|
21051
|
+
|
21052
|
+
.v-color-picker--flat {
|
21053
|
+
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));
|
21054
|
+
}
|
21055
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
21056
|
+
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));
|
21057
21057
|
}.v-data-table {
|
21058
21058
|
width: 100%;
|
21059
21059
|
}
|
@@ -21136,6 +21136,11 @@ html.overflow-y-hidden {
|
|
21136
21136
|
.v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
|
21137
21137
|
opacity: 0.5;
|
21138
21138
|
}
|
21139
|
+
.v-data-table .v-table__wrapper > table > thead > tr.v-data-table__tr--mobile > td,
|
21140
|
+
.v-data-table .v-table__wrapper > table tbody > tr.v-data-table__tr--mobile > td {
|
21141
|
+
height: -moz-fit-content;
|
21142
|
+
height: fit-content;
|
21143
|
+
}
|
21139
21144
|
|
21140
21145
|
.v-data-table-column--fixed,
|
21141
21146
|
.v-data-table__th--sticky {
|
@@ -21182,302 +21187,91 @@ html.overflow-y-hidden {
|
|
21182
21187
|
padding: 4px;
|
21183
21188
|
border-radius: 50%;
|
21184
21189
|
background: rgba(var(--v-border-color), var(--v-border-opacity));
|
21185
|
-
min-width: 20px;
|
21186
|
-
min-height: 20px;
|
21187
|
-
width: 20px;
|
21188
|
-
height: 20px;
|
21189
|
-
}
|
21190
|
-
|
21191
|
-
.v-data-table-progress > th {
|
21192
|
-
border: none !important;
|
21193
|
-
height: auto !important;
|
21194
|
-
padding: 0 !important;
|
21195
|
-
}
|
21196
|
-
|
21197
|
-
.v-data-table-progress__loader {
|
21198
|
-
position: relative;
|
21199
|
-
}
|
21200
|
-
|
21201
|
-
.v-data-table-rows-loading,
|
21202
|
-
.v-data-table-rows-no-data {
|
21203
|
-
text-align: center;
|
21204
|
-
}
|
21205
|
-
|
21206
|
-
.v-data-table__tr--mobile > .v-data-table__td--expanded-row {
|
21207
|
-
grid-template-columns: 0;
|
21208
|
-
justify-content: center;
|
21209
|
-
}
|
21210
|
-
.v-data-table__tr--mobile > .v-data-table__td--select-row {
|
21211
|
-
grid-template-columns: 0;
|
21212
|
-
justify-content: end;
|
21213
|
-
}
|
21214
|
-
.v-data-table__tr--mobile > td {
|
21215
|
-
align-items: center;
|
21216
|
-
column-gap: 4px;
|
21217
|
-
display: grid;
|
21218
|
-
grid-template-columns: repeat(2, 1fr);
|
21219
|
-
min-height: var(--v-table-row-height);
|
21220
|
-
}
|
21221
|
-
.v-data-table__tr--mobile > td:not(:last-child) {
|
21222
|
-
border-bottom: 0 !important;
|
21223
|
-
}
|
21224
|
-
|
21225
|
-
.v-data-table__td-title {
|
21226
|
-
font-weight: 500;
|
21227
|
-
text-align: left;
|
21228
|
-
}
|
21229
|
-
|
21230
|
-
.v-data-table__td-value {
|
21231
|
-
text-align: right;
|
21232
|
-
}
|
21233
|
-
|
21234
|
-
.v-data-table__td-sort-icon {
|
21235
|
-
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
21236
|
-
}
|
21237
|
-
.v-data-table__td-sort-icon-active {
|
21238
|
-
color: rgba(var(--v-theme-on-surface));
|
21239
|
-
}.v-data-table-footer {
|
21240
|
-
align-items: center;
|
21241
|
-
display: flex;
|
21242
|
-
flex-wrap: wrap;
|
21243
|
-
justify-content: flex-end;
|
21244
|
-
padding: 8px 4px;
|
21245
|
-
}
|
21246
|
-
.v-data-table-footer__items-per-page {
|
21247
|
-
align-items: center;
|
21248
|
-
display: flex;
|
21249
|
-
justify-content: center;
|
21250
|
-
}
|
21251
|
-
.v-data-table-footer__items-per-page > span {
|
21252
|
-
padding-inline-end: 8px;
|
21253
|
-
}
|
21254
|
-
.v-data-table-footer__items-per-page > .v-select {
|
21255
|
-
width: 90px;
|
21256
|
-
}
|
21257
|
-
.v-data-table-footer__info {
|
21258
|
-
display: flex;
|
21259
|
-
justify-content: flex-end;
|
21260
|
-
min-width: 116px;
|
21261
|
-
padding: 0 16px;
|
21262
|
-
}
|
21263
|
-
.v-data-table-footer__paginationz {
|
21264
|
-
align-items: center;
|
21265
|
-
display: flex;
|
21266
|
-
margin-inline-start: 16px;
|
21267
|
-
}
|
21268
|
-
.v-data-table-footer__page {
|
21269
|
-
padding: 0 8px;
|
21270
|
-
}.v-date-picker-controls {
|
21271
|
-
display: flex;
|
21272
|
-
align-items: center;
|
21273
|
-
justify-content: space-between;
|
21274
|
-
font-size: 0.875rem;
|
21275
|
-
padding-top: 4px;
|
21276
|
-
padding-bottom: 4px;
|
21277
|
-
padding-inline-start: 6px;
|
21278
|
-
padding-inline-end: 12px;
|
21279
|
-
}
|
21280
|
-
.v-date-picker-controls > .v-btn:first-child {
|
21281
|
-
text-transform: none;
|
21282
|
-
font-weight: 400;
|
21283
|
-
line-height: initial;
|
21284
|
-
letter-spacing: initial;
|
21285
|
-
}
|
21286
|
-
.v-date-picker-controls--variant-classic {
|
21287
|
-
padding-inline-start: 12px;
|
21288
|
-
}
|
21289
|
-
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
21290
|
-
opacity: 0.7;
|
21291
|
-
}
|
21292
|
-
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21293
|
-
cursor: pointer;
|
21294
|
-
}
|
21295
|
-
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21296
|
-
opacity: 1;
|
21297
|
-
}
|
21298
|
-
.v-date-picker-controls .v-btn:last-child {
|
21299
|
-
margin-inline-start: 4px;
|
21300
|
-
}
|
21301
|
-
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
21302
|
-
transform: rotate(180deg);
|
21303
|
-
}
|
21304
|
-
|
21305
|
-
.v-date-picker-controls__date {
|
21306
|
-
margin-inline-end: 4px;
|
21307
|
-
}
|
21308
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
21309
|
-
margin: auto;
|
21310
|
-
text-align: center;
|
21311
|
-
}
|
21312
|
-
|
21313
|
-
.v-date-picker-controls__month {
|
21314
|
-
display: flex;
|
21315
|
-
}
|
21316
|
-
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
21317
|
-
flex-direction: row-reverse;
|
21318
|
-
}
|
21319
|
-
|
21320
|
-
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
21321
|
-
flex: 1 0 auto;
|
21322
|
-
}
|
21323
|
-
|
21324
|
-
.v-date-picker__title {
|
21325
|
-
display: inline-block;
|
21326
|
-
}.v-date-picker {
|
21327
|
-
overflow: hidden;
|
21328
|
-
width: 328px;
|
21329
|
-
}
|
21330
|
-
.v-date-picker--show-week {
|
21331
|
-
width: 368px;
|
21332
|
-
}.v-date-picker-header {
|
21333
|
-
align-items: flex-end;
|
21334
|
-
height: 70px;
|
21335
|
-
display: grid;
|
21336
|
-
grid-template-areas: "prepend content append";
|
21337
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21338
|
-
overflow: hidden;
|
21339
|
-
padding-inline: 24px 12px;
|
21340
|
-
padding-bottom: 12px;
|
21341
|
-
}
|
21342
|
-
|
21343
|
-
.v-date-picker-header__append {
|
21344
|
-
grid-area: append;
|
21345
|
-
}
|
21346
|
-
|
21347
|
-
.v-date-picker-header__prepend {
|
21348
|
-
grid-area: prepend;
|
21349
|
-
padding-inline-start: 8px;
|
21350
|
-
}
|
21351
|
-
|
21352
|
-
.v-date-picker-header__content {
|
21353
|
-
align-items: center;
|
21354
|
-
display: inline-flex;
|
21355
|
-
font-size: 32px;
|
21356
|
-
line-height: 40px;
|
21357
|
-
grid-area: content;
|
21358
|
-
justify-content: space-between;
|
21359
|
-
}
|
21360
|
-
.v-date-picker-header--clickable .v-date-picker-header__content {
|
21361
|
-
cursor: pointer;
|
21362
|
-
}
|
21363
|
-
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21364
|
-
opacity: 0.7;
|
21365
|
-
}
|
21366
|
-
|
21367
|
-
.date-picker-header-transition-enter-active,
|
21368
|
-
.date-picker-header-reverse-transition-enter-active {
|
21369
|
-
transition-duration: 0.3s;
|
21370
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21371
|
-
}
|
21372
|
-
.date-picker-header-transition-leave-active,
|
21373
|
-
.date-picker-header-reverse-transition-leave-active {
|
21374
|
-
transition-duration: 0.3s;
|
21375
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21376
|
-
}
|
21377
|
-
|
21378
|
-
.date-picker-header-transition-enter-from {
|
21379
|
-
transform: translate(0, 100%);
|
21380
|
-
}
|
21381
|
-
.date-picker-header-transition-leave-to {
|
21382
|
-
opacity: 0;
|
21383
|
-
transform: translate(0, -100%);
|
21384
|
-
}
|
21385
|
-
|
21386
|
-
.date-picker-header-reverse-transition-enter-from {
|
21387
|
-
transform: translate(0, -100%);
|
21388
|
-
}
|
21389
|
-
.date-picker-header-reverse-transition-leave-to {
|
21390
|
-
opacity: 0;
|
21391
|
-
transform: translate(0, 100%);
|
21392
|
-
}.v-date-picker-years {
|
21393
|
-
height: 288px;
|
21394
|
-
overflow-y: scroll;
|
21395
|
-
}
|
21396
|
-
|
21397
|
-
.v-date-picker-years__content {
|
21398
|
-
display: grid;
|
21399
|
-
flex: 1 1;
|
21400
|
-
justify-content: space-around;
|
21401
|
-
grid-template-columns: repeat(3, 1fr);
|
21402
|
-
gap: 8px 24px;
|
21403
|
-
padding-inline: 32px;
|
21404
|
-
}
|
21405
|
-
.v-date-picker-years__content .v-btn {
|
21406
|
-
padding-inline: 8px;
|
21407
|
-
}.v-date-picker-month {
|
21408
|
-
display: flex;
|
21409
|
-
justify-content: center;
|
21410
|
-
padding: 0 12px 8px;
|
21411
|
-
--v-date-picker-month-day-diff: 4px;
|
21412
|
-
}
|
21413
|
-
|
21414
|
-
.v-date-picker-month__weeks {
|
21415
|
-
display: grid;
|
21416
|
-
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
21417
|
-
column-gap: 4px;
|
21418
|
-
font-size: 0.85rem;
|
21190
|
+
min-width: 20px;
|
21191
|
+
min-height: 20px;
|
21192
|
+
width: 20px;
|
21193
|
+
height: 20px;
|
21419
21194
|
}
|
21420
|
-
|
21421
|
-
|
21195
|
+
|
21196
|
+
.v-data-table-progress > th {
|
21197
|
+
border: none !important;
|
21198
|
+
height: auto !important;
|
21199
|
+
padding: 0 !important;
|
21422
21200
|
}
|
21423
21201
|
|
21424
|
-
.v-
|
21425
|
-
|
21202
|
+
.v-data-table-progress__loader {
|
21203
|
+
position: relative;
|
21426
21204
|
}
|
21427
21205
|
|
21428
|
-
.v-
|
21429
|
-
|
21430
|
-
|
21431
|
-
column-gap: 4px;
|
21432
|
-
flex: 1 1;
|
21433
|
-
justify-content: space-around;
|
21206
|
+
.v-data-table-rows-loading,
|
21207
|
+
.v-data-table-rows-no-data {
|
21208
|
+
text-align: center;
|
21434
21209
|
}
|
21435
21210
|
|
21436
|
-
.v-
|
21437
|
-
|
21438
|
-
display: flex;
|
21211
|
+
.v-data-table__tr--mobile > .v-data-table__td--expanded-row {
|
21212
|
+
grid-template-columns: 0;
|
21439
21213
|
justify-content: center;
|
21440
|
-
position: relative;
|
21441
|
-
height: 40px;
|
21442
|
-
width: 40px;
|
21443
21214
|
}
|
21444
|
-
.v-
|
21445
|
-
|
21446
|
-
|
21215
|
+
.v-data-table__tr--mobile > .v-data-table__td--select-row {
|
21216
|
+
grid-template-columns: 0;
|
21217
|
+
justify-content: end;
|
21447
21218
|
}
|
21448
|
-
.v-
|
21449
|
-
|
21450
|
-
|
21219
|
+
.v-data-table__tr--mobile > td {
|
21220
|
+
align-items: center;
|
21221
|
+
column-gap: 4px;
|
21222
|
+
display: grid;
|
21223
|
+
grid-template-columns: repeat(2, 1fr);
|
21224
|
+
min-height: var(--v-table-row-height);
|
21451
21225
|
}
|
21452
|
-
.v-
|
21453
|
-
|
21226
|
+
.v-data-table__tr--mobile > td:not(:last-child) {
|
21227
|
+
border-bottom: 0 !important;
|
21454
21228
|
}
|
21455
21229
|
|
21456
|
-
.v-
|
21457
|
-
|
21230
|
+
.v-data-table__td-title {
|
21231
|
+
font-weight: 500;
|
21232
|
+
text-align: left;
|
21458
21233
|
}
|
21459
21234
|
|
21460
|
-
.v-
|
21461
|
-
|
21462
|
-
}.v-date-picker-months {
|
21463
|
-
height: 288px;
|
21235
|
+
.v-data-table__td-value {
|
21236
|
+
text-align: right;
|
21464
21237
|
}
|
21465
21238
|
|
21466
|
-
.v-
|
21239
|
+
.v-data-table__td-sort-icon {
|
21240
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
21241
|
+
}
|
21242
|
+
.v-data-table__td-sort-icon-active {
|
21243
|
+
color: rgba(var(--v-theme-on-surface));
|
21244
|
+
}.v-data-table-footer {
|
21467
21245
|
align-items: center;
|
21468
|
-
display:
|
21469
|
-
flex:
|
21470
|
-
|
21471
|
-
|
21472
|
-
grid-template-columns: repeat(2, 1fr);
|
21473
|
-
grid-gap: 0px 24px;
|
21474
|
-
padding-inline-start: 36px;
|
21475
|
-
padding-inline-end: 36px;
|
21246
|
+
display: flex;
|
21247
|
+
flex-wrap: wrap;
|
21248
|
+
justify-content: flex-end;
|
21249
|
+
padding: 8px 4px;
|
21476
21250
|
}
|
21477
|
-
.v-
|
21478
|
-
|
21479
|
-
|
21251
|
+
.v-data-table-footer__items-per-page {
|
21252
|
+
align-items: center;
|
21253
|
+
display: flex;
|
21254
|
+
justify-content: center;
|
21255
|
+
}
|
21256
|
+
.v-data-table-footer__items-per-page > span {
|
21480
21257
|
padding-inline-end: 8px;
|
21258
|
+
}
|
21259
|
+
.v-data-table-footer__items-per-page > .v-select {
|
21260
|
+
width: 90px;
|
21261
|
+
}
|
21262
|
+
.v-data-table-footer__info {
|
21263
|
+
display: flex;
|
21264
|
+
justify-content: flex-end;
|
21265
|
+
min-width: 116px;
|
21266
|
+
padding: 0 16px;
|
21267
|
+
}
|
21268
|
+
.v-data-table-footer__paginationz {
|
21269
|
+
align-items: center;
|
21270
|
+
display: flex;
|
21271
|
+
margin-inline-start: 16px;
|
21272
|
+
}
|
21273
|
+
.v-data-table-footer__page {
|
21274
|
+
padding: 0 8px;
|
21481
21275
|
}.v-dialog {
|
21482
21276
|
align-items: center;
|
21483
21277
|
justify-content: center;
|
@@ -21584,7 +21378,7 @@ html.overflow-y-hidden {
|
|
21584
21378
|
align-self: stretch;
|
21585
21379
|
border-width: 0 thin 0 0;
|
21586
21380
|
display: inline-flex;
|
21587
|
-
height:
|
21381
|
+
height: auto;
|
21588
21382
|
margin-left: -1px;
|
21589
21383
|
max-height: 100%;
|
21590
21384
|
max-width: 0px;
|
@@ -21605,88 +21399,232 @@ html.overflow-y-hidden {
|
|
21605
21399
|
padding: 0 16px;
|
21606
21400
|
text-wrap: nowrap;
|
21607
21401
|
}
|
21608
|
-
.v-divider__wrapper--vertical .v-divider__content {
|
21609
|
-
padding: 4px 0;
|
21402
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
21403
|
+
padding: 4px 0;
|
21404
|
+
}
|
21405
|
+
|
21406
|
+
.v-divider__wrapper {
|
21407
|
+
display: flex;
|
21408
|
+
align-items: center;
|
21409
|
+
justify-content: center;
|
21410
|
+
}
|
21411
|
+
.v-divider__wrapper--vertical {
|
21412
|
+
flex-direction: column;
|
21413
|
+
height: 100%;
|
21414
|
+
}
|
21415
|
+
.v-divider__wrapper--vertical .v-divider {
|
21416
|
+
margin: 0 auto;
|
21417
|
+
}.v-date-picker-controls {
|
21418
|
+
display: flex;
|
21419
|
+
align-items: center;
|
21420
|
+
justify-content: space-between;
|
21421
|
+
font-size: 0.875rem;
|
21422
|
+
padding-top: 4px;
|
21423
|
+
padding-bottom: 4px;
|
21424
|
+
padding-inline-start: 6px;
|
21425
|
+
padding-inline-end: 12px;
|
21426
|
+
}
|
21427
|
+
.v-date-picker-controls > .v-btn:first-child {
|
21428
|
+
text-transform: none;
|
21429
|
+
font-weight: 400;
|
21430
|
+
line-height: initial;
|
21431
|
+
letter-spacing: initial;
|
21432
|
+
}
|
21433
|
+
.v-date-picker-controls--variant-classic {
|
21434
|
+
padding-inline-start: 12px;
|
21435
|
+
}
|
21436
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
21437
|
+
opacity: 0.7;
|
21438
|
+
}
|
21439
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21440
|
+
cursor: pointer;
|
21441
|
+
}
|
21442
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21443
|
+
opacity: 1;
|
21444
|
+
}
|
21445
|
+
.v-date-picker-controls .v-btn:last-child {
|
21446
|
+
margin-inline-start: 4px;
|
21447
|
+
}
|
21448
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
21449
|
+
transform: rotate(180deg);
|
21450
|
+
}
|
21451
|
+
|
21452
|
+
.v-date-picker-controls__date {
|
21453
|
+
margin-inline-end: 4px;
|
21454
|
+
}
|
21455
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
21456
|
+
margin: auto;
|
21457
|
+
text-align: center;
|
21458
|
+
}
|
21459
|
+
|
21460
|
+
.v-date-picker-controls__month {
|
21461
|
+
display: flex;
|
21462
|
+
}
|
21463
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
21464
|
+
flex-direction: row-reverse;
|
21465
|
+
}
|
21466
|
+
|
21467
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
21468
|
+
flex: 1 0 auto;
|
21469
|
+
}
|
21470
|
+
|
21471
|
+
.v-date-picker__title {
|
21472
|
+
display: inline-block;
|
21473
|
+
}.v-date-picker {
|
21474
|
+
overflow: hidden;
|
21475
|
+
width: 328px;
|
21476
|
+
}
|
21477
|
+
.v-date-picker--show-week {
|
21478
|
+
width: 368px;
|
21479
|
+
}.v-date-picker-header {
|
21480
|
+
align-items: flex-end;
|
21481
|
+
height: 70px;
|
21482
|
+
display: grid;
|
21483
|
+
grid-template-areas: "prepend content append";
|
21484
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
21485
|
+
overflow: hidden;
|
21486
|
+
padding-inline: 24px 12px;
|
21487
|
+
padding-bottom: 12px;
|
21488
|
+
}
|
21489
|
+
|
21490
|
+
.v-date-picker-header__append {
|
21491
|
+
grid-area: append;
|
21492
|
+
}
|
21493
|
+
|
21494
|
+
.v-date-picker-header__prepend {
|
21495
|
+
grid-area: prepend;
|
21496
|
+
padding-inline-start: 8px;
|
21497
|
+
}
|
21498
|
+
|
21499
|
+
.v-date-picker-header__content {
|
21500
|
+
align-items: center;
|
21501
|
+
display: inline-flex;
|
21502
|
+
font-size: 32px;
|
21503
|
+
line-height: 40px;
|
21504
|
+
grid-area: content;
|
21505
|
+
justify-content: space-between;
|
21506
|
+
}
|
21507
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
21508
|
+
cursor: pointer;
|
21509
|
+
}
|
21510
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
21511
|
+
opacity: 0.7;
|
21512
|
+
}
|
21513
|
+
|
21514
|
+
.date-picker-header-transition-enter-active,
|
21515
|
+
.date-picker-header-reverse-transition-enter-active {
|
21516
|
+
transition-duration: 0.3s;
|
21517
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21518
|
+
}
|
21519
|
+
.date-picker-header-transition-leave-active,
|
21520
|
+
.date-picker-header-reverse-transition-leave-active {
|
21521
|
+
transition-duration: 0.3s;
|
21522
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21523
|
+
}
|
21524
|
+
|
21525
|
+
.date-picker-header-transition-enter-from {
|
21526
|
+
transform: translate(0, 100%);
|
21527
|
+
}
|
21528
|
+
.date-picker-header-transition-leave-to {
|
21529
|
+
opacity: 0;
|
21530
|
+
transform: translate(0, -100%);
|
21531
|
+
}
|
21532
|
+
|
21533
|
+
.date-picker-header-reverse-transition-enter-from {
|
21534
|
+
transform: translate(0, -100%);
|
21535
|
+
}
|
21536
|
+
.date-picker-header-reverse-transition-leave-to {
|
21537
|
+
opacity: 0;
|
21538
|
+
transform: translate(0, 100%);
|
21539
|
+
}.v-date-picker-month {
|
21540
|
+
display: flex;
|
21541
|
+
justify-content: center;
|
21542
|
+
padding: 0 12px 8px;
|
21543
|
+
--v-date-picker-month-day-diff: 4px;
|
21544
|
+
}
|
21545
|
+
|
21546
|
+
.v-date-picker-month__weeks {
|
21547
|
+
display: grid;
|
21548
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
21549
|
+
column-gap: 4px;
|
21550
|
+
font-size: 0.85rem;
|
21551
|
+
}
|
21552
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
21553
|
+
grid-row-gap: 0;
|
21610
21554
|
}
|
21611
21555
|
|
21612
|
-
.v-
|
21613
|
-
|
21614
|
-
align-items: center;
|
21615
|
-
justify-content: center;
|
21556
|
+
.v-date-picker-month__weekday {
|
21557
|
+
font-size: 0.85rem;
|
21616
21558
|
}
|
21617
|
-
|
21618
|
-
|
21619
|
-
|
21559
|
+
|
21560
|
+
.v-date-picker-month__days {
|
21561
|
+
display: grid;
|
21562
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
21563
|
+
column-gap: 4px;
|
21564
|
+
flex: 1 1;
|
21565
|
+
justify-content: space-around;
|
21620
21566
|
}
|
21621
|
-
|
21622
|
-
|
21623
|
-
}.v-empty-state {
|
21567
|
+
|
21568
|
+
.v-date-picker-month__day {
|
21624
21569
|
align-items: center;
|
21625
21570
|
display: flex;
|
21626
|
-
flex-direction: column;
|
21627
21571
|
justify-content: center;
|
21628
|
-
|
21629
|
-
|
21630
|
-
|
21631
|
-
.v-empty-state--start {
|
21632
|
-
align-items: flex-start;
|
21633
|
-
}
|
21634
|
-
.v-empty-state--center {
|
21635
|
-
align-items: center;
|
21572
|
+
position: relative;
|
21573
|
+
height: 40px;
|
21574
|
+
width: 40px;
|
21636
21575
|
}
|
21637
|
-
.v-
|
21638
|
-
|
21576
|
+
.v-date-picker-month__day--selected .v-btn {
|
21577
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
21578
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
21639
21579
|
}
|
21640
|
-
|
21641
|
-
|
21642
|
-
|
21643
|
-
width: 100%;
|
21580
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
21581
|
+
--v-btn-height: 24px;
|
21582
|
+
--v-btn-size: 0.85rem;
|
21644
21583
|
}
|
21645
|
-
.v-
|
21646
|
-
|
21584
|
+
.v-date-picker-month__day--week {
|
21585
|
+
font-size: var(--v-btn-size);
|
21647
21586
|
}
|
21648
21587
|
|
21649
|
-
.v-
|
21650
|
-
|
21651
|
-
font-size: 3.75rem;
|
21652
|
-
font-weight: 300;
|
21653
|
-
line-height: 1;
|
21654
|
-
text-align: center;
|
21655
|
-
margin-bottom: 8px;
|
21656
|
-
}
|
21657
|
-
.v-empty-state--mobile .v-empty-state__headline {
|
21658
|
-
font-size: 2.125rem;
|
21588
|
+
.v-date-picker-month__day--adjacent {
|
21589
|
+
opacity: 0.5;
|
21659
21590
|
}
|
21660
21591
|
|
21661
|
-
.v-
|
21662
|
-
|
21663
|
-
|
21664
|
-
|
21665
|
-
|
21666
|
-
text-align: center;
|
21592
|
+
.v-date-picker-month__day--hide-adjacent {
|
21593
|
+
opacity: 0;
|
21594
|
+
}.v-date-picker-years {
|
21595
|
+
height: 288px;
|
21596
|
+
overflow-y: scroll;
|
21667
21597
|
}
|
21668
21598
|
|
21669
|
-
.v-
|
21670
|
-
|
21671
|
-
|
21672
|
-
|
21673
|
-
|
21674
|
-
|
21599
|
+
.v-date-picker-years__content {
|
21600
|
+
display: grid;
|
21601
|
+
flex: 1 1;
|
21602
|
+
justify-content: space-around;
|
21603
|
+
grid-template-columns: repeat(3, 1fr);
|
21604
|
+
gap: 8px 24px;
|
21605
|
+
padding-inline: 32px;
|
21675
21606
|
}
|
21676
|
-
|
21677
|
-
|
21678
|
-
|
21607
|
+
.v-date-picker-years__content .v-btn {
|
21608
|
+
padding-inline: 8px;
|
21609
|
+
}.v-date-picker-months {
|
21610
|
+
height: 288px;
|
21679
21611
|
}
|
21680
21612
|
|
21681
|
-
.v-
|
21682
|
-
|
21683
|
-
|
21684
|
-
|
21613
|
+
.v-date-picker-months__content {
|
21614
|
+
align-items: center;
|
21615
|
+
display: grid;
|
21616
|
+
flex: 1 1;
|
21617
|
+
height: inherit;
|
21618
|
+
justify-content: space-around;
|
21619
|
+
grid-template-columns: repeat(2, 1fr);
|
21620
|
+
grid-gap: 0px 24px;
|
21621
|
+
padding-inline-start: 36px;
|
21622
|
+
padding-inline-end: 36px;
|
21685
21623
|
}
|
21686
|
-
|
21687
|
-
|
21688
|
-
|
21689
|
-
|
21624
|
+
.v-date-picker-months__content .v-btn {
|
21625
|
+
text-transform: none;
|
21626
|
+
padding-inline-start: 8px;
|
21627
|
+
padding-inline-end: 8px;
|
21690
21628
|
}.v-expansion-panel {
|
21691
21629
|
background-color: rgb(var(--v-theme-surface));
|
21692
21630
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -21897,6 +21835,73 @@ html.overflow-y-hidden {
|
|
21897
21835
|
}
|
21898
21836
|
.v-expansion-panels--tile > .v-expansion-panel {
|
21899
21837
|
border-radius: 0;
|
21838
|
+
}.v-empty-state {
|
21839
|
+
align-items: center;
|
21840
|
+
display: flex;
|
21841
|
+
flex-direction: column;
|
21842
|
+
justify-content: center;
|
21843
|
+
min-height: 100%;
|
21844
|
+
padding: 16px;
|
21845
|
+
}
|
21846
|
+
.v-empty-state--start {
|
21847
|
+
align-items: flex-start;
|
21848
|
+
}
|
21849
|
+
.v-empty-state--center {
|
21850
|
+
align-items: center;
|
21851
|
+
}
|
21852
|
+
.v-empty-state--end {
|
21853
|
+
align-items: flex-end;
|
21854
|
+
}
|
21855
|
+
|
21856
|
+
.v-empty-state__media {
|
21857
|
+
text-align: center;
|
21858
|
+
width: 100%;
|
21859
|
+
}
|
21860
|
+
.v-empty-state__media .v-icon {
|
21861
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21862
|
+
}
|
21863
|
+
|
21864
|
+
.v-empty-state__headline {
|
21865
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
21866
|
+
font-size: 3.75rem;
|
21867
|
+
font-weight: 300;
|
21868
|
+
line-height: 1;
|
21869
|
+
text-align: center;
|
21870
|
+
margin-bottom: 8px;
|
21871
|
+
}
|
21872
|
+
.v-empty-state--mobile .v-empty-state__headline {
|
21873
|
+
font-size: 2.125rem;
|
21874
|
+
}
|
21875
|
+
|
21876
|
+
.v-empty-state__title {
|
21877
|
+
font-size: 1.25rem;
|
21878
|
+
font-weight: 500;
|
21879
|
+
line-height: 1.6;
|
21880
|
+
margin-bottom: 4px;
|
21881
|
+
text-align: center;
|
21882
|
+
}
|
21883
|
+
|
21884
|
+
.v-empty-state__text {
|
21885
|
+
font-size: 0.875rem;
|
21886
|
+
font-weight: 400;
|
21887
|
+
line-height: 1.425;
|
21888
|
+
padding: 0 16px;
|
21889
|
+
text-align: center;
|
21890
|
+
}
|
21891
|
+
|
21892
|
+
.v-empty-state__content {
|
21893
|
+
padding: 24px 0;
|
21894
|
+
}
|
21895
|
+
|
21896
|
+
.v-empty-state__actions {
|
21897
|
+
display: flex;
|
21898
|
+
gap: 8px;
|
21899
|
+
padding: 16px;
|
21900
|
+
}
|
21901
|
+
|
21902
|
+
.v-empty-state__action-btn.v-btn {
|
21903
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
21904
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
21900
21905
|
}/* region INPUT */
|
21901
21906
|
.v-field {
|
21902
21907
|
--v-theme-overlay-multiplier: 1;
|
@@ -22468,7 +22473,35 @@ textarea.v-field__input::placeholder {
|
|
22468
22473
|
opacity: 0;
|
22469
22474
|
}
|
22470
22475
|
|
22471
|
-
/* endregion */.v-
|
22476
|
+
/* endregion */.v-footer {
|
22477
|
+
align-items: center;
|
22478
|
+
display: flex;
|
22479
|
+
flex: 1 1 auto;
|
22480
|
+
padding: 8px 16px;
|
22481
|
+
position: relative;
|
22482
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22483
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22484
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22485
|
+
border-style: solid;
|
22486
|
+
border-width: 0;
|
22487
|
+
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));
|
22488
|
+
border-radius: 0;
|
22489
|
+
background: rgb(var(--v-theme-surface));
|
22490
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22491
|
+
}
|
22492
|
+
.v-footer--border {
|
22493
|
+
border-width: thin;
|
22494
|
+
box-shadow: none;
|
22495
|
+
}
|
22496
|
+
.v-footer--absolute {
|
22497
|
+
position: absolute;
|
22498
|
+
}
|
22499
|
+
.v-footer--fixed {
|
22500
|
+
position: fixed;
|
22501
|
+
}
|
22502
|
+
.v-footer--rounded {
|
22503
|
+
border-radius: 4px;
|
22504
|
+
}.v-fab {
|
22472
22505
|
align-items: center;
|
22473
22506
|
display: inline-flex;
|
22474
22507
|
flex: 1 1 auto;
|
@@ -22514,57 +22547,29 @@ textarea.v-field__input::placeholder {
|
|
22514
22547
|
vertical-align: middle;
|
22515
22548
|
}
|
22516
22549
|
.v-fab--app .v-fab__container {
|
22517
|
-
margin: 12px;
|
22518
|
-
}
|
22519
|
-
.v-fab--absolute .v-fab__container {
|
22520
|
-
position: absolute;
|
22521
|
-
z-index: 4;
|
22522
|
-
}
|
22523
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
22524
|
-
transform: translateY(-50%);
|
22525
|
-
}
|
22526
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
22527
|
-
transform: translateY(50%);
|
22528
|
-
}
|
22529
|
-
.v-fab--top .v-fab__container {
|
22530
|
-
top: 0;
|
22531
|
-
}
|
22532
|
-
.v-fab--bottom .v-fab__container {
|
22533
|
-
bottom: 0;
|
22534
|
-
}
|
22535
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
22536
|
-
left: 0;
|
22537
|
-
}
|
22538
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
22539
|
-
right: 0;
|
22540
|
-
}.v-footer {
|
22541
|
-
align-items: center;
|
22542
|
-
display: flex;
|
22543
|
-
flex: 1 1 auto;
|
22544
|
-
padding: 8px 16px;
|
22545
|
-
position: relative;
|
22546
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22547
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22548
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22549
|
-
border-style: solid;
|
22550
|
-
border-width: 0;
|
22551
|
-
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));
|
22552
|
-
border-radius: 0;
|
22553
|
-
background: rgb(var(--v-theme-surface));
|
22554
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22555
|
-
}
|
22556
|
-
.v-footer--border {
|
22557
|
-
border-width: thin;
|
22558
|
-
box-shadow: none;
|
22550
|
+
margin: 12px;
|
22559
22551
|
}
|
22560
|
-
.v-
|
22552
|
+
.v-fab--absolute .v-fab__container {
|
22561
22553
|
position: absolute;
|
22554
|
+
z-index: 4;
|
22562
22555
|
}
|
22563
|
-
.v-
|
22564
|
-
|
22556
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
22557
|
+
transform: translateY(-50%);
|
22565
22558
|
}
|
22566
|
-
.v-
|
22567
|
-
|
22559
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
22560
|
+
transform: translateY(50%);
|
22561
|
+
}
|
22562
|
+
.v-fab--top .v-fab__container {
|
22563
|
+
top: 0;
|
22564
|
+
}
|
22565
|
+
.v-fab--bottom .v-fab__container {
|
22566
|
+
bottom: 0;
|
22567
|
+
}
|
22568
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
22569
|
+
left: 0;
|
22570
|
+
}
|
22571
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
22572
|
+
right: 0;
|
22568
22573
|
}.v-file-input--hide.v-input .v-field,
|
22569
22574
|
.v-file-input--hide.v-input .v-input__control,
|
22570
22575
|
.v-file-input--hide.v-input .v-input__details {
|
@@ -22594,6 +22599,120 @@ textarea.v-field__input::placeholder {
|
|
22594
22599
|
}
|
22595
22600
|
.v-input--plain-underlined.v-file-input .v-input__details {
|
22596
22601
|
padding-inline: 0;
|
22602
|
+
}.v-icon {
|
22603
|
+
--v-icon-size-multiplier: 1;
|
22604
|
+
align-items: center;
|
22605
|
+
display: inline-flex;
|
22606
|
+
font-feature-settings: "liga";
|
22607
|
+
height: 1em;
|
22608
|
+
justify-content: center;
|
22609
|
+
letter-spacing: normal;
|
22610
|
+
line-height: 1;
|
22611
|
+
position: relative;
|
22612
|
+
text-indent: 0;
|
22613
|
+
text-align: center;
|
22614
|
+
-webkit-user-select: none;
|
22615
|
+
user-select: none;
|
22616
|
+
vertical-align: middle;
|
22617
|
+
width: 1em;
|
22618
|
+
min-width: 1em;
|
22619
|
+
}
|
22620
|
+
.v-icon--clickable {
|
22621
|
+
cursor: pointer;
|
22622
|
+
}
|
22623
|
+
.v-icon--disabled {
|
22624
|
+
pointer-events: none;
|
22625
|
+
opacity: 0.38;
|
22626
|
+
}
|
22627
|
+
.v-icon--size-x-small {
|
22628
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22629
|
+
}
|
22630
|
+
.v-icon--size-small {
|
22631
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22632
|
+
}
|
22633
|
+
.v-icon--size-default {
|
22634
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22635
|
+
}
|
22636
|
+
.v-icon--size-large {
|
22637
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22638
|
+
}
|
22639
|
+
.v-icon--size-x-large {
|
22640
|
+
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22641
|
+
}
|
22642
|
+
|
22643
|
+
.v-icon__svg {
|
22644
|
+
fill: currentColor;
|
22645
|
+
width: 100%;
|
22646
|
+
height: 100%;
|
22647
|
+
}
|
22648
|
+
|
22649
|
+
.v-icon--start {
|
22650
|
+
margin-inline-end: 8px;
|
22651
|
+
}
|
22652
|
+
|
22653
|
+
.v-icon--end {
|
22654
|
+
margin-inline-start: 8px;
|
22655
|
+
}.v-infinite-scroll--horizontal {
|
22656
|
+
display: flex;
|
22657
|
+
flex-direction: row;
|
22658
|
+
overflow-x: auto;
|
22659
|
+
}
|
22660
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22661
|
+
height: 100%;
|
22662
|
+
width: 1px;
|
22663
|
+
}
|
22664
|
+
|
22665
|
+
.v-infinite-scroll--vertical {
|
22666
|
+
display: flex;
|
22667
|
+
flex-direction: column;
|
22668
|
+
overflow-y: auto;
|
22669
|
+
}
|
22670
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22671
|
+
height: 1px;
|
22672
|
+
width: 100%;
|
22673
|
+
}
|
22674
|
+
|
22675
|
+
.v-infinite-scroll__side {
|
22676
|
+
align-items: center;
|
22677
|
+
display: flex;
|
22678
|
+
justify-content: center;
|
22679
|
+
padding: 8px;
|
22680
|
+
}.v-img {
|
22681
|
+
--v-theme-overlay-multiplier: 3;
|
22682
|
+
z-index: 0;
|
22683
|
+
}
|
22684
|
+
.v-img--booting .v-responsive__sizer {
|
22685
|
+
transition: none;
|
22686
|
+
}
|
22687
|
+
.v-img--rounded {
|
22688
|
+
border-radius: 4px;
|
22689
|
+
}
|
22690
|
+
|
22691
|
+
.v-img__img,
|
22692
|
+
.v-img__picture,
|
22693
|
+
.v-img__gradient,
|
22694
|
+
.v-img__placeholder,
|
22695
|
+
.v-img__error {
|
22696
|
+
z-index: -1;
|
22697
|
+
position: absolute;
|
22698
|
+
top: 0;
|
22699
|
+
left: 0;
|
22700
|
+
width: 100%;
|
22701
|
+
height: 100%;
|
22702
|
+
}
|
22703
|
+
|
22704
|
+
.v-img__img--preload {
|
22705
|
+
filter: blur(4px);
|
22706
|
+
}
|
22707
|
+
.v-img__img--contain {
|
22708
|
+
object-fit: contain;
|
22709
|
+
}
|
22710
|
+
.v-img__img--cover {
|
22711
|
+
object-fit: cover;
|
22712
|
+
}
|
22713
|
+
|
22714
|
+
.v-img__gradient {
|
22715
|
+
background-repeat: no-repeat;
|
22597
22716
|
}.v-input {
|
22598
22717
|
display: grid;
|
22599
22718
|
flex: 1 1 auto;
|
@@ -22705,156 +22824,37 @@ textarea.v-field__input::placeholder {
|
|
22705
22824
|
grid-area: prepend;
|
22706
22825
|
}
|
22707
22826
|
|
22708
|
-
.v-input__append {
|
22709
|
-
grid-area: append;
|
22710
|
-
}
|
22711
|
-
|
22712
|
-
.v-input__control {
|
22713
|
-
display: flex;
|
22714
|
-
grid-area: control;
|
22715
|
-
}
|
22716
|
-
|
22717
|
-
.v-input--hide-spin-buttons input::-webkit-outer-spin-button,
|
22718
|
-
.v-input--hide-spin-buttons input::-webkit-inner-spin-button {
|
22719
|
-
-webkit-appearance: none;
|
22720
|
-
margin: 0;
|
22721
|
-
}
|
22722
|
-
.v-input--hide-spin-buttons input[type=number] {
|
22723
|
-
-moz-appearance: textfield;
|
22724
|
-
}
|
22725
|
-
.v-input--plain-underlined .v-input__prepend,
|
22726
|
-
.v-input--plain-underlined .v-input__append {
|
22727
|
-
align-items: flex-start;
|
22728
|
-
}
|
22729
|
-
.v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
|
22730
|
-
padding-top: calc(var(--v-input-padding-top) + 4px);
|
22731
|
-
}
|
22732
|
-
|
22733
|
-
.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
|
22734
|
-
padding-top: calc(var(--v-input-padding-top) + 2px);
|
22735
|
-
}
|
22736
|
-
|
22737
|
-
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22738
|
-
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22739
|
-
}.v-icon {
|
22740
|
-
--v-icon-size-multiplier: 1;
|
22741
|
-
align-items: center;
|
22742
|
-
display: inline-flex;
|
22743
|
-
font-feature-settings: "liga";
|
22744
|
-
height: 1em;
|
22745
|
-
justify-content: center;
|
22746
|
-
letter-spacing: normal;
|
22747
|
-
line-height: 1;
|
22748
|
-
position: relative;
|
22749
|
-
text-indent: 0;
|
22750
|
-
text-align: center;
|
22751
|
-
-webkit-user-select: none;
|
22752
|
-
user-select: none;
|
22753
|
-
vertical-align: middle;
|
22754
|
-
width: 1em;
|
22755
|
-
min-width: 1em;
|
22756
|
-
}
|
22757
|
-
.v-icon--clickable {
|
22758
|
-
cursor: pointer;
|
22759
|
-
}
|
22760
|
-
.v-icon--disabled {
|
22761
|
-
pointer-events: none;
|
22762
|
-
opacity: 0.38;
|
22763
|
-
}
|
22764
|
-
.v-icon--size-x-small {
|
22765
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22766
|
-
}
|
22767
|
-
.v-icon--size-small {
|
22768
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22769
|
-
}
|
22770
|
-
.v-icon--size-default {
|
22771
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22772
|
-
}
|
22773
|
-
.v-icon--size-large {
|
22774
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22775
|
-
}
|
22776
|
-
.v-icon--size-x-large {
|
22777
|
-
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22778
|
-
}
|
22779
|
-
|
22780
|
-
.v-icon__svg {
|
22781
|
-
fill: currentColor;
|
22782
|
-
width: 100%;
|
22783
|
-
height: 100%;
|
22784
|
-
}
|
22785
|
-
|
22786
|
-
.v-icon--start {
|
22787
|
-
margin-inline-end: 8px;
|
22788
|
-
}
|
22789
|
-
|
22790
|
-
.v-icon--end {
|
22791
|
-
margin-inline-start: 8px;
|
22792
|
-
}.v-infinite-scroll--horizontal {
|
22793
|
-
display: flex;
|
22794
|
-
flex-direction: row;
|
22795
|
-
overflow-x: auto;
|
22796
|
-
}
|
22797
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22798
|
-
height: 100%;
|
22799
|
-
width: 1px;
|
22800
|
-
}
|
22801
|
-
|
22802
|
-
.v-infinite-scroll--vertical {
|
22803
|
-
display: flex;
|
22804
|
-
flex-direction: column;
|
22805
|
-
overflow-y: auto;
|
22806
|
-
}
|
22807
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22808
|
-
height: 1px;
|
22809
|
-
width: 100%;
|
22810
|
-
}
|
22811
|
-
|
22812
|
-
.v-infinite-scroll__side {
|
22813
|
-
align-items: center;
|
22814
|
-
display: flex;
|
22815
|
-
justify-content: center;
|
22816
|
-
padding: 8px;
|
22817
|
-
}.v-img {
|
22818
|
-
--v-theme-overlay-multiplier: 3;
|
22819
|
-
z-index: 0;
|
22820
|
-
}
|
22821
|
-
.v-img--booting .v-responsive__sizer {
|
22822
|
-
transition: none;
|
22823
|
-
}
|
22824
|
-
.v-img--rounded {
|
22825
|
-
border-radius: 4px;
|
22827
|
+
.v-input__append {
|
22828
|
+
grid-area: append;
|
22826
22829
|
}
|
22827
22830
|
|
22828
|
-
.v-
|
22829
|
-
|
22830
|
-
|
22831
|
-
.v-img__placeholder,
|
22832
|
-
.v-img__error {
|
22833
|
-
z-index: -1;
|
22834
|
-
position: absolute;
|
22835
|
-
top: 0;
|
22836
|
-
left: 0;
|
22837
|
-
width: 100%;
|
22838
|
-
height: 100%;
|
22831
|
+
.v-input__control {
|
22832
|
+
display: flex;
|
22833
|
+
grid-area: control;
|
22839
22834
|
}
|
22840
22835
|
|
22841
|
-
.v-
|
22842
|
-
|
22836
|
+
.v-input--hide-spin-buttons input::-webkit-outer-spin-button,
|
22837
|
+
.v-input--hide-spin-buttons input::-webkit-inner-spin-button {
|
22838
|
+
-webkit-appearance: none;
|
22839
|
+
margin: 0;
|
22843
22840
|
}
|
22844
|
-
.v-
|
22845
|
-
|
22841
|
+
.v-input--hide-spin-buttons input[type=number] {
|
22842
|
+
-moz-appearance: textfield;
|
22846
22843
|
}
|
22847
|
-
.v-
|
22848
|
-
|
22844
|
+
.v-input--plain-underlined .v-input__prepend,
|
22845
|
+
.v-input--plain-underlined .v-input__append {
|
22846
|
+
align-items: flex-start;
|
22847
|
+
}
|
22848
|
+
.v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
|
22849
|
+
padding-top: calc(var(--v-input-padding-top) + 4px);
|
22849
22850
|
}
|
22850
22851
|
|
22851
|
-
.v-
|
22852
|
-
|
22853
|
-
}
|
22854
|
-
|
22855
|
-
|
22856
|
-
|
22857
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22852
|
+
.v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
|
22853
|
+
padding-top: calc(var(--v-input-padding-top) + 2px);
|
22854
|
+
}
|
22855
|
+
|
22856
|
+
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22857
|
+
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22858
22858
|
}.v-label {
|
22859
22859
|
align-items: center;
|
22860
22860
|
color: inherit;
|
@@ -22870,21 +22870,6 @@ textarea.v-field__input::placeholder {
|
|
22870
22870
|
|
22871
22871
|
.v-label--clickable {
|
22872
22872
|
cursor: pointer;
|
22873
|
-
}.v-layout-item {
|
22874
|
-
position: absolute;
|
22875
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22876
|
-
}
|
22877
|
-
|
22878
|
-
.v-layout-item--absolute {
|
22879
|
-
position: absolute;
|
22880
|
-
}.v-layout {
|
22881
|
-
--v-scrollbar-offset: 0px;
|
22882
|
-
display: flex;
|
22883
|
-
flex: 1 1 auto;
|
22884
|
-
}
|
22885
|
-
.v-layout--full-height {
|
22886
|
-
--v-scrollbar-offset: inherit;
|
22887
|
-
height: 100%;
|
22888
22873
|
}.v-list {
|
22889
22874
|
overflow: auto;
|
22890
22875
|
padding: 8px 0;
|
@@ -22986,8 +22971,6 @@ textarea.v-field__input::placeholder {
|
|
22986
22971
|
right: 0;
|
22987
22972
|
top: 0;
|
22988
22973
|
transition: opacity 0.2s ease-in-out;
|
22989
|
-
}.v-locale-provider {
|
22990
|
-
display: contents;
|
22991
22974
|
}.v-list-item {
|
22992
22975
|
align-items: center;
|
22993
22976
|
display: grid;
|
@@ -23444,19 +23427,28 @@ textarea.v-field__input::placeholder {
|
|
23444
23427
|
}
|
23445
23428
|
.v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
|
23446
23429
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23447
|
-
}.v-
|
23430
|
+
}.v-item-group {
|
23431
|
+
flex: 0 1 auto;
|
23432
|
+
max-width: 100%;
|
23433
|
+
position: relative;
|
23434
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23435
|
+
}.v-layout {
|
23436
|
+
--v-scrollbar-offset: 0px;
|
23448
23437
|
display: flex;
|
23449
|
-
flex
|
23450
|
-
border-radius: 4px;
|
23438
|
+
flex: 1 1 auto;
|
23451
23439
|
}
|
23452
|
-
.v-
|
23453
|
-
|
23454
|
-
.v-menu > .v-overlay__content > .v-list {
|
23455
|
-
background: rgb(var(--v-theme-surface));
|
23456
|
-
border-radius: inherit;
|
23457
|
-
overflow: auto;
|
23440
|
+
.v-layout--full-height {
|
23441
|
+
--v-scrollbar-offset: inherit;
|
23458
23442
|
height: 100%;
|
23459
|
-
|
23443
|
+
}.v-layout-item {
|
23444
|
+
position: absolute;
|
23445
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23446
|
+
}
|
23447
|
+
|
23448
|
+
.v-layout-item--absolute {
|
23449
|
+
position: absolute;
|
23450
|
+
}.v-locale-provider {
|
23451
|
+
display: contents;
|
23460
23452
|
}.v-main {
|
23461
23453
|
flex: 1 0 auto;
|
23462
23454
|
max-width: 100%;
|
@@ -23485,108 +23477,19 @@ textarea.v-field__input::placeholder {
|
|
23485
23477
|
--v-layout-right: 0px;
|
23486
23478
|
--v-layout-top: 0px;
|
23487
23479
|
--v-layout-bottom: 0px;
|
23488
|
-
}.v-
|
23489
|
-
-webkit-overflow-scrolling: touch;
|
23490
|
-
background: rgb(var(--v-theme-surface));
|
23480
|
+
}.v-menu > .v-overlay__content {
|
23491
23481
|
display: flex;
|
23492
23482
|
flex-direction: column;
|
23493
|
-
height: 100%;
|
23494
|
-
max-width: 100%;
|
23495
|
-
pointer-events: auto;
|
23496
|
-
transition-duration: 0.2s;
|
23497
|
-
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
23498
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
23499
|
-
position: absolute;
|
23500
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23501
|
-
border-style: solid;
|
23502
|
-
border-width: 0;
|
23503
|
-
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));
|
23504
|
-
background: rgb(var(--v-theme-surface));
|
23505
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23506
|
-
}
|
23507
|
-
.v-navigation-drawer--border {
|
23508
|
-
border-width: thin;
|
23509
|
-
box-shadow: none;
|
23510
|
-
}
|
23511
|
-
.v-navigation-drawer--rounded {
|
23512
23483
|
border-radius: 4px;
|
23513
23484
|
}
|
23514
|
-
.v-
|
23515
|
-
|
23516
|
-
|
23517
|
-
|
23518
|
-
|
23519
|
-
|
23520
|
-
border-bottom-width: thin;
|
23521
|
-
}
|
23522
|
-
.v-navigation-drawer--bottom {
|
23523
|
-
left: 0;
|
23524
|
-
border-top-width: thin;
|
23525
|
-
}
|
23526
|
-
.v-navigation-drawer--left {
|
23527
|
-
top: 0;
|
23528
|
-
left: 0;
|
23529
|
-
right: auto;
|
23530
|
-
border-right-width: thin;
|
23531
|
-
}
|
23532
|
-
.v-navigation-drawer--right {
|
23533
|
-
top: 0;
|
23534
|
-
left: auto;
|
23535
|
-
right: 0;
|
23536
|
-
border-left-width: thin;
|
23537
|
-
}
|
23538
|
-
.v-navigation-drawer--floating {
|
23539
|
-
border: none;
|
23540
|
-
}
|
23541
|
-
.v-navigation-drawer--temporary.v-navigation-drawer--active {
|
23542
|
-
box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
23543
|
-
}
|
23544
|
-
.v-navigation-drawer--sticky {
|
23545
|
-
height: auto;
|
23546
|
-
transition: box-shadow, transform, visibility, width, height, left, right;
|
23547
|
-
}
|
23548
|
-
.v-navigation-drawer .v-list {
|
23549
|
-
overflow: hidden;
|
23550
|
-
}
|
23551
|
-
|
23552
|
-
.v-navigation-drawer__content {
|
23553
|
-
flex: 0 1 auto;
|
23554
|
-
height: 100%;
|
23555
|
-
max-width: 100%;
|
23556
|
-
overflow-x: hidden;
|
23557
|
-
overflow-y: auto;
|
23558
|
-
}
|
23559
|
-
|
23560
|
-
.v-navigation-drawer__img {
|
23561
|
-
height: 100%;
|
23562
|
-
left: 0;
|
23563
|
-
position: absolute;
|
23564
|
-
top: 0;
|
23565
|
-
width: 100%;
|
23566
|
-
z-index: -1;
|
23567
|
-
}
|
23568
|
-
.v-navigation-drawer__img img:not(.v-img__img) {
|
23569
|
-
height: inherit;
|
23570
|
-
object-fit: cover;
|
23571
|
-
width: inherit;
|
23572
|
-
}
|
23573
|
-
|
23574
|
-
.v-navigation-drawer__scrim {
|
23575
|
-
position: absolute;
|
23576
|
-
top: 0;
|
23577
|
-
left: 0;
|
23578
|
-
width: 100%;
|
23485
|
+
.v-menu > .v-overlay__content > .v-card,
|
23486
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
23487
|
+
.v-menu > .v-overlay__content > .v-list {
|
23488
|
+
background: rgb(var(--v-theme-surface));
|
23489
|
+
border-radius: inherit;
|
23490
|
+
overflow: auto;
|
23579
23491
|
height: 100%;
|
23580
|
-
|
23581
|
-
opacity: 0.2;
|
23582
|
-
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23583
|
-
z-index: 1;
|
23584
|
-
}
|
23585
|
-
|
23586
|
-
.v-navigation-drawer__prepend,
|
23587
|
-
.v-navigation-drawer__append {
|
23588
|
-
flex: none;
|
23589
|
-
overflow: hidden;
|
23492
|
+
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));
|
23590
23493
|
}.v-messages {
|
23591
23494
|
flex: 1 1 auto;
|
23592
23495
|
font-size: 12px;
|
@@ -23603,12 +23506,69 @@ textarea.v-field__input::placeholder {
|
|
23603
23506
|
-webkit-hyphens: auto;
|
23604
23507
|
hyphens: auto;
|
23605
23508
|
transition-duration: 150ms;
|
23606
|
-
}.v-
|
23607
|
-
|
23608
|
-
|
23509
|
+
}.v-overlay-container {
|
23510
|
+
contain: layout;
|
23511
|
+
left: 0;
|
23512
|
+
pointer-events: none;
|
23513
|
+
position: absolute;
|
23514
|
+
top: 0;
|
23515
|
+
display: contents;
|
23516
|
+
}
|
23517
|
+
|
23518
|
+
.v-overlay-scroll-blocked {
|
23519
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
23520
|
+
}
|
23521
|
+
.v-overlay-scroll-blocked:not(html) {
|
23522
|
+
overflow-y: hidden !important;
|
23523
|
+
}
|
23524
|
+
html.v-overlay-scroll-blocked {
|
23525
|
+
position: fixed;
|
23526
|
+
top: var(--v-body-scroll-y);
|
23527
|
+
left: var(--v-body-scroll-x);
|
23528
|
+
width: 100%;
|
23529
|
+
height: 100%;
|
23530
|
+
}
|
23531
|
+
|
23532
|
+
.v-overlay {
|
23533
|
+
border-radius: inherit;
|
23534
|
+
display: flex;
|
23535
|
+
left: 0;
|
23536
|
+
pointer-events: none;
|
23537
|
+
position: fixed;
|
23538
|
+
top: 0;
|
23539
|
+
bottom: 0;
|
23540
|
+
right: 0;
|
23541
|
+
}
|
23542
|
+
|
23543
|
+
.v-overlay__content {
|
23544
|
+
outline: none;
|
23545
|
+
position: absolute;
|
23546
|
+
pointer-events: auto;
|
23547
|
+
contain: layout;
|
23548
|
+
}
|
23549
|
+
|
23550
|
+
.v-overlay__scrim {
|
23551
|
+
pointer-events: auto;
|
23552
|
+
background: rgb(var(--v-theme-on-surface));
|
23553
|
+
border-radius: inherit;
|
23554
|
+
bottom: 0;
|
23555
|
+
left: 0;
|
23556
|
+
opacity: var(--v-overlay-opacity, 0.32);
|
23557
|
+
position: fixed;
|
23558
|
+
right: 0;
|
23559
|
+
top: 0;
|
23560
|
+
}
|
23561
|
+
|
23562
|
+
.v-overlay--absolute {
|
23563
|
+
position: absolute;
|
23609
23564
|
}
|
23610
|
-
|
23611
|
-
|
23565
|
+
|
23566
|
+
.v-overlay--contained .v-overlay__scrim {
|
23567
|
+
position: absolute;
|
23568
|
+
}
|
23569
|
+
|
23570
|
+
.v-overlay--scroll-blocked {
|
23571
|
+
padding-inline-end: var(--v-scrollbar-offset);
|
23612
23572
|
}.v-otp-input {
|
23613
23573
|
border-radius: 4px;
|
23614
23574
|
align-items: center;
|
@@ -23665,69 +23625,114 @@ textarea.v-field__input::placeholder {
|
|
23665
23625
|
}
|
23666
23626
|
.v-otp-input__loader .v-progress-linear {
|
23667
23627
|
position: absolute;
|
23668
|
-
}.v-
|
23669
|
-
|
23670
|
-
|
23671
|
-
|
23628
|
+
}.v-parallax {
|
23629
|
+
position: relative;
|
23630
|
+
overflow: hidden;
|
23631
|
+
}
|
23632
|
+
.v-parallax--active > .v-img__img {
|
23633
|
+
will-change: transform;
|
23634
|
+
}.v-navigation-drawer {
|
23635
|
+
-webkit-overflow-scrolling: touch;
|
23636
|
+
background: rgb(var(--v-theme-surface));
|
23637
|
+
display: flex;
|
23638
|
+
flex-direction: column;
|
23639
|
+
height: 100%;
|
23640
|
+
max-width: 100%;
|
23641
|
+
pointer-events: auto;
|
23642
|
+
transition-duration: 0.2s;
|
23643
|
+
transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
|
23644
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
23672
23645
|
position: absolute;
|
23673
|
-
|
23674
|
-
|
23646
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23647
|
+
border-style: solid;
|
23648
|
+
border-width: 0;
|
23649
|
+
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));
|
23650
|
+
background: rgb(var(--v-theme-surface));
|
23651
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
23675
23652
|
}
|
23676
|
-
|
23677
|
-
|
23678
|
-
|
23653
|
+
.v-navigation-drawer--border {
|
23654
|
+
border-width: thin;
|
23655
|
+
box-shadow: none;
|
23679
23656
|
}
|
23680
|
-
.v-
|
23681
|
-
|
23657
|
+
.v-navigation-drawer--rounded {
|
23658
|
+
border-radius: 4px;
|
23682
23659
|
}
|
23683
|
-
|
23684
|
-
|
23685
|
-
|
23686
|
-
left: var(--v-body-scroll-x);
|
23687
|
-
width: 100%;
|
23688
|
-
height: 100%;
|
23660
|
+
.v-navigation-drawer--top, .v-navigation-drawer--bottom {
|
23661
|
+
max-height: -webkit-fill-available;
|
23662
|
+
overflow-y: auto;
|
23689
23663
|
}
|
23690
|
-
|
23691
|
-
|
23692
|
-
border-
|
23693
|
-
|
23664
|
+
.v-navigation-drawer--top {
|
23665
|
+
top: 0;
|
23666
|
+
border-bottom-width: thin;
|
23667
|
+
}
|
23668
|
+
.v-navigation-drawer--bottom {
|
23694
23669
|
left: 0;
|
23695
|
-
|
23696
|
-
|
23670
|
+
border-top-width: thin;
|
23671
|
+
}
|
23672
|
+
.v-navigation-drawer--left {
|
23697
23673
|
top: 0;
|
23698
|
-
|
23674
|
+
left: 0;
|
23675
|
+
right: auto;
|
23676
|
+
border-right-width: thin;
|
23677
|
+
}
|
23678
|
+
.v-navigation-drawer--right {
|
23679
|
+
top: 0;
|
23680
|
+
left: auto;
|
23699
23681
|
right: 0;
|
23682
|
+
border-left-width: thin;
|
23683
|
+
}
|
23684
|
+
.v-navigation-drawer--floating {
|
23685
|
+
border: none;
|
23686
|
+
}
|
23687
|
+
.v-navigation-drawer--temporary.v-navigation-drawer--active {
|
23688
|
+
box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
23689
|
+
}
|
23690
|
+
.v-navigation-drawer--sticky {
|
23691
|
+
height: auto;
|
23692
|
+
transition: box-shadow, transform, visibility, width, height, left, right;
|
23693
|
+
}
|
23694
|
+
.v-navigation-drawer .v-list {
|
23695
|
+
overflow: hidden;
|
23700
23696
|
}
|
23701
23697
|
|
23702
|
-
.v-
|
23703
|
-
|
23704
|
-
|
23705
|
-
|
23706
|
-
|
23698
|
+
.v-navigation-drawer__content {
|
23699
|
+
flex: 0 1 auto;
|
23700
|
+
height: 100%;
|
23701
|
+
max-width: 100%;
|
23702
|
+
overflow-x: hidden;
|
23703
|
+
overflow-y: auto;
|
23707
23704
|
}
|
23708
23705
|
|
23709
|
-
.v-
|
23710
|
-
|
23711
|
-
background: rgb(var(--v-theme-on-surface));
|
23712
|
-
border-radius: inherit;
|
23713
|
-
bottom: 0;
|
23706
|
+
.v-navigation-drawer__img {
|
23707
|
+
height: 100%;
|
23714
23708
|
left: 0;
|
23715
|
-
|
23716
|
-
position: fixed;
|
23717
|
-
right: 0;
|
23709
|
+
position: absolute;
|
23718
23710
|
top: 0;
|
23711
|
+
width: 100%;
|
23712
|
+
z-index: -1;
|
23719
23713
|
}
|
23720
|
-
|
23721
|
-
|
23722
|
-
|
23714
|
+
.v-navigation-drawer__img img:not(.v-img__img) {
|
23715
|
+
height: inherit;
|
23716
|
+
object-fit: cover;
|
23717
|
+
width: inherit;
|
23723
23718
|
}
|
23724
23719
|
|
23725
|
-
.v-
|
23720
|
+
.v-navigation-drawer__scrim {
|
23726
23721
|
position: absolute;
|
23722
|
+
top: 0;
|
23723
|
+
left: 0;
|
23724
|
+
width: 100%;
|
23725
|
+
height: 100%;
|
23726
|
+
background: black;
|
23727
|
+
opacity: 0.2;
|
23728
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23729
|
+
z-index: 1;
|
23727
23730
|
}
|
23728
23731
|
|
23729
|
-
.v-
|
23730
|
-
|
23732
|
+
.v-navigation-drawer__prepend,
|
23733
|
+
.v-navigation-drawer__append {
|
23734
|
+
flex: none;
|
23735
|
+
overflow: hidden;
|
23731
23736
|
}.v-progress-circular {
|
23732
23737
|
align-items: center;
|
23733
23738
|
display: inline-flex;
|
@@ -23838,72 +23843,6 @@ html.v-overlay-scroll-blocked {
|
|
23838
23843
|
}
|
23839
23844
|
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23840
23845
|
margin: 0.3rem;
|
23841
|
-
}.v-radio-group > .v-input__control {
|
23842
|
-
flex-direction: column;
|
23843
|
-
}
|
23844
|
-
.v-radio-group > .v-input__control > .v-label {
|
23845
|
-
margin-inline-start: 16px;
|
23846
|
-
}
|
23847
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
23848
|
-
padding-inline-start: 6px;
|
23849
|
-
margin-top: 8px;
|
23850
|
-
}
|
23851
|
-
.v-radio-group .v-input__details {
|
23852
|
-
padding-inline: 16px;
|
23853
|
-
}.v-rating {
|
23854
|
-
max-width: 100%;
|
23855
|
-
display: inline-flex;
|
23856
|
-
white-space: nowrap;
|
23857
|
-
}
|
23858
|
-
.v-rating--readonly {
|
23859
|
-
pointer-events: none;
|
23860
|
-
}
|
23861
|
-
|
23862
|
-
.v-rating__wrapper {
|
23863
|
-
align-items: center;
|
23864
|
-
display: inline-flex;
|
23865
|
-
flex-direction: column;
|
23866
|
-
}
|
23867
|
-
.v-rating__wrapper--bottom {
|
23868
|
-
flex-direction: column-reverse;
|
23869
|
-
}
|
23870
|
-
|
23871
|
-
.v-rating__item {
|
23872
|
-
display: inline-flex;
|
23873
|
-
position: relative;
|
23874
|
-
}
|
23875
|
-
.v-rating__item label {
|
23876
|
-
cursor: pointer;
|
23877
|
-
}
|
23878
|
-
.v-rating__item .v-btn--variant-plain {
|
23879
|
-
opacity: 1;
|
23880
|
-
}
|
23881
|
-
.v-rating__item .v-btn {
|
23882
|
-
transition-property: transform;
|
23883
|
-
}
|
23884
|
-
.v-rating__item .v-btn .v-icon {
|
23885
|
-
transition: inherit;
|
23886
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
23887
|
-
}
|
23888
|
-
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
23889
|
-
transform: scale(1.25);
|
23890
|
-
}
|
23891
|
-
.v-rating__item--half {
|
23892
|
-
overflow: hidden;
|
23893
|
-
position: absolute;
|
23894
|
-
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
23895
|
-
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
23896
|
-
z-index: 1;
|
23897
|
-
}
|
23898
|
-
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
23899
|
-
opacity: 0;
|
23900
|
-
}
|
23901
|
-
|
23902
|
-
.v-rating__hidden {
|
23903
|
-
height: 0;
|
23904
|
-
opacity: 0;
|
23905
|
-
position: absolute;
|
23906
|
-
width: 0;
|
23907
23846
|
}.v-progress-linear {
|
23908
23847
|
background: transparent;
|
23909
23848
|
overflow: hidden;
|
@@ -24172,6 +24111,60 @@ html.v-overlay-scroll-blocked {
|
|
24172
24111
|
|
24173
24112
|
.v-slider__label {
|
24174
24113
|
margin-inline-end: 12px;
|
24114
|
+
}.v-rating {
|
24115
|
+
max-width: 100%;
|
24116
|
+
display: inline-flex;
|
24117
|
+
white-space: nowrap;
|
24118
|
+
}
|
24119
|
+
.v-rating--readonly {
|
24120
|
+
pointer-events: none;
|
24121
|
+
}
|
24122
|
+
|
24123
|
+
.v-rating__wrapper {
|
24124
|
+
align-items: center;
|
24125
|
+
display: inline-flex;
|
24126
|
+
flex-direction: column;
|
24127
|
+
}
|
24128
|
+
.v-rating__wrapper--bottom {
|
24129
|
+
flex-direction: column-reverse;
|
24130
|
+
}
|
24131
|
+
|
24132
|
+
.v-rating__item {
|
24133
|
+
display: inline-flex;
|
24134
|
+
position: relative;
|
24135
|
+
}
|
24136
|
+
.v-rating__item label {
|
24137
|
+
cursor: pointer;
|
24138
|
+
}
|
24139
|
+
.v-rating__item .v-btn--variant-plain {
|
24140
|
+
opacity: 1;
|
24141
|
+
}
|
24142
|
+
.v-rating__item .v-btn {
|
24143
|
+
transition-property: transform;
|
24144
|
+
}
|
24145
|
+
.v-rating__item .v-btn .v-icon {
|
24146
|
+
transition: inherit;
|
24147
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
24148
|
+
}
|
24149
|
+
.v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
|
24150
|
+
transform: scale(1.25);
|
24151
|
+
}
|
24152
|
+
.v-rating__item--half {
|
24153
|
+
overflow: hidden;
|
24154
|
+
position: absolute;
|
24155
|
+
-webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24156
|
+
clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
|
24157
|
+
z-index: 1;
|
24158
|
+
}
|
24159
|
+
.v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
|
24160
|
+
opacity: 0;
|
24161
|
+
}
|
24162
|
+
|
24163
|
+
.v-rating__hidden {
|
24164
|
+
height: 0;
|
24165
|
+
opacity: 0;
|
24166
|
+
position: absolute;
|
24167
|
+
width: 0;
|
24175
24168
|
}.v-select .v-field .v-text-field__prefix,
|
24176
24169
|
.v-select .v-field .v-text-field__suffix,
|
24177
24170
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
@@ -24220,6 +24213,127 @@ html.v-overlay-scroll-blocked {
|
|
24220
24213
|
.v-select--active-menu .v-select__menu-icon {
|
24221
24214
|
opacity: var(--v-high-emphasis-opacity);
|
24222
24215
|
transform: rotate(180deg);
|
24216
|
+
}.v-radio-group > .v-input__control {
|
24217
|
+
flex-direction: column;
|
24218
|
+
}
|
24219
|
+
.v-radio-group > .v-input__control > .v-label {
|
24220
|
+
margin-inline-start: 16px;
|
24221
|
+
}
|
24222
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24223
|
+
padding-inline-start: 6px;
|
24224
|
+
margin-top: 8px;
|
24225
|
+
}
|
24226
|
+
.v-radio-group .v-input__details {
|
24227
|
+
padding-inline: 16px;
|
24228
|
+
}.v-selection-control-group {
|
24229
|
+
grid-area: control;
|
24230
|
+
display: flex;
|
24231
|
+
flex-direction: column;
|
24232
|
+
}
|
24233
|
+
.v-selection-control-group--inline {
|
24234
|
+
flex-direction: row;
|
24235
|
+
flex-wrap: wrap;
|
24236
|
+
}.v-selection-control {
|
24237
|
+
align-items: center;
|
24238
|
+
contain: layout;
|
24239
|
+
display: flex;
|
24240
|
+
flex: 1 0;
|
24241
|
+
grid-area: control;
|
24242
|
+
position: relative;
|
24243
|
+
-webkit-user-select: none;
|
24244
|
+
user-select: none;
|
24245
|
+
}
|
24246
|
+
.v-selection-control .v-label {
|
24247
|
+
white-space: normal;
|
24248
|
+
word-break: break-word;
|
24249
|
+
height: 100%;
|
24250
|
+
}
|
24251
|
+
.v-selection-control--disabled {
|
24252
|
+
opacity: var(--v-disabled-opacity);
|
24253
|
+
pointer-events: none;
|
24254
|
+
}
|
24255
|
+
.v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
|
24256
|
+
opacity: 1;
|
24257
|
+
}
|
24258
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
24259
|
+
color: rgb(var(--v-theme-error));
|
24260
|
+
}
|
24261
|
+
.v-selection-control--inline {
|
24262
|
+
display: inline-flex;
|
24263
|
+
flex: 0 0 auto;
|
24264
|
+
min-width: 0;
|
24265
|
+
max-width: 100%;
|
24266
|
+
}
|
24267
|
+
.v-selection-control--inline .v-label {
|
24268
|
+
width: auto;
|
24269
|
+
}
|
24270
|
+
.v-selection-control--density-default {
|
24271
|
+
--v-selection-control-size: 40px;
|
24272
|
+
}
|
24273
|
+
|
24274
|
+
.v-selection-control--density-comfortable {
|
24275
|
+
--v-selection-control-size: 36px;
|
24276
|
+
}
|
24277
|
+
|
24278
|
+
.v-selection-control--density-compact {
|
24279
|
+
--v-selection-control-size: 28px;
|
24280
|
+
}
|
24281
|
+
|
24282
|
+
.v-selection-control__wrapper {
|
24283
|
+
width: var(--v-selection-control-size);
|
24284
|
+
height: var(--v-selection-control-size);
|
24285
|
+
display: inline-flex;
|
24286
|
+
align-items: center;
|
24287
|
+
position: relative;
|
24288
|
+
justify-content: center;
|
24289
|
+
flex: none;
|
24290
|
+
}
|
24291
|
+
|
24292
|
+
.v-selection-control__input {
|
24293
|
+
width: var(--v-selection-control-size);
|
24294
|
+
height: var(--v-selection-control-size);
|
24295
|
+
align-items: center;
|
24296
|
+
display: flex;
|
24297
|
+
flex: none;
|
24298
|
+
justify-content: center;
|
24299
|
+
position: relative;
|
24300
|
+
border-radius: 50%;
|
24301
|
+
}
|
24302
|
+
.v-selection-control__input input {
|
24303
|
+
cursor: pointer;
|
24304
|
+
position: absolute;
|
24305
|
+
left: 0;
|
24306
|
+
top: 0;
|
24307
|
+
width: 100%;
|
24308
|
+
height: 100%;
|
24309
|
+
opacity: 0;
|
24310
|
+
}
|
24311
|
+
.v-selection-control__input::before {
|
24312
|
+
content: "";
|
24313
|
+
position: absolute;
|
24314
|
+
top: 0;
|
24315
|
+
left: 0;
|
24316
|
+
width: 100%;
|
24317
|
+
height: 100%;
|
24318
|
+
border-radius: 100%;
|
24319
|
+
background-color: currentColor;
|
24320
|
+
opacity: 0;
|
24321
|
+
pointer-events: none;
|
24322
|
+
}
|
24323
|
+
.v-selection-control__input:hover::before {
|
24324
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
24325
|
+
}
|
24326
|
+
.v-selection-control__input > .v-icon {
|
24327
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24328
|
+
}
|
24329
|
+
.v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
|
24330
|
+
opacity: 1;
|
24331
|
+
}
|
24332
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
|
24333
|
+
color: rgb(var(--v-theme-error));
|
24334
|
+
}
|
24335
|
+
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24336
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24223
24337
|
}.v-responsive {
|
24224
24338
|
display: flex;
|
24225
24339
|
flex: 1 0 auto;
|
@@ -24246,14 +24360,6 @@ html.v-overlay-scroll-blocked {
|
|
24246
24360
|
flex: 1 0 0px;
|
24247
24361
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24248
24362
|
pointer-events: none;
|
24249
|
-
}.v-selection-control-group {
|
24250
|
-
grid-area: control;
|
24251
|
-
display: flex;
|
24252
|
-
flex-direction: column;
|
24253
|
-
}
|
24254
|
-
.v-selection-control-group--inline {
|
24255
|
-
flex-direction: row;
|
24256
|
-
flex-wrap: wrap;
|
24257
24363
|
}.v-skeleton-loader {
|
24258
24364
|
align-items: center;
|
24259
24365
|
background: rgb(var(--v-theme-surface));
|
@@ -24412,200 +24518,71 @@ html.v-overlay-scroll-blocked {
|
|
24412
24518
|
}
|
24413
24519
|
.v-skeleton-loader__table-thead .v-skeleton-loader__heading {
|
24414
24520
|
margin-top: 16px;
|
24415
|
-
max-width: 16px;
|
24416
|
-
}
|
24417
|
-
.v-skeleton-loader__table-tfoot {
|
24418
|
-
flex-wrap: nowrap;
|
24419
|
-
}
|
24420
|
-
.v-skeleton-loader__table-tfoot > .v-skeleton-loader__text.v-skeleton-loader__bone {
|
24421
|
-
margin-top: 16px;
|
24422
|
-
}
|
24423
|
-
.v-skeleton-loader__table-row {
|
24424
|
-
align-items: baseline;
|
24425
|
-
margin: 0 8px;
|
24426
|
-
justify-content: space-evenly;
|
24427
|
-
flex-wrap: nowrap;
|
24428
|
-
}
|
24429
|
-
.v-skeleton-loader__table-row > .v-skeleton-loader__text.v-skeleton-loader__bone {
|
24430
|
-
margin-inline: 8px;
|
24431
|
-
}
|
24432
|
-
.v-skeleton-loader__table-row + .v-skeleton-loader__divider {
|
24433
|
-
margin: 0 16px;
|
24434
|
-
}
|
24435
|
-
.v-skeleton-loader__table-cell {
|
24436
|
-
align-items: center;
|
24437
|
-
display: flex;
|
24438
|
-
height: 48px;
|
24439
|
-
width: 88px;
|
24440
|
-
}
|
24441
|
-
.v-skeleton-loader__table-cell .v-skeleton-loader__text {
|
24442
|
-
margin-bottom: 0;
|
24443
|
-
}
|
24444
|
-
.v-skeleton-loader__subtitle {
|
24445
|
-
max-width: 70%;
|
24446
|
-
}
|
24447
|
-
.v-skeleton-loader__subtitle > .v-skeleton-loader__text {
|
24448
|
-
height: 16px;
|
24449
|
-
border-radius: 8px;
|
24450
|
-
}
|
24451
|
-
.v-skeleton-loader__text {
|
24452
|
-
border-radius: 6px;
|
24453
|
-
margin: 16px;
|
24454
|
-
height: 12px;
|
24455
|
-
}
|
24456
|
-
.v-skeleton-loader__text + .v-skeleton-loader__text {
|
24457
|
-
margin-top: -8px;
|
24458
|
-
max-width: 50%;
|
24459
|
-
}
|
24460
|
-
.v-skeleton-loader__text + .v-skeleton-loader__text + .v-skeleton-loader__text {
|
24461
|
-
max-width: 70%;
|
24462
|
-
}
|
24463
|
-
.v-skeleton-loader--boilerplate .v-skeleton-loader__bone:after {
|
24464
|
-
display: none;
|
24465
|
-
}
|
24466
|
-
.v-skeleton-loader--is-loading {
|
24467
|
-
overflow: hidden;
|
24468
|
-
}
|
24469
|
-
.v-skeleton-loader--tile {
|
24470
|
-
border-radius: 0;
|
24471
|
-
}
|
24472
|
-
.v-skeleton-loader--tile .v-skeleton-loader__bone {
|
24473
|
-
border-radius: 0;
|
24474
|
-
}
|
24475
|
-
|
24476
|
-
@keyframes loading {
|
24477
|
-
100% {
|
24478
|
-
transform: translateX(100%);
|
24479
|
-
}
|
24480
|
-
}.v-sheet {
|
24481
|
-
display: block;
|
24482
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24483
|
-
border-style: solid;
|
24484
|
-
border-width: 0;
|
24485
|
-
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));
|
24486
|
-
border-radius: 0;
|
24487
|
-
background: rgb(var(--v-theme-surface));
|
24488
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24489
|
-
}
|
24490
|
-
.v-sheet--border {
|
24491
|
-
border-width: thin;
|
24492
|
-
box-shadow: none;
|
24493
|
-
}
|
24494
|
-
.v-sheet--absolute {
|
24495
|
-
position: absolute;
|
24496
|
-
}
|
24497
|
-
.v-sheet--fixed {
|
24498
|
-
position: fixed;
|
24499
|
-
}
|
24500
|
-
.v-sheet--relative {
|
24501
|
-
position: relative;
|
24502
|
-
}
|
24503
|
-
.v-sheet--sticky {
|
24504
|
-
position: sticky;
|
24505
|
-
}
|
24506
|
-
.v-sheet--rounded {
|
24507
|
-
border-radius: 4px;
|
24508
|
-
}.v-selection-control {
|
24509
|
-
align-items: center;
|
24510
|
-
contain: layout;
|
24511
|
-
display: flex;
|
24512
|
-
flex: 1 0;
|
24513
|
-
grid-area: control;
|
24514
|
-
position: relative;
|
24515
|
-
-webkit-user-select: none;
|
24516
|
-
user-select: none;
|
24517
|
-
}
|
24518
|
-
.v-selection-control .v-label {
|
24519
|
-
white-space: normal;
|
24520
|
-
word-break: break-word;
|
24521
|
-
height: 100%;
|
24522
|
-
}
|
24523
|
-
.v-selection-control--disabled {
|
24524
|
-
opacity: var(--v-disabled-opacity);
|
24525
|
-
pointer-events: none;
|
24526
|
-
}
|
24527
|
-
.v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
|
24528
|
-
opacity: 1;
|
24529
|
-
}
|
24530
|
-
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
24531
|
-
color: rgb(var(--v-theme-error));
|
24532
|
-
}
|
24533
|
-
.v-selection-control--inline {
|
24534
|
-
display: inline-flex;
|
24535
|
-
flex: 0 0 auto;
|
24536
|
-
min-width: 0;
|
24537
|
-
max-width: 100%;
|
24521
|
+
max-width: 16px;
|
24538
24522
|
}
|
24539
|
-
.v-
|
24540
|
-
|
24523
|
+
.v-skeleton-loader__table-tfoot {
|
24524
|
+
flex-wrap: nowrap;
|
24541
24525
|
}
|
24542
|
-
.v-
|
24543
|
-
|
24526
|
+
.v-skeleton-loader__table-tfoot > .v-skeleton-loader__text.v-skeleton-loader__bone {
|
24527
|
+
margin-top: 16px;
|
24544
24528
|
}
|
24545
|
-
|
24546
|
-
|
24547
|
-
|
24529
|
+
.v-skeleton-loader__table-row {
|
24530
|
+
align-items: baseline;
|
24531
|
+
margin: 0 8px;
|
24532
|
+
justify-content: space-evenly;
|
24533
|
+
flex-wrap: nowrap;
|
24548
24534
|
}
|
24549
|
-
|
24550
|
-
|
24551
|
-
--v-selection-control-size: 28px;
|
24535
|
+
.v-skeleton-loader__table-row > .v-skeleton-loader__text.v-skeleton-loader__bone {
|
24536
|
+
margin-inline: 8px;
|
24552
24537
|
}
|
24553
|
-
|
24554
|
-
|
24555
|
-
width: var(--v-selection-control-size);
|
24556
|
-
height: var(--v-selection-control-size);
|
24557
|
-
display: inline-flex;
|
24558
|
-
align-items: center;
|
24559
|
-
position: relative;
|
24560
|
-
justify-content: center;
|
24561
|
-
flex: none;
|
24538
|
+
.v-skeleton-loader__table-row + .v-skeleton-loader__divider {
|
24539
|
+
margin: 0 16px;
|
24562
24540
|
}
|
24563
|
-
|
24564
|
-
.v-selection-control__input {
|
24565
|
-
width: var(--v-selection-control-size);
|
24566
|
-
height: var(--v-selection-control-size);
|
24541
|
+
.v-skeleton-loader__table-cell {
|
24567
24542
|
align-items: center;
|
24568
24543
|
display: flex;
|
24569
|
-
|
24570
|
-
|
24571
|
-
position: relative;
|
24572
|
-
border-radius: 50%;
|
24544
|
+
height: 48px;
|
24545
|
+
width: 88px;
|
24573
24546
|
}
|
24574
|
-
.v-
|
24575
|
-
|
24576
|
-
position: absolute;
|
24577
|
-
left: 0;
|
24578
|
-
top: 0;
|
24579
|
-
width: 100%;
|
24580
|
-
height: 100%;
|
24581
|
-
opacity: 0;
|
24547
|
+
.v-skeleton-loader__table-cell .v-skeleton-loader__text {
|
24548
|
+
margin-bottom: 0;
|
24582
24549
|
}
|
24583
|
-
.v-
|
24584
|
-
|
24585
|
-
position: absolute;
|
24586
|
-
top: 0;
|
24587
|
-
left: 0;
|
24588
|
-
width: 100%;
|
24589
|
-
height: 100%;
|
24590
|
-
border-radius: 100%;
|
24591
|
-
background-color: currentColor;
|
24592
|
-
opacity: 0;
|
24593
|
-
pointer-events: none;
|
24550
|
+
.v-skeleton-loader__subtitle {
|
24551
|
+
max-width: 70%;
|
24594
24552
|
}
|
24595
|
-
.v-
|
24596
|
-
|
24553
|
+
.v-skeleton-loader__subtitle > .v-skeleton-loader__text {
|
24554
|
+
height: 16px;
|
24555
|
+
border-radius: 8px;
|
24597
24556
|
}
|
24598
|
-
.v-
|
24599
|
-
|
24557
|
+
.v-skeleton-loader__text {
|
24558
|
+
border-radius: 6px;
|
24559
|
+
margin: 16px;
|
24560
|
+
height: 12px;
|
24600
24561
|
}
|
24601
|
-
.v-
|
24602
|
-
|
24562
|
+
.v-skeleton-loader__text + .v-skeleton-loader__text {
|
24563
|
+
margin-top: -8px;
|
24564
|
+
max-width: 50%;
|
24603
24565
|
}
|
24604
|
-
.v-
|
24605
|
-
|
24566
|
+
.v-skeleton-loader__text + .v-skeleton-loader__text + .v-skeleton-loader__text {
|
24567
|
+
max-width: 70%;
|
24606
24568
|
}
|
24607
|
-
.v-
|
24608
|
-
|
24569
|
+
.v-skeleton-loader--boilerplate .v-skeleton-loader__bone:after {
|
24570
|
+
display: none;
|
24571
|
+
}
|
24572
|
+
.v-skeleton-loader--is-loading {
|
24573
|
+
overflow: hidden;
|
24574
|
+
}
|
24575
|
+
.v-skeleton-loader--tile {
|
24576
|
+
border-radius: 0;
|
24577
|
+
}
|
24578
|
+
.v-skeleton-loader--tile .v-skeleton-loader__bone {
|
24579
|
+
border-radius: 0;
|
24580
|
+
}
|
24581
|
+
|
24582
|
+
@keyframes loading {
|
24583
|
+
100% {
|
24584
|
+
transform: translateX(100%);
|
24585
|
+
}
|
24609
24586
|
}.v-slide-group {
|
24610
24587
|
display: flex;
|
24611
24588
|
overflow: hidden;
|
@@ -24661,6 +24638,34 @@ html.v-overlay-scroll-blocked {
|
|
24661
24638
|
.v-slide-group--vertical .v-slide-group__container {
|
24662
24639
|
overflow-x: hidden;
|
24663
24640
|
overflow-y: auto;
|
24641
|
+
}.v-sheet {
|
24642
|
+
display: block;
|
24643
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24644
|
+
border-style: solid;
|
24645
|
+
border-width: 0;
|
24646
|
+
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));
|
24647
|
+
border-radius: 0;
|
24648
|
+
background: rgb(var(--v-theme-surface));
|
24649
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24650
|
+
}
|
24651
|
+
.v-sheet--border {
|
24652
|
+
border-width: thin;
|
24653
|
+
box-shadow: none;
|
24654
|
+
}
|
24655
|
+
.v-sheet--absolute {
|
24656
|
+
position: absolute;
|
24657
|
+
}
|
24658
|
+
.v-sheet--fixed {
|
24659
|
+
position: fixed;
|
24660
|
+
}
|
24661
|
+
.v-sheet--relative {
|
24662
|
+
position: relative;
|
24663
|
+
}
|
24664
|
+
.v-sheet--sticky {
|
24665
|
+
position: sticky;
|
24666
|
+
}
|
24667
|
+
.v-sheet--rounded {
|
24668
|
+
border-radius: 4px;
|
24664
24669
|
}.v-snackbar {
|
24665
24670
|
justify-content: center;
|
24666
24671
|
z-index: 10000;
|
@@ -24799,47 +24804,6 @@ html.v-overlay-scroll-blocked {
|
|
24799
24804
|
}
|
24800
24805
|
.v-snackbar-transition-leave-to {
|
24801
24806
|
opacity: 0;
|
24802
|
-
}.v-speed-dial__content {
|
24803
|
-
gap: 8px;
|
24804
|
-
}
|
24805
|
-
.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 {
|
24806
|
-
flex-direction: row;
|
24807
|
-
}
|
24808
|
-
.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 {
|
24809
|
-
flex-direction: row-reverse;
|
24810
|
-
}
|
24811
|
-
.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 {
|
24812
|
-
flex-direction: column-reverse;
|
24813
|
-
}
|
24814
|
-
.v-speed-dial__content > *:nth-child(1) {
|
24815
|
-
transition-delay: 0s;
|
24816
|
-
}
|
24817
|
-
.v-speed-dial__content > *:nth-child(2) {
|
24818
|
-
transition-delay: 0.05s;
|
24819
|
-
}
|
24820
|
-
.v-speed-dial__content > *:nth-child(3) {
|
24821
|
-
transition-delay: 0.1s;
|
24822
|
-
}
|
24823
|
-
.v-speed-dial__content > *:nth-child(4) {
|
24824
|
-
transition-delay: 0.15s;
|
24825
|
-
}
|
24826
|
-
.v-speed-dial__content > *:nth-child(5) {
|
24827
|
-
transition-delay: 0.2s;
|
24828
|
-
}
|
24829
|
-
.v-speed-dial__content > *:nth-child(6) {
|
24830
|
-
transition-delay: 0.25s;
|
24831
|
-
}
|
24832
|
-
.v-speed-dial__content > *:nth-child(7) {
|
24833
|
-
transition-delay: 0.3s;
|
24834
|
-
}
|
24835
|
-
.v-speed-dial__content > *:nth-child(8) {
|
24836
|
-
transition-delay: 0.35s;
|
24837
|
-
}
|
24838
|
-
.v-speed-dial__content > *:nth-child(9) {
|
24839
|
-
transition-delay: 0.4s;
|
24840
|
-
}
|
24841
|
-
.v-speed-dial__content > *:nth-child(10) {
|
24842
|
-
transition-delay: 0.45s;
|
24843
24807
|
}.v-stepper.v-sheet {
|
24844
24808
|
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));
|
24845
24809
|
border-radius: 4px;
|
@@ -25040,144 +25004,47 @@ html.v-overlay-scroll-blocked {
|
|
25040
25004
|
}
|
25041
25005
|
.v-system-bar:not(.v-system-bar--absolute) {
|
25042
25006
|
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25043
|
-
}.v-
|
25044
|
-
|
25045
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25046
|
-
font-size: 0.875rem;
|
25047
|
-
transition-duration: 0.28s;
|
25048
|
-
transition-property: box-shadow, opacity, background, height;
|
25049
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25050
|
-
}
|
25051
|
-
.v-table .v-table-divider {
|
25052
|
-
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25053
|
-
}
|
25054
|
-
.v-table .v-table__wrapper > table > thead > tr > th {
|
25055
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25056
|
-
}
|
25057
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25058
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25059
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25060
|
-
}
|
25061
|
-
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25062
|
-
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25063
|
-
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25064
|
-
}
|
25065
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25066
|
-
position: relative;
|
25067
|
-
}
|
25068
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25069
|
-
content: "";
|
25070
|
-
position: absolute;
|
25071
|
-
top: 0;
|
25072
|
-
left: 0;
|
25073
|
-
width: 100%;
|
25074
|
-
height: 100%;
|
25075
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25076
|
-
pointer-events: none;
|
25077
|
-
}
|
25078
|
-
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25079
|
-
background: rgb(var(--v-theme-surface));
|
25080
|
-
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25081
|
-
z-index: 1;
|
25082
|
-
}
|
25083
|
-
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25084
|
-
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25085
|
-
background: rgb(var(--v-theme-surface));
|
25086
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25087
|
-
}
|
25088
|
-
|
25089
|
-
.v-table {
|
25090
|
-
border-radius: inherit;
|
25091
|
-
line-height: 1.5;
|
25092
|
-
max-width: 100%;
|
25093
|
-
display: flex;
|
25094
|
-
flex-direction: column;
|
25095
|
-
}
|
25096
|
-
.v-table > .v-table__wrapper > table {
|
25097
|
-
width: 100%;
|
25098
|
-
border-spacing: 0;
|
25099
|
-
}
|
25100
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25101
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25102
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25103
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25104
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25105
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25106
|
-
padding: 0 16px;
|
25107
|
-
transition-duration: 0.28s;
|
25108
|
-
transition-property: box-shadow, opacity, background, height;
|
25109
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25110
|
-
}
|
25111
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25112
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25113
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25114
|
-
height: var(--v-table-row-height);
|
25115
|
-
}
|
25116
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25117
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25118
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25119
|
-
height: var(--v-table-header-height);
|
25120
|
-
font-weight: 500;
|
25121
|
-
-webkit-user-select: none;
|
25122
|
-
user-select: none;
|
25123
|
-
text-align: start;
|
25007
|
+
}.v-speed-dial__content {
|
25008
|
+
gap: 8px;
|
25124
25009
|
}
|
25125
|
-
.v-
|
25126
|
-
|
25127
|
-
--v-table-row-height: 52px;
|
25010
|
+
.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 {
|
25011
|
+
flex-direction: row;
|
25128
25012
|
}
|
25129
|
-
|
25130
|
-
|
25131
|
-
--v-table-header-height: 48px;
|
25132
|
-
--v-table-row-height: 44px;
|
25013
|
+
.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 {
|
25014
|
+
flex-direction: row-reverse;
|
25133
25015
|
}
|
25134
|
-
|
25135
|
-
|
25136
|
-
--v-table-header-height: 40px;
|
25137
|
-
--v-table-row-height: 36px;
|
25016
|
+
.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 {
|
25017
|
+
flex-direction: column-reverse;
|
25138
25018
|
}
|
25139
|
-
|
25140
|
-
|
25141
|
-
border-radius: inherit;
|
25142
|
-
overflow: auto;
|
25143
|
-
flex: 1 1 auto;
|
25019
|
+
.v-speed-dial__content > *:nth-child(1) {
|
25020
|
+
transition-delay: 0s;
|
25144
25021
|
}
|
25145
|
-
|
25146
|
-
|
25147
|
-
border-top-left-radius: 0;
|
25022
|
+
.v-speed-dial__content > *:nth-child(2) {
|
25023
|
+
transition-delay: 0.05s;
|
25148
25024
|
}
|
25149
|
-
.v-
|
25150
|
-
|
25025
|
+
.v-speed-dial__content > *:nth-child(3) {
|
25026
|
+
transition-delay: 0.1s;
|
25151
25027
|
}
|
25152
|
-
|
25153
|
-
|
25154
|
-
border-bottom-left-radius: 0;
|
25028
|
+
.v-speed-dial__content > *:nth-child(4) {
|
25029
|
+
transition-delay: 0.15s;
|
25155
25030
|
}
|
25156
|
-
.v-
|
25157
|
-
|
25031
|
+
.v-speed-dial__content > *:nth-child(5) {
|
25032
|
+
transition-delay: 0.2s;
|
25158
25033
|
}
|
25159
|
-
|
25160
|
-
|
25161
|
-
overflow-y: auto;
|
25034
|
+
.v-speed-dial__content > *:nth-child(6) {
|
25035
|
+
transition-delay: 0.25s;
|
25162
25036
|
}
|
25163
|
-
|
25164
|
-
|
25165
|
-
position: sticky;
|
25166
|
-
top: 0;
|
25167
|
-
z-index: 2;
|
25037
|
+
.v-speed-dial__content > *:nth-child(7) {
|
25038
|
+
transition-delay: 0.3s;
|
25168
25039
|
}
|
25169
|
-
.v-
|
25170
|
-
|
25040
|
+
.v-speed-dial__content > *:nth-child(8) {
|
25041
|
+
transition-delay: 0.35s;
|
25171
25042
|
}
|
25172
|
-
|
25173
|
-
|
25174
|
-
position: sticky;
|
25175
|
-
bottom: 0;
|
25176
|
-
z-index: 1;
|
25043
|
+
.v-speed-dial__content > *:nth-child(9) {
|
25044
|
+
transition-delay: 0.4s;
|
25177
25045
|
}
|
25178
|
-
.v-
|
25179
|
-
|
25180
|
-
border-top: 0px !important;
|
25046
|
+
.v-speed-dial__content > *:nth-child(10) {
|
25047
|
+
transition-delay: 0.45s;
|
25181
25048
|
}.v-switch .v-label {
|
25182
25049
|
padding-inline-start: 10px;
|
25183
25050
|
}
|
@@ -25358,6 +25225,144 @@ html.v-overlay-scroll-blocked {
|
|
25358
25225
|
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
25359
25226
|
border-width: 0;
|
25360
25227
|
}
|
25228
|
+
}.v-table {
|
25229
|
+
background: rgb(var(--v-theme-surface));
|
25230
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25231
|
+
font-size: 0.875rem;
|
25232
|
+
transition-duration: 0.28s;
|
25233
|
+
transition-property: box-shadow, opacity, background, height;
|
25234
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25235
|
+
}
|
25236
|
+
.v-table .v-table-divider {
|
25237
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25238
|
+
}
|
25239
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
25240
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25241
|
+
}
|
25242
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25243
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25244
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25245
|
+
}
|
25246
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25247
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25248
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25249
|
+
}
|
25250
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25251
|
+
position: relative;
|
25252
|
+
}
|
25253
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25254
|
+
content: "";
|
25255
|
+
position: absolute;
|
25256
|
+
top: 0;
|
25257
|
+
left: 0;
|
25258
|
+
width: 100%;
|
25259
|
+
height: 100%;
|
25260
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25261
|
+
pointer-events: none;
|
25262
|
+
}
|
25263
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25264
|
+
background: rgb(var(--v-theme-surface));
|
25265
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25266
|
+
z-index: 1;
|
25267
|
+
}
|
25268
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25269
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25270
|
+
background: rgb(var(--v-theme-surface));
|
25271
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25272
|
+
}
|
25273
|
+
|
25274
|
+
.v-table {
|
25275
|
+
border-radius: inherit;
|
25276
|
+
line-height: 1.5;
|
25277
|
+
max-width: 100%;
|
25278
|
+
display: flex;
|
25279
|
+
flex-direction: column;
|
25280
|
+
}
|
25281
|
+
.v-table > .v-table__wrapper > table {
|
25282
|
+
width: 100%;
|
25283
|
+
border-spacing: 0;
|
25284
|
+
}
|
25285
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25286
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25287
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25288
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25289
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25290
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25291
|
+
padding: 0 16px;
|
25292
|
+
transition-duration: 0.28s;
|
25293
|
+
transition-property: box-shadow, opacity, background, height;
|
25294
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25295
|
+
}
|
25296
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25297
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25298
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25299
|
+
height: var(--v-table-row-height);
|
25300
|
+
}
|
25301
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25302
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25303
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25304
|
+
height: var(--v-table-header-height);
|
25305
|
+
font-weight: 500;
|
25306
|
+
-webkit-user-select: none;
|
25307
|
+
user-select: none;
|
25308
|
+
text-align: start;
|
25309
|
+
}
|
25310
|
+
.v-table--density-default {
|
25311
|
+
--v-table-header-height: 56px;
|
25312
|
+
--v-table-row-height: 52px;
|
25313
|
+
}
|
25314
|
+
|
25315
|
+
.v-table--density-comfortable {
|
25316
|
+
--v-table-header-height: 48px;
|
25317
|
+
--v-table-row-height: 44px;
|
25318
|
+
}
|
25319
|
+
|
25320
|
+
.v-table--density-compact {
|
25321
|
+
--v-table-header-height: 40px;
|
25322
|
+
--v-table-row-height: 36px;
|
25323
|
+
}
|
25324
|
+
|
25325
|
+
.v-table__wrapper {
|
25326
|
+
border-radius: inherit;
|
25327
|
+
overflow: auto;
|
25328
|
+
flex: 1 1 auto;
|
25329
|
+
}
|
25330
|
+
|
25331
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25332
|
+
border-top-left-radius: 0;
|
25333
|
+
}
|
25334
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25335
|
+
border-top-right-radius: 0;
|
25336
|
+
}
|
25337
|
+
|
25338
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25339
|
+
border-bottom-left-radius: 0;
|
25340
|
+
}
|
25341
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25342
|
+
border-bottom-right-radius: 0;
|
25343
|
+
}
|
25344
|
+
|
25345
|
+
.v-table--fixed-height > .v-table__wrapper {
|
25346
|
+
overflow-y: auto;
|
25347
|
+
}
|
25348
|
+
|
25349
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25350
|
+
position: sticky;
|
25351
|
+
top: 0;
|
25352
|
+
z-index: 2;
|
25353
|
+
}
|
25354
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25355
|
+
border-bottom: 0px !important;
|
25356
|
+
}
|
25357
|
+
|
25358
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25359
|
+
position: sticky;
|
25360
|
+
bottom: 0;
|
25361
|
+
z-index: 1;
|
25362
|
+
}
|
25363
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25364
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25365
|
+
border-top: 0px !important;
|
25361
25366
|
}.v-tab.v-tab.v-btn {
|
25362
25367
|
height: var(--v-tabs-height);
|
25363
25368
|
border-radius: 0;
|
@@ -25442,56 +25447,17 @@ html.v-overlay-scroll-blocked {
|
|
25442
25447
|
.v-tabs--align-tabs-end .v-tab:first-child {
|
25443
25448
|
margin-inline-start: auto;
|
25444
25449
|
}
|
25445
|
-
.v-tabs--align-tabs-end .v-tab:last-child {
|
25446
|
-
margin-inline-end: 0;
|
25447
|
-
}
|
25448
|
-
|
25449
|
-
@media (max-width: 1279.98px) {
|
25450
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25451
|
-
margin-inline-start: 52px;
|
25452
|
-
}
|
25453
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25454
|
-
margin-inline-end: 52px;
|
25455
|
-
}
|
25456
|
-
}.v-textarea .v-field {
|
25457
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
25458
|
-
}
|
25459
|
-
.v-textarea .v-field__field {
|
25460
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
25461
|
-
}
|
25462
|
-
.v-textarea .v-field__input {
|
25463
|
-
flex: 1 1 auto;
|
25464
|
-
outline: none;
|
25465
|
-
-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));
|
25466
|
-
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));
|
25467
|
-
}
|
25468
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
25469
|
-
visibility: hidden;
|
25470
|
-
position: absolute;
|
25471
|
-
top: 0;
|
25472
|
-
left: 0;
|
25473
|
-
height: 0 !important;
|
25474
|
-
min-height: 0 !important;
|
25475
|
-
pointer-events: none;
|
25476
|
-
}
|
25477
|
-
.v-textarea--no-resize .v-field__input {
|
25478
|
-
resize: none;
|
25479
|
-
}
|
25480
|
-
.v-textarea .v-field--no-label textarea,
|
25481
|
-
.v-textarea .v-field--active textarea {
|
25482
|
-
opacity: 1;
|
25483
|
-
}
|
25484
|
-
.v-textarea textarea {
|
25485
|
-
opacity: 0;
|
25486
|
-
flex: 1;
|
25487
|
-
min-width: 0;
|
25488
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25489
|
-
}
|
25490
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25491
|
-
outline: none;
|
25450
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
25451
|
+
margin-inline-end: 0;
|
25492
25452
|
}
|
25493
|
-
|
25494
|
-
|
25453
|
+
|
25454
|
+
@media (max-width: 1279.98px) {
|
25455
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25456
|
+
margin-inline-start: 52px;
|
25457
|
+
}
|
25458
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25459
|
+
margin-inline-end: 52px;
|
25460
|
+
}
|
25495
25461
|
}/* region BLOCK */
|
25496
25462
|
.v-text-field input {
|
25497
25463
|
color: inherit;
|
@@ -25559,7 +25525,46 @@ html.v-overlay-scroll-blocked {
|
|
25559
25525
|
padding-inline-end: var(--v-field-padding-end);
|
25560
25526
|
}
|
25561
25527
|
|
25562
|
-
/* endregion */.v-
|
25528
|
+
/* endregion */.v-textarea .v-field {
|
25529
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
25530
|
+
}
|
25531
|
+
.v-textarea .v-field__field {
|
25532
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
25533
|
+
}
|
25534
|
+
.v-textarea .v-field__input {
|
25535
|
+
flex: 1 1 auto;
|
25536
|
+
outline: none;
|
25537
|
+
-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));
|
25538
|
+
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));
|
25539
|
+
}
|
25540
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
25541
|
+
visibility: hidden;
|
25542
|
+
position: absolute;
|
25543
|
+
top: 0;
|
25544
|
+
left: 0;
|
25545
|
+
height: 0 !important;
|
25546
|
+
min-height: 0 !important;
|
25547
|
+
pointer-events: none;
|
25548
|
+
}
|
25549
|
+
.v-textarea--no-resize .v-field__input {
|
25550
|
+
resize: none;
|
25551
|
+
}
|
25552
|
+
.v-textarea .v-field--no-label textarea,
|
25553
|
+
.v-textarea .v-field--active textarea {
|
25554
|
+
opacity: 1;
|
25555
|
+
}
|
25556
|
+
.v-textarea textarea {
|
25557
|
+
opacity: 0;
|
25558
|
+
flex: 1;
|
25559
|
+
min-width: 0;
|
25560
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25561
|
+
}
|
25562
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25563
|
+
outline: none;
|
25564
|
+
}
|
25565
|
+
.v-textarea textarea:invalid {
|
25566
|
+
box-shadow: none;
|
25567
|
+
}.v-toolbar {
|
25563
25568
|
align-items: flex-start;
|
25564
25569
|
display: flex;
|
25565
25570
|
flex: none;
|
@@ -25688,6 +25693,9 @@ html.v-overlay-scroll-blocked {
|
|
25688
25693
|
}
|
25689
25694
|
.v-toolbar-items > .v-btn {
|
25690
25695
|
border-radius: 0;
|
25696
|
+
}.v-theme-provider {
|
25697
|
+
background: rgb(var(--v-theme-background));
|
25698
|
+
color: rgb(var(--v-theme-on-background));
|
25691
25699
|
}.v-timeline .v-timeline-divider__dot {
|
25692
25700
|
background: rgb(var(--v-theme-surface-light));
|
25693
25701
|
}
|
@@ -26104,9 +26112,6 @@ html.v-overlay-scroll-blocked {
|
|
26104
26112
|
|
26105
26113
|
.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 {
|
26106
26114
|
padding-inline-end: 0;
|
26107
|
-
}.v-theme-provider {
|
26108
|
-
background: rgb(var(--v-theme-background));
|
26109
|
-
color: rgb(var(--v-theme-on-background));
|
26110
26115
|
}.v-tooltip > .v-overlay__content {
|
26111
26116
|
background: rgb(var(--v-theme-surface-variant));
|
26112
26117
|
color: rgb(var(--v-theme-on-surface-variant));
|
@@ -26129,6 +26134,15 @@ html.v-overlay-scroll-blocked {
|
|
26129
26134
|
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26130
26135
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26131
26136
|
transition-duration: 75ms;
|
26137
|
+
}.v-virtual-scroll {
|
26138
|
+
display: block;
|
26139
|
+
flex: 1 1 auto;
|
26140
|
+
max-width: 100%;
|
26141
|
+
overflow: auto;
|
26142
|
+
position: relative;
|
26143
|
+
}
|
26144
|
+
.v-virtual-scroll__container {
|
26145
|
+
display: block;
|
26132
26146
|
}.v-window {
|
26133
26147
|
overflow: hidden;
|
26134
26148
|
}
|
@@ -26199,15 +26213,6 @@ html.v-overlay-scroll-blocked {
|
|
26199
26213
|
}
|
26200
26214
|
.v-window-y-reverse-transition-leave-to {
|
26201
26215
|
transform: translateY(100%);
|
26202
|
-
}.v-virtual-scroll {
|
26203
|
-
display: block;
|
26204
|
-
flex: 1 1 auto;
|
26205
|
-
max-width: 100%;
|
26206
|
-
overflow: auto;
|
26207
|
-
position: relative;
|
26208
|
-
}
|
26209
|
-
.v-virtual-scroll__container {
|
26210
|
-
display: block;
|
26211
26216
|
}.v-color-picker-canvas {
|
26212
26217
|
display: flex;
|
26213
26218
|
position: relative;
|
@@ -26230,6 +26235,34 @@ html.v-overlay-scroll-blocked {
|
|
26230
26235
|
}
|
26231
26236
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26232
26237
|
will-change: transform;
|
26238
|
+
}.v-color-picker-edit {
|
26239
|
+
display: flex;
|
26240
|
+
margin-top: 24px;
|
26241
|
+
}
|
26242
|
+
|
26243
|
+
.v-color-picker-edit__input {
|
26244
|
+
width: 100%;
|
26245
|
+
display: flex;
|
26246
|
+
flex-wrap: wrap;
|
26247
|
+
justify-content: center;
|
26248
|
+
text-align: center;
|
26249
|
+
}
|
26250
|
+
.v-color-picker-edit__input:not(:last-child) {
|
26251
|
+
margin-inline-end: 8px;
|
26252
|
+
}
|
26253
|
+
.v-color-picker-edit__input input {
|
26254
|
+
border-radius: 4px;
|
26255
|
+
margin-bottom: 8px;
|
26256
|
+
min-width: 0;
|
26257
|
+
outline: none;
|
26258
|
+
text-align: center;
|
26259
|
+
width: 100%;
|
26260
|
+
height: 32px;
|
26261
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26262
|
+
color: rgba(var(--v-theme-on-surface));
|
26263
|
+
}
|
26264
|
+
.v-color-picker-edit__input span {
|
26265
|
+
font-size: 0.75rem;
|
26233
26266
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26234
26267
|
background-color: transparent !important;
|
26235
26268
|
}
|
@@ -26291,78 +26324,209 @@ html.v-overlay-scroll-blocked {
|
|
26291
26324
|
display: none;
|
26292
26325
|
}
|
26293
26326
|
|
26294
|
-
.v-color-picker-preview {
|
26295
|
-
align-items: center;
|
26296
|
-
display: flex;
|
26297
|
-
margin-bottom: 0;
|
26327
|
+
.v-color-picker-preview {
|
26328
|
+
align-items: center;
|
26329
|
+
display: flex;
|
26330
|
+
margin-bottom: 0;
|
26331
|
+
}
|
26332
|
+
|
26333
|
+
.v-color-picker-preview__eye-dropper {
|
26334
|
+
position: relative;
|
26335
|
+
margin-right: 12px;
|
26336
|
+
}.v-color-picker-swatches {
|
26337
|
+
overflow-y: auto;
|
26338
|
+
}
|
26339
|
+
.v-color-picker-swatches > div {
|
26340
|
+
display: flex;
|
26341
|
+
flex-wrap: wrap;
|
26342
|
+
justify-content: center;
|
26343
|
+
padding: 8px;
|
26344
|
+
}
|
26345
|
+
|
26346
|
+
.v-color-picker-swatches__swatch {
|
26347
|
+
display: flex;
|
26348
|
+
flex-direction: column;
|
26349
|
+
margin-bottom: 10px;
|
26350
|
+
}
|
26351
|
+
|
26352
|
+
.v-color-picker-swatches__color {
|
26353
|
+
position: relative;
|
26354
|
+
height: 18px;
|
26355
|
+
max-height: 18px;
|
26356
|
+
width: 45px;
|
26357
|
+
margin: 2px 4px;
|
26358
|
+
border-radius: 2px;
|
26359
|
+
-webkit-user-select: none;
|
26360
|
+
user-select: none;
|
26361
|
+
overflow: hidden;
|
26362
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26363
|
+
cursor: pointer;
|
26364
|
+
}
|
26365
|
+
.v-color-picker-swatches__color > div {
|
26366
|
+
display: flex;
|
26367
|
+
align-items: center;
|
26368
|
+
justify-content: center;
|
26369
|
+
width: 100%;
|
26370
|
+
height: 100%;
|
26371
|
+
}.v-slider-thumb {
|
26372
|
+
touch-action: none;
|
26373
|
+
color: rgb(var(--v-theme-surface-variant));
|
26374
|
+
}
|
26375
|
+
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26376
|
+
color: inherit;
|
26377
|
+
}
|
26378
|
+
|
26379
|
+
.v-slider-thumb__label {
|
26380
|
+
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26381
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26382
|
+
}
|
26383
|
+
.v-slider-thumb__label::before {
|
26384
|
+
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26385
|
+
}
|
26386
|
+
|
26387
|
+
.v-slider-thumb {
|
26388
|
+
outline: none;
|
26389
|
+
position: absolute;
|
26390
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26391
|
+
}
|
26392
|
+
|
26393
|
+
.v-slider-thumb__surface {
|
26394
|
+
cursor: pointer;
|
26395
|
+
width: var(--v-slider-thumb-size);
|
26396
|
+
height: var(--v-slider-thumb-size);
|
26397
|
+
border-radius: 50%;
|
26398
|
+
-webkit-user-select: none;
|
26399
|
+
user-select: none;
|
26400
|
+
background-color: currentColor;
|
26401
|
+
}
|
26402
|
+
@media (forced-colors: active) {
|
26403
|
+
.v-slider-thumb__surface {
|
26404
|
+
background-color: highlight;
|
26405
|
+
}
|
26406
|
+
}
|
26407
|
+
.v-slider-thumb__surface::before {
|
26408
|
+
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26409
|
+
content: "";
|
26410
|
+
color: inherit;
|
26411
|
+
top: 0;
|
26412
|
+
left: 0;
|
26413
|
+
width: 100%;
|
26414
|
+
height: 100%;
|
26415
|
+
border-radius: 50%;
|
26416
|
+
background: currentColor;
|
26417
|
+
position: absolute;
|
26418
|
+
pointer-events: none;
|
26419
|
+
opacity: 0;
|
26420
|
+
}
|
26421
|
+
.v-slider-thumb__surface::after {
|
26422
|
+
content: "";
|
26423
|
+
width: 42px;
|
26424
|
+
height: 42px;
|
26425
|
+
position: absolute;
|
26426
|
+
top: 50%;
|
26427
|
+
left: 50%;
|
26428
|
+
transform: translate(-50%, -50%);
|
26429
|
+
}
|
26430
|
+
|
26431
|
+
.v-slider-thumb__label-container {
|
26432
|
+
position: absolute;
|
26433
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26434
|
+
}
|
26435
|
+
|
26436
|
+
.v-slider-thumb__label {
|
26437
|
+
display: flex;
|
26438
|
+
align-items: center;
|
26439
|
+
justify-content: center;
|
26440
|
+
font-size: 0.75rem;
|
26441
|
+
min-width: 35px;
|
26442
|
+
height: 25px;
|
26443
|
+
border-radius: 4px;
|
26444
|
+
padding: 6px;
|
26445
|
+
position: absolute;
|
26446
|
+
-webkit-user-select: none;
|
26447
|
+
user-select: none;
|
26448
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26449
|
+
}
|
26450
|
+
.v-slider-thumb__label::before {
|
26451
|
+
content: "";
|
26452
|
+
width: 0;
|
26453
|
+
height: 0;
|
26454
|
+
position: absolute;
|
26455
|
+
}
|
26456
|
+
|
26457
|
+
.v-slider-thumb__ripple {
|
26458
|
+
position: absolute;
|
26459
|
+
left: calc(var(--v-slider-thumb-size) / -2);
|
26460
|
+
top: calc(var(--v-slider-thumb-size) / -2);
|
26461
|
+
width: calc(var(--v-slider-thumb-size) * 2);
|
26462
|
+
height: calc(var(--v-slider-thumb-size) * 2);
|
26463
|
+
background: inherit;
|
26464
|
+
}
|
26465
|
+
|
26466
|
+
.v-slider.v-input--horizontal .v-slider-thumb {
|
26467
|
+
top: 50%;
|
26468
|
+
transform: translateY(-50%);
|
26469
|
+
inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26470
|
+
}
|
26471
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
26472
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26473
|
+
top: 0;
|
26474
|
+
}
|
26475
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
26476
|
+
bottom: calc(var(--v-slider-thumb-size) / 2);
|
26477
|
+
}
|
26478
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26479
|
+
transform: translateX(-50%);
|
26480
|
+
}
|
26481
|
+
|
26482
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26483
|
+
transform: translateX(50%);
|
26298
26484
|
}
|
26299
26485
|
|
26300
|
-
.v-
|
26301
|
-
|
26302
|
-
|
26303
|
-
|
26304
|
-
|
26305
|
-
margin-top: 24px;
|
26486
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
26487
|
+
border-left: 6px solid transparent;
|
26488
|
+
border-right: 6px solid transparent;
|
26489
|
+
border-top: 6px solid currentColor;
|
26490
|
+
bottom: -6px;
|
26306
26491
|
}
|
26307
26492
|
|
26308
|
-
.v-
|
26309
|
-
|
26310
|
-
display: flex;
|
26311
|
-
flex-wrap: wrap;
|
26312
|
-
justify-content: center;
|
26313
|
-
text-align: center;
|
26314
|
-
}
|
26315
|
-
.v-color-picker-edit__input:not(:last-child) {
|
26316
|
-
margin-inline-end: 8px;
|
26493
|
+
.v-slider.v-input--vertical .v-slider-thumb {
|
26494
|
+
top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26317
26495
|
}
|
26318
|
-
.v-
|
26319
|
-
|
26320
|
-
|
26321
|
-
min-width: 0;
|
26322
|
-
outline: none;
|
26323
|
-
text-align: center;
|
26324
|
-
width: 100%;
|
26325
|
-
height: 32px;
|
26326
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26327
|
-
color: rgba(var(--v-theme-on-surface));
|
26496
|
+
.v-slider.v-input--vertical .v-slider-thumb__label-container {
|
26497
|
+
top: calc(var(--v-slider-thumb-size) / 2);
|
26498
|
+
right: 0;
|
26328
26499
|
}
|
26329
|
-
.v-
|
26330
|
-
|
26331
|
-
|
26332
|
-
overflow-y: auto;
|
26500
|
+
.v-slider.v-input--vertical .v-slider-thumb__label {
|
26501
|
+
top: -12.5px;
|
26502
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26333
26503
|
}
|
26334
|
-
.v-
|
26335
|
-
|
26336
|
-
|
26337
|
-
|
26338
|
-
|
26504
|
+
.v-slider.v-input--vertical .v-slider-thumb__label::before {
|
26505
|
+
border-right: 6px solid currentColor;
|
26506
|
+
border-top: 6px solid transparent;
|
26507
|
+
border-bottom: 6px solid transparent;
|
26508
|
+
left: -6px;
|
26339
26509
|
}
|
26340
26510
|
|
26341
|
-
.v-
|
26342
|
-
|
26343
|
-
|
26344
|
-
margin-bottom: 10px;
|
26511
|
+
.v-slider-thumb--focused .v-slider-thumb__surface::before {
|
26512
|
+
transform: scale(2);
|
26513
|
+
opacity: var(--v-focus-opacity);
|
26345
26514
|
}
|
26346
26515
|
|
26347
|
-
.v-
|
26348
|
-
|
26349
|
-
height: 18px;
|
26350
|
-
max-height: 18px;
|
26351
|
-
width: 45px;
|
26352
|
-
margin: 2px 4px;
|
26353
|
-
border-radius: 2px;
|
26354
|
-
-webkit-user-select: none;
|
26355
|
-
user-select: none;
|
26356
|
-
overflow: hidden;
|
26357
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26358
|
-
cursor: pointer;
|
26516
|
+
.v-slider-thumb--pressed {
|
26517
|
+
transition: none;
|
26359
26518
|
}
|
26360
|
-
.v-
|
26361
|
-
|
26362
|
-
|
26363
|
-
|
26364
|
-
|
26365
|
-
|
26519
|
+
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26520
|
+
opacity: var(--v-pressed-opacity);
|
26521
|
+
}
|
26522
|
+
|
26523
|
+
@media (hover: hover) {
|
26524
|
+
.v-slider-thumb:hover .v-slider-thumb__surface::before {
|
26525
|
+
transform: scale(2);
|
26526
|
+
}
|
26527
|
+
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
26528
|
+
opacity: var(--v-hover-opacity);
|
26529
|
+
}
|
26366
26530
|
}.v-slider-track__background {
|
26367
26531
|
background-color: rgb(var(--v-theme-surface-variant));
|
26368
26532
|
}
|
@@ -26541,163 +26705,4 @@ html.v-overlay-scroll-blocked {
|
|
26541
26705
|
|
26542
26706
|
.v-slider-track__background--opacity {
|
26543
26707
|
opacity: 0.38;
|
26544
|
-
}.v-slider-thumb {
|
26545
|
-
touch-action: none;
|
26546
|
-
color: rgb(var(--v-theme-surface-variant));
|
26547
|
-
}
|
26548
|
-
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26549
|
-
color: inherit;
|
26550
|
-
}
|
26551
|
-
|
26552
|
-
.v-slider-thumb__label {
|
26553
|
-
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26554
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
26555
|
-
}
|
26556
|
-
.v-slider-thumb__label::before {
|
26557
|
-
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26558
|
-
}
|
26559
|
-
|
26560
|
-
.v-slider-thumb {
|
26561
|
-
outline: none;
|
26562
|
-
position: absolute;
|
26563
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26564
|
-
}
|
26565
|
-
|
26566
|
-
.v-slider-thumb__surface {
|
26567
|
-
cursor: pointer;
|
26568
|
-
width: var(--v-slider-thumb-size);
|
26569
|
-
height: var(--v-slider-thumb-size);
|
26570
|
-
border-radius: 50%;
|
26571
|
-
-webkit-user-select: none;
|
26572
|
-
user-select: none;
|
26573
|
-
background-color: currentColor;
|
26574
|
-
}
|
26575
|
-
@media (forced-colors: active) {
|
26576
|
-
.v-slider-thumb__surface {
|
26577
|
-
background-color: highlight;
|
26578
|
-
}
|
26579
|
-
}
|
26580
|
-
.v-slider-thumb__surface::before {
|
26581
|
-
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26582
|
-
content: "";
|
26583
|
-
color: inherit;
|
26584
|
-
top: 0;
|
26585
|
-
left: 0;
|
26586
|
-
width: 100%;
|
26587
|
-
height: 100%;
|
26588
|
-
border-radius: 50%;
|
26589
|
-
background: currentColor;
|
26590
|
-
position: absolute;
|
26591
|
-
pointer-events: none;
|
26592
|
-
opacity: 0;
|
26593
|
-
}
|
26594
|
-
.v-slider-thumb__surface::after {
|
26595
|
-
content: "";
|
26596
|
-
width: 42px;
|
26597
|
-
height: 42px;
|
26598
|
-
position: absolute;
|
26599
|
-
top: 50%;
|
26600
|
-
left: 50%;
|
26601
|
-
transform: translate(-50%, -50%);
|
26602
|
-
}
|
26603
|
-
|
26604
|
-
.v-slider-thumb__label-container {
|
26605
|
-
position: absolute;
|
26606
|
-
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26607
|
-
}
|
26608
|
-
|
26609
|
-
.v-slider-thumb__label {
|
26610
|
-
display: flex;
|
26611
|
-
align-items: center;
|
26612
|
-
justify-content: center;
|
26613
|
-
font-size: 0.75rem;
|
26614
|
-
min-width: 35px;
|
26615
|
-
height: 25px;
|
26616
|
-
border-radius: 4px;
|
26617
|
-
padding: 6px;
|
26618
|
-
position: absolute;
|
26619
|
-
-webkit-user-select: none;
|
26620
|
-
user-select: none;
|
26621
|
-
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26622
|
-
}
|
26623
|
-
.v-slider-thumb__label::before {
|
26624
|
-
content: "";
|
26625
|
-
width: 0;
|
26626
|
-
height: 0;
|
26627
|
-
position: absolute;
|
26628
|
-
}
|
26629
|
-
|
26630
|
-
.v-slider-thumb__ripple {
|
26631
|
-
position: absolute;
|
26632
|
-
left: calc(var(--v-slider-thumb-size) / -2);
|
26633
|
-
top: calc(var(--v-slider-thumb-size) / -2);
|
26634
|
-
width: calc(var(--v-slider-thumb-size) * 2);
|
26635
|
-
height: calc(var(--v-slider-thumb-size) * 2);
|
26636
|
-
background: inherit;
|
26637
|
-
}
|
26638
|
-
|
26639
|
-
.v-slider.v-input--horizontal .v-slider-thumb {
|
26640
|
-
top: 50%;
|
26641
|
-
transform: translateY(-50%);
|
26642
|
-
inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26643
|
-
}
|
26644
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
26645
|
-
left: calc(var(--v-slider-thumb-size) / 2);
|
26646
|
-
top: 0;
|
26647
|
-
}
|
26648
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
26649
|
-
bottom: calc(var(--v-slider-thumb-size) / 2);
|
26650
|
-
}
|
26651
|
-
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26652
|
-
transform: translateX(-50%);
|
26653
|
-
}
|
26654
|
-
|
26655
|
-
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26656
|
-
transform: translateX(50%);
|
26657
|
-
}
|
26658
|
-
|
26659
|
-
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
26660
|
-
border-left: 6px solid transparent;
|
26661
|
-
border-right: 6px solid transparent;
|
26662
|
-
border-top: 6px solid currentColor;
|
26663
|
-
bottom: -6px;
|
26664
|
-
}
|
26665
|
-
|
26666
|
-
.v-slider.v-input--vertical .v-slider-thumb {
|
26667
|
-
top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26668
|
-
}
|
26669
|
-
.v-slider.v-input--vertical .v-slider-thumb__label-container {
|
26670
|
-
top: calc(var(--v-slider-thumb-size) / 2);
|
26671
|
-
right: 0;
|
26672
|
-
}
|
26673
|
-
.v-slider.v-input--vertical .v-slider-thumb__label {
|
26674
|
-
top: -12.5px;
|
26675
|
-
left: calc(var(--v-slider-thumb-size) / 2);
|
26676
|
-
}
|
26677
|
-
.v-slider.v-input--vertical .v-slider-thumb__label::before {
|
26678
|
-
border-right: 6px solid currentColor;
|
26679
|
-
border-top: 6px solid transparent;
|
26680
|
-
border-bottom: 6px solid transparent;
|
26681
|
-
left: -6px;
|
26682
|
-
}
|
26683
|
-
|
26684
|
-
.v-slider-thumb--focused .v-slider-thumb__surface::before {
|
26685
|
-
transform: scale(2);
|
26686
|
-
opacity: var(--v-focus-opacity);
|
26687
|
-
}
|
26688
|
-
|
26689
|
-
.v-slider-thumb--pressed {
|
26690
|
-
transition: none;
|
26691
|
-
}
|
26692
|
-
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26693
|
-
opacity: var(--v-pressed-opacity);
|
26694
|
-
}
|
26695
|
-
|
26696
|
-
@media (hover: hover) {
|
26697
|
-
.v-slider-thumb:hover .v-slider-thumb__surface::before {
|
26698
|
-
transform: scale(2);
|
26699
|
-
}
|
26700
|
-
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
26701
|
-
opacity: var(--v-hover-opacity);
|
26702
|
-
}
|
26703
26708
|
}
|