@vuetify/nightly 3.6.7-master.2024-05-28 → 3.6.8-master.2024-05-30

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.
Files changed (64) hide show
  1. package/CHANGELOG.md +2 -10
  2. package/dist/json/attributes.json +44 -12
  3. package/dist/json/importMap-labs.json +26 -26
  4. package/dist/json/importMap.json +118 -118
  5. package/dist/json/tags.json +8 -0
  6. package/dist/json/web-types.json +117 -45
  7. package/dist/vuetify-labs.css +1826 -1823
  8. package/dist/vuetify-labs.d.ts +528 -1392
  9. package/dist/vuetify-labs.esm.js +145 -43
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +145 -43
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +849 -846
  14. package/dist/vuetify.d.ts +423 -1127
  15. package/dist/vuetify.esm.js +41 -12
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +41 -12
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +16 -16
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/index.d.mts +102 -336
  23. package/lib/components/VCombobox/index.d.mts +102 -336
  24. package/lib/components/VDatePicker/VDatePickerMonth.mjs +3 -0
  25. package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  26. package/lib/components/VDivider/VDivider.mjs +1 -1
  27. package/lib/components/VDivider/VDivider.mjs.map +1 -1
  28. package/lib/components/VList/VList.mjs +3 -1
  29. package/lib/components/VList/VList.mjs.map +1 -1
  30. package/lib/components/VList/VListGroup.mjs +1 -0
  31. package/lib/components/VList/VListGroup.mjs.map +1 -1
  32. package/lib/components/VList/VListItem.css +2 -2
  33. package/lib/components/VList/VListItem.mjs +2 -0
  34. package/lib/components/VList/VListItem.mjs.map +1 -1
  35. package/lib/components/VList/VListItem.sass +1 -1
  36. package/lib/components/VList/index.d.mts +52 -66
  37. package/lib/components/VSelect/index.d.mts +102 -336
  38. package/lib/components/VSelectionControl/VSelectionControl.mjs +9 -1
  39. package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
  40. package/lib/components/VSnackbar/VSnackbar.css +1 -1
  41. package/lib/components/VSnackbar/VSnackbar.sass +1 -1
  42. package/lib/components/VStepper/VStepper.mjs +18 -4
  43. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  44. package/lib/components/VStepper/VStepperItem.css +3 -0
  45. package/lib/components/VStepper/VStepperItem.sass +3 -0
  46. package/lib/components/VStepper/index.d.mts +43 -9
  47. package/lib/components/VTabs/VTabs.mjs +2 -2
  48. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  49. package/lib/components/index.d.mts +379 -1083
  50. package/lib/composables/filter.mjs +1 -1
  51. package/lib/composables/filter.mjs.map +1 -1
  52. package/lib/entry-bundler.mjs +1 -1
  53. package/lib/framework.mjs +1 -1
  54. package/lib/index.d.mts +44 -44
  55. package/lib/labs/VStepperVertical/index.d.mts +43 -9
  56. package/lib/labs/VTreeview/VTreeview.mjs +1 -1
  57. package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
  58. package/lib/labs/VTreeview/VTreeviewChildren.mjs +30 -25
  59. package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
  60. package/lib/labs/VTreeview/VTreeviewItem.mjs +81 -10
  61. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  62. package/lib/labs/VTreeview/index.d.mts +110 -300
  63. package/lib/labs/components.d.mts +3402 -3558
  64. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-28
2
+ * Vuetify v3.6.8-master.2024-05-30
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17509,6 +17509,38 @@ html.overflow-y-hidden {
17509
17509
  padding-bottom: 16px;
17510
17510
  font-weight: 400;
17511
17511
  letter-spacing: 0.1666666667em;
17512
+ }.v-calendar-day {
17513
+ position: relative;
17514
+ display: flex;
17515
+ flex-direction: column;
17516
+ }
17517
+
17518
+ .v-calendar-weekly .v-calendar__container {
17519
+ display: grid;
17520
+ }
17521
+ .v-calendar-weekly .v-calendar__container.days__7 {
17522
+ grid-template-columns: repeat(7, 1fr);
17523
+ }
17524
+ .v-calendar-weekly .v-calendar__container.days__6 {
17525
+ grid-template-columns: repeat(6, 1fr);
17526
+ }
17527
+ .v-calendar-weekly .v-calendar__container.days__5 {
17528
+ grid-template-columns: repeat(5, 1fr);
17529
+ }
17530
+ .v-calendar-weekly .v-calendar__container.days__4 {
17531
+ grid-template-columns: repeat(4, 1fr);
17532
+ }
17533
+ .v-calendar-weekly .v-calendar__container.days__3 {
17534
+ grid-template-columns: repeat(3, 1fr);
17535
+ }
17536
+ .v-calendar-weekly .v-calendar__container.days__2 {
17537
+ grid-template-columns: repeat(2, 1fr);
17538
+ }
17539
+ .v-calendar-weekly .v-calendar__container.days__1 {
17540
+ grid-template-columns: repeat(1, 1fr);
17541
+ }
17542
+ .v-calendar-weekly .v-calendar__container.days__0 {
17543
+ grid-template-columns: repeat(1, 1fr);
17512
17544
  }.v-calendar {
17513
17545
  background: rgb(var(--v-theme-background));
17514
17546
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
@@ -17736,51 +17768,11 @@ html.overflow-y-hidden {
17736
17768
  }
17737
17769
  .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
17738
17770
  border-right: none;
17739
- }.v-calendar-header {
17740
- align-items: center;
17741
- display: flex;
17742
- min-height: 64px;
17743
- }
17744
-
17745
- .v-calendar-header__today {
17746
- margin-inline-end: 24px;
17747
- }
17748
-
17749
- .v-calendar-header__title {
17750
- font-size: 1.5rem;
17751
- margin-inline-start: 24px;
17752
- }.v-calendar-day {
17753
- position: relative;
17754
- display: flex;
17755
- flex-direction: column;
17756
- }
17757
-
17758
- .v-calendar-weekly .v-calendar__container {
17759
- display: grid;
17760
- }
17761
- .v-calendar-weekly .v-calendar__container.days__7 {
17762
- grid-template-columns: repeat(7, 1fr);
17763
- }
17764
- .v-calendar-weekly .v-calendar__container.days__6 {
17765
- grid-template-columns: repeat(6, 1fr);
17766
- }
17767
- .v-calendar-weekly .v-calendar__container.days__5 {
17768
- grid-template-columns: repeat(5, 1fr);
17769
- }
17770
- .v-calendar-weekly .v-calendar__container.days__4 {
17771
- grid-template-columns: repeat(4, 1fr);
17772
- }
17773
- .v-calendar-weekly .v-calendar__container.days__3 {
17774
- grid-template-columns: repeat(3, 1fr);
17775
- }
17776
- .v-calendar-weekly .v-calendar__container.days__2 {
17777
- grid-template-columns: repeat(2, 1fr);
17778
- }
17779
- .v-calendar-weekly .v-calendar__container.days__1 {
17780
- grid-template-columns: repeat(1, 1fr);
17781
- }
17782
- .v-calendar-weekly .v-calendar__container.days__0 {
17783
- grid-template-columns: repeat(1, 1fr);
17771
+ }.v-calendar-internal-event {
17772
+ overflow: hidden;
17773
+ padding: 4px;
17774
+ text-overflow: ellipsis;
17775
+ white-space: nowrap;
17784
17776
  }.v-calendar-day__row-with-label {
17785
17777
  display: grid;
17786
17778
  grid-template-columns: 48px 8px 1fr;
@@ -17823,6 +17815,87 @@ html.overflow-y-hidden {
17823
17815
  }
17824
17816
  .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17825
17817
  border-bottom: none;
17818
+ }.v-calendar-header {
17819
+ align-items: center;
17820
+ display: flex;
17821
+ min-height: 64px;
17822
+ }
17823
+
17824
+ .v-calendar-header__today {
17825
+ margin-inline-end: 24px;
17826
+ }
17827
+
17828
+ .v-calendar-header__title {
17829
+ font-size: 1.5rem;
17830
+ margin-inline-start: 24px;
17831
+ }.v-stepper-vertical-item {
17832
+ position: relative;
17833
+ transition-duration: 0.2s;
17834
+ transition-property: opacity;
17835
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17836
+ }
17837
+ .v-stepper-vertical-item__title {
17838
+ font-size: 1rem;
17839
+ }
17840
+ .v-stepper-vertical-item__subtitle {
17841
+ font-size: 0.75rem;
17842
+ }
17843
+ .v-stepper-vertical-item .v-expansion-panel-text {
17844
+ padding-inline-start: 32px;
17845
+ }
17846
+ .v-stepper-vertical-item:not(:last-child):before {
17847
+ content: "";
17848
+ position: absolute;
17849
+ width: 2px;
17850
+ height: calc(100% - 30px);
17851
+ background: rgba(var(--v-border-color), var(--v-border-opacity));
17852
+ left: 35px;
17853
+ top: 44px;
17854
+ z-index: 1;
17855
+ transition-duration: 300ms;
17856
+ transition-property: height;
17857
+ }
17858
+ .v-stepper-vertical-item:after {
17859
+ display: none;
17860
+ }
17861
+ .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 {
17862
+ pointer-events: none;
17863
+ }
17864
+ .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 {
17865
+ opacity: 0;
17866
+ }
17867
+
17868
+ .v-stepper-vertical-item__avatar.v-avatar {
17869
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17870
+ color: rgb(var(--v-theme-on-surface-variant));
17871
+ transition-property: background;
17872
+ }
17873
+ .v-stepper-vertical-item__avatar.v-avatar .v-icon {
17874
+ font-size: 0.875rem;
17875
+ }
17876
+ .v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
17877
+ background: rgb(var(--v-theme-surface-variant));
17878
+ }
17879
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
17880
+ background: rgb(var(--v-theme-error));
17881
+ color: rgb(var(--v-theme-on-error));
17882
+ }
17883
+
17884
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__title {
17885
+ color: rgb(var(--v-theme-error));
17886
+ }
17887
+
17888
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
17889
+ color: rgb(var(--v-theme-error));
17890
+ }
17891
+
17892
+ .v-stepper-vertical-actions.v-stepper-actions .v-btn {
17893
+ margin-inline-end: 8px;
17894
+ }
17895
+ .v-stepper .v-stepper-vertical-actions.v-stepper-actions {
17896
+ justify-content: flex-end;
17897
+ padding: 24px 0 0;
17898
+ flex-direction: row-reverse;
17826
17899
  }.v-calendar-month__day {
17827
17900
  position: relative;
17828
17901
  display: flex;
@@ -17886,49 +17959,6 @@ html.overflow-y-hidden {
17886
17959
 
17887
17960
  .v-calendar-weekly__day-alldayevents-container {
17888
17961
  min-height: 24px;
17889
- }.v-calendar-internal-event {
17890
- overflow: hidden;
17891
- padding: 4px;
17892
- text-overflow: ellipsis;
17893
- white-space: nowrap;
17894
- }.v-number-input input[type=number] {
17895
- -moz-appearance: textfield;
17896
- }
17897
- .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
17898
- -webkit-appearance: none;
17899
- }
17900
- .v-number-input .v-field {
17901
- padding-inline-end: 0;
17902
- padding-inline-start: 0;
17903
- }
17904
- .v-number-input--inset .v-divider {
17905
- height: 55%;
17906
- width: 55%;
17907
- align-self: center;
17908
- }
17909
- .v-number-input--split .v-field__input {
17910
- text-align: center;
17911
- }
17912
- .v-number-input--stacked .v-number-input__control {
17913
- flex-direction: column-reverse;
17914
- }
17915
- .v-number-input--stacked .v-number-input__control .v-btn {
17916
- flex: 1;
17917
- }
17918
- .v-number-input--hide-input .v-field {
17919
- flex: none;
17920
- }
17921
- .v-number-input--hide-input .v-field__input {
17922
- width: 0;
17923
- padding-inline: 0;
17924
- }
17925
- .v-number-input__control {
17926
- display: flex;
17927
- height: 100%;
17928
- }
17929
- .v-number-input__control .v-btn {
17930
- background-color: transparent;
17931
- border-radius: 0;
17932
17962
  }.v-pull-to-refresh {
17933
17963
  overflow: hidden;
17934
17964
  position: relative;
@@ -17955,111 +17985,36 @@ html.overflow-y-hidden {
17955
17985
  }
17956
17986
  .v-pull-to-refresh__scroll-container--touching {
17957
17987
  transition: none;
17958
- }.v-stepper-vertical-item {
17959
- position: relative;
17960
- transition-duration: 0.2s;
17961
- transition-property: opacity;
17962
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17988
+ }.v-time-picker-clock {
17989
+ background: rgb(var(--v-theme-background));
17990
+ color: rgb(var(--v-theme-on-background));
17963
17991
  }
17964
- .v-stepper-vertical-item__title {
17965
- font-size: 1rem;
17992
+ .v-time-picker-clock:after {
17993
+ color: rgb(var(--v-theme-primary));
17966
17994
  }
17967
- .v-stepper-vertical-item__subtitle {
17968
- font-size: 0.75rem;
17995
+ .v-time-picker-clock .v-time-picker-clock__item--active {
17996
+ background-color: rgb(var(--v-theme-surface-variant));
17997
+ color: rgb(var(--v-theme-on-surface-variant));
17969
17998
  }
17970
- .v-stepper-vertical-item .v-expansion-panel-text {
17971
- padding-inline-start: 32px;
17999
+
18000
+ .v-time-picker-clock {
18001
+ margin: 0 auto;
18002
+ background: rgb(var(--v-theme-surface-light));
18003
+ border-radius: 50%;
18004
+ position: relative;
18005
+ transition: none;
18006
+ -webkit-user-select: none;
18007
+ user-select: none;
18008
+ height: 256px;
18009
+ width: 256px;
18010
+ flex: 1 0 auto;
17972
18011
  }
17973
- .v-stepper-vertical-item:not(:last-child):before {
17974
- content: "";
17975
- position: absolute;
17976
- width: 2px;
17977
- height: calc(100% - 30px);
17978
- background: rgba(var(--v-border-color), var(--v-border-opacity));
17979
- left: 35px;
17980
- top: 44px;
17981
- z-index: 1;
17982
- transition-duration: 300ms;
17983
- transition-property: height;
17984
- }
17985
- .v-stepper-vertical-item:after {
17986
- display: none;
17987
- }
17988
- .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 {
17989
- pointer-events: none;
17990
- }
17991
- .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 {
17992
- opacity: 0;
17993
- }
17994
-
17995
- .v-stepper-vertical-item__avatar.v-avatar {
17996
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17997
- color: rgb(var(--v-theme-on-surface-variant));
17998
- transition-property: background;
17999
- }
18000
- .v-stepper-vertical-item__avatar.v-avatar .v-icon {
18001
- font-size: 0.875rem;
18002
- }
18003
- .v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
18004
- background: rgb(var(--v-theme-surface-variant));
18005
- }
18006
- .v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
18007
- background: rgb(var(--v-theme-error));
18008
- color: rgb(var(--v-theme-on-error));
18009
- }
18010
-
18011
- .v-stepper-vertical-item--error .v-stepper-vertical-item__title {
18012
- color: rgb(var(--v-theme-error));
18013
- }
18014
-
18015
- .v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
18016
- color: rgb(var(--v-theme-error));
18017
- }
18018
-
18019
- .v-stepper-vertical-actions.v-stepper-actions .v-btn {
18020
- margin-inline-end: 8px;
18021
- }
18022
- .v-stepper .v-stepper-vertical-actions.v-stepper-actions {
18023
- justify-content: flex-end;
18024
- padding: 24px 0 0;
18025
- flex-direction: row-reverse;
18026
- }.v-time-picker.v-picker {
18027
- padding: 24px;
18028
- width: 328px;
18029
- }
18030
- .v-time-picker.v-picker .v-picker-title {
18031
- padding: 0;
18032
- margin-bottom: 20px;
18033
- }.v-time-picker-clock {
18034
- background: rgb(var(--v-theme-background));
18035
- color: rgb(var(--v-theme-on-background));
18036
- }
18037
- .v-time-picker-clock:after {
18038
- color: rgb(var(--v-theme-primary));
18039
- }
18040
- .v-time-picker-clock .v-time-picker-clock__item--active {
18041
- background-color: rgb(var(--v-theme-surface-variant));
18042
- color: rgb(var(--v-theme-on-surface-variant));
18043
- }
18044
-
18045
- .v-time-picker-clock {
18046
- margin: 0 auto;
18047
- background: rgb(var(--v-theme-surface-light));
18048
- border-radius: 50%;
18049
- position: relative;
18050
- transition: none;
18051
- -webkit-user-select: none;
18052
- user-select: none;
18053
- height: 256px;
18054
- width: 256px;
18055
- flex: 1 0 auto;
18056
- }
18057
- .v-time-picker-clock__container {
18058
- display: flex;
18059
- flex-direction: column;
18060
- flex-basis: 290px;
18061
- justify-content: center;
18062
- padding: 10px;
18012
+ .v-time-picker-clock__container {
18013
+ display: flex;
18014
+ flex-direction: column;
18015
+ flex-basis: 290px;
18016
+ justify-content: center;
18017
+ padding: 10px;
18063
18018
  }
18064
18019
  .v-time-picker-clock__hand {
18065
18020
  background-color: currentColor;
@@ -18161,6 +18116,51 @@ html.overflow-y-hidden {
18161
18116
 
18162
18117
  .v-picker--landscape .v-time-picker-clock__container {
18163
18118
  flex-direction: row;
18119
+ }.v-time-picker.v-picker {
18120
+ padding: 24px;
18121
+ width: 328px;
18122
+ }
18123
+ .v-time-picker.v-picker .v-picker-title {
18124
+ padding: 0;
18125
+ margin-bottom: 20px;
18126
+ }.v-number-input input[type=number] {
18127
+ -moz-appearance: textfield;
18128
+ }
18129
+ .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
18130
+ -webkit-appearance: none;
18131
+ }
18132
+ .v-number-input .v-field {
18133
+ padding-inline-end: 0;
18134
+ padding-inline-start: 0;
18135
+ }
18136
+ .v-number-input--inset .v-divider {
18137
+ height: 55%;
18138
+ width: 55%;
18139
+ align-self: center;
18140
+ }
18141
+ .v-number-input--split .v-field__input {
18142
+ text-align: center;
18143
+ }
18144
+ .v-number-input--stacked .v-number-input__control {
18145
+ flex-direction: column-reverse;
18146
+ }
18147
+ .v-number-input--stacked .v-number-input__control .v-btn {
18148
+ flex: 1;
18149
+ }
18150
+ .v-number-input--hide-input .v-field {
18151
+ flex: none;
18152
+ }
18153
+ .v-number-input--hide-input .v-field__input {
18154
+ width: 0;
18155
+ padding-inline: 0;
18156
+ }
18157
+ .v-number-input__control {
18158
+ display: flex;
18159
+ height: 100%;
18160
+ }
18161
+ .v-number-input__control .v-btn {
18162
+ background-color: transparent;
18163
+ border-radius: 0;
18164
18164
  }.v-time-picker-controls {
18165
18165
  display: flex;
18166
18166
  align-items: center;
@@ -18280,66 +18280,6 @@ html.overflow-y-hidden {
18280
18280
  }
18281
18281
  .v-treeview-group.v-list-group .v-list-group__items .v-list-item {
18282
18282
  padding-inline-start: calc(12px + var(--indent-padding)) !important;
18283
- }.v-app-bar {
18284
- display: flex;
18285
- }
18286
- .v-app-bar.v-toolbar {
18287
- background: rgb(var(--v-theme-surface));
18288
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18289
- }
18290
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
18291
- 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));
18292
- }
18293
- .v-app-bar:not(.v-toolbar--absolute) {
18294
- padding-inline-end: var(--v-scrollbar-offset);
18295
- }.v-application {
18296
- display: flex;
18297
- background: rgb(var(--v-theme-background));
18298
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18299
- }
18300
-
18301
- .v-application__wrap {
18302
- -webkit-backface-visibility: hidden;
18303
- backface-visibility: hidden;
18304
- display: flex;
18305
- flex-direction: column;
18306
- flex: 1 1 auto;
18307
- max-width: 100%;
18308
- min-height: 100vh;
18309
- min-height: 100dvh;
18310
- position: relative;
18311
- }.bottom-sheet-transition-enter-from {
18312
- transform: translateY(100%);
18313
- }
18314
- .bottom-sheet-transition-leave-to {
18315
- transform: translateY(100%);
18316
- }
18317
-
18318
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18319
- align-self: flex-end;
18320
- border-radius: 0;
18321
- flex: 0 1 auto;
18322
- left: 0;
18323
- right: 0;
18324
- margin-inline: 0;
18325
- margin-bottom: 0;
18326
- transition-duration: 0.2s;
18327
- width: 100%;
18328
- max-width: 100%;
18329
- overflow: visible;
18330
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18331
- }
18332
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18333
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18334
- border-radius: 0;
18335
- }
18336
- .v-bottom-sheet.v-bottom-sheet--inset {
18337
- max-width: none;
18338
- }
18339
- @media (min-width: 600px) {
18340
- .v-bottom-sheet.v-bottom-sheet--inset {
18341
- max-width: 70%;
18342
- }
18343
18283
  }.v-alert {
18344
18284
  display: grid;
18345
18285
  flex: 1 1;
@@ -18552,207 +18492,59 @@ html.overflow-y-hidden {
18552
18492
  text-transform: none;
18553
18493
  word-break: normal;
18554
18494
  word-wrap: break-word;
18555
- }.v-autocomplete .v-field .v-text-field__prefix,
18556
- .v-autocomplete .v-field .v-text-field__suffix,
18557
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18558
- cursor: text;
18559
- }
18560
- .v-autocomplete .v-field .v-field__input > input {
18561
- flex: 1 1;
18562
- }
18563
- .v-autocomplete .v-field input {
18564
- min-width: 64px;
18495
+ }.v-app-bar {
18496
+ display: flex;
18565
18497
  }
18566
- .v-autocomplete .v-field:not(.v-field--focused) input {
18567
- min-width: 0;
18498
+ .v-app-bar.v-toolbar {
18499
+ background: rgb(var(--v-theme-surface));
18500
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18568
18501
  }
18569
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18570
- margin-inline-end: 2px;
18502
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
18503
+ 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));
18571
18504
  }
18572
- .v-autocomplete .v-autocomplete__selection-text {
18573
- overflow: hidden;
18574
- text-overflow: ellipsis;
18575
- white-space: nowrap;
18505
+ .v-app-bar:not(.v-toolbar--absolute) {
18506
+ padding-inline-end: var(--v-scrollbar-offset);
18507
+ }.v-application {
18508
+ display: flex;
18509
+ background: rgb(var(--v-theme-background));
18510
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18576
18511
  }
18577
18512
 
18578
- .v-autocomplete__content {
18513
+ .v-application__wrap {
18514
+ -webkit-backface-visibility: hidden;
18515
+ backface-visibility: hidden;
18516
+ display: flex;
18517
+ flex-direction: column;
18518
+ flex: 1 1 auto;
18519
+ max-width: 100%;
18520
+ min-height: 100vh;
18521
+ min-height: 100dvh;
18522
+ position: relative;
18523
+ }.v-banner {
18524
+ display: grid;
18525
+ flex: 1 1;
18526
+ font-size: 0.875rem;
18527
+ grid-template-areas: "prepend content actions";
18528
+ grid-template-columns: max-content auto max-content;
18529
+ grid-template-rows: max-content max-content;
18530
+ line-height: 1.6;
18579
18531
  overflow: hidden;
18580
- 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));
18581
- border-radius: 4px;
18532
+ padding-inline: 16px 8px;
18533
+ padding-top: 16px;
18534
+ padding-bottom: 16px;
18535
+ position: relative;
18536
+ width: 100%;
18537
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18538
+ border-style: solid;
18539
+ border-width: 0 0 thin 0;
18540
+ 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));
18541
+ border-radius: 0;
18542
+ background: rgb(var(--v-theme-surface));
18543
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18582
18544
  }
18583
- .v-autocomplete__mask {
18584
- background: rgb(var(--v-theme-surface-light));
18585
- }
18586
- .v-autocomplete__selection {
18587
- display: inline-flex;
18588
- align-items: center;
18589
- height: 1.5rem;
18590
- letter-spacing: inherit;
18591
- line-height: inherit;
18592
- max-width: calc(100% - 2px - 2px);
18593
- }
18594
- .v-autocomplete__selection:first-child {
18595
- margin-inline-start: 0;
18596
- }
18597
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18598
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18599
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18600
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18601
- top: 0px;
18602
- }
18603
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18604
- opacity: var(--v-medium-emphasis-opacity);
18605
- }
18606
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18607
- opacity: 1;
18608
- }
18609
- .v-autocomplete--selecting-index .v-field__input > input {
18610
- caret-color: transparent;
18611
- }
18612
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18613
- flex: 1 1;
18614
- position: absolute;
18615
- left: 0;
18616
- right: 0;
18617
- width: 100%;
18618
- padding-inline: inherit;
18619
- }
18620
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18621
- transition: none;
18622
- }
18623
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18624
- opacity: 0;
18625
- }
18626
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18627
- opacity: 0;
18628
- }
18629
- .v-autocomplete__menu-icon {
18630
- margin-inline-start: 4px;
18631
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18632
- }
18633
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18634
- opacity: var(--v-high-emphasis-opacity);
18635
- transform: rotate(180deg);
18636
- }.v-avatar {
18637
- flex: none;
18638
- align-items: center;
18639
- display: inline-flex;
18640
- justify-content: center;
18641
- line-height: normal;
18642
- overflow: hidden;
18643
- position: relative;
18644
- text-align: center;
18645
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18646
- transition-property: width, height;
18647
- vertical-align: middle;
18648
- border-radius: 50%;
18649
- }
18650
- .v-avatar.v-avatar--size-x-small {
18651
- --v-avatar-height: 24px;
18652
- }
18653
- .v-avatar.v-avatar--size-small {
18654
- --v-avatar-height: 32px;
18655
- }
18656
- .v-avatar.v-avatar--size-default {
18657
- --v-avatar-height: 40px;
18658
- }
18659
- .v-avatar.v-avatar--size-large {
18660
- --v-avatar-height: 48px;
18661
- }
18662
- .v-avatar.v-avatar--size-x-large {
18663
- --v-avatar-height: 56px;
18664
- }
18665
- .v-avatar.v-avatar--density-default {
18666
- height: calc(var(--v-avatar-height) + 0px);
18667
- width: calc(var(--v-avatar-height) + 0px);
18668
- }
18669
- .v-avatar.v-avatar--density-comfortable {
18670
- height: calc(var(--v-avatar-height) + -4px);
18671
- width: calc(var(--v-avatar-height) + -4px);
18672
- }
18673
- .v-avatar.v-avatar--density-compact {
18674
- height: calc(var(--v-avatar-height) + -8px);
18675
- width: calc(var(--v-avatar-height) + -8px);
18676
- }
18677
- .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18678
- background: transparent;
18679
- color: inherit;
18680
- }
18681
- .v-avatar--variant-plain {
18682
- opacity: 0.62;
18683
- }
18684
- .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
18685
- opacity: 1;
18686
- }
18687
- .v-avatar--variant-plain .v-avatar__overlay {
18688
- display: none;
18689
- }
18690
- .v-avatar--variant-elevated, .v-avatar--variant-flat {
18691
- background: var(--v-theme-surface);
18692
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18693
- }
18694
- .v-avatar--variant-elevated {
18695
- 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));
18696
- }
18697
- .v-avatar--variant-flat {
18698
- 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));
18699
- }
18700
- .v-avatar--variant-outlined {
18701
- border: thin solid currentColor;
18702
- }
18703
- .v-avatar--variant-text .v-avatar__overlay {
18704
- background: currentColor;
18705
- }
18706
- .v-avatar--variant-tonal .v-avatar__underlay {
18707
- background: currentColor;
18708
- opacity: var(--v-activated-opacity);
18709
- border-radius: inherit;
18710
- top: 0;
18711
- right: 0;
18712
- bottom: 0;
18713
- left: 0;
18714
- pointer-events: none;
18715
- }
18716
- .v-avatar .v-avatar__underlay {
18717
- position: absolute;
18718
- }
18719
- .v-avatar--rounded {
18720
- border-radius: 4px;
18721
- }
18722
- .v-avatar--start {
18723
- margin-inline-end: 8px;
18724
- }
18725
- .v-avatar--end {
18726
- margin-inline-start: 8px;
18727
- }
18728
- .v-avatar .v-img {
18729
- height: 100%;
18730
- width: 100%;
18731
- }.v-banner {
18732
- display: grid;
18733
- flex: 1 1;
18734
- font-size: 0.875rem;
18735
- grid-template-areas: "prepend content actions";
18736
- grid-template-columns: max-content auto max-content;
18737
- grid-template-rows: max-content max-content;
18738
- line-height: 1.6;
18739
- overflow: hidden;
18740
- padding-inline: 16px 8px;
18741
- padding-top: 16px;
18742
- padding-bottom: 16px;
18743
- position: relative;
18744
- width: 100%;
18745
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18746
- border-style: solid;
18747
- border-width: 0 0 thin 0;
18748
- 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));
18749
- border-radius: 0;
18750
- background: rgb(var(--v-theme-surface));
18751
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18752
- }
18753
- .v-banner--border {
18754
- border-width: thin;
18755
- box-shadow: none;
18545
+ .v-banner--border {
18546
+ border-width: thin;
18547
+ box-shadow: none;
18756
18548
  }
18757
18549
  .v-banner--absolute {
18758
18550
  position: absolute;
@@ -18885,83 +18677,188 @@ html.overflow-y-hidden {
18885
18677
  }
18886
18678
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18887
18679
  align-self: flex-start;
18888
- }.v-badge {
18889
- display: inline-block;
18890
- line-height: 1;
18891
- }
18892
-
18893
- .v-badge__badge {
18680
+ }.v-avatar {
18681
+ flex: none;
18894
18682
  align-items: center;
18895
18683
  display: inline-flex;
18896
- border-radius: 10px;
18897
- font-size: 0.75rem;
18898
- font-weight: 500;
18899
- height: 1.25rem;
18900
18684
  justify-content: center;
18901
- min-width: 20px;
18902
- padding: 4px 6px;
18903
- pointer-events: auto;
18904
- position: absolute;
18685
+ line-height: normal;
18686
+ overflow: hidden;
18687
+ position: relative;
18905
18688
  text-align: center;
18906
- text-indent: 0;
18907
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18908
- white-space: nowrap;
18909
- background: rgb(var(--v-theme-surface-variant));
18910
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18689
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18690
+ transition-property: width, height;
18691
+ vertical-align: middle;
18692
+ border-radius: 50%;
18911
18693
  }
18912
- .v-badge--bordered .v-badge__badge::after {
18913
- border-radius: inherit;
18914
- border-style: solid;
18915
- border-width: 2px;
18916
- bottom: 0;
18917
- color: rgb(var(--v-theme-background));
18918
- content: "";
18919
- left: 0;
18920
- position: absolute;
18921
- right: 0;
18922
- top: 0;
18923
- transform: scale(1.05);
18694
+ .v-avatar.v-avatar--size-x-small {
18695
+ --v-avatar-height: 24px;
18924
18696
  }
18925
- .v-badge--dot .v-badge__badge {
18926
- border-radius: 4.5px;
18927
- height: 9px;
18928
- min-width: 0;
18929
- padding: 0;
18930
- width: 9px;
18697
+ .v-avatar.v-avatar--size-small {
18698
+ --v-avatar-height: 32px;
18931
18699
  }
18932
- .v-badge--dot .v-badge__badge::after {
18933
- border-width: 1.5px;
18700
+ .v-avatar.v-avatar--size-default {
18701
+ --v-avatar-height: 40px;
18934
18702
  }
18935
- .v-badge--inline .v-badge__badge {
18936
- position: relative;
18937
- vertical-align: middle;
18703
+ .v-avatar.v-avatar--size-large {
18704
+ --v-avatar-height: 48px;
18938
18705
  }
18939
- .v-badge__badge .v-icon {
18940
- color: inherit;
18941
- font-size: 0.75rem;
18942
- margin: 0 -2px;
18706
+ .v-avatar.v-avatar--size-x-large {
18707
+ --v-avatar-height: 56px;
18943
18708
  }
18944
- .v-badge__badge img,
18945
- .v-badge__badge .v-img {
18946
- height: 100%;
18947
- width: 100%;
18709
+ .v-avatar.v-avatar--density-default {
18710
+ height: calc(var(--v-avatar-height) + 0px);
18711
+ width: calc(var(--v-avatar-height) + 0px);
18948
18712
  }
18949
-
18950
- .v-badge__wrapper {
18951
- display: flex;
18952
- position: relative;
18713
+ .v-avatar.v-avatar--density-comfortable {
18714
+ height: calc(var(--v-avatar-height) + -4px);
18715
+ width: calc(var(--v-avatar-height) + -4px);
18953
18716
  }
18954
- .v-badge--inline .v-badge__wrapper {
18955
- align-items: center;
18956
- display: inline-flex;
18957
- justify-content: center;
18958
- margin: 0 4px;
18959
- }.v-bottom-navigation {
18960
- display: flex;
18961
- max-width: 100%;
18962
- overflow: hidden;
18963
- position: absolute;
18964
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18717
+ .v-avatar.v-avatar--density-compact {
18718
+ height: calc(var(--v-avatar-height) + -8px);
18719
+ width: calc(var(--v-avatar-height) + -8px);
18720
+ }
18721
+ .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18722
+ background: transparent;
18723
+ color: inherit;
18724
+ }
18725
+ .v-avatar--variant-plain {
18726
+ opacity: 0.62;
18727
+ }
18728
+ .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
18729
+ opacity: 1;
18730
+ }
18731
+ .v-avatar--variant-plain .v-avatar__overlay {
18732
+ display: none;
18733
+ }
18734
+ .v-avatar--variant-elevated, .v-avatar--variant-flat {
18735
+ background: var(--v-theme-surface);
18736
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18737
+ }
18738
+ .v-avatar--variant-elevated {
18739
+ 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));
18740
+ }
18741
+ .v-avatar--variant-flat {
18742
+ 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));
18743
+ }
18744
+ .v-avatar--variant-outlined {
18745
+ border: thin solid currentColor;
18746
+ }
18747
+ .v-avatar--variant-text .v-avatar__overlay {
18748
+ background: currentColor;
18749
+ }
18750
+ .v-avatar--variant-tonal .v-avatar__underlay {
18751
+ background: currentColor;
18752
+ opacity: var(--v-activated-opacity);
18753
+ border-radius: inherit;
18754
+ top: 0;
18755
+ right: 0;
18756
+ bottom: 0;
18757
+ left: 0;
18758
+ pointer-events: none;
18759
+ }
18760
+ .v-avatar .v-avatar__underlay {
18761
+ position: absolute;
18762
+ }
18763
+ .v-avatar--rounded {
18764
+ border-radius: 4px;
18765
+ }
18766
+ .v-avatar--start {
18767
+ margin-inline-end: 8px;
18768
+ }
18769
+ .v-avatar--end {
18770
+ margin-inline-start: 8px;
18771
+ }
18772
+ .v-avatar .v-img {
18773
+ height: 100%;
18774
+ width: 100%;
18775
+ }.v-autocomplete .v-field .v-text-field__prefix,
18776
+ .v-autocomplete .v-field .v-text-field__suffix,
18777
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18778
+ cursor: text;
18779
+ }
18780
+ .v-autocomplete .v-field .v-field__input > input {
18781
+ flex: 1 1;
18782
+ }
18783
+ .v-autocomplete .v-field input {
18784
+ min-width: 64px;
18785
+ }
18786
+ .v-autocomplete .v-field:not(.v-field--focused) input {
18787
+ min-width: 0;
18788
+ }
18789
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18790
+ margin-inline-end: 2px;
18791
+ }
18792
+ .v-autocomplete .v-autocomplete__selection-text {
18793
+ overflow: hidden;
18794
+ text-overflow: ellipsis;
18795
+ white-space: nowrap;
18796
+ }
18797
+
18798
+ .v-autocomplete__content {
18799
+ overflow: hidden;
18800
+ 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));
18801
+ border-radius: 4px;
18802
+ }
18803
+ .v-autocomplete__mask {
18804
+ background: rgb(var(--v-theme-surface-light));
18805
+ }
18806
+ .v-autocomplete__selection {
18807
+ display: inline-flex;
18808
+ align-items: center;
18809
+ height: 1.5rem;
18810
+ letter-spacing: inherit;
18811
+ line-height: inherit;
18812
+ max-width: calc(100% - 2px - 2px);
18813
+ }
18814
+ .v-autocomplete__selection:first-child {
18815
+ margin-inline-start: 0;
18816
+ }
18817
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18818
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18819
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18820
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18821
+ top: 0px;
18822
+ }
18823
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
18824
+ opacity: var(--v-medium-emphasis-opacity);
18825
+ }
18826
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18827
+ opacity: 1;
18828
+ }
18829
+ .v-autocomplete--selecting-index .v-field__input > input {
18830
+ caret-color: transparent;
18831
+ }
18832
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18833
+ flex: 1 1;
18834
+ position: absolute;
18835
+ left: 0;
18836
+ right: 0;
18837
+ width: 100%;
18838
+ padding-inline: inherit;
18839
+ }
18840
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18841
+ transition: none;
18842
+ }
18843
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18844
+ opacity: 0;
18845
+ }
18846
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18847
+ opacity: 0;
18848
+ }
18849
+ .v-autocomplete__menu-icon {
18850
+ margin-inline-start: 4px;
18851
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18852
+ }
18853
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18854
+ opacity: var(--v-high-emphasis-opacity);
18855
+ transform: rotate(180deg);
18856
+ }.v-bottom-navigation {
18857
+ display: flex;
18858
+ max-width: 100%;
18859
+ overflow: hidden;
18860
+ position: absolute;
18861
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18965
18862
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18966
18863
  border-style: solid;
18967
18864
  border-width: 0;
@@ -19429,6 +19326,77 @@ html.overflow-y-hidden {
19429
19326
  }
19430
19327
  .v-pagination__item--is-active .v-btn__overlay {
19431
19328
  opacity: var(--v-border-opacity);
19329
+ }.v-badge {
19330
+ display: inline-block;
19331
+ line-height: 1;
19332
+ }
19333
+
19334
+ .v-badge__badge {
19335
+ align-items: center;
19336
+ display: inline-flex;
19337
+ border-radius: 10px;
19338
+ font-size: 0.75rem;
19339
+ font-weight: 500;
19340
+ height: 1.25rem;
19341
+ justify-content: center;
19342
+ min-width: 20px;
19343
+ padding: 4px 6px;
19344
+ pointer-events: auto;
19345
+ position: absolute;
19346
+ text-align: center;
19347
+ text-indent: 0;
19348
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
19349
+ white-space: nowrap;
19350
+ background: rgb(var(--v-theme-surface-variant));
19351
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
19352
+ }
19353
+ .v-badge--bordered .v-badge__badge::after {
19354
+ border-radius: inherit;
19355
+ border-style: solid;
19356
+ border-width: 2px;
19357
+ bottom: 0;
19358
+ color: rgb(var(--v-theme-background));
19359
+ content: "";
19360
+ left: 0;
19361
+ position: absolute;
19362
+ right: 0;
19363
+ top: 0;
19364
+ transform: scale(1.05);
19365
+ }
19366
+ .v-badge--dot .v-badge__badge {
19367
+ border-radius: 4.5px;
19368
+ height: 9px;
19369
+ min-width: 0;
19370
+ padding: 0;
19371
+ width: 9px;
19372
+ }
19373
+ .v-badge--dot .v-badge__badge::after {
19374
+ border-width: 1.5px;
19375
+ }
19376
+ .v-badge--inline .v-badge__badge {
19377
+ position: relative;
19378
+ vertical-align: middle;
19379
+ }
19380
+ .v-badge__badge .v-icon {
19381
+ color: inherit;
19382
+ font-size: 0.75rem;
19383
+ margin: 0 -2px;
19384
+ }
19385
+ .v-badge__badge img,
19386
+ .v-badge__badge .v-img {
19387
+ height: 100%;
19388
+ width: 100%;
19389
+ }
19390
+
19391
+ .v-badge__wrapper {
19392
+ display: flex;
19393
+ position: relative;
19394
+ }
19395
+ .v-badge--inline .v-badge__wrapper {
19396
+ align-items: center;
19397
+ display: inline-flex;
19398
+ justify-content: center;
19399
+ margin: 0 4px;
19432
19400
  }.v-breadcrumbs {
19433
19401
  display: flex;
19434
19402
  align-items: center;
@@ -19486,6 +19454,38 @@ html.overflow-y-hidden {
19486
19454
  display: inline-block;
19487
19455
  padding: 0 8px;
19488
19456
  vertical-align: middle;
19457
+ }.bottom-sheet-transition-enter-from {
19458
+ transform: translateY(100%);
19459
+ }
19460
+ .bottom-sheet-transition-leave-to {
19461
+ transform: translateY(100%);
19462
+ }
19463
+
19464
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19465
+ align-self: flex-end;
19466
+ border-radius: 0;
19467
+ flex: 0 1 auto;
19468
+ left: 0;
19469
+ right: 0;
19470
+ margin-inline: 0;
19471
+ margin-bottom: 0;
19472
+ transition-duration: 0.2s;
19473
+ width: 100%;
19474
+ max-width: 100%;
19475
+ overflow: visible;
19476
+ box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19477
+ }
19478
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
19479
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
19480
+ border-radius: 0;
19481
+ }
19482
+ .v-bottom-sheet.v-bottom-sheet--inset {
19483
+ max-width: none;
19484
+ }
19485
+ @media (min-width: 600px) {
19486
+ .v-bottom-sheet.v-bottom-sheet--inset {
19487
+ max-width: 70%;
19488
+ }
19489
19489
  }.v-card {
19490
19490
  display: block;
19491
19491
  overflow: hidden;
@@ -19841,28 +19841,10 @@ html.overflow-y-hidden {
19841
19841
  }
19842
19842
  .v-btn-group--tile {
19843
19843
  border-radius: 0;
19844
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19845
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19846
- }
19847
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19848
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19849
- }
19850
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19851
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19852
- }
19853
- @supports not selector(:focus-visible) {
19854
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19855
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19856
- }
19857
- }.v-checkbox.v-input {
19858
- flex: 0 1 auto;
19859
- }
19860
- .v-checkbox .v-selection-control {
19861
- min-height: var(--v-input-control-height);
19862
- }.v-carousel {
19863
- overflow: hidden;
19864
- position: relative;
19865
- width: 100%;
19844
+ }.v-carousel {
19845
+ overflow: hidden;
19846
+ position: relative;
19847
+ width: 100%;
19866
19848
  }
19867
19849
  .v-carousel__controls {
19868
19850
  align-items: center;
@@ -19922,6 +19904,24 @@ html.overflow-y-hidden {
19922
19904
  flex-direction: column;
19923
19905
  height: 100% !important;
19924
19906
  width: 50px;
19907
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19908
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19909
+ }
19910
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19911
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19912
+ }
19913
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19914
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19915
+ }
19916
+ @supports not selector(:focus-visible) {
19917
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19918
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19919
+ }
19920
+ }.v-checkbox.v-input {
19921
+ flex: 0 1 auto;
19922
+ }
19923
+ .v-checkbox .v-selection-control {
19924
+ min-height: var(--v-input-control-height);
19925
19925
  }.v-chip-group {
19926
19926
  display: flex;
19927
19927
  max-width: 100%;
@@ -19940,6 +19940,26 @@ html.overflow-y-hidden {
19940
19940
  white-space: normal;
19941
19941
  flex-wrap: wrap;
19942
19942
  max-width: 100%;
19943
+ }.v-color-picker {
19944
+ align-self: flex-start;
19945
+ contain: content;
19946
+ }
19947
+ .v-color-picker.v-sheet {
19948
+ 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));
19949
+ border-radius: 4px;
19950
+ }
19951
+
19952
+ .v-color-picker__controls {
19953
+ display: flex;
19954
+ flex-direction: column;
19955
+ padding: 16px;
19956
+ }
19957
+
19958
+ .v-color-picker--flat {
19959
+ 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));
19960
+ }
19961
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19962
+ 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));
19943
19963
  }.v-chip {
19944
19964
  align-items: center;
19945
19965
  display: inline-flex;
@@ -20352,26 +20372,6 @@ html.overflow-y-hidden {
20352
20372
 
20353
20373
  .v-chip--label {
20354
20374
  border-radius: 4px;
20355
- }.v-color-picker {
20356
- align-self: flex-start;
20357
- contain: content;
20358
- }
20359
- .v-color-picker.v-sheet {
20360
- 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));
20361
- border-radius: 4px;
20362
- }
20363
-
20364
- .v-color-picker__controls {
20365
- display: flex;
20366
- flex-direction: column;
20367
- padding: 16px;
20368
- }
20369
-
20370
- .v-color-picker--flat {
20371
- 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));
20372
- }
20373
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20374
- 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));
20375
20375
  }.v-container {
20376
20376
  width: 100%;
20377
20377
  padding: 16px;
@@ -21125,133 +21125,344 @@ html.overflow-y-hidden {
21125
21125
  .v-combobox--active-menu .v-combobox__menu-icon {
21126
21126
  opacity: var(--v-high-emphasis-opacity);
21127
21127
  transform: rotate(180deg);
21128
- }.v-counter {
21129
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21130
- flex: 0 1 auto;
21131
- font-size: 12px;
21132
- transition-duration: 150ms;
21133
- }.v-data-table {
21134
- width: 100%;
21128
+ }.v-date-picker-month {
21129
+ display: flex;
21130
+ justify-content: center;
21131
+ padding: 0 12px 8px;
21132
+ --v-date-picker-month-day-diff: 4px;
21135
21133
  }
21136
21134
 
21137
- .v-data-table__table {
21138
- width: 100%;
21139
- border-collapse: separate;
21140
- border-spacing: 0;
21135
+ .v-date-picker-month__weeks {
21136
+ display: grid;
21137
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21138
+ column-gap: 4px;
21139
+ font-size: 0.85rem;
21140
+ }
21141
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
21142
+ grid-row-gap: 0;
21141
21143
  }
21142
21144
 
21143
- .v-data-table__tr--focus {
21144
- border: 1px dotted black;
21145
+ .v-date-picker-month__weekday {
21146
+ font-size: 0.85rem;
21145
21147
  }
21146
- .v-data-table__tr--clickable {
21147
- cursor: pointer;
21148
+
21149
+ .v-date-picker-month__days {
21150
+ display: grid;
21151
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21152
+ column-gap: 4px;
21153
+ flex: 1 1;
21154
+ justify-content: space-around;
21148
21155
  }
21149
21156
 
21150
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
21151
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
21152
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
21153
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
21154
- text-align: end;
21157
+ .v-date-picker-month__day {
21158
+ align-items: center;
21159
+ display: flex;
21160
+ justify-content: center;
21161
+ position: relative;
21162
+ height: 40px;
21163
+ width: 40px;
21155
21164
  }
21156
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21157
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
21158
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21159
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
21160
- flex-direction: row-reverse;
21165
+ .v-date-picker-month__day--selected .v-btn {
21166
+ background-color: rgb(var(--v-theme-surface-variant));
21167
+ color: rgb(var(--v-theme-on-surface-variant));
21161
21168
  }
21162
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
21163
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
21164
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
21165
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
21166
- text-align: center;
21169
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21170
+ --v-btn-height: 24px;
21171
+ --v-btn-size: 0.85rem;
21167
21172
  }
21168
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21169
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
21170
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21171
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
21172
- justify-content: center;
21173
+ .v-date-picker-month__day--week {
21174
+ font-size: var(--v-btn-size);
21173
21175
  }
21174
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
21175
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
21176
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
21177
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
21178
- padding: 0 8px;
21176
+
21177
+ .v-date-picker-month__day--adjacent {
21178
+ opacity: 0.5;
21179
21179
  }
21180
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
21181
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
21182
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
21183
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
21184
- text-overflow: ellipsis;
21185
- text-wrap: nowrap;
21180
+
21181
+ .v-date-picker-month__day--hide-adjacent {
21182
+ opacity: 0;
21183
+ }.v-date-picker {
21186
21184
  overflow: hidden;
21185
+ width: 328px;
21187
21186
  }
21188
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
21189
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
21190
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
21191
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
21192
- display: contents;
21193
- }
21194
- .v-data-table .v-table__wrapper > table > thead > tr > th,
21195
- .v-data-table .v-table__wrapper > table tbody > tr > th {
21187
+ .v-date-picker--show-week {
21188
+ width: 368px;
21189
+ }.v-date-picker-controls {
21190
+ display: flex;
21196
21191
  align-items: center;
21192
+ justify-content: space-between;
21193
+ font-size: 0.875rem;
21194
+ padding-top: 4px;
21195
+ padding-bottom: 4px;
21196
+ padding-inline-start: 6px;
21197
+ padding-inline-end: 12px;
21197
21198
  }
21198
- .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
21199
- .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
21200
- position: sticky;
21201
- }
21202
- .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
21203
- .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
21204
- cursor: pointer;
21205
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21199
+ .v-date-picker-controls > .v-btn:first-child {
21200
+ text-transform: none;
21201
+ font-weight: 400;
21202
+ line-height: initial;
21203
+ letter-spacing: initial;
21206
21204
  }
21207
- .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
21208
- .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
21209
- opacity: 0;
21205
+ .v-date-picker-controls--variant-classic {
21206
+ padding-inline-start: 12px;
21210
21207
  }
21211
- .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
21212
- .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
21213
- opacity: 0.5;
21208
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21209
+ opacity: 0.7;
21214
21210
  }
21215
- .v-data-table .v-table__wrapper > table > thead > tr.v-data-table__tr--mobile > td,
21216
- .v-data-table .v-table__wrapper > table tbody > tr.v-data-table__tr--mobile > td {
21217
- height: -moz-fit-content;
21218
- height: fit-content;
21211
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21212
+ cursor: pointer;
21219
21213
  }
21220
-
21221
- .v-data-table-column--fixed,
21222
- .v-data-table__th--sticky {
21223
- background: rgb(var(--v-theme-surface));
21224
- position: sticky !important;
21225
- left: 0;
21226
- z-index: 1;
21214
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21215
+ opacity: 1;
21227
21216
  }
21228
-
21229
- .v-data-table-column--last-fixed {
21230
- border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
21217
+ .v-date-picker-controls .v-btn:last-child {
21218
+ margin-inline-start: 4px;
21231
21219
  }
21232
-
21233
- .v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
21234
- z-index: 2;
21220
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21221
+ transform: rotate(180deg);
21235
21222
  }
21236
21223
 
21237
- .v-data-table-group-header-row td {
21238
- background: rgba(var(--v-theme-surface));
21239
- color: rgba(var(--v-theme-on-surface));
21224
+ .v-date-picker-controls__date {
21225
+ margin-inline-end: 4px;
21240
21226
  }
21241
- .v-data-table-group-header-row td > span {
21242
- padding-left: 5px;
21227
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21228
+ margin: auto;
21229
+ text-align: center;
21243
21230
  }
21244
21231
 
21245
- .v-data-table--loading .v-data-table__td {
21246
- opacity: var(--v-disabled-opacity);
21232
+ .v-date-picker-controls__month {
21233
+ display: flex;
21234
+ }
21235
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21236
+ flex-direction: row-reverse;
21247
21237
  }
21248
21238
 
21249
- .v-data-table-group-header-row__column {
21250
- padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
21239
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21240
+ flex: 1 0 auto;
21251
21241
  }
21252
21242
 
21253
- .v-data-table-header__content {
21254
- display: flex;
21243
+ .v-date-picker__title {
21244
+ display: inline-block;
21245
+ }.v-date-picker-header {
21246
+ align-items: flex-end;
21247
+ height: 70px;
21248
+ display: grid;
21249
+ grid-template-areas: "prepend content append";
21250
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
21251
+ overflow: hidden;
21252
+ padding-inline: 24px 12px;
21253
+ padding-bottom: 12px;
21254
+ }
21255
+
21256
+ .v-date-picker-header__append {
21257
+ grid-area: append;
21258
+ }
21259
+
21260
+ .v-date-picker-header__prepend {
21261
+ grid-area: prepend;
21262
+ padding-inline-start: 8px;
21263
+ }
21264
+
21265
+ .v-date-picker-header__content {
21266
+ align-items: center;
21267
+ display: inline-flex;
21268
+ font-size: 32px;
21269
+ line-height: 40px;
21270
+ grid-area: content;
21271
+ justify-content: space-between;
21272
+ }
21273
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21274
+ cursor: pointer;
21275
+ }
21276
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21277
+ opacity: 0.7;
21278
+ }
21279
+
21280
+ .date-picker-header-transition-enter-active,
21281
+ .date-picker-header-reverse-transition-enter-active {
21282
+ transition-duration: 0.3s;
21283
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21284
+ }
21285
+ .date-picker-header-transition-leave-active,
21286
+ .date-picker-header-reverse-transition-leave-active {
21287
+ transition-duration: 0.3s;
21288
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21289
+ }
21290
+
21291
+ .date-picker-header-transition-enter-from {
21292
+ transform: translate(0, 100%);
21293
+ }
21294
+ .date-picker-header-transition-leave-to {
21295
+ opacity: 0;
21296
+ transform: translate(0, -100%);
21297
+ }
21298
+
21299
+ .date-picker-header-reverse-transition-enter-from {
21300
+ transform: translate(0, -100%);
21301
+ }
21302
+ .date-picker-header-reverse-transition-leave-to {
21303
+ opacity: 0;
21304
+ transform: translate(0, 100%);
21305
+ }.v-date-picker-years {
21306
+ height: 288px;
21307
+ overflow-y: scroll;
21308
+ }
21309
+
21310
+ .v-date-picker-years__content {
21311
+ display: grid;
21312
+ flex: 1 1;
21313
+ justify-content: space-around;
21314
+ grid-template-columns: repeat(3, 1fr);
21315
+ gap: 8px 24px;
21316
+ padding-inline: 32px;
21317
+ }
21318
+ .v-date-picker-years__content .v-btn {
21319
+ padding-inline: 8px;
21320
+ }.v-date-picker-months {
21321
+ height: 288px;
21322
+ }
21323
+
21324
+ .v-date-picker-months__content {
21325
+ align-items: center;
21326
+ display: grid;
21327
+ flex: 1 1;
21328
+ height: inherit;
21329
+ justify-content: space-around;
21330
+ grid-template-columns: repeat(2, 1fr);
21331
+ grid-gap: 0px 24px;
21332
+ padding-inline-start: 36px;
21333
+ padding-inline-end: 36px;
21334
+ }
21335
+ .v-date-picker-months__content .v-btn {
21336
+ text-transform: none;
21337
+ padding-inline-start: 8px;
21338
+ padding-inline-end: 8px;
21339
+ }.v-counter {
21340
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21341
+ flex: 0 1 auto;
21342
+ font-size: 12px;
21343
+ transition-duration: 150ms;
21344
+ }.v-data-table {
21345
+ width: 100%;
21346
+ }
21347
+
21348
+ .v-data-table__table {
21349
+ width: 100%;
21350
+ border-collapse: separate;
21351
+ border-spacing: 0;
21352
+ }
21353
+
21354
+ .v-data-table__tr--focus {
21355
+ border: 1px dotted black;
21356
+ }
21357
+ .v-data-table__tr--clickable {
21358
+ cursor: pointer;
21359
+ }
21360
+
21361
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
21362
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
21363
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
21364
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
21365
+ text-align: end;
21366
+ }
21367
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21368
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
21369
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21370
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
21371
+ flex-direction: row-reverse;
21372
+ }
21373
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
21374
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
21375
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
21376
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
21377
+ text-align: center;
21378
+ }
21379
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21380
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
21381
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21382
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
21383
+ justify-content: center;
21384
+ }
21385
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
21386
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
21387
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
21388
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
21389
+ padding: 0 8px;
21390
+ }
21391
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
21392
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
21393
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
21394
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
21395
+ text-overflow: ellipsis;
21396
+ text-wrap: nowrap;
21397
+ overflow: hidden;
21398
+ }
21399
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
21400
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
21401
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
21402
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
21403
+ display: contents;
21404
+ }
21405
+ .v-data-table .v-table__wrapper > table > thead > tr > th,
21406
+ .v-data-table .v-table__wrapper > table tbody > tr > th {
21407
+ align-items: center;
21408
+ }
21409
+ .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
21410
+ .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
21411
+ position: sticky;
21412
+ }
21413
+ .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
21414
+ .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
21415
+ cursor: pointer;
21416
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21417
+ }
21418
+ .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
21419
+ .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
21420
+ opacity: 0;
21421
+ }
21422
+ .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
21423
+ .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
21424
+ opacity: 0.5;
21425
+ }
21426
+ .v-data-table .v-table__wrapper > table > thead > tr.v-data-table__tr--mobile > td,
21427
+ .v-data-table .v-table__wrapper > table tbody > tr.v-data-table__tr--mobile > td {
21428
+ height: -moz-fit-content;
21429
+ height: fit-content;
21430
+ }
21431
+
21432
+ .v-data-table-column--fixed,
21433
+ .v-data-table__th--sticky {
21434
+ background: rgb(var(--v-theme-surface));
21435
+ position: sticky !important;
21436
+ left: 0;
21437
+ z-index: 1;
21438
+ }
21439
+
21440
+ .v-data-table-column--last-fixed {
21441
+ border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
21442
+ }
21443
+
21444
+ .v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
21445
+ z-index: 2;
21446
+ }
21447
+
21448
+ .v-data-table-group-header-row td {
21449
+ background: rgba(var(--v-theme-surface));
21450
+ color: rgba(var(--v-theme-on-surface));
21451
+ }
21452
+ .v-data-table-group-header-row td > span {
21453
+ padding-left: 5px;
21454
+ }
21455
+
21456
+ .v-data-table--loading .v-data-table__td {
21457
+ opacity: var(--v-disabled-opacity);
21458
+ }
21459
+
21460
+ .v-data-table-group-header-row__column {
21461
+ padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
21462
+ }
21463
+
21464
+ .v-data-table-header__content {
21465
+ display: flex;
21255
21466
  align-items: center;
21256
21467
  }
21257
21468
 
@@ -21348,36 +21559,103 @@ html.overflow-y-hidden {
21348
21559
  }
21349
21560
  .v-data-table-footer__page {
21350
21561
  padding: 0 8px;
21351
- }.v-dialog {
21562
+ }.v-empty-state {
21352
21563
  align-items: center;
21353
- justify-content: center;
21354
- margin: auto;
21355
- }
21356
- .v-dialog > .v-overlay__content {
21357
- max-height: calc(100% - 48px);
21358
- width: calc(100% - 48px);
21359
- max-width: calc(100% - 48px);
21360
- margin: 24px;
21361
- }
21362
- .v-dialog > .v-overlay__content,
21363
- .v-dialog > .v-overlay__content > form {
21364
21564
  display: flex;
21365
21565
  flex-direction: column;
21366
- min-height: 0;
21566
+ justify-content: center;
21567
+ min-height: 100%;
21568
+ padding: 16px;
21367
21569
  }
21368
- .v-dialog > .v-overlay__content > .v-card,
21369
- .v-dialog > .v-overlay__content > .v-sheet,
21370
- .v-dialog > .v-overlay__content > form > .v-card,
21371
- .v-dialog > .v-overlay__content > form > .v-sheet {
21372
- --v-scrollbar-offset: 0px;
21373
- border-radius: 4px;
21374
- overflow-y: auto;
21375
- box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21570
+ .v-empty-state--start {
21571
+ align-items: flex-start;
21376
21572
  }
21377
- .v-dialog > .v-overlay__content > .v-card,
21378
- .v-dialog > .v-overlay__content > form > .v-card {
21379
- display: flex;
21380
- flex-direction: column;
21573
+ .v-empty-state--center {
21574
+ align-items: center;
21575
+ }
21576
+ .v-empty-state--end {
21577
+ align-items: flex-end;
21578
+ }
21579
+
21580
+ .v-empty-state__media {
21581
+ text-align: center;
21582
+ width: 100%;
21583
+ }
21584
+ .v-empty-state__media .v-icon {
21585
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21586
+ }
21587
+
21588
+ .v-empty-state__headline {
21589
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21590
+ font-size: 3.75rem;
21591
+ font-weight: 300;
21592
+ line-height: 1;
21593
+ text-align: center;
21594
+ margin-bottom: 8px;
21595
+ }
21596
+ .v-empty-state--mobile .v-empty-state__headline {
21597
+ font-size: 2.125rem;
21598
+ }
21599
+
21600
+ .v-empty-state__title {
21601
+ font-size: 1.25rem;
21602
+ font-weight: 500;
21603
+ line-height: 1.6;
21604
+ margin-bottom: 4px;
21605
+ text-align: center;
21606
+ }
21607
+
21608
+ .v-empty-state__text {
21609
+ font-size: 0.875rem;
21610
+ font-weight: 400;
21611
+ line-height: 1.425;
21612
+ padding: 0 16px;
21613
+ text-align: center;
21614
+ }
21615
+
21616
+ .v-empty-state__content {
21617
+ padding: 24px 0;
21618
+ }
21619
+
21620
+ .v-empty-state__actions {
21621
+ display: flex;
21622
+ gap: 8px;
21623
+ padding: 16px;
21624
+ }
21625
+
21626
+ .v-empty-state__action-btn.v-btn {
21627
+ background-color: rgb(var(--v-theme-surface-variant));
21628
+ color: rgb(var(--v-theme-on-surface-variant));
21629
+ }.v-dialog {
21630
+ align-items: center;
21631
+ justify-content: center;
21632
+ margin: auto;
21633
+ }
21634
+ .v-dialog > .v-overlay__content {
21635
+ max-height: calc(100% - 48px);
21636
+ width: calc(100% - 48px);
21637
+ max-width: calc(100% - 48px);
21638
+ margin: 24px;
21639
+ }
21640
+ .v-dialog > .v-overlay__content,
21641
+ .v-dialog > .v-overlay__content > form {
21642
+ display: flex;
21643
+ flex-direction: column;
21644
+ min-height: 0;
21645
+ }
21646
+ .v-dialog > .v-overlay__content > .v-card,
21647
+ .v-dialog > .v-overlay__content > .v-sheet,
21648
+ .v-dialog > .v-overlay__content > form > .v-card,
21649
+ .v-dialog > .v-overlay__content > form > .v-sheet {
21650
+ --v-scrollbar-offset: 0px;
21651
+ border-radius: 4px;
21652
+ overflow-y: auto;
21653
+ box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21654
+ }
21655
+ .v-dialog > .v-overlay__content > .v-card,
21656
+ .v-dialog > .v-overlay__content > form > .v-card {
21657
+ display: flex;
21658
+ flex-direction: column;
21381
21659
  }
21382
21660
  .v-dialog > .v-overlay__content > .v-card > .v-card-item,
21383
21661
  .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
@@ -21440,483 +21718,136 @@ html.overflow-y-hidden {
21440
21718
  -webkit-backface-visibility: hidden;
21441
21719
  backface-visibility: hidden;
21442
21720
  overflow-y: auto;
21443
- }.v-date-picker {
21444
- overflow: hidden;
21445
- width: 328px;
21721
+ }.v-divider {
21722
+ display: block;
21723
+ flex: 1 1 100%;
21724
+ height: 0px;
21725
+ max-height: 0px;
21726
+ opacity: var(--v-border-opacity);
21727
+ transition: inherit;
21728
+ border-style: solid;
21729
+ border-width: thin 0 0 0;
21446
21730
  }
21447
- .v-date-picker--show-week {
21448
- width: 368px;
21449
- }.v-date-picker-controls {
21731
+ .v-divider--vertical {
21732
+ align-self: stretch;
21733
+ border-width: 0 thin 0 0;
21734
+ display: inline-flex;
21735
+ height: auto;
21736
+ margin-left: -1px;
21737
+ max-height: 100%;
21738
+ max-width: 0px;
21739
+ vertical-align: text-bottom;
21740
+ width: 0px;
21741
+ }
21742
+ .v-divider--inset:not(.v-divider--vertical) {
21743
+ max-width: calc(100% - 72px);
21744
+ margin-inline-start: 72px;
21745
+ }
21746
+ .v-divider--inset.v-divider--vertical {
21747
+ margin-bottom: 8px;
21748
+ margin-top: 8px;
21749
+ max-height: calc(100% - 16px);
21750
+ }
21751
+
21752
+ .v-divider__content {
21753
+ padding: 0 16px;
21754
+ text-wrap: nowrap;
21755
+ }
21756
+ .v-divider__wrapper--vertical .v-divider__content {
21757
+ padding: 4px 0;
21758
+ }
21759
+
21760
+ .v-divider__wrapper {
21450
21761
  display: flex;
21451
21762
  align-items: center;
21452
- justify-content: space-between;
21453
- font-size: 0.875rem;
21454
- padding-top: 4px;
21455
- padding-bottom: 4px;
21456
- padding-inline-start: 6px;
21457
- padding-inline-end: 12px;
21763
+ justify-content: center;
21458
21764
  }
21459
- .v-date-picker-controls > .v-btn:first-child {
21460
- text-transform: none;
21461
- font-weight: 400;
21462
- line-height: initial;
21463
- letter-spacing: initial;
21765
+ .v-divider__wrapper--vertical {
21766
+ flex-direction: column;
21767
+ height: 100%;
21464
21768
  }
21465
- .v-date-picker-controls--variant-classic {
21466
- padding-inline-start: 12px;
21769
+ .v-divider__wrapper--vertical .v-divider {
21770
+ margin: 0 auto;
21771
+ }/* region INPUT */
21772
+ .v-field {
21773
+ --v-theme-overlay-multiplier: 1;
21774
+ display: grid;
21775
+ grid-template-areas: "prepend-inner field clear append-inner";
21776
+ grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
21777
+ font-size: 16px;
21778
+ letter-spacing: 0.009375em;
21779
+ max-width: 100%;
21780
+ border-radius: 4px;
21781
+ contain: layout;
21782
+ flex: 1 0;
21783
+ grid-area: control;
21784
+ position: relative;
21785
+ --v-field-padding-start: 16px;
21786
+ --v-field-padding-end: 16px;
21787
+ --v-field-padding-top: 8px;
21788
+ --v-field-padding-bottom: 4px;
21789
+ --v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
21790
+ --v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
21467
21791
  }
21468
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21469
- opacity: 0.7;
21792
+ .v-field--disabled {
21793
+ opacity: var(--v-disabled-opacity);
21794
+ pointer-events: none;
21470
21795
  }
21471
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21472
- cursor: pointer;
21796
+ .v-field .v-chip {
21797
+ --v-chip-height: 24px;
21473
21798
  }
21474
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21475
- opacity: 1;
21799
+
21800
+ /* endregion */
21801
+ /* region MODIFIERS */
21802
+ .v-field--prepended {
21803
+ padding-inline-start: 12px;
21476
21804
  }
21477
- .v-date-picker-controls .v-btn:last-child {
21478
- margin-inline-start: 4px;
21805
+ .v-field--appended {
21806
+ padding-inline-end: 12px;
21479
21807
  }
21480
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21481
- transform: rotate(180deg);
21808
+ .v-field--variant-solo, .v-field--variant-solo-filled {
21809
+ background: rgb(var(--v-theme-surface));
21810
+ border-color: transparent;
21811
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21812
+ 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));
21482
21813
  }
21483
-
21484
- .v-date-picker-controls__date {
21485
- margin-inline-end: 4px;
21814
+ .v-field--variant-solo-inverted {
21815
+ background: rgb(var(--v-theme-surface));
21816
+ border-color: transparent;
21817
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21818
+ 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));
21486
21819
  }
21487
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21488
- margin: auto;
21489
- text-align: center;
21820
+ .v-field--variant-solo-inverted.v-field--focused {
21821
+ color: rgb(var(--v-theme-on-surface-variant));
21490
21822
  }
21491
-
21492
- .v-date-picker-controls__month {
21493
- display: flex;
21823
+ .v-field--variant-filled {
21824
+ border-bottom-left-radius: 0;
21825
+ border-bottom-right-radius: 0;
21494
21826
  }
21495
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21496
- flex-direction: row-reverse;
21827
+ .v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
21828
+ --v-input-control-height: 56px;
21829
+ --v-field-padding-bottom: 4px;
21497
21830
  }
21498
21831
 
21499
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21500
- flex: 1 0 auto;
21832
+ .v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
21833
+ --v-input-control-height: 48px;
21834
+ --v-field-padding-bottom: 0px;
21501
21835
  }
21502
21836
 
21503
- .v-date-picker__title {
21504
- display: inline-block;
21505
- }.v-date-picker-month {
21506
- display: flex;
21507
- justify-content: center;
21508
- padding: 0 12px 8px;
21509
- --v-date-picker-month-day-diff: 4px;
21837
+ .v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-solo-inverted, .v-input--density-compact .v-field--variant-solo-filled, .v-input--density-compact .v-field--variant-filled {
21838
+ --v-input-control-height: 40px;
21839
+ --v-field-padding-bottom: 0px;
21510
21840
  }
21511
21841
 
21512
- .v-date-picker-month__weeks {
21513
- display: grid;
21514
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21515
- column-gap: 4px;
21516
- font-size: 0.85rem;
21842
+ .v-field--variant-outlined, .v-field--single-line, .v-field--no-label {
21843
+ --v-field-padding-top: 0px;
21517
21844
  }
21518
- .v-date-picker-month__weeks + .v-date-picker-month__days {
21519
- grid-row-gap: 0;
21845
+ .v-input--density-default .v-field--variant-outlined, .v-input--density-default .v-field--single-line, .v-input--density-default .v-field--no-label {
21846
+ --v-field-padding-bottom: 16px;
21520
21847
  }
21521
21848
 
21522
- .v-date-picker-month__weekday {
21523
- font-size: 0.85rem;
21524
- }
21525
-
21526
- .v-date-picker-month__days {
21527
- display: grid;
21528
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21529
- column-gap: 4px;
21530
- flex: 1 1;
21531
- justify-content: space-around;
21532
- }
21533
-
21534
- .v-date-picker-month__day {
21535
- align-items: center;
21536
- display: flex;
21537
- justify-content: center;
21538
- position: relative;
21539
- height: 40px;
21540
- width: 40px;
21541
- }
21542
- .v-date-picker-month__day--selected .v-btn {
21543
- background-color: rgb(var(--v-theme-surface-variant));
21544
- color: rgb(var(--v-theme-on-surface-variant));
21545
- }
21546
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21547
- --v-btn-height: 24px;
21548
- --v-btn-size: 0.85rem;
21549
- }
21550
- .v-date-picker-month__day--week {
21551
- font-size: var(--v-btn-size);
21552
- }
21553
-
21554
- .v-date-picker-month__day--adjacent {
21555
- opacity: 0.5;
21556
- }
21557
-
21558
- .v-date-picker-month__day--hide-adjacent {
21559
- opacity: 0;
21560
- }.v-date-picker-header {
21561
- align-items: flex-end;
21562
- height: 70px;
21563
- display: grid;
21564
- grid-template-areas: "prepend content append";
21565
- grid-template-columns: min-content minmax(0, 1fr) min-content;
21566
- overflow: hidden;
21567
- padding-inline: 24px 12px;
21568
- padding-bottom: 12px;
21569
- }
21570
-
21571
- .v-date-picker-header__append {
21572
- grid-area: append;
21573
- }
21574
-
21575
- .v-date-picker-header__prepend {
21576
- grid-area: prepend;
21577
- padding-inline-start: 8px;
21578
- }
21579
-
21580
- .v-date-picker-header__content {
21581
- align-items: center;
21582
- display: inline-flex;
21583
- font-size: 32px;
21584
- line-height: 40px;
21585
- grid-area: content;
21586
- justify-content: space-between;
21587
- }
21588
- .v-date-picker-header--clickable .v-date-picker-header__content {
21589
- cursor: pointer;
21590
- }
21591
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21592
- opacity: 0.7;
21593
- }
21594
-
21595
- .date-picker-header-transition-enter-active,
21596
- .date-picker-header-reverse-transition-enter-active {
21597
- transition-duration: 0.3s;
21598
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21599
- }
21600
- .date-picker-header-transition-leave-active,
21601
- .date-picker-header-reverse-transition-leave-active {
21602
- transition-duration: 0.3s;
21603
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21604
- }
21605
-
21606
- .date-picker-header-transition-enter-from {
21607
- transform: translate(0, 100%);
21608
- }
21609
- .date-picker-header-transition-leave-to {
21610
- opacity: 0;
21611
- transform: translate(0, -100%);
21612
- }
21613
-
21614
- .date-picker-header-reverse-transition-enter-from {
21615
- transform: translate(0, -100%);
21616
- }
21617
- .date-picker-header-reverse-transition-leave-to {
21618
- opacity: 0;
21619
- transform: translate(0, 100%);
21620
- }.v-date-picker-years {
21621
- height: 288px;
21622
- overflow-y: scroll;
21623
- }
21624
-
21625
- .v-date-picker-years__content {
21626
- display: grid;
21627
- flex: 1 1;
21628
- justify-content: space-around;
21629
- grid-template-columns: repeat(3, 1fr);
21630
- gap: 8px 24px;
21631
- padding-inline: 32px;
21632
- }
21633
- .v-date-picker-years__content .v-btn {
21634
- padding-inline: 8px;
21635
- }.v-date-picker-months {
21636
- height: 288px;
21637
- }
21638
-
21639
- .v-date-picker-months__content {
21640
- align-items: center;
21641
- display: grid;
21642
- flex: 1 1;
21643
- height: inherit;
21644
- justify-content: space-around;
21645
- grid-template-columns: repeat(2, 1fr);
21646
- grid-gap: 0px 24px;
21647
- padding-inline-start: 36px;
21648
- padding-inline-end: 36px;
21649
- }
21650
- .v-date-picker-months__content .v-btn {
21651
- text-transform: none;
21652
- padding-inline-start: 8px;
21653
- padding-inline-end: 8px;
21654
- }.v-empty-state {
21655
- align-items: center;
21656
- display: flex;
21657
- flex-direction: column;
21658
- justify-content: center;
21659
- min-height: 100%;
21660
- padding: 16px;
21661
- }
21662
- .v-empty-state--start {
21663
- align-items: flex-start;
21664
- }
21665
- .v-empty-state--center {
21666
- align-items: center;
21667
- }
21668
- .v-empty-state--end {
21669
- align-items: flex-end;
21670
- }
21671
-
21672
- .v-empty-state__media {
21673
- text-align: center;
21674
- width: 100%;
21675
- }
21676
- .v-empty-state__media .v-icon {
21677
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21678
- }
21679
-
21680
- .v-empty-state__headline {
21681
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21682
- font-size: 3.75rem;
21683
- font-weight: 300;
21684
- line-height: 1;
21685
- text-align: center;
21686
- margin-bottom: 8px;
21687
- }
21688
- .v-empty-state--mobile .v-empty-state__headline {
21689
- font-size: 2.125rem;
21690
- }
21691
-
21692
- .v-empty-state__title {
21693
- font-size: 1.25rem;
21694
- font-weight: 500;
21695
- line-height: 1.6;
21696
- margin-bottom: 4px;
21697
- text-align: center;
21698
- }
21699
-
21700
- .v-empty-state__text {
21701
- font-size: 0.875rem;
21702
- font-weight: 400;
21703
- line-height: 1.425;
21704
- padding: 0 16px;
21705
- text-align: center;
21706
- }
21707
-
21708
- .v-empty-state__content {
21709
- padding: 24px 0;
21710
- }
21711
-
21712
- .v-empty-state__actions {
21713
- display: flex;
21714
- gap: 8px;
21715
- padding: 16px;
21716
- }
21717
-
21718
- .v-empty-state__action-btn.v-btn {
21719
- background-color: rgb(var(--v-theme-surface-variant));
21720
- color: rgb(var(--v-theme-on-surface-variant));
21721
- }.v-fab {
21722
- align-items: center;
21723
- display: inline-flex;
21724
- flex: 1 1 auto;
21725
- pointer-events: none;
21726
- position: relative;
21727
- transition-duration: 0.2s;
21728
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21729
- vertical-align: middle;
21730
- }
21731
- .v-fab .v-btn {
21732
- pointer-events: auto;
21733
- }
21734
- .v-fab .v-btn--variant-elevated {
21735
- box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21736
- }
21737
- .v-fab--app, .v-fab--absolute {
21738
- display: flex;
21739
- }
21740
- .v-fab--start, .v-fab--left {
21741
- justify-content: flex-start;
21742
- }
21743
- .v-fab--center {
21744
- align-items: center;
21745
- justify-content: center;
21746
- }
21747
- .v-fab--end, .v-fab--right {
21748
- justify-content: flex-end;
21749
- }
21750
- .v-fab--bottom {
21751
- align-items: flex-end;
21752
- }
21753
- .v-fab--top {
21754
- align-items: flex-start;
21755
- }
21756
- .v-fab--extended .v-btn {
21757
- border-radius: 9999px !important;
21758
- }
21759
-
21760
- .v-fab__container {
21761
- align-self: center;
21762
- display: inline-flex;
21763
- position: absolute;
21764
- vertical-align: middle;
21765
- }
21766
- .v-fab--app .v-fab__container {
21767
- margin: 12px;
21768
- }
21769
- .v-fab--absolute .v-fab__container {
21770
- position: absolute;
21771
- z-index: 4;
21772
- }
21773
- .v-fab--offset.v-fab--top .v-fab__container {
21774
- transform: translateY(-50%);
21775
- }
21776
- .v-fab--offset.v-fab--bottom .v-fab__container {
21777
- transform: translateY(50%);
21778
- }
21779
- .v-fab--top .v-fab__container {
21780
- top: 0;
21781
- }
21782
- .v-fab--bottom .v-fab__container {
21783
- bottom: 0;
21784
- }
21785
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21786
- left: 0;
21787
- }
21788
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21789
- right: 0;
21790
- }.v-divider {
21791
- display: block;
21792
- flex: 1 1 100%;
21793
- height: 0px;
21794
- max-height: 0px;
21795
- opacity: var(--v-border-opacity);
21796
- transition: inherit;
21797
- border-style: solid;
21798
- border-width: thin 0 0 0;
21799
- }
21800
- .v-divider--vertical {
21801
- align-self: stretch;
21802
- border-width: 0 thin 0 0;
21803
- display: inline-flex;
21804
- height: auto;
21805
- margin-left: -1px;
21806
- max-height: 100%;
21807
- max-width: 0px;
21808
- vertical-align: text-bottom;
21809
- width: 0px;
21810
- }
21811
- .v-divider--inset:not(.v-divider--vertical) {
21812
- max-width: calc(100% - 72px);
21813
- margin-inline-start: 72px;
21814
- }
21815
- .v-divider--inset.v-divider--vertical {
21816
- margin-bottom: 8px;
21817
- margin-top: 8px;
21818
- max-height: calc(100% - 16px);
21819
- }
21820
-
21821
- .v-divider__content {
21822
- padding: 0 16px;
21823
- text-wrap: nowrap;
21824
- }
21825
- .v-divider__wrapper--vertical .v-divider__content {
21826
- padding: 4px 0;
21827
- }
21828
-
21829
- .v-divider__wrapper {
21830
- display: flex;
21831
- align-items: center;
21832
- justify-content: center;
21833
- }
21834
- .v-divider__wrapper--vertical {
21835
- flex-direction: column;
21836
- height: 100%;
21837
- }
21838
- .v-divider__wrapper--vertical .v-divider {
21839
- margin: 0 auto;
21840
- }/* region INPUT */
21841
- .v-field {
21842
- --v-theme-overlay-multiplier: 1;
21843
- display: grid;
21844
- grid-template-areas: "prepend-inner field clear append-inner";
21845
- grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
21846
- font-size: 16px;
21847
- letter-spacing: 0.009375em;
21848
- max-width: 100%;
21849
- border-radius: 4px;
21850
- contain: layout;
21851
- flex: 1 0;
21852
- grid-area: control;
21853
- position: relative;
21854
- --v-field-padding-start: 16px;
21855
- --v-field-padding-end: 16px;
21856
- --v-field-padding-top: 8px;
21857
- --v-field-padding-bottom: 4px;
21858
- --v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
21859
- --v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
21860
- }
21861
- .v-field--disabled {
21862
- opacity: var(--v-disabled-opacity);
21863
- pointer-events: none;
21864
- }
21865
- .v-field .v-chip {
21866
- --v-chip-height: 24px;
21867
- }
21868
-
21869
- /* endregion */
21870
- /* region MODIFIERS */
21871
- .v-field--prepended {
21872
- padding-inline-start: 12px;
21873
- }
21874
- .v-field--appended {
21875
- padding-inline-end: 12px;
21876
- }
21877
- .v-field--variant-solo, .v-field--variant-solo-filled {
21878
- background: rgb(var(--v-theme-surface));
21879
- border-color: transparent;
21880
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21881
- 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));
21882
- }
21883
- .v-field--variant-solo-inverted {
21884
- background: rgb(var(--v-theme-surface));
21885
- border-color: transparent;
21886
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21887
- 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));
21888
- }
21889
- .v-field--variant-solo-inverted.v-field--focused {
21890
- color: rgb(var(--v-theme-on-surface-variant));
21891
- }
21892
- .v-field--variant-filled {
21893
- border-bottom-left-radius: 0;
21894
- border-bottom-right-radius: 0;
21895
- }
21896
- .v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
21897
- --v-input-control-height: 56px;
21898
- --v-field-padding-bottom: 4px;
21899
- }
21900
-
21901
- .v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
21902
- --v-input-control-height: 48px;
21903
- --v-field-padding-bottom: 0px;
21904
- }
21905
-
21906
- .v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-solo-inverted, .v-input--density-compact .v-field--variant-solo-filled, .v-input--density-compact .v-field--variant-filled {
21907
- --v-input-control-height: 40px;
21908
- --v-field-padding-bottom: 0px;
21909
- }
21910
-
21911
- .v-field--variant-outlined, .v-field--single-line, .v-field--no-label {
21912
- --v-field-padding-top: 0px;
21913
- }
21914
- .v-input--density-default .v-field--variant-outlined, .v-input--density-default .v-field--single-line, .v-input--density-default .v-field--no-label {
21915
- --v-field-padding-bottom: 16px;
21916
- }
21917
-
21918
- .v-input--density-comfortable .v-field--variant-outlined, .v-input--density-comfortable .v-field--single-line, .v-input--density-comfortable .v-field--no-label {
21919
- --v-field-padding-bottom: 12px;
21849
+ .v-input--density-comfortable .v-field--variant-outlined, .v-input--density-comfortable .v-field--single-line, .v-input--density-comfortable .v-field--no-label {
21850
+ --v-field-padding-bottom: 12px;
21920
21851
  }
21921
21852
 
21922
21853
  .v-input--density-compact .v-field--variant-outlined, .v-input--density-compact .v-field--single-line, .v-input--density-compact .v-field--no-label {
@@ -22408,7 +22339,76 @@ textarea.v-field__input::placeholder {
22408
22339
  opacity: 0;
22409
22340
  }
22410
22341
 
22411
- /* endregion */.v-expansion-panel {
22342
+ /* endregion */.v-fab {
22343
+ align-items: center;
22344
+ display: inline-flex;
22345
+ flex: 1 1 auto;
22346
+ pointer-events: none;
22347
+ position: relative;
22348
+ transition-duration: 0.2s;
22349
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22350
+ vertical-align: middle;
22351
+ }
22352
+ .v-fab .v-btn {
22353
+ pointer-events: auto;
22354
+ }
22355
+ .v-fab .v-btn--variant-elevated {
22356
+ box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22357
+ }
22358
+ .v-fab--app, .v-fab--absolute {
22359
+ display: flex;
22360
+ }
22361
+ .v-fab--start, .v-fab--left {
22362
+ justify-content: flex-start;
22363
+ }
22364
+ .v-fab--center {
22365
+ align-items: center;
22366
+ justify-content: center;
22367
+ }
22368
+ .v-fab--end, .v-fab--right {
22369
+ justify-content: flex-end;
22370
+ }
22371
+ .v-fab--bottom {
22372
+ align-items: flex-end;
22373
+ }
22374
+ .v-fab--top {
22375
+ align-items: flex-start;
22376
+ }
22377
+ .v-fab--extended .v-btn {
22378
+ border-radius: 9999px !important;
22379
+ }
22380
+
22381
+ .v-fab__container {
22382
+ align-self: center;
22383
+ display: inline-flex;
22384
+ position: absolute;
22385
+ vertical-align: middle;
22386
+ }
22387
+ .v-fab--app .v-fab__container {
22388
+ margin: 12px;
22389
+ }
22390
+ .v-fab--absolute .v-fab__container {
22391
+ position: absolute;
22392
+ z-index: 4;
22393
+ }
22394
+ .v-fab--offset.v-fab--top .v-fab__container {
22395
+ transform: translateY(-50%);
22396
+ }
22397
+ .v-fab--offset.v-fab--bottom .v-fab__container {
22398
+ transform: translateY(50%);
22399
+ }
22400
+ .v-fab--top .v-fab__container {
22401
+ top: 0;
22402
+ }
22403
+ .v-fab--bottom .v-fab__container {
22404
+ bottom: 0;
22405
+ }
22406
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
22407
+ left: 0;
22408
+ }
22409
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
22410
+ right: 0;
22411
+ }.v-expansion-panel {
22412
22412
  background-color: rgb(var(--v-theme-surface));
22413
22413
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22414
22414
  }
@@ -22618,35 +22618,6 @@ textarea.v-field__input::placeholder {
22618
22618
  }
22619
22619
  .v-expansion-panels--tile > .v-expansion-panel {
22620
22620
  border-radius: 0;
22621
- }.v-file-input--hide.v-input .v-field,
22622
- .v-file-input--hide.v-input .v-input__control,
22623
- .v-file-input--hide.v-input .v-input__details {
22624
- display: none;
22625
- }
22626
- .v-file-input--hide.v-input .v-input__prepend {
22627
- grid-area: control;
22628
- margin: 0 auto;
22629
- }
22630
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22631
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22632
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22633
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22634
- top: 0px;
22635
- }
22636
- .v-file-input input[type=file] {
22637
- height: 100%;
22638
- left: 0;
22639
- opacity: 0;
22640
- position: absolute;
22641
- top: 0;
22642
- width: 100%;
22643
- z-index: 1;
22644
- }
22645
- .v-file-input .v-input__details {
22646
- padding-inline: 16px;
22647
- }
22648
- .v-input--plain-underlined.v-file-input .v-input__details {
22649
- padding-inline: 0;
22650
22621
  }.v-footer {
22651
22622
  align-items: center;
22652
22623
  display: flex;
@@ -22675,59 +22646,35 @@ textarea.v-field__input::placeholder {
22675
22646
  }
22676
22647
  .v-footer--rounded {
22677
22648
  border-radius: 4px;
22678
- }.v-icon {
22679
- --v-icon-size-multiplier: 1;
22680
- align-items: center;
22681
- display: inline-flex;
22682
- font-feature-settings: "liga";
22683
- height: 1em;
22684
- justify-content: center;
22685
- letter-spacing: normal;
22686
- line-height: 1;
22687
- position: relative;
22688
- text-indent: 0;
22689
- text-align: center;
22690
- -webkit-user-select: none;
22691
- user-select: none;
22692
- vertical-align: middle;
22693
- width: 1em;
22694
- min-width: 1em;
22695
- }
22696
- .v-icon--clickable {
22697
- cursor: pointer;
22698
- }
22699
- .v-icon--disabled {
22700
- pointer-events: none;
22701
- opacity: 0.38;
22702
- }
22703
- .v-icon--size-x-small {
22704
- font-size: calc(var(--v-icon-size-multiplier) * 1em);
22705
- }
22706
- .v-icon--size-small {
22707
- font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
22708
- }
22709
- .v-icon--size-default {
22710
- font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
22649
+ }.v-file-input--hide.v-input .v-field,
22650
+ .v-file-input--hide.v-input .v-input__control,
22651
+ .v-file-input--hide.v-input .v-input__details {
22652
+ display: none;
22711
22653
  }
22712
- .v-icon--size-large {
22713
- font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
22654
+ .v-file-input--hide.v-input .v-input__prepend {
22655
+ grid-area: control;
22656
+ margin: 0 auto;
22714
22657
  }
22715
- .v-icon--size-x-large {
22716
- font-size: calc(var(--v-icon-size-multiplier) * 2em);
22658
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22659
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22660
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22661
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22662
+ top: 0px;
22717
22663
  }
22718
-
22719
- .v-icon__svg {
22720
- fill: currentColor;
22721
- width: 100%;
22664
+ .v-file-input input[type=file] {
22722
22665
  height: 100%;
22666
+ left: 0;
22667
+ opacity: 0;
22668
+ position: absolute;
22669
+ top: 0;
22670
+ width: 100%;
22671
+ z-index: 1;
22723
22672
  }
22724
-
22725
- .v-icon--start {
22726
- margin-inline-end: 8px;
22673
+ .v-file-input .v-input__details {
22674
+ padding-inline: 16px;
22727
22675
  }
22728
-
22729
- .v-icon--end {
22730
- margin-inline-start: 8px;
22676
+ .v-input--plain-underlined.v-file-input .v-input__details {
22677
+ padding-inline: 0;
22731
22678
  }.v-img {
22732
22679
  --v-theme-overlay-multiplier: 3;
22733
22680
  z-index: 0;
@@ -22906,11 +22853,6 @@ textarea.v-field__input::placeholder {
22906
22853
 
22907
22854
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22908
22855
  padding-top: calc(var(--v-input-padding-top) + 0px);
22909
- }.v-item-group {
22910
- flex: 0 1 auto;
22911
- max-width: 100%;
22912
- position: relative;
22913
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22914
22856
  }.v-infinite-scroll--horizontal {
22915
22857
  display: flex;
22916
22858
  flex-direction: row;
@@ -22936,6 +22878,64 @@ textarea.v-field__input::placeholder {
22936
22878
  display: flex;
22937
22879
  justify-content: center;
22938
22880
  padding: 8px;
22881
+ }.v-icon {
22882
+ --v-icon-size-multiplier: 1;
22883
+ align-items: center;
22884
+ display: inline-flex;
22885
+ font-feature-settings: "liga";
22886
+ height: 1em;
22887
+ justify-content: center;
22888
+ letter-spacing: normal;
22889
+ line-height: 1;
22890
+ position: relative;
22891
+ text-indent: 0;
22892
+ text-align: center;
22893
+ -webkit-user-select: none;
22894
+ user-select: none;
22895
+ vertical-align: middle;
22896
+ width: 1em;
22897
+ min-width: 1em;
22898
+ }
22899
+ .v-icon--clickable {
22900
+ cursor: pointer;
22901
+ }
22902
+ .v-icon--disabled {
22903
+ pointer-events: none;
22904
+ opacity: 0.38;
22905
+ }
22906
+ .v-icon--size-x-small {
22907
+ font-size: calc(var(--v-icon-size-multiplier) * 1em);
22908
+ }
22909
+ .v-icon--size-small {
22910
+ font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
22911
+ }
22912
+ .v-icon--size-default {
22913
+ font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
22914
+ }
22915
+ .v-icon--size-large {
22916
+ font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
22917
+ }
22918
+ .v-icon--size-x-large {
22919
+ font-size: calc(var(--v-icon-size-multiplier) * 2em);
22920
+ }
22921
+
22922
+ .v-icon__svg {
22923
+ fill: currentColor;
22924
+ width: 100%;
22925
+ height: 100%;
22926
+ }
22927
+
22928
+ .v-icon--start {
22929
+ margin-inline-end: 8px;
22930
+ }
22931
+
22932
+ .v-icon--end {
22933
+ margin-inline-start: 8px;
22934
+ }.v-item-group {
22935
+ flex: 0 1 auto;
22936
+ max-width: 100%;
22937
+ position: relative;
22938
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22939
22939
  }.v-layout-item {
22940
22940
  position: absolute;
22941
22941
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
@@ -22951,6 +22951,8 @@ textarea.v-field__input::placeholder {
22951
22951
  .v-layout--full-height {
22952
22952
  --v-scrollbar-offset: inherit;
22953
22953
  height: 100%;
22954
+ }.v-locale-provider {
22955
+ display: contents;
22954
22956
  }.v-label {
22955
22957
  align-items: center;
22956
22958
  color: inherit;
@@ -22966,110 +22968,6 @@ textarea.v-field__input::placeholder {
22966
22968
 
22967
22969
  .v-label--clickable {
22968
22970
  cursor: pointer;
22969
- }.v-locale-provider {
22970
- display: contents;
22971
- }.v-navigation-drawer {
22972
- -webkit-overflow-scrolling: touch;
22973
- background: rgb(var(--v-theme-surface));
22974
- display: flex;
22975
- flex-direction: column;
22976
- height: 100%;
22977
- max-width: 100%;
22978
- pointer-events: auto;
22979
- transition-duration: 0.2s;
22980
- transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22981
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22982
- position: absolute;
22983
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22984
- border-style: solid;
22985
- border-width: 0;
22986
- 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));
22987
- background: rgb(var(--v-theme-surface));
22988
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22989
- }
22990
- .v-navigation-drawer--border {
22991
- border-width: thin;
22992
- box-shadow: none;
22993
- }
22994
- .v-navigation-drawer--rounded {
22995
- border-radius: 4px;
22996
- }
22997
- .v-navigation-drawer--top, .v-navigation-drawer--bottom {
22998
- max-height: -webkit-fill-available;
22999
- overflow-y: auto;
23000
- }
23001
- .v-navigation-drawer--top {
23002
- top: 0;
23003
- border-bottom-width: thin;
23004
- }
23005
- .v-navigation-drawer--bottom {
23006
- left: 0;
23007
- border-top-width: thin;
23008
- }
23009
- .v-navigation-drawer--left {
23010
- top: 0;
23011
- left: 0;
23012
- right: auto;
23013
- border-right-width: thin;
23014
- }
23015
- .v-navigation-drawer--right {
23016
- top: 0;
23017
- left: auto;
23018
- right: 0;
23019
- border-left-width: thin;
23020
- }
23021
- .v-navigation-drawer--floating {
23022
- border: none;
23023
- }
23024
- .v-navigation-drawer--temporary.v-navigation-drawer--active {
23025
- 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));
23026
- }
23027
- .v-navigation-drawer--sticky {
23028
- height: auto;
23029
- transition: box-shadow, transform, visibility, width, height, left, right;
23030
- }
23031
- .v-navigation-drawer .v-list {
23032
- overflow: hidden;
23033
- }
23034
-
23035
- .v-navigation-drawer__content {
23036
- flex: 0 1 auto;
23037
- height: 100%;
23038
- max-width: 100%;
23039
- overflow-x: hidden;
23040
- overflow-y: auto;
23041
- }
23042
-
23043
- .v-navigation-drawer__img {
23044
- height: 100%;
23045
- left: 0;
23046
- position: absolute;
23047
- top: 0;
23048
- width: 100%;
23049
- z-index: -1;
23050
- }
23051
- .v-navigation-drawer__img img:not(.v-img__img) {
23052
- height: inherit;
23053
- object-fit: cover;
23054
- width: inherit;
23055
- }
23056
-
23057
- .v-navigation-drawer__scrim {
23058
- position: absolute;
23059
- top: 0;
23060
- left: 0;
23061
- width: 100%;
23062
- height: 100%;
23063
- background: black;
23064
- opacity: 0.2;
23065
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23066
- z-index: 1;
23067
- }
23068
-
23069
- .v-navigation-drawer__prepend,
23070
- .v-navigation-drawer__append {
23071
- flex: none;
23072
- overflow: hidden;
23073
22971
  }.v-main {
23074
22972
  flex: 1 0 auto;
23075
22973
  max-width: 100%;
@@ -23650,10 +23548,10 @@ textarea.v-field__input::placeholder {
23650
23548
  padding-inline-start: calc(16px + var(--indent-padding)) !important;
23651
23549
  }
23652
23550
 
23653
- .v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23551
+ .v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23654
23552
  opacity: 0;
23655
23553
  }
23656
- .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
23554
+ .v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23657
23555
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23658
23556
  }.v-messages {
23659
23557
  flex: 1 1 auto;
@@ -23683,7 +23581,109 @@ textarea.v-field__input::placeholder {
23683
23581
  border-radius: inherit;
23684
23582
  overflow: auto;
23685
23583
  height: 100%;
23686
- 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));
23584
+ 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));
23585
+ }.v-navigation-drawer {
23586
+ -webkit-overflow-scrolling: touch;
23587
+ background: rgb(var(--v-theme-surface));
23588
+ display: flex;
23589
+ flex-direction: column;
23590
+ height: 100%;
23591
+ max-width: 100%;
23592
+ pointer-events: auto;
23593
+ transition-duration: 0.2s;
23594
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
23595
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23596
+ position: absolute;
23597
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23598
+ border-style: solid;
23599
+ border-width: 0;
23600
+ 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));
23601
+ background: rgb(var(--v-theme-surface));
23602
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23603
+ }
23604
+ .v-navigation-drawer--border {
23605
+ border-width: thin;
23606
+ box-shadow: none;
23607
+ }
23608
+ .v-navigation-drawer--rounded {
23609
+ border-radius: 4px;
23610
+ }
23611
+ .v-navigation-drawer--top, .v-navigation-drawer--bottom {
23612
+ max-height: -webkit-fill-available;
23613
+ overflow-y: auto;
23614
+ }
23615
+ .v-navigation-drawer--top {
23616
+ top: 0;
23617
+ border-bottom-width: thin;
23618
+ }
23619
+ .v-navigation-drawer--bottom {
23620
+ left: 0;
23621
+ border-top-width: thin;
23622
+ }
23623
+ .v-navigation-drawer--left {
23624
+ top: 0;
23625
+ left: 0;
23626
+ right: auto;
23627
+ border-right-width: thin;
23628
+ }
23629
+ .v-navigation-drawer--right {
23630
+ top: 0;
23631
+ left: auto;
23632
+ right: 0;
23633
+ border-left-width: thin;
23634
+ }
23635
+ .v-navigation-drawer--floating {
23636
+ border: none;
23637
+ }
23638
+ .v-navigation-drawer--temporary.v-navigation-drawer--active {
23639
+ 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));
23640
+ }
23641
+ .v-navigation-drawer--sticky {
23642
+ height: auto;
23643
+ transition: box-shadow, transform, visibility, width, height, left, right;
23644
+ }
23645
+ .v-navigation-drawer .v-list {
23646
+ overflow: hidden;
23647
+ }
23648
+
23649
+ .v-navigation-drawer__content {
23650
+ flex: 0 1 auto;
23651
+ height: 100%;
23652
+ max-width: 100%;
23653
+ overflow-x: hidden;
23654
+ overflow-y: auto;
23655
+ }
23656
+
23657
+ .v-navigation-drawer__img {
23658
+ height: 100%;
23659
+ left: 0;
23660
+ position: absolute;
23661
+ top: 0;
23662
+ width: 100%;
23663
+ z-index: -1;
23664
+ }
23665
+ .v-navigation-drawer__img img:not(.v-img__img) {
23666
+ height: inherit;
23667
+ object-fit: cover;
23668
+ width: inherit;
23669
+ }
23670
+
23671
+ .v-navigation-drawer__scrim {
23672
+ position: absolute;
23673
+ top: 0;
23674
+ left: 0;
23675
+ width: 100%;
23676
+ height: 100%;
23677
+ background: black;
23678
+ opacity: 0.2;
23679
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23680
+ z-index: 1;
23681
+ }
23682
+
23683
+ .v-navigation-drawer__prepend,
23684
+ .v-navigation-drawer__append {
23685
+ flex: none;
23686
+ overflow: hidden;
23687
23687
  }.v-overlay-container {
23688
23688
  contain: layout;
23689
23689
  left: 0;
@@ -23747,6 +23747,12 @@ html.v-overlay-scroll-blocked {
23747
23747
 
23748
23748
  .v-overlay--scroll-blocked {
23749
23749
  padding-inline-end: var(--v-scrollbar-offset);
23750
+ }.v-parallax {
23751
+ position: relative;
23752
+ overflow: hidden;
23753
+ }
23754
+ .v-parallax--active > .v-img__img {
23755
+ will-change: transform;
23750
23756
  }.v-otp-input {
23751
23757
  border-radius: 4px;
23752
23758
  align-items: center;
@@ -23913,12 +23919,6 @@ html.v-overlay-scroll-blocked {
23913
23919
  }
23914
23920
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23915
23921
  margin: 0.3rem;
23916
- }.v-parallax {
23917
- position: relative;
23918
- overflow: hidden;
23919
- }
23920
- .v-parallax--active > .v-img__img {
23921
- will-change: transform;
23922
23922
  }.v-progress-linear {
23923
23923
  background: transparent;
23924
23924
  overflow: hidden;
@@ -24130,18 +24130,6 @@ html.v-overlay-scroll-blocked {
24130
24130
  0% {
24131
24131
  background-position-x: var(--v-progress-linear-height);
24132
24132
  }
24133
- }.v-radio-group > .v-input__control {
24134
- flex-direction: column;
24135
- }
24136
- .v-radio-group > .v-input__control > .v-label {
24137
- margin-inline-start: 16px;
24138
- }
24139
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24140
- padding-inline-start: 6px;
24141
- margin-top: 8px;
24142
- }
24143
- .v-radio-group .v-input__details {
24144
- padding-inline: 16px;
24145
24133
  }.v-slider .v-slider__container input {
24146
24134
  cursor: default;
24147
24135
  padding: 0;
@@ -24253,80 +24241,18 @@ html.v-overlay-scroll-blocked {
24253
24241
  opacity: 0;
24254
24242
  position: absolute;
24255
24243
  width: 0;
24256
- }.v-select .v-field .v-text-field__prefix,
24257
- .v-select .v-field .v-text-field__suffix,
24258
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
24259
- cursor: pointer;
24260
- }
24261
- .v-select .v-field .v-field__input > input {
24262
- align-self: flex-start;
24263
- opacity: 1;
24264
- flex: 0 0;
24265
- position: absolute;
24266
- width: 100%;
24267
- transition: none;
24268
- pointer-events: none;
24269
- caret-color: transparent;
24270
- }
24271
- .v-select .v-field--dirty .v-select__selection {
24272
- margin-inline-end: 2px;
24273
- }
24274
- .v-select .v-select__selection-text {
24275
- overflow: hidden;
24276
- text-overflow: ellipsis;
24277
- white-space: nowrap;
24278
- }
24279
- .v-select__content {
24280
- overflow: hidden;
24281
- 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));
24282
- border-radius: 4px;
24283
- }
24284
- .v-select__selection {
24285
- display: inline-flex;
24286
- align-items: center;
24287
- letter-spacing: inherit;
24288
- line-height: inherit;
24289
- max-width: 100%;
24290
- }
24291
- .v-select .v-select__selection:first-child {
24292
- margin-inline-start: 0;
24293
- }
24294
- .v-select--selected .v-field .v-field__input > input {
24295
- opacity: 0;
24296
- }
24297
- .v-select__menu-icon {
24298
- margin-inline-start: 4px;
24299
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24300
- }
24301
- .v-select--active-menu .v-select__menu-icon {
24302
- opacity: var(--v-high-emphasis-opacity);
24303
- transform: rotate(180deg);
24304
- }.v-responsive {
24305
- display: flex;
24306
- flex: 1 0 auto;
24307
- max-height: 100%;
24308
- max-width: 100%;
24309
- overflow: hidden;
24310
- position: relative;
24311
- }
24312
- .v-responsive--inline {
24313
- display: inline-flex;
24314
- flex: 0 0 auto;
24244
+ }.v-radio-group > .v-input__control {
24245
+ flex-direction: column;
24315
24246
  }
24316
-
24317
- .v-responsive__content {
24318
- flex: 1 0 0px;
24319
- max-width: 100%;
24247
+ .v-radio-group > .v-input__control > .v-label {
24248
+ margin-inline-start: 16px;
24320
24249
  }
24321
-
24322
- .v-responsive__sizer ~ .v-responsive__content {
24323
- margin-inline-start: -100%;
24250
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24251
+ padding-inline-start: 6px;
24252
+ margin-top: 8px;
24324
24253
  }
24325
-
24326
- .v-responsive__sizer {
24327
- flex: 1 0 0px;
24328
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24329
- pointer-events: none;
24254
+ .v-radio-group .v-input__details {
24255
+ padding-inline: 16px;
24330
24256
  }.v-selection-control {
24331
24257
  align-items: center;
24332
24258
  contain: layout;
@@ -24428,14 +24354,80 @@ html.v-overlay-scroll-blocked {
24428
24354
  }
24429
24355
  .v-selection-control--focus-visible .v-selection-control__input::before {
24430
24356
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24431
- }.v-selection-control-group {
24432
- grid-area: control;
24357
+ }.v-responsive {
24433
24358
  display: flex;
24434
- flex-direction: column;
24359
+ flex: 1 0 auto;
24360
+ max-height: 100%;
24361
+ max-width: 100%;
24362
+ overflow: hidden;
24363
+ position: relative;
24435
24364
  }
24436
- .v-selection-control-group--inline {
24437
- flex-direction: row;
24438
- flex-wrap: wrap;
24365
+ .v-responsive--inline {
24366
+ display: inline-flex;
24367
+ flex: 0 0 auto;
24368
+ }
24369
+
24370
+ .v-responsive__content {
24371
+ flex: 1 0 0px;
24372
+ max-width: 100%;
24373
+ }
24374
+
24375
+ .v-responsive__sizer ~ .v-responsive__content {
24376
+ margin-inline-start: -100%;
24377
+ }
24378
+
24379
+ .v-responsive__sizer {
24380
+ flex: 1 0 0px;
24381
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24382
+ pointer-events: none;
24383
+ }.v-select .v-field .v-text-field__prefix,
24384
+ .v-select .v-field .v-text-field__suffix,
24385
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
24386
+ cursor: pointer;
24387
+ }
24388
+ .v-select .v-field .v-field__input > input {
24389
+ align-self: flex-start;
24390
+ opacity: 1;
24391
+ flex: 0 0;
24392
+ position: absolute;
24393
+ width: 100%;
24394
+ transition: none;
24395
+ pointer-events: none;
24396
+ caret-color: transparent;
24397
+ }
24398
+ .v-select .v-field--dirty .v-select__selection {
24399
+ margin-inline-end: 2px;
24400
+ }
24401
+ .v-select .v-select__selection-text {
24402
+ overflow: hidden;
24403
+ text-overflow: ellipsis;
24404
+ white-space: nowrap;
24405
+ }
24406
+ .v-select__content {
24407
+ overflow: hidden;
24408
+ 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));
24409
+ border-radius: 4px;
24410
+ }
24411
+ .v-select__selection {
24412
+ display: inline-flex;
24413
+ align-items: center;
24414
+ letter-spacing: inherit;
24415
+ line-height: inherit;
24416
+ max-width: 100%;
24417
+ }
24418
+ .v-select .v-select__selection:first-child {
24419
+ margin-inline-start: 0;
24420
+ }
24421
+ .v-select--selected .v-field .v-field__input > input {
24422
+ opacity: 0;
24423
+ }
24424
+ .v-select__menu-icon {
24425
+ margin-inline-start: 4px;
24426
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24427
+ }
24428
+ .v-select--active-menu .v-select__menu-icon {
24429
+ opacity: var(--v-high-emphasis-opacity);
24430
+ transform: rotate(180deg);
24439
24431
  }.v-skeleton-loader {
24440
24432
  align-items: center;
24441
24433
  background: rgb(var(--v-theme-surface));
@@ -24659,6 +24651,14 @@ html.v-overlay-scroll-blocked {
24659
24651
  100% {
24660
24652
  transform: translateX(100%);
24661
24653
  }
24654
+ }.v-selection-control-group {
24655
+ grid-area: control;
24656
+ display: flex;
24657
+ flex-direction: column;
24658
+ }
24659
+ .v-selection-control-group--inline {
24660
+ flex-direction: row;
24661
+ flex-wrap: wrap;
24662
24662
  }.v-sheet {
24663
24663
  display: block;
24664
24664
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -24749,7 +24749,7 @@ html.v-overlay-scroll-blocked {
24749
24749
  margin-inline-end: calc(8px + var(--v-scrollbar-offset));
24750
24750
  padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
24751
24751
  }
24752
- .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
24752
+ .v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
24753
24753
  align-items: flex-end;
24754
24754
  }
24755
24755
  .v-snackbar__wrapper {
@@ -24994,6 +24994,9 @@ html.v-overlay-scroll-blocked {
24994
24994
  font-size: 0.75rem;
24995
24995
  margin-inline-end: 8px;
24996
24996
  }
24997
+ .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
24998
+ margin-inline-end: 0;
24999
+ }
24997
25000
  .v-stepper-item__avatar.v-avatar .v-icon {
24998
25001
  font-size: 0.875rem;
24999
25002
  }
@@ -25024,66 +25027,25 @@ html.v-overlay-scroll-blocked {
25024
25027
  .v-stepper--alt-labels .v-stepper-item__subtitle {
25025
25028
  text-align: center;
25026
25029
  }
25027
- .v-stepper--mobile .v-stepper-item__subtitle {
25028
- display: none;
25029
- }
25030
-
25031
- .v-stepper-item__overlay {
25032
- background-color: currentColor;
25033
- border-radius: inherit;
25034
- opacity: 0;
25035
- transition: opacity 0.2s ease-in-out;
25036
- }
25037
-
25038
- .v-stepper-item__overlay,
25039
- .v-stepper-item__underlay {
25040
- position: absolute;
25041
- top: 0;
25042
- left: 0;
25043
- width: 100%;
25044
- height: 100%;
25045
- pointer-events: none;
25046
- }.v-speed-dial__content {
25047
- gap: 8px;
25048
- }
25049
- .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 {
25050
- flex-direction: row;
25051
- }
25052
- .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 {
25053
- flex-direction: row-reverse;
25054
- }
25055
- .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 {
25056
- flex-direction: column-reverse;
25057
- }
25058
- .v-speed-dial__content > *:nth-child(1) {
25059
- transition-delay: 0s;
25060
- }
25061
- .v-speed-dial__content > *:nth-child(2) {
25062
- transition-delay: 0.05s;
25063
- }
25064
- .v-speed-dial__content > *:nth-child(3) {
25065
- transition-delay: 0.1s;
25066
- }
25067
- .v-speed-dial__content > *:nth-child(4) {
25068
- transition-delay: 0.15s;
25069
- }
25070
- .v-speed-dial__content > *:nth-child(5) {
25071
- transition-delay: 0.2s;
25072
- }
25073
- .v-speed-dial__content > *:nth-child(6) {
25074
- transition-delay: 0.25s;
25075
- }
25076
- .v-speed-dial__content > *:nth-child(7) {
25077
- transition-delay: 0.3s;
25078
- }
25079
- .v-speed-dial__content > *:nth-child(8) {
25080
- transition-delay: 0.35s;
25030
+ .v-stepper--mobile .v-stepper-item__subtitle {
25031
+ display: none;
25081
25032
  }
25082
- .v-speed-dial__content > *:nth-child(9) {
25083
- transition-delay: 0.4s;
25033
+
25034
+ .v-stepper-item__overlay {
25035
+ background-color: currentColor;
25036
+ border-radius: inherit;
25037
+ opacity: 0;
25038
+ transition: opacity 0.2s ease-in-out;
25084
25039
  }
25085
- .v-speed-dial__content > *:nth-child(10) {
25086
- transition-delay: 0.45s;
25040
+
25041
+ .v-stepper-item__overlay,
25042
+ .v-stepper-item__underlay {
25043
+ position: absolute;
25044
+ top: 0;
25045
+ left: 0;
25046
+ width: 100%;
25047
+ height: 100%;
25048
+ pointer-events: none;
25087
25049
  }.v-switch .v-label {
25088
25050
  padding-inline-start: 10px;
25089
25051
  }
@@ -25154,116 +25116,361 @@ html.v-overlay-scroll-blocked {
25154
25116
  position: relative;
25155
25117
  overflow: hidden;
25156
25118
  }
25157
- .v-switch:not(.v-switch--inset) .v-switch__thumb {
25158
- 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));
25119
+ .v-switch:not(.v-switch--inset) .v-switch__thumb {
25120
+ 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));
25121
+ }
25122
+ .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
25123
+ background: rgb(var(--v-theme-surface-variant));
25124
+ color: rgb(var(--v-theme-on-surface-variant));
25125
+ 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));
25126
+ }
25127
+ .v-switch--inset .v-switch__thumb {
25128
+ height: 24px;
25129
+ width: 24px;
25130
+ transform: scale(0.6666666667);
25131
+ }
25132
+ .v-switch--inset .v-switch__thumb--filled {
25133
+ transform: none;
25134
+ }
25135
+ .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
25136
+ transform: none;
25137
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
25138
+ }
25139
+
25140
+ .v-switch.v-input {
25141
+ flex: 0 1 auto;
25142
+ }
25143
+ .v-switch .v-selection-control {
25144
+ min-height: var(--v-input-control-height);
25145
+ }
25146
+ .v-switch .v-selection-control__input {
25147
+ border-radius: 50%;
25148
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
25149
+ position: absolute;
25150
+ }
25151
+ .v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
25152
+ transform: translateX(-10px);
25153
+ }
25154
+
25155
+ .v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
25156
+ transform: translateX(10px);
25157
+ }
25158
+
25159
+ .v-switch .v-selection-control__input .v-icon {
25160
+ position: absolute;
25161
+ }
25162
+ .v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
25163
+ transform: translateX(10px);
25164
+ }
25165
+
25166
+ .v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
25167
+ transform: translateX(-10px);
25168
+ }
25169
+
25170
+ .v-switch.v-switch--indeterminate .v-selection-control__input {
25171
+ transform: scale(0.8);
25172
+ }
25173
+ .v-switch.v-switch--indeterminate .v-switch__thumb {
25174
+ transform: scale(0.75);
25175
+ box-shadow: none;
25176
+ }
25177
+ .v-switch.v-switch--inset .v-selection-control__wrapper {
25178
+ width: auto;
25179
+ }
25180
+ .v-switch.v-input--vertical .v-label {
25181
+ min-width: max-content;
25182
+ }
25183
+ .v-switch.v-input--vertical .v-selection-control__wrapper {
25184
+ transform: rotate(-90deg);
25185
+ }
25186
+
25187
+ @media (forced-colors: active) {
25188
+ .v-switch .v-switch__loader .v-progress-circular {
25189
+ color: currentColor;
25190
+ }
25191
+ .v-switch .v-switch__thumb {
25192
+ background-color: buttontext;
25193
+ }
25194
+ .v-switch .v-switch__track,
25195
+ .v-switch .v-switch__thumb {
25196
+ border: 1px solid;
25197
+ color: buttontext;
25198
+ }
25199
+ .v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25200
+ background-color: highlight;
25201
+ }
25202
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
25203
+ background-color: highlight;
25204
+ }
25205
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
25206
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25207
+ color: highlight;
25208
+ }
25209
+ .v-switch.v-switch--inset .v-switch__track {
25210
+ border-width: 2px;
25211
+ }
25212
+ .v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25213
+ background-color: highlighttext;
25214
+ color: highlighttext;
25215
+ }
25216
+ .v-switch.v-input--disabled .v-switch__thumb {
25217
+ background-color: graytext;
25218
+ }
25219
+ .v-switch.v-input--disabled .v-switch__track,
25220
+ .v-switch.v-input--disabled .v-switch__thumb {
25221
+ color: graytext;
25222
+ }
25223
+ .v-switch.v-switch--loading .v-switch__thumb {
25224
+ background-color: canvas;
25225
+ }
25226
+ .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25227
+ border-width: 0;
25228
+ }
25229
+ }.v-system-bar {
25230
+ align-items: center;
25231
+ display: flex;
25232
+ flex: 1 1 auto;
25233
+ height: 24px;
25234
+ justify-content: flex-end;
25235
+ max-width: 100%;
25236
+ padding-inline: 8px;
25237
+ position: relative;
25238
+ text-align: end;
25239
+ width: 100%;
25240
+ 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));
25241
+ background: rgba(var(--v-theme-surface-light));
25242
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25243
+ font-size: 0.75rem;
25244
+ font-weight: 400;
25245
+ letter-spacing: 0.0333333333em;
25246
+ line-height: 1.667;
25247
+ text-transform: none;
25248
+ }
25249
+ .v-system-bar .v-icon {
25250
+ opacity: var(--v-medium-emphasis-opacity);
25251
+ }
25252
+ .v-system-bar--absolute {
25253
+ position: absolute;
25254
+ }
25255
+ .v-system-bar--fixed {
25256
+ position: fixed;
25257
+ }
25258
+ .v-system-bar--rounded {
25259
+ border-radius: 0;
25260
+ }
25261
+ .v-system-bar--window {
25262
+ height: 32px;
25263
+ }
25264
+ .v-system-bar:not(.v-system-bar--absolute) {
25265
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25266
+ }.v-speed-dial__content {
25267
+ gap: 8px;
25268
+ }
25269
+ .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 {
25270
+ flex-direction: row;
25271
+ }
25272
+ .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 {
25273
+ flex-direction: row-reverse;
25274
+ }
25275
+ .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 {
25276
+ flex-direction: column-reverse;
25277
+ }
25278
+ .v-speed-dial__content > *:nth-child(1) {
25279
+ transition-delay: 0s;
25280
+ }
25281
+ .v-speed-dial__content > *:nth-child(2) {
25282
+ transition-delay: 0.05s;
25283
+ }
25284
+ .v-speed-dial__content > *:nth-child(3) {
25285
+ transition-delay: 0.1s;
25286
+ }
25287
+ .v-speed-dial__content > *:nth-child(4) {
25288
+ transition-delay: 0.15s;
25289
+ }
25290
+ .v-speed-dial__content > *:nth-child(5) {
25291
+ transition-delay: 0.2s;
25292
+ }
25293
+ .v-speed-dial__content > *:nth-child(6) {
25294
+ transition-delay: 0.25s;
25295
+ }
25296
+ .v-speed-dial__content > *:nth-child(7) {
25297
+ transition-delay: 0.3s;
25298
+ }
25299
+ .v-speed-dial__content > *:nth-child(8) {
25300
+ transition-delay: 0.35s;
25301
+ }
25302
+ .v-speed-dial__content > *:nth-child(9) {
25303
+ transition-delay: 0.4s;
25304
+ }
25305
+ .v-speed-dial__content > *:nth-child(10) {
25306
+ transition-delay: 0.45s;
25307
+ }.v-table {
25308
+ background: rgb(var(--v-theme-surface));
25309
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25310
+ font-size: 0.875rem;
25311
+ transition-duration: 0.28s;
25312
+ transition-property: box-shadow, opacity, background, height;
25313
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25314
+ }
25315
+ .v-table .v-table-divider {
25316
+ border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25317
+ }
25318
+ .v-table .v-table__wrapper > table > thead > tr > th {
25319
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25320
+ }
25321
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25322
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25323
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25324
+ }
25325
+ .v-table .v-table__wrapper > table > tfoot > tr > td,
25326
+ .v-table .v-table__wrapper > table > tfoot > tr > th {
25327
+ border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25328
+ }
25329
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25330
+ position: relative;
25331
+ }
25332
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25333
+ content: "";
25334
+ position: absolute;
25335
+ top: 0;
25336
+ left: 0;
25337
+ width: 100%;
25338
+ height: 100%;
25339
+ background: rgba(var(--v-border-color), var(--v-hover-opacity));
25340
+ pointer-events: none;
25341
+ }
25342
+ .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25343
+ background: rgb(var(--v-theme-surface));
25344
+ box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25345
+ z-index: 1;
25346
+ }
25347
+ .v-table.v-table--fixed-footer > tfoot > tr > th,
25348
+ .v-table.v-table--fixed-footer > tfoot > tr > td {
25349
+ background: rgb(var(--v-theme-surface));
25350
+ box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25351
+ }
25352
+
25353
+ .v-table {
25354
+ border-radius: inherit;
25355
+ line-height: 1.5;
25356
+ max-width: 100%;
25357
+ display: flex;
25358
+ flex-direction: column;
25359
+ }
25360
+ .v-table > .v-table__wrapper > table {
25361
+ width: 100%;
25362
+ border-spacing: 0;
25159
25363
  }
25160
- .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
25161
- background: rgb(var(--v-theme-surface-variant));
25162
- color: rgb(var(--v-theme-on-surface-variant));
25163
- 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));
25364
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25365
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25366
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25367
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25368
+ .v-table > .v-table__wrapper > table > tfoot > tr > td,
25369
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25370
+ padding: 0 16px;
25371
+ transition-duration: 0.28s;
25372
+ transition-property: box-shadow, opacity, background, height;
25373
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25164
25374
  }
25165
- .v-switch--inset .v-switch__thumb {
25166
- height: 24px;
25167
- width: 24px;
25168
- transform: scale(0.6666666667);
25375
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25376
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25377
+ .v-table > .v-table__wrapper > table > tfoot > tr > td {
25378
+ height: var(--v-table-row-height);
25169
25379
  }
25170
- .v-switch--inset .v-switch__thumb--filled {
25171
- transform: none;
25380
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25381
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25382
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25383
+ height: var(--v-table-header-height);
25384
+ font-weight: 500;
25385
+ -webkit-user-select: none;
25386
+ user-select: none;
25387
+ text-align: start;
25172
25388
  }
25173
- .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
25174
- transform: none;
25175
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
25389
+ .v-table--density-default {
25390
+ --v-table-header-height: 56px;
25391
+ --v-table-row-height: 52px;
25176
25392
  }
25177
25393
 
25178
- .v-switch.v-input {
25179
- flex: 0 1 auto;
25180
- }
25181
- .v-switch .v-selection-control {
25182
- min-height: var(--v-input-control-height);
25394
+ .v-table--density-comfortable {
25395
+ --v-table-header-height: 48px;
25396
+ --v-table-row-height: 44px;
25183
25397
  }
25184
- .v-switch .v-selection-control__input {
25185
- border-radius: 50%;
25186
- transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
25187
- position: absolute;
25398
+
25399
+ .v-table--density-compact {
25400
+ --v-table-header-height: 40px;
25401
+ --v-table-row-height: 36px;
25188
25402
  }
25189
- .v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
25190
- transform: translateX(-10px);
25403
+
25404
+ .v-table__wrapper {
25405
+ border-radius: inherit;
25406
+ overflow: auto;
25407
+ flex: 1 1 auto;
25191
25408
  }
25192
25409
 
25193
- .v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
25194
- transform: translateX(10px);
25410
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25411
+ border-top-left-radius: 0;
25412
+ }
25413
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25414
+ border-top-right-radius: 0;
25195
25415
  }
25196
25416
 
25197
- .v-switch .v-selection-control__input .v-icon {
25198
- position: absolute;
25417
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25418
+ border-bottom-left-radius: 0;
25199
25419
  }
25200
- .v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
25201
- transform: translateX(10px);
25420
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25421
+ border-bottom-right-radius: 0;
25202
25422
  }
25203
25423
 
25204
- .v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
25205
- transform: translateX(-10px);
25424
+ .v-table--fixed-height > .v-table__wrapper {
25425
+ overflow-y: auto;
25206
25426
  }
25207
25427
 
25208
- .v-switch.v-switch--indeterminate .v-selection-control__input {
25209
- transform: scale(0.8);
25428
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25429
+ position: sticky;
25430
+ top: 0;
25431
+ z-index: 2;
25210
25432
  }
25211
- .v-switch.v-switch--indeterminate .v-switch__thumb {
25212
- transform: scale(0.75);
25213
- box-shadow: none;
25433
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25434
+ border-bottom: 0px !important;
25214
25435
  }
25215
- .v-switch.v-switch--inset .v-selection-control__wrapper {
25216
- width: auto;
25436
+
25437
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25438
+ position: sticky;
25439
+ bottom: 0;
25440
+ z-index: 1;
25217
25441
  }
25218
- .v-switch.v-input--vertical .v-label {
25219
- min-width: max-content;
25442
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25443
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25444
+ border-top: 0px !important;
25445
+ }.v-tab.v-tab.v-btn {
25446
+ height: var(--v-tabs-height);
25447
+ border-radius: 0;
25448
+ min-width: 90px;
25220
25449
  }
25221
- .v-switch.v-input--vertical .v-selection-control__wrapper {
25222
- transform: rotate(-90deg);
25450
+ .v-slide-group--horizontal .v-tab {
25451
+ max-width: 360px;
25452
+ }
25453
+ .v-slide-group--vertical .v-tab {
25454
+ justify-content: start;
25223
25455
  }
25224
25456
 
25225
- @media (forced-colors: active) {
25226
- .v-switch .v-switch__loader .v-progress-circular {
25227
- color: currentColor;
25228
- }
25229
- .v-switch .v-switch__thumb {
25230
- background-color: buttontext;
25231
- }
25232
- .v-switch .v-switch__track,
25233
- .v-switch .v-switch__thumb {
25234
- border: 1px solid;
25235
- color: buttontext;
25236
- }
25237
- .v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25238
- background-color: highlight;
25239
- }
25240
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
25241
- background-color: highlight;
25242
- }
25243
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
25244
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25245
- color: highlight;
25246
- }
25247
- .v-switch.v-switch--inset .v-switch__track {
25248
- border-width: 2px;
25249
- }
25250
- .v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25251
- background-color: highlighttext;
25252
- color: highlighttext;
25253
- }
25254
- .v-switch.v-input--disabled .v-switch__thumb {
25255
- background-color: graytext;
25256
- }
25257
- .v-switch.v-input--disabled .v-switch__track,
25258
- .v-switch.v-input--disabled .v-switch__thumb {
25259
- color: graytext;
25260
- }
25261
- .v-switch.v-switch--loading .v-switch__thumb {
25262
- background-color: canvas;
25263
- }
25264
- .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25265
- border-width: 0;
25266
- }
25457
+ .v-tab__slider {
25458
+ position: absolute;
25459
+ bottom: 0;
25460
+ left: 0;
25461
+ height: 2px;
25462
+ width: 100%;
25463
+ background: currentColor;
25464
+ pointer-events: none;
25465
+ opacity: 0;
25466
+ }
25467
+ .v-tab--selected .v-tab__slider {
25468
+ opacity: 1;
25469
+ }
25470
+ .v-slide-group--vertical .v-tab__slider {
25471
+ top: 0;
25472
+ height: 100%;
25473
+ width: 2px;
25267
25474
  }.v-tabs {
25268
25475
  display: flex;
25269
25476
  height: var(--v-tabs-height);
@@ -25288,114 +25495,48 @@ html.v-overlay-scroll-blocked {
25288
25495
  .v-tabs--density-compact.v-tabs--stacked {
25289
25496
  --v-tabs-height: 60px;
25290
25497
  }
25291
-
25292
- .v-tabs.v-slide-group--vertical {
25293
- height: auto;
25294
- flex: none;
25295
- --v-tabs-height: 48px;
25296
- }
25297
-
25298
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25299
- margin-inline-start: 42px;
25300
- }
25301
-
25302
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25303
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25304
- margin-inline-end: auto;
25305
- }
25306
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25307
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25308
- margin-inline-start: auto;
25309
- }
25310
-
25311
- .v-tabs--grow {
25312
- flex-grow: 1;
25313
- }
25314
- .v-tabs--grow .v-tab {
25315
- flex: 1 0 auto;
25316
- max-width: none;
25317
- }
25318
-
25319
- .v-tabs--align-tabs-end .v-tab:first-child {
25320
- margin-inline-start: auto;
25321
- }
25322
- .v-tabs--align-tabs-end .v-tab:last-child {
25323
- margin-inline-end: 0;
25324
- }
25325
-
25326
- @media (max-width: 1279.98px) {
25327
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25328
- margin-inline-start: 52px;
25329
- }
25330
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25331
- margin-inline-end: 52px;
25332
- }
25333
- }.v-system-bar {
25334
- align-items: center;
25335
- display: flex;
25336
- flex: 1 1 auto;
25337
- height: 24px;
25338
- justify-content: flex-end;
25339
- max-width: 100%;
25340
- padding-inline: 8px;
25341
- position: relative;
25342
- text-align: end;
25343
- width: 100%;
25344
- 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));
25345
- background: rgba(var(--v-theme-surface-light));
25346
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25347
- font-size: 0.75rem;
25348
- font-weight: 400;
25349
- letter-spacing: 0.0333333333em;
25350
- line-height: 1.667;
25351
- text-transform: none;
25352
- }
25353
- .v-system-bar .v-icon {
25354
- opacity: var(--v-medium-emphasis-opacity);
25355
- }
25356
- .v-system-bar--absolute {
25357
- position: absolute;
25358
- }
25359
- .v-system-bar--fixed {
25360
- position: fixed;
25361
- }
25362
- .v-system-bar--rounded {
25363
- border-radius: 0;
25498
+
25499
+ .v-tabs.v-slide-group--vertical {
25500
+ height: auto;
25501
+ flex: none;
25502
+ --v-tabs-height: 48px;
25364
25503
  }
25365
- .v-system-bar--window {
25366
- height: 32px;
25504
+
25505
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25506
+ margin-inline-start: 42px;
25367
25507
  }
25368
- .v-system-bar:not(.v-system-bar--absolute) {
25369
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25370
- }.v-tab.v-tab.v-btn {
25371
- height: var(--v-tabs-height);
25372
- border-radius: 0;
25373
- min-width: 90px;
25508
+
25509
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25510
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25511
+ margin-inline-end: auto;
25374
25512
  }
25375
- .v-slide-group--horizontal .v-tab {
25376
- max-width: 360px;
25513
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25514
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25515
+ margin-inline-start: auto;
25377
25516
  }
25378
- .v-slide-group--vertical .v-tab {
25379
- justify-content: start;
25517
+
25518
+ .v-tabs--grow {
25519
+ flex-grow: 1;
25520
+ }
25521
+ .v-tabs--grow .v-tab {
25522
+ flex: 1 0 auto;
25523
+ max-width: none;
25380
25524
  }
25381
25525
 
25382
- .v-tab__slider {
25383
- position: absolute;
25384
- bottom: 0;
25385
- left: 0;
25386
- height: 2px;
25387
- width: 100%;
25388
- background: currentColor;
25389
- pointer-events: none;
25390
- opacity: 0;
25526
+ .v-tabs--align-tabs-end .v-tab:first-child {
25527
+ margin-inline-start: auto;
25391
25528
  }
25392
- .v-tab--selected .v-tab__slider {
25393
- opacity: 1;
25529
+ .v-tabs--align-tabs-end .v-tab:last-child {
25530
+ margin-inline-end: 0;
25394
25531
  }
25395
- .v-slide-group--vertical .v-tab__slider {
25396
- top: 0;
25397
- height: 100%;
25398
- width: 2px;
25532
+
25533
+ @media (max-width: 1279.98px) {
25534
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25535
+ margin-inline-start: 52px;
25536
+ }
25537
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25538
+ margin-inline-end: 52px;
25539
+ }
25399
25540
  }.v-textarea .v-field {
25400
25541
  --v-textarea-control-height: var(--v-input-control-height);
25401
25542
  }
@@ -25502,145 +25643,7 @@ html.v-overlay-scroll-blocked {
25502
25643
  padding-inline-end: var(--v-field-padding-end);
25503
25644
  }
25504
25645
 
25505
- /* endregion */.v-table {
25506
- background: rgb(var(--v-theme-surface));
25507
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25508
- font-size: 0.875rem;
25509
- transition-duration: 0.28s;
25510
- transition-property: box-shadow, opacity, background, height;
25511
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25512
- }
25513
- .v-table .v-table-divider {
25514
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25515
- }
25516
- .v-table .v-table__wrapper > table > thead > tr > th {
25517
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25518
- }
25519
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25520
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25521
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25522
- }
25523
- .v-table .v-table__wrapper > table > tfoot > tr > td,
25524
- .v-table .v-table__wrapper > table > tfoot > tr > th {
25525
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25526
- }
25527
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25528
- position: relative;
25529
- }
25530
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25531
- content: "";
25532
- position: absolute;
25533
- top: 0;
25534
- left: 0;
25535
- width: 100%;
25536
- height: 100%;
25537
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
25538
- pointer-events: none;
25539
- }
25540
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25541
- background: rgb(var(--v-theme-surface));
25542
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25543
- z-index: 1;
25544
- }
25545
- .v-table.v-table--fixed-footer > tfoot > tr > th,
25546
- .v-table.v-table--fixed-footer > tfoot > tr > td {
25547
- background: rgb(var(--v-theme-surface));
25548
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25549
- }
25550
-
25551
- .v-table {
25552
- border-radius: inherit;
25553
- line-height: 1.5;
25554
- max-width: 100%;
25555
- display: flex;
25556
- flex-direction: column;
25557
- }
25558
- .v-table > .v-table__wrapper > table {
25559
- width: 100%;
25560
- border-spacing: 0;
25561
- }
25562
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25563
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25564
- .v-table > .v-table__wrapper > table > thead > tr > td,
25565
- .v-table > .v-table__wrapper > table > thead > tr > th,
25566
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
25567
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25568
- padding: 0 16px;
25569
- transition-duration: 0.28s;
25570
- transition-property: box-shadow, opacity, background, height;
25571
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25572
- }
25573
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25574
- .v-table > .v-table__wrapper > table > thead > tr > td,
25575
- .v-table > .v-table__wrapper > table > tfoot > tr > td {
25576
- height: var(--v-table-row-height);
25577
- }
25578
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25579
- .v-table > .v-table__wrapper > table > thead > tr > th,
25580
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25581
- height: var(--v-table-header-height);
25582
- font-weight: 500;
25583
- -webkit-user-select: none;
25584
- user-select: none;
25585
- text-align: start;
25586
- }
25587
- .v-table--density-default {
25588
- --v-table-header-height: 56px;
25589
- --v-table-row-height: 52px;
25590
- }
25591
-
25592
- .v-table--density-comfortable {
25593
- --v-table-header-height: 48px;
25594
- --v-table-row-height: 44px;
25595
- }
25596
-
25597
- .v-table--density-compact {
25598
- --v-table-header-height: 40px;
25599
- --v-table-row-height: 36px;
25600
- }
25601
-
25602
- .v-table__wrapper {
25603
- border-radius: inherit;
25604
- overflow: auto;
25605
- flex: 1 1 auto;
25606
- }
25607
-
25608
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25609
- border-top-left-radius: 0;
25610
- }
25611
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25612
- border-top-right-radius: 0;
25613
- }
25614
-
25615
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25616
- border-bottom-left-radius: 0;
25617
- }
25618
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25619
- border-bottom-right-radius: 0;
25620
- }
25621
-
25622
- .v-table--fixed-height > .v-table__wrapper {
25623
- overflow-y: auto;
25624
- }
25625
-
25626
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25627
- position: sticky;
25628
- top: 0;
25629
- z-index: 2;
25630
- }
25631
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25632
- border-bottom: 0px !important;
25633
- }
25634
-
25635
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25636
- position: sticky;
25637
- bottom: 0;
25638
- z-index: 1;
25639
- }
25640
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25641
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25642
- border-top: 0px !important;
25643
- }.v-timeline .v-timeline-divider__dot {
25646
+ /* endregion */.v-timeline .v-timeline-divider__dot {
25644
25647
  background: rgb(var(--v-theme-surface-light));
25645
25648
  }
25646
25649
  .v-timeline .v-timeline-divider__inner-dot {
@@ -26289,34 +26292,6 @@ html.v-overlay-scroll-blocked {
26289
26292
  }
26290
26293
  .v-virtual-scroll__container {
26291
26294
  display: block;
26292
- }.v-color-picker-edit {
26293
- display: flex;
26294
- margin-top: 24px;
26295
- }
26296
-
26297
- .v-color-picker-edit__input {
26298
- width: 100%;
26299
- display: flex;
26300
- flex-wrap: wrap;
26301
- justify-content: center;
26302
- text-align: center;
26303
- }
26304
- .v-color-picker-edit__input:not(:last-child) {
26305
- margin-inline-end: 8px;
26306
- }
26307
- .v-color-picker-edit__input input {
26308
- border-radius: 4px;
26309
- margin-bottom: 8px;
26310
- min-width: 0;
26311
- outline: none;
26312
- text-align: center;
26313
- width: 100%;
26314
- height: 32px;
26315
- background: rgba(var(--v-theme-surface-variant), 0.2);
26316
- color: rgba(var(--v-theme-on-surface));
26317
- }
26318
- .v-color-picker-edit__input span {
26319
- font-size: 0.75rem;
26320
26295
  }.v-color-picker-canvas {
26321
26296
  display: flex;
26322
26297
  position: relative;
@@ -26409,6 +26384,34 @@ html.v-overlay-scroll-blocked {
26409
26384
  .v-color-picker-preview__eye-dropper {
26410
26385
  position: relative;
26411
26386
  margin-right: 12px;
26387
+ }.v-color-picker-edit {
26388
+ display: flex;
26389
+ margin-top: 24px;
26390
+ }
26391
+
26392
+ .v-color-picker-edit__input {
26393
+ width: 100%;
26394
+ display: flex;
26395
+ flex-wrap: wrap;
26396
+ justify-content: center;
26397
+ text-align: center;
26398
+ }
26399
+ .v-color-picker-edit__input:not(:last-child) {
26400
+ margin-inline-end: 8px;
26401
+ }
26402
+ .v-color-picker-edit__input input {
26403
+ border-radius: 4px;
26404
+ margin-bottom: 8px;
26405
+ min-width: 0;
26406
+ outline: none;
26407
+ text-align: center;
26408
+ width: 100%;
26409
+ height: 32px;
26410
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26411
+ color: rgba(var(--v-theme-on-surface));
26412
+ }
26413
+ .v-color-picker-edit__input span {
26414
+ font-size: 0.75rem;
26412
26415
  }.v-color-picker-swatches {
26413
26416
  overflow-y: auto;
26414
26417
  }