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

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 (37) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +39 -7
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +132 -132
  5. package/dist/json/tags.json +8 -0
  6. package/dist/json/web-types.json +82 -10
  7. package/dist/vuetify-labs.css +1493 -1490
  8. package/dist/vuetify-labs.d.ts +78 -18
  9. package/dist/vuetify-labs.esm.js +21 -8
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +21 -8
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +847 -844
  14. package/dist/vuetify.d.ts +86 -56
  15. package/dist/vuetify.esm.js +21 -8
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +21 -8
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +9 -9
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VDivider/VDivider.mjs +1 -1
  23. package/lib/components/VDivider/VDivider.mjs.map +1 -1
  24. package/lib/components/VSnackbar/VSnackbar.css +1 -1
  25. package/lib/components/VSnackbar/VSnackbar.sass +1 -1
  26. package/lib/components/VStepper/VStepper.mjs +18 -4
  27. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  28. package/lib/components/VStepper/VStepperItem.css +3 -0
  29. package/lib/components/VStepper/VStepperItem.sass +3 -0
  30. package/lib/components/VStepper/index.d.mts +43 -9
  31. package/lib/components/index.d.mts +39 -9
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +47 -47
  35. package/lib/labs/VStepperVertical/index.d.mts +43 -9
  36. package/lib/labs/components.d.mts +3752 -3718
  37. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-28
2
+ * Vuetify v3.6.7-master.2024-05-29
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17456,6 +17456,44 @@ html.overflow-y-hidden {
17456
17456
  font-weight: normal;
17457
17457
  padding: 0.2em 0.4rem;
17458
17458
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17459
+ }.v-number-input input[type=number] {
17460
+ -moz-appearance: textfield;
17461
+ }
17462
+ .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
17463
+ -webkit-appearance: none;
17464
+ }
17465
+ .v-number-input .v-field {
17466
+ padding-inline-end: 0;
17467
+ padding-inline-start: 0;
17468
+ }
17469
+ .v-number-input--inset .v-divider {
17470
+ height: 55%;
17471
+ width: 55%;
17472
+ align-self: center;
17473
+ }
17474
+ .v-number-input--split .v-field__input {
17475
+ text-align: center;
17476
+ }
17477
+ .v-number-input--stacked .v-number-input__control {
17478
+ flex-direction: column-reverse;
17479
+ }
17480
+ .v-number-input--stacked .v-number-input__control .v-btn {
17481
+ flex: 1;
17482
+ }
17483
+ .v-number-input--hide-input .v-field {
17484
+ flex: none;
17485
+ }
17486
+ .v-number-input--hide-input .v-field__input {
17487
+ width: 0;
17488
+ padding-inline: 0;
17489
+ }
17490
+ .v-number-input__control {
17491
+ display: flex;
17492
+ height: 100%;
17493
+ }
17494
+ .v-number-input__control .v-btn {
17495
+ background-color: transparent;
17496
+ border-radius: 0;
17459
17497
  }.v-picker.v-sheet {
17460
17498
  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));
17461
17499
  border-radius: 4px;
@@ -17509,6 +17547,74 @@ html.overflow-y-hidden {
17509
17547
  padding-bottom: 16px;
17510
17548
  font-weight: 400;
17511
17549
  letter-spacing: 0.1666666667em;
17550
+ }.v-stepper-vertical-item {
17551
+ position: relative;
17552
+ transition-duration: 0.2s;
17553
+ transition-property: opacity;
17554
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17555
+ }
17556
+ .v-stepper-vertical-item__title {
17557
+ font-size: 1rem;
17558
+ }
17559
+ .v-stepper-vertical-item__subtitle {
17560
+ font-size: 0.75rem;
17561
+ }
17562
+ .v-stepper-vertical-item .v-expansion-panel-text {
17563
+ padding-inline-start: 32px;
17564
+ }
17565
+ .v-stepper-vertical-item:not(:last-child):before {
17566
+ content: "";
17567
+ position: absolute;
17568
+ width: 2px;
17569
+ height: calc(100% - 30px);
17570
+ background: rgba(var(--v-border-color), var(--v-border-opacity));
17571
+ left: 35px;
17572
+ top: 44px;
17573
+ z-index: 1;
17574
+ transition-duration: 300ms;
17575
+ transition-property: height;
17576
+ }
17577
+ .v-stepper-vertical-item:after {
17578
+ display: none;
17579
+ }
17580
+ .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 {
17581
+ pointer-events: none;
17582
+ }
17583
+ .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 {
17584
+ opacity: 0;
17585
+ }
17586
+
17587
+ .v-stepper-vertical-item__avatar.v-avatar {
17588
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17589
+ color: rgb(var(--v-theme-on-surface-variant));
17590
+ transition-property: background;
17591
+ }
17592
+ .v-stepper-vertical-item__avatar.v-avatar .v-icon {
17593
+ font-size: 0.875rem;
17594
+ }
17595
+ .v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
17596
+ background: rgb(var(--v-theme-surface-variant));
17597
+ }
17598
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
17599
+ background: rgb(var(--v-theme-error));
17600
+ color: rgb(var(--v-theme-on-error));
17601
+ }
17602
+
17603
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__title {
17604
+ color: rgb(var(--v-theme-error));
17605
+ }
17606
+
17607
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
17608
+ color: rgb(var(--v-theme-error));
17609
+ }
17610
+
17611
+ .v-stepper-vertical-actions.v-stepper-actions .v-btn {
17612
+ margin-inline-end: 8px;
17613
+ }
17614
+ .v-stepper .v-stepper-vertical-actions.v-stepper-actions {
17615
+ justify-content: flex-end;
17616
+ padding: 24px 0 0;
17617
+ flex-direction: row-reverse;
17512
17618
  }.v-calendar {
17513
17619
  background: rgb(var(--v-theme-background));
17514
17620
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
@@ -17736,19 +17842,6 @@ html.overflow-y-hidden {
17736
17842
  }
17737
17843
  .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
17738
17844
  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
17845
  }.v-calendar-day {
17753
17846
  position: relative;
17754
17847
  display: flex;
@@ -17823,6 +17916,11 @@ html.overflow-y-hidden {
17823
17916
  }
17824
17917
  .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17825
17918
  border-bottom: none;
17919
+ }.v-calendar-internal-event {
17920
+ overflow: hidden;
17921
+ padding: 4px;
17922
+ text-overflow: ellipsis;
17923
+ white-space: nowrap;
17826
17924
  }.v-calendar-month__day {
17827
17925
  position: relative;
17828
17926
  display: flex;
@@ -17886,49 +17984,19 @@ html.overflow-y-hidden {
17886
17984
 
17887
17985
  .v-calendar-weekly__day-alldayevents-container {
17888
17986
  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 {
17987
+ }.v-calendar-header {
17988
+ align-items: center;
17926
17989
  display: flex;
17927
- height: 100%;
17990
+ min-height: 64px;
17928
17991
  }
17929
- .v-number-input__control .v-btn {
17930
- background-color: transparent;
17931
- border-radius: 0;
17992
+
17993
+ .v-calendar-header__today {
17994
+ margin-inline-end: 24px;
17995
+ }
17996
+
17997
+ .v-calendar-header__title {
17998
+ font-size: 1.5rem;
17999
+ margin-inline-start: 24px;
17932
18000
  }.v-pull-to-refresh {
17933
18001
  overflow: hidden;
17934
18002
  position: relative;
@@ -17955,81 +18023,116 @@ html.overflow-y-hidden {
17955
18023
  }
17956
18024
  .v-pull-to-refresh__scroll-container--touching {
17957
18025
  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);
17963
- }
17964
- .v-stepper-vertical-item__title {
17965
- font-size: 1rem;
18026
+ }.v-time-picker.v-picker {
18027
+ padding: 24px;
18028
+ width: 328px;
17966
18029
  }
17967
- .v-stepper-vertical-item__subtitle {
17968
- font-size: 0.75rem;
18030
+ .v-time-picker.v-picker .v-picker-title {
18031
+ padding: 0;
18032
+ margin-bottom: 20px;
18033
+ }.v-time-picker-controls {
18034
+ display: flex;
18035
+ align-items: center;
18036
+ justify-content: center;
18037
+ font-size: 0.875rem;
18038
+ padding-top: 4px;
18039
+ padding-bottom: 4px;
18040
+ margin-bottom: 36px;
17969
18041
  }
17970
- .v-stepper-vertical-item .v-expansion-panel-text {
17971
- padding-inline-start: 32px;
18042
+ .v-time-picker-controls__text {
18043
+ padding-bottom: 12px;
17972
18044
  }
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;
18045
+ .v-time-picker-controls__time {
18046
+ display: flex;
18047
+ white-space: nowrap;
18048
+ direction: ltr;
18049
+ justify-content: center;
17984
18050
  }
17985
- .v-stepper-vertical-item:after {
17986
- display: none;
18051
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
18052
+ width: 96px;
18053
+ height: 80px;
18054
+ font-size: 56px;
17987
18055
  }
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;
18056
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
18057
+ background: rgb(var(--v-theme-primary));
17990
18058
  }
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;
18059
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
18060
+ width: 96px;
18061
+ height: 80px;
17993
18062
  }
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;
18063
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
18064
+ width: 64px;
18065
+ height: 80px;
18066
+ font-size: 40px;
17999
18067
  }
18000
- .v-stepper-vertical-item__avatar.v-avatar .v-icon {
18001
- font-size: 0.875rem;
18068
+ .v-time-picker-controls__time__separator {
18069
+ font-size: 56px;
18070
+ height: 80px;
18071
+ width: 24px;
18072
+ text-align: center;
18002
18073
  }
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));
18074
+ .v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
18075
+ height: 80px;
18076
+ font-size: 56px;
18009
18077
  }
18010
18078
 
18011
- .v-stepper-vertical-item--error .v-stepper-vertical-item__title {
18012
- color: rgb(var(--v-theme-error));
18079
+ .v-time-picker-controls__ampm {
18080
+ margin-left: 12px;
18081
+ align-self: flex-end;
18082
+ display: flex;
18083
+ flex-direction: column;
18084
+ font-size: 18px;
18085
+ text-transform: uppercase;
18013
18086
  }
18014
-
18015
- .v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
18016
- color: rgb(var(--v-theme-error));
18087
+ .v-time-picker-controls__ampm--readonly {
18088
+ pointer-events: none;
18089
+ }
18090
+ .v-time-picker-controls__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {
18091
+ opacity: 0.6;
18092
+ }
18093
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
18094
+ font-size: 18px;
18095
+ padding: 0 8px;
18096
+ min-width: 52px;
18097
+ height: 40px;
18098
+ }
18099
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__am {
18100
+ border-radius: 4px 4px 0 0;
18101
+ border: 1px solid;
18102
+ }
18103
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__pm {
18104
+ border-radius: 0 0 4px 4px;
18105
+ border: 1px solid;
18106
+ border-top: none;
18107
+ }
18108
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default__active {
18109
+ background: rgb(var(--v-theme-primary));
18017
18110
  }
18018
18111
 
18019
- .v-stepper-vertical-actions.v-stepper-actions .v-btn {
18020
- margin-inline-end: 8px;
18112
+ .v-picker__title--landscape .v-time-picker-controls {
18113
+ flex-direction: column;
18114
+ justify-content: center;
18115
+ height: 100%;
18021
18116
  }
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;
18117
+ .v-picker__title--landscape .v-time-picker-controls__time {
18118
+ text-align: right;
18029
18119
  }
18030
- .v-time-picker.v-picker .v-picker-title {
18120
+ .v-picker__title--landscape .v-time-picker-controls__time .v-picker__title__btn,
18121
+ .v-picker__title--landscape .v-time-picker-controls__time span {
18122
+ height: 55px;
18123
+ font-size: 55px;
18124
+ }
18125
+ .v-picker__title--landscape .v-time-picker-controls__ampm {
18126
+ margin: 16px 0 0;
18127
+ align-self: initial;
18128
+ text-align: center;
18129
+ }
18130
+
18131
+ .v-picker--time .v-picker__title--landscape {
18031
18132
  padding: 0;
18032
- margin-bottom: 20px;
18133
+ }
18134
+ .v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
18135
+ text-align: center;
18033
18136
  }.v-time-picker-clock {
18034
18137
  background: rgb(var(--v-theme-background));
18035
18138
  color: rgb(var(--v-theme-on-background));
@@ -18161,109 +18264,6 @@ html.overflow-y-hidden {
18161
18264
 
18162
18265
  .v-picker--landscape .v-time-picker-clock__container {
18163
18266
  flex-direction: row;
18164
- }.v-time-picker-controls {
18165
- display: flex;
18166
- align-items: center;
18167
- justify-content: center;
18168
- font-size: 0.875rem;
18169
- padding-top: 4px;
18170
- padding-bottom: 4px;
18171
- margin-bottom: 36px;
18172
- }
18173
- .v-time-picker-controls__text {
18174
- padding-bottom: 12px;
18175
- }
18176
- .v-time-picker-controls__time {
18177
- display: flex;
18178
- white-space: nowrap;
18179
- direction: ltr;
18180
- justify-content: center;
18181
- }
18182
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
18183
- width: 96px;
18184
- height: 80px;
18185
- font-size: 56px;
18186
- }
18187
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
18188
- background: rgb(var(--v-theme-primary));
18189
- }
18190
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
18191
- width: 96px;
18192
- height: 80px;
18193
- }
18194
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
18195
- width: 64px;
18196
- height: 80px;
18197
- font-size: 40px;
18198
- }
18199
- .v-time-picker-controls__time__separator {
18200
- font-size: 56px;
18201
- height: 80px;
18202
- width: 24px;
18203
- text-align: center;
18204
- }
18205
- .v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
18206
- height: 80px;
18207
- font-size: 56px;
18208
- }
18209
-
18210
- .v-time-picker-controls__ampm {
18211
- margin-left: 12px;
18212
- align-self: flex-end;
18213
- display: flex;
18214
- flex-direction: column;
18215
- font-size: 18px;
18216
- text-transform: uppercase;
18217
- }
18218
- .v-time-picker-controls__ampm--readonly {
18219
- pointer-events: none;
18220
- }
18221
- .v-time-picker-controls__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {
18222
- opacity: 0.6;
18223
- }
18224
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
18225
- font-size: 18px;
18226
- padding: 0 8px;
18227
- min-width: 52px;
18228
- height: 40px;
18229
- }
18230
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__am {
18231
- border-radius: 4px 4px 0 0;
18232
- border: 1px solid;
18233
- }
18234
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__pm {
18235
- border-radius: 0 0 4px 4px;
18236
- border: 1px solid;
18237
- border-top: none;
18238
- }
18239
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default__active {
18240
- background: rgb(var(--v-theme-primary));
18241
- }
18242
-
18243
- .v-picker__title--landscape .v-time-picker-controls {
18244
- flex-direction: column;
18245
- justify-content: center;
18246
- height: 100%;
18247
- }
18248
- .v-picker__title--landscape .v-time-picker-controls__time {
18249
- text-align: right;
18250
- }
18251
- .v-picker__title--landscape .v-time-picker-controls__time .v-picker__title__btn,
18252
- .v-picker__title--landscape .v-time-picker-controls__time span {
18253
- height: 55px;
18254
- font-size: 55px;
18255
- }
18256
- .v-picker__title--landscape .v-time-picker-controls__ampm {
18257
- margin: 16px 0 0;
18258
- align-self: initial;
18259
- text-align: center;
18260
- }
18261
-
18262
- .v-picker--time .v-picker__title--landscape {
18263
- padding: 0;
18264
- }
18265
- .v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
18266
- text-align: center;
18267
18267
  }.v-treeview-item--filtered {
18268
18268
  display: none;
18269
18269
  }
@@ -18308,38 +18308,6 @@ html.overflow-y-hidden {
18308
18308
  min-height: 100vh;
18309
18309
  min-height: 100dvh;
18310
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
18311
  }.v-alert {
18344
18312
  display: grid;
18345
18313
  flex: 1 1;
@@ -18552,6 +18520,38 @@ html.overflow-y-hidden {
18552
18520
  text-transform: none;
18553
18521
  word-break: normal;
18554
18522
  word-wrap: break-word;
18523
+ }.bottom-sheet-transition-enter-from {
18524
+ transform: translateY(100%);
18525
+ }
18526
+ .bottom-sheet-transition-leave-to {
18527
+ transform: translateY(100%);
18528
+ }
18529
+
18530
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18531
+ align-self: flex-end;
18532
+ border-radius: 0;
18533
+ flex: 0 1 auto;
18534
+ left: 0;
18535
+ right: 0;
18536
+ margin-inline: 0;
18537
+ margin-bottom: 0;
18538
+ transition-duration: 0.2s;
18539
+ width: 100%;
18540
+ max-width: 100%;
18541
+ overflow: visible;
18542
+ 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));
18543
+ }
18544
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18545
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18546
+ border-radius: 0;
18547
+ }
18548
+ .v-bottom-sheet.v-bottom-sheet--inset {
18549
+ max-width: none;
18550
+ }
18551
+ @media (min-width: 600px) {
18552
+ .v-bottom-sheet.v-bottom-sheet--inset {
18553
+ max-width: 70%;
18554
+ }
18555
18555
  }.v-autocomplete .v-field .v-text-field__prefix,
18556
18556
  .v-autocomplete .v-field .v-text-field__suffix,
18557
18557
  .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
@@ -18728,24 +18728,152 @@ html.overflow-y-hidden {
18728
18728
  .v-avatar .v-img {
18729
18729
  height: 100%;
18730
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));
18731
+ }.v-badge {
18732
+ display: inline-block;
18733
+ line-height: 1;
18734
+ }
18735
+
18736
+ .v-badge__badge {
18737
+ align-items: center;
18738
+ display: inline-flex;
18739
+ border-radius: 10px;
18740
+ font-size: 0.75rem;
18741
+ font-weight: 500;
18742
+ height: 1.25rem;
18743
+ justify-content: center;
18744
+ min-width: 20px;
18745
+ padding: 4px 6px;
18746
+ pointer-events: auto;
18747
+ position: absolute;
18748
+ text-align: center;
18749
+ text-indent: 0;
18750
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18751
+ white-space: nowrap;
18752
+ background: rgb(var(--v-theme-surface-variant));
18753
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18754
+ }
18755
+ .v-badge--bordered .v-badge__badge::after {
18756
+ border-radius: inherit;
18757
+ border-style: solid;
18758
+ border-width: 2px;
18759
+ bottom: 0;
18760
+ color: rgb(var(--v-theme-background));
18761
+ content: "";
18762
+ left: 0;
18763
+ position: absolute;
18764
+ right: 0;
18765
+ top: 0;
18766
+ transform: scale(1.05);
18767
+ }
18768
+ .v-badge--dot .v-badge__badge {
18769
+ border-radius: 4.5px;
18770
+ height: 9px;
18771
+ min-width: 0;
18772
+ padding: 0;
18773
+ width: 9px;
18774
+ }
18775
+ .v-badge--dot .v-badge__badge::after {
18776
+ border-width: 1.5px;
18777
+ }
18778
+ .v-badge--inline .v-badge__badge {
18779
+ position: relative;
18780
+ vertical-align: middle;
18781
+ }
18782
+ .v-badge__badge .v-icon {
18783
+ color: inherit;
18784
+ font-size: 0.75rem;
18785
+ margin: 0 -2px;
18786
+ }
18787
+ .v-badge__badge img,
18788
+ .v-badge__badge .v-img {
18789
+ height: 100%;
18790
+ width: 100%;
18791
+ }
18792
+
18793
+ .v-badge__wrapper {
18794
+ display: flex;
18795
+ position: relative;
18796
+ }
18797
+ .v-badge--inline .v-badge__wrapper {
18798
+ align-items: center;
18799
+ display: inline-flex;
18800
+ justify-content: center;
18801
+ margin: 0 4px;
18802
+ }.v-breadcrumbs {
18803
+ display: flex;
18804
+ align-items: center;
18805
+ line-height: 1.6;
18806
+ padding: 16px 12px;
18807
+ }
18808
+ .v-breadcrumbs--rounded {
18809
+ border-radius: 4px;
18810
+ }
18811
+ .v-breadcrumbs--density-default {
18812
+ padding-top: 16px;
18813
+ padding-bottom: 16px;
18814
+ }
18815
+
18816
+ .v-breadcrumbs--density-comfortable {
18817
+ padding-top: 12px;
18818
+ padding-bottom: 12px;
18819
+ }
18820
+
18821
+ .v-breadcrumbs--density-compact {
18822
+ padding-top: 8px;
18823
+ padding-bottom: 8px;
18824
+ }
18825
+
18826
+ .v-breadcrumbs__prepend {
18827
+ align-items: center;
18828
+ display: inline-flex;
18829
+ }
18830
+
18831
+ .v-breadcrumbs-item {
18832
+ align-items: center;
18833
+ color: inherit;
18834
+ display: inline-flex;
18835
+ padding: 0 4px;
18836
+ text-decoration: none;
18837
+ vertical-align: middle;
18838
+ }
18839
+ .v-breadcrumbs-item--disabled {
18840
+ opacity: var(--v-disabled-opacity);
18841
+ pointer-events: none;
18842
+ }
18843
+ .v-breadcrumbs-item--link {
18844
+ color: inherit;
18845
+ text-decoration: none;
18846
+ }
18847
+ .v-breadcrumbs-item--link:hover {
18848
+ text-decoration: underline;
18849
+ }
18850
+ .v-breadcrumbs-item .v-icon {
18851
+ font-size: 1rem;
18852
+ margin-inline: -4px 2px;
18853
+ }
18854
+
18855
+ .v-breadcrumbs-divider {
18856
+ display: inline-block;
18857
+ padding: 0 8px;
18858
+ vertical-align: middle;
18859
+ }.v-banner {
18860
+ display: grid;
18861
+ flex: 1 1;
18862
+ font-size: 0.875rem;
18863
+ grid-template-areas: "prepend content actions";
18864
+ grid-template-columns: max-content auto max-content;
18865
+ grid-template-rows: max-content max-content;
18866
+ line-height: 1.6;
18867
+ overflow: hidden;
18868
+ padding-inline: 16px 8px;
18869
+ padding-top: 16px;
18870
+ padding-bottom: 16px;
18871
+ position: relative;
18872
+ width: 100%;
18873
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18874
+ border-style: solid;
18875
+ border-width: 0 0 thin 0;
18876
+ 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
18877
  border-radius: 0;
18750
18878
  background: rgb(var(--v-theme-surface));
18751
18879
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -18885,77 +19013,19 @@ html.overflow-y-hidden {
18885
19013
  }
18886
19014
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18887
19015
  align-self: flex-start;
18888
- }.v-badge {
18889
- display: inline-block;
18890
- line-height: 1;
18891
- }
18892
-
18893
- .v-badge__badge {
18894
- align-items: center;
18895
- display: inline-flex;
18896
- border-radius: 10px;
18897
- font-size: 0.75rem;
18898
- font-weight: 500;
18899
- height: 1.25rem;
18900
- justify-content: center;
18901
- min-width: 20px;
18902
- padding: 4px 6px;
18903
- pointer-events: auto;
18904
- position: absolute;
18905
- 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));
18911
- }
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);
18924
- }
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;
18931
- }
18932
- .v-badge--dot .v-badge__badge::after {
18933
- border-width: 1.5px;
18934
- }
18935
- .v-badge--inline .v-badge__badge {
18936
- position: relative;
18937
- vertical-align: middle;
18938
- }
18939
- .v-badge__badge .v-icon {
18940
- color: inherit;
18941
- font-size: 0.75rem;
18942
- margin: 0 -2px;
19016
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19017
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18943
19018
  }
18944
- .v-badge__badge img,
18945
- .v-badge__badge .v-img {
18946
- height: 100%;
18947
- width: 100%;
19019
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19020
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18948
19021
  }
18949
-
18950
- .v-badge__wrapper {
18951
- display: flex;
18952
- position: relative;
19022
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19023
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18953
19024
  }
18954
- .v-badge--inline .v-badge__wrapper {
18955
- align-items: center;
18956
- display: inline-flex;
18957
- justify-content: center;
18958
- margin: 0 4px;
19025
+ @supports not selector(:focus-visible) {
19026
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19027
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19028
+ }
18959
19029
  }.v-bottom-navigation {
18960
19030
  display: flex;
18961
19031
  max-width: 100%;
@@ -19429,82 +19499,25 @@ html.overflow-y-hidden {
19429
19499
  }
19430
19500
  .v-pagination__item--is-active .v-btn__overlay {
19431
19501
  opacity: var(--v-border-opacity);
19432
- }.v-breadcrumbs {
19433
- display: flex;
19434
- align-items: center;
19435
- line-height: 1.6;
19436
- padding: 16px 12px;
19437
- }
19438
- .v-breadcrumbs--rounded {
19502
+ }.v-card {
19503
+ display: block;
19504
+ overflow: hidden;
19505
+ overflow-wrap: break-word;
19506
+ position: relative;
19507
+ padding: 0;
19508
+ text-decoration: none;
19509
+ transition-duration: 0.28s;
19510
+ transition-property: box-shadow, opacity, background;
19511
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19512
+ z-index: 0;
19513
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19514
+ border-style: solid;
19515
+ border-width: 0;
19439
19516
  border-radius: 4px;
19440
19517
  }
19441
- .v-breadcrumbs--density-default {
19442
- padding-top: 16px;
19443
- padding-bottom: 16px;
19444
- }
19445
-
19446
- .v-breadcrumbs--density-comfortable {
19447
- padding-top: 12px;
19448
- padding-bottom: 12px;
19449
- }
19450
-
19451
- .v-breadcrumbs--density-compact {
19452
- padding-top: 8px;
19453
- padding-bottom: 8px;
19454
- }
19455
-
19456
- .v-breadcrumbs__prepend {
19457
- align-items: center;
19458
- display: inline-flex;
19459
- }
19460
-
19461
- .v-breadcrumbs-item {
19462
- align-items: center;
19463
- color: inherit;
19464
- display: inline-flex;
19465
- padding: 0 4px;
19466
- text-decoration: none;
19467
- vertical-align: middle;
19468
- }
19469
- .v-breadcrumbs-item--disabled {
19470
- opacity: var(--v-disabled-opacity);
19471
- pointer-events: none;
19472
- }
19473
- .v-breadcrumbs-item--link {
19474
- color: inherit;
19475
- text-decoration: none;
19476
- }
19477
- .v-breadcrumbs-item--link:hover {
19478
- text-decoration: underline;
19479
- }
19480
- .v-breadcrumbs-item .v-icon {
19481
- font-size: 1rem;
19482
- margin-inline: -4px 2px;
19483
- }
19484
-
19485
- .v-breadcrumbs-divider {
19486
- display: inline-block;
19487
- padding: 0 8px;
19488
- vertical-align: middle;
19489
- }.v-card {
19490
- display: block;
19491
- overflow: hidden;
19492
- overflow-wrap: break-word;
19493
- position: relative;
19494
- padding: 0;
19495
- text-decoration: none;
19496
- transition-duration: 0.28s;
19497
- transition-property: box-shadow, opacity, background;
19498
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19499
- z-index: 0;
19500
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19501
- border-style: solid;
19502
- border-width: 0;
19503
- border-radius: 4px;
19504
- }
19505
- .v-card--border {
19506
- border-width: thin;
19507
- box-shadow: none;
19518
+ .v-card--border {
19519
+ border-width: thin;
19520
+ box-shadow: none;
19508
19521
  }
19509
19522
  .v-card--absolute {
19510
19523
  position: absolute;
@@ -19841,24 +19854,24 @@ html.overflow-y-hidden {
19841
19854
  }
19842
19855
  .v-btn-group--tile {
19843
19856
  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));
19857
+ }.v-chip-group {
19858
+ display: flex;
19859
+ max-width: 100%;
19860
+ min-width: 0;
19861
+ overflow-x: auto;
19862
+ padding: 4px 0;
19849
19863
  }
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));
19864
+ .v-chip-group .v-chip {
19865
+ margin: 4px 8px 4px 0;
19852
19866
  }
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;
19867
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19868
+ opacity: var(--v-activated-opacity);
19859
19869
  }
19860
- .v-checkbox .v-selection-control {
19861
- min-height: var(--v-input-control-height);
19870
+
19871
+ .v-chip-group--column .v-slide-group__content {
19872
+ white-space: normal;
19873
+ flex-wrap: wrap;
19874
+ max-width: 100%;
19862
19875
  }.v-carousel {
19863
19876
  overflow: hidden;
19864
19877
  position: relative;
@@ -19922,24 +19935,11 @@ html.overflow-y-hidden {
19922
19935
  flex-direction: column;
19923
19936
  height: 100% !important;
19924
19937
  width: 50px;
19925
- }.v-chip-group {
19926
- display: flex;
19927
- max-width: 100%;
19928
- min-width: 0;
19929
- overflow-x: auto;
19930
- padding: 4px 0;
19931
- }
19932
- .v-chip-group .v-chip {
19933
- margin: 4px 8px 4px 0;
19934
- }
19935
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19936
- opacity: var(--v-activated-opacity);
19938
+ }.v-checkbox.v-input {
19939
+ flex: 0 1 auto;
19937
19940
  }
19938
-
19939
- .v-chip-group--column .v-slide-group__content {
19940
- white-space: normal;
19941
- flex-wrap: wrap;
19942
- max-width: 100%;
19941
+ .v-checkbox .v-selection-control {
19942
+ min-height: var(--v-input-control-height);
19943
19943
  }.v-chip {
19944
19944
  align-items: center;
19945
19945
  display: inline-flex;
@@ -21044,6 +21044,11 @@ html.overflow-y-hidden {
21044
21044
  .offset-xxl-11 {
21045
21045
  margin-inline-start: 91.6666666667%;
21046
21046
  }
21047
+ }.v-counter {
21048
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21049
+ flex: 0 1 auto;
21050
+ font-size: 12px;
21051
+ transition-duration: 150ms;
21047
21052
  }.v-combobox .v-field .v-text-field__prefix,
21048
21053
  .v-combobox .v-field .v-text-field__suffix,
21049
21054
  .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
@@ -21125,11 +21130,6 @@ html.overflow-y-hidden {
21125
21130
  .v-combobox--active-menu .v-combobox__menu-icon {
21126
21131
  opacity: var(--v-high-emphasis-opacity);
21127
21132
  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
21133
  }.v-data-table {
21134
21134
  width: 100%;
21135
21135
  }
@@ -21348,104 +21348,6 @@ html.overflow-y-hidden {
21348
21348
  }
21349
21349
  .v-data-table-footer__page {
21350
21350
  padding: 0 8px;
21351
- }.v-dialog {
21352
- 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
- display: flex;
21365
- flex-direction: column;
21366
- min-height: 0;
21367
- }
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));
21376
- }
21377
- .v-dialog > .v-overlay__content > .v-card,
21378
- .v-dialog > .v-overlay__content > form > .v-card {
21379
- display: flex;
21380
- flex-direction: column;
21381
- }
21382
- .v-dialog > .v-overlay__content > .v-card > .v-card-item,
21383
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
21384
- padding: 16px 24px;
21385
- }
21386
- .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
21387
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
21388
- padding-top: 0;
21389
- }
21390
- .v-dialog > .v-overlay__content > .v-card > .v-card-text,
21391
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
21392
- font-size: inherit;
21393
- letter-spacing: 0.03125em;
21394
- line-height: inherit;
21395
- padding: 16px 24px 24px;
21396
- }
21397
- .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
21398
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
21399
- justify-content: flex-end;
21400
- }
21401
-
21402
- .v-dialog--fullscreen {
21403
- --v-scrollbar-offset: 0px;
21404
- }
21405
- .v-dialog--fullscreen > .v-overlay__content {
21406
- border-radius: 0;
21407
- margin: 0;
21408
- padding: 0;
21409
- width: 100%;
21410
- height: 100%;
21411
- max-width: 100%;
21412
- max-height: 100%;
21413
- overflow-y: auto;
21414
- top: 0;
21415
- left: 0;
21416
- }
21417
- .v-dialog--fullscreen > .v-overlay__content > .v-card,
21418
- .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
21419
- .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
21420
- .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
21421
- min-height: 100%;
21422
- min-width: 100%;
21423
- border-radius: 0;
21424
- }
21425
-
21426
- .v-dialog--scrollable > .v-overlay__content,
21427
- .v-dialog--scrollable > .v-overlay__content > form {
21428
- display: flex;
21429
- }
21430
- .v-dialog--scrollable > .v-overlay__content > .v-card,
21431
- .v-dialog--scrollable > .v-overlay__content > form > .v-card {
21432
- display: flex;
21433
- flex: 1 1 100%;
21434
- flex-direction: column;
21435
- max-height: 100%;
21436
- max-width: 100%;
21437
- }
21438
- .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
21439
- .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
21440
- -webkit-backface-visibility: hidden;
21441
- backface-visibility: hidden;
21442
- overflow-y: auto;
21443
- }.v-date-picker {
21444
- overflow: hidden;
21445
- width: 328px;
21446
- }
21447
- .v-date-picker--show-week {
21448
- width: 368px;
21449
21351
  }.v-date-picker-controls {
21450
21352
  display: flex;
21451
21353
  align-items: center;
@@ -21502,38 +21404,123 @@ html.overflow-y-hidden {
21502
21404
 
21503
21405
  .v-date-picker__title {
21504
21406
  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;
21510
- }
21511
-
21512
- .v-date-picker-month__weeks {
21407
+ }.v-date-picker-header {
21408
+ align-items: flex-end;
21409
+ height: 70px;
21513
21410
  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;
21517
- }
21518
- .v-date-picker-month__weeks + .v-date-picker-month__days {
21519
- grid-row-gap: 0;
21411
+ grid-template-areas: "prepend content append";
21412
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
21413
+ overflow: hidden;
21414
+ padding-inline: 24px 12px;
21415
+ padding-bottom: 12px;
21520
21416
  }
21521
21417
 
21522
- .v-date-picker-month__weekday {
21523
- font-size: 0.85rem;
21418
+ .v-date-picker-header__append {
21419
+ grid-area: append;
21524
21420
  }
21525
21421
 
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;
21422
+ .v-date-picker-header__prepend {
21423
+ grid-area: prepend;
21424
+ padding-inline-start: 8px;
21532
21425
  }
21533
21426
 
21534
- .v-date-picker-month__day {
21427
+ .v-date-picker-header__content {
21535
21428
  align-items: center;
21536
- display: flex;
21429
+ display: inline-flex;
21430
+ font-size: 32px;
21431
+ line-height: 40px;
21432
+ grid-area: content;
21433
+ justify-content: space-between;
21434
+ }
21435
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21436
+ cursor: pointer;
21437
+ }
21438
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21439
+ opacity: 0.7;
21440
+ }
21441
+
21442
+ .date-picker-header-transition-enter-active,
21443
+ .date-picker-header-reverse-transition-enter-active {
21444
+ transition-duration: 0.3s;
21445
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21446
+ }
21447
+ .date-picker-header-transition-leave-active,
21448
+ .date-picker-header-reverse-transition-leave-active {
21449
+ transition-duration: 0.3s;
21450
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21451
+ }
21452
+
21453
+ .date-picker-header-transition-enter-from {
21454
+ transform: translate(0, 100%);
21455
+ }
21456
+ .date-picker-header-transition-leave-to {
21457
+ opacity: 0;
21458
+ transform: translate(0, -100%);
21459
+ }
21460
+
21461
+ .date-picker-header-reverse-transition-enter-from {
21462
+ transform: translate(0, -100%);
21463
+ }
21464
+ .date-picker-header-reverse-transition-leave-to {
21465
+ opacity: 0;
21466
+ transform: translate(0, 100%);
21467
+ }.v-date-picker-months {
21468
+ height: 288px;
21469
+ }
21470
+
21471
+ .v-date-picker-months__content {
21472
+ align-items: center;
21473
+ display: grid;
21474
+ flex: 1 1;
21475
+ height: inherit;
21476
+ justify-content: space-around;
21477
+ grid-template-columns: repeat(2, 1fr);
21478
+ grid-gap: 0px 24px;
21479
+ padding-inline-start: 36px;
21480
+ padding-inline-end: 36px;
21481
+ }
21482
+ .v-date-picker-months__content .v-btn {
21483
+ text-transform: none;
21484
+ padding-inline-start: 8px;
21485
+ padding-inline-end: 8px;
21486
+ }.v-date-picker {
21487
+ overflow: hidden;
21488
+ width: 328px;
21489
+ }
21490
+ .v-date-picker--show-week {
21491
+ width: 368px;
21492
+ }.v-date-picker-month {
21493
+ display: flex;
21494
+ justify-content: center;
21495
+ padding: 0 12px 8px;
21496
+ --v-date-picker-month-day-diff: 4px;
21497
+ }
21498
+
21499
+ .v-date-picker-month__weeks {
21500
+ display: grid;
21501
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21502
+ column-gap: 4px;
21503
+ font-size: 0.85rem;
21504
+ }
21505
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
21506
+ grid-row-gap: 0;
21507
+ }
21508
+
21509
+ .v-date-picker-month__weekday {
21510
+ font-size: 0.85rem;
21511
+ }
21512
+
21513
+ .v-date-picker-month__days {
21514
+ display: grid;
21515
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21516
+ column-gap: 4px;
21517
+ flex: 1 1;
21518
+ justify-content: space-around;
21519
+ }
21520
+
21521
+ .v-date-picker-month__day {
21522
+ align-items: center;
21523
+ display: flex;
21537
21524
  justify-content: center;
21538
21525
  position: relative;
21539
21526
  height: 40px;
@@ -21557,167 +21544,440 @@ html.overflow-y-hidden {
21557
21544
 
21558
21545
  .v-date-picker-month__day--hide-adjacent {
21559
21546
  opacity: 0;
21560
- }.v-date-picker-header {
21561
- align-items: flex-end;
21562
- height: 70px;
21547
+ }.v-date-picker-years {
21548
+ height: 288px;
21549
+ overflow-y: scroll;
21550
+ }
21551
+
21552
+ .v-date-picker-years__content {
21563
21553
  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;
21554
+ flex: 1 1;
21555
+ justify-content: space-around;
21556
+ grid-template-columns: repeat(3, 1fr);
21557
+ gap: 8px 24px;
21558
+ padding-inline: 32px;
21559
+ }
21560
+ .v-date-picker-years__content .v-btn {
21561
+ padding-inline: 8px;
21562
+ }.v-dialog {
21563
+ align-items: center;
21564
+ justify-content: center;
21565
+ margin: auto;
21566
+ }
21567
+ .v-dialog > .v-overlay__content {
21568
+ max-height: calc(100% - 48px);
21569
+ width: calc(100% - 48px);
21570
+ max-width: calc(100% - 48px);
21571
+ margin: 24px;
21572
+ }
21573
+ .v-dialog > .v-overlay__content,
21574
+ .v-dialog > .v-overlay__content > form {
21575
+ display: flex;
21576
+ flex-direction: column;
21577
+ min-height: 0;
21578
+ }
21579
+ .v-dialog > .v-overlay__content > .v-card,
21580
+ .v-dialog > .v-overlay__content > .v-sheet,
21581
+ .v-dialog > .v-overlay__content > form > .v-card,
21582
+ .v-dialog > .v-overlay__content > form > .v-sheet {
21583
+ --v-scrollbar-offset: 0px;
21584
+ border-radius: 4px;
21585
+ overflow-y: auto;
21586
+ 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));
21587
+ }
21588
+ .v-dialog > .v-overlay__content > .v-card,
21589
+ .v-dialog > .v-overlay__content > form > .v-card {
21590
+ display: flex;
21591
+ flex-direction: column;
21592
+ }
21593
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item,
21594
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
21595
+ padding: 16px 24px;
21596
+ }
21597
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
21598
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
21599
+ padding-top: 0;
21600
+ }
21601
+ .v-dialog > .v-overlay__content > .v-card > .v-card-text,
21602
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
21603
+ font-size: inherit;
21604
+ letter-spacing: 0.03125em;
21605
+ line-height: inherit;
21606
+ padding: 16px 24px 24px;
21607
+ }
21608
+ .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
21609
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
21610
+ justify-content: flex-end;
21611
+ }
21612
+
21613
+ .v-dialog--fullscreen {
21614
+ --v-scrollbar-offset: 0px;
21615
+ }
21616
+ .v-dialog--fullscreen > .v-overlay__content {
21617
+ border-radius: 0;
21618
+ margin: 0;
21619
+ padding: 0;
21620
+ width: 100%;
21621
+ height: 100%;
21622
+ max-width: 100%;
21623
+ max-height: 100%;
21624
+ overflow-y: auto;
21625
+ top: 0;
21626
+ left: 0;
21627
+ }
21628
+ .v-dialog--fullscreen > .v-overlay__content > .v-card,
21629
+ .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
21630
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
21631
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
21632
+ min-height: 100%;
21633
+ min-width: 100%;
21634
+ border-radius: 0;
21635
+ }
21636
+
21637
+ .v-dialog--scrollable > .v-overlay__content,
21638
+ .v-dialog--scrollable > .v-overlay__content > form {
21639
+ display: flex;
21640
+ }
21641
+ .v-dialog--scrollable > .v-overlay__content > .v-card,
21642
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
21643
+ display: flex;
21644
+ flex: 1 1 100%;
21645
+ flex-direction: column;
21646
+ max-height: 100%;
21647
+ max-width: 100%;
21648
+ }
21649
+ .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
21650
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
21651
+ -webkit-backface-visibility: hidden;
21652
+ backface-visibility: hidden;
21653
+ overflow-y: auto;
21654
+ }.v-divider {
21655
+ display: block;
21656
+ flex: 1 1 100%;
21657
+ height: 0px;
21658
+ max-height: 0px;
21659
+ opacity: var(--v-border-opacity);
21660
+ transition: inherit;
21661
+ border-style: solid;
21662
+ border-width: thin 0 0 0;
21663
+ }
21664
+ .v-divider--vertical {
21665
+ align-self: stretch;
21666
+ border-width: 0 thin 0 0;
21667
+ display: inline-flex;
21668
+ height: auto;
21669
+ margin-left: -1px;
21670
+ max-height: 100%;
21671
+ max-width: 0px;
21672
+ vertical-align: text-bottom;
21673
+ width: 0px;
21674
+ }
21675
+ .v-divider--inset:not(.v-divider--vertical) {
21676
+ max-width: calc(100% - 72px);
21677
+ margin-inline-start: 72px;
21678
+ }
21679
+ .v-divider--inset.v-divider--vertical {
21680
+ margin-bottom: 8px;
21681
+ margin-top: 8px;
21682
+ max-height: calc(100% - 16px);
21683
+ }
21684
+
21685
+ .v-divider__content {
21686
+ padding: 0 16px;
21687
+ text-wrap: nowrap;
21688
+ }
21689
+ .v-divider__wrapper--vertical .v-divider__content {
21690
+ padding: 4px 0;
21691
+ }
21692
+
21693
+ .v-divider__wrapper {
21694
+ display: flex;
21695
+ align-items: center;
21696
+ justify-content: center;
21697
+ }
21698
+ .v-divider__wrapper--vertical {
21699
+ flex-direction: column;
21700
+ height: 100%;
21701
+ }
21702
+ .v-divider__wrapper--vertical .v-divider {
21703
+ margin: 0 auto;
21704
+ }.v-empty-state {
21705
+ align-items: center;
21706
+ display: flex;
21707
+ flex-direction: column;
21708
+ justify-content: center;
21709
+ min-height: 100%;
21710
+ padding: 16px;
21711
+ }
21712
+ .v-empty-state--start {
21713
+ align-items: flex-start;
21714
+ }
21715
+ .v-empty-state--center {
21716
+ align-items: center;
21717
+ }
21718
+ .v-empty-state--end {
21719
+ align-items: flex-end;
21720
+ }
21721
+
21722
+ .v-empty-state__media {
21723
+ text-align: center;
21724
+ width: 100%;
21725
+ }
21726
+ .v-empty-state__media .v-icon {
21727
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21728
+ }
21729
+
21730
+ .v-empty-state__headline {
21731
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21732
+ font-size: 3.75rem;
21733
+ font-weight: 300;
21734
+ line-height: 1;
21735
+ text-align: center;
21736
+ margin-bottom: 8px;
21737
+ }
21738
+ .v-empty-state--mobile .v-empty-state__headline {
21739
+ font-size: 2.125rem;
21740
+ }
21741
+
21742
+ .v-empty-state__title {
21743
+ font-size: 1.25rem;
21744
+ font-weight: 500;
21745
+ line-height: 1.6;
21746
+ margin-bottom: 4px;
21747
+ text-align: center;
21748
+ }
21749
+
21750
+ .v-empty-state__text {
21751
+ font-size: 0.875rem;
21752
+ font-weight: 400;
21753
+ line-height: 1.425;
21754
+ padding: 0 16px;
21755
+ text-align: center;
21756
+ }
21757
+
21758
+ .v-empty-state__content {
21759
+ padding: 24px 0;
21760
+ }
21761
+
21762
+ .v-empty-state__actions {
21763
+ display: flex;
21764
+ gap: 8px;
21765
+ padding: 16px;
21766
+ }
21767
+
21768
+ .v-empty-state__action-btn.v-btn {
21769
+ background-color: rgb(var(--v-theme-surface-variant));
21770
+ color: rgb(var(--v-theme-on-surface-variant));
21771
+ }.v-expansion-panel {
21772
+ background-color: rgb(var(--v-theme-surface));
21773
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21774
+ }
21775
+ .v-expansion-panel:not(:first-child)::after {
21776
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21777
+ }
21778
+ .v-expansion-panel--disabled .v-expansion-panel-title {
21779
+ color: rgba(var(--v-theme-on-surface), 0.26);
21780
+ }
21781
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
21782
+ opacity: 0.4615384615;
21783
+ }
21784
+
21785
+ .v-expansion-panels {
21786
+ display: flex;
21787
+ flex-wrap: wrap;
21788
+ justify-content: center;
21789
+ list-style-type: none;
21790
+ padding: 0;
21791
+ width: 100%;
21792
+ position: relative;
21793
+ z-index: 1;
21794
+ }
21795
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21796
+ border-bottom-left-radius: 0 !important;
21797
+ border-bottom-right-radius: 0 !important;
21798
+ }
21799
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21800
+ border-top-left-radius: 0 !important;
21801
+ border-top-right-radius: 0 !important;
21802
+ }
21803
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21804
+ border-bottom-left-radius: 0 !important;
21805
+ border-bottom-right-radius: 0 !important;
21806
+ }
21807
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21808
+ border-top-left-radius: 0 !important;
21809
+ border-top-right-radius: 0 !important;
21810
+ }
21811
+ .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
21812
+ border-bottom-left-radius: 0 !important;
21813
+ border-bottom-right-radius: 0 !important;
21814
+ }
21815
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
21816
+ border-top-left-radius: 0 !important;
21817
+ border-top-right-radius: 0 !important;
21818
+ }
21819
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
21820
+ border-bottom-left-radius: initial;
21821
+ border-bottom-right-radius: initial;
21822
+ }
21823
+ .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
21824
+ border-radius: 0 !important;
21825
+ }
21826
+ .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
21827
+ transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
21828
+ }
21829
+
21830
+ .v-expansion-panel {
21831
+ flex: 1 0 100%;
21832
+ max-width: 100%;
21833
+ position: relative;
21834
+ transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
21835
+ transition-property: margin-top, border-radius, border, max-width;
21836
+ border-radius: 4px;
21837
+ }
21838
+ .v-expansion-panel:not(:first-child)::after {
21839
+ border-top-style: solid;
21840
+ border-top-width: thin;
21841
+ content: "";
21842
+ left: 0;
21843
+ position: absolute;
21844
+ right: 0;
21845
+ top: 0;
21846
+ transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
21847
+ }
21848
+ .v-expansion-panel--disabled .v-expansion-panel-title {
21849
+ pointer-events: none;
21850
+ }
21851
+ .v-expansion-panel--active:not(:first-child),
21852
+ .v-expansion-panel--active + .v-expansion-panel {
21853
+ margin-top: 16px;
21854
+ }
21855
+ .v-expansion-panel--active:not(:first-child)::after,
21856
+ .v-expansion-panel--active + .v-expansion-panel::after {
21857
+ opacity: 0;
21569
21858
  }
21570
-
21571
- .v-date-picker-header__append {
21572
- grid-area: append;
21859
+ .v-expansion-panel--active > .v-expansion-panel-title {
21860
+ border-bottom-left-radius: 0;
21861
+ border-bottom-right-radius: 0;
21862
+ }
21863
+ .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
21864
+ min-height: 64px;
21573
21865
  }
21574
21866
 
21575
- .v-date-picker-header__prepend {
21576
- grid-area: prepend;
21577
- padding-inline-start: 8px;
21867
+ .v-expansion-panel__shadow {
21868
+ position: absolute;
21869
+ top: 0;
21870
+ left: 0;
21871
+ width: 100%;
21872
+ height: 100%;
21873
+ 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));
21874
+ border-radius: inherit;
21875
+ z-index: -1;
21578
21876
  }
21579
21877
 
21580
- .v-date-picker-header__content {
21878
+ .v-expansion-panel-title {
21581
21879
  align-items: center;
21582
- display: inline-flex;
21583
- font-size: 32px;
21584
- line-height: 40px;
21585
- grid-area: content;
21880
+ text-align: start;
21881
+ border-radius: inherit;
21882
+ display: flex;
21883
+ font-size: 0.9375rem;
21884
+ line-height: 1;
21885
+ min-height: 48px;
21886
+ outline: none;
21887
+ padding: 16px 24px;
21888
+ position: relative;
21889
+ transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
21890
+ width: 100%;
21586
21891
  justify-content: space-between;
21587
21892
  }
21588
- .v-date-picker-header--clickable .v-date-picker-header__content {
21589
- cursor: pointer;
21893
+ .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
21894
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21590
21895
  }
21591
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21592
- opacity: 0.7;
21896
+ .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
21897
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21593
21898
  }
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);
21899
+ @supports not selector(:focus-visible) {
21900
+ .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
21901
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21902
+ }
21599
21903
  }
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);
21904
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
21905
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
21604
21906
  }
21605
-
21606
- .date-picker-header-transition-enter-from {
21607
- transform: translate(0, 100%);
21907
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
21908
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
21608
21909
  }
21609
- .date-picker-header-transition-leave-to {
21610
- opacity: 0;
21611
- transform: translate(0, -100%);
21910
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
21911
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21612
21912
  }
21613
-
21614
- .date-picker-header-reverse-transition-enter-from {
21615
- transform: translate(0, -100%);
21913
+ @supports not selector(:focus-visible) {
21914
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
21915
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21916
+ }
21616
21917
  }
21617
- .date-picker-header-reverse-transition-leave-to {
21918
+
21919
+ .v-expansion-panel-title__overlay {
21920
+ position: absolute;
21921
+ top: 0;
21922
+ left: 0;
21923
+ width: 100%;
21924
+ height: 100%;
21925
+ background-color: currentColor;
21926
+ border-radius: inherit;
21618
21927
  opacity: 0;
21619
- transform: translate(0, 100%);
21620
- }.v-date-picker-years {
21621
- height: 288px;
21622
- overflow-y: scroll;
21623
21928
  }
21624
21929
 
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;
21930
+ .v-expansion-panel-title__icon {
21931
+ display: inline-flex;
21932
+ margin-bottom: -4px;
21933
+ margin-top: -4px;
21934
+ -webkit-user-select: none;
21935
+ user-select: none;
21936
+ margin-inline-start: auto;
21637
21937
  }
21638
21938
 
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;
21939
+ .v-expansion-panel-text {
21656
21940
  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
21941
  }
21668
- .v-empty-state--end {
21669
- align-items: flex-end;
21942
+ .v-expansion-panel-text__wrapper {
21943
+ padding: 8px 24px 16px;
21944
+ flex: 1 1 auto;
21945
+ max-width: 100%;
21670
21946
  }
21671
21947
 
21672
- .v-empty-state__media {
21673
- text-align: center;
21674
- width: 100%;
21948
+ .v-expansion-panels--variant-accordion > .v-expansion-panel {
21949
+ margin-top: 0;
21675
21950
  }
21676
- .v-empty-state__media .v-icon {
21677
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21951
+ .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
21952
+ opacity: 1;
21678
21953
  }
21679
21954
 
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;
21955
+ .v-expansion-panels--variant-popout > .v-expansion-panel {
21956
+ max-width: calc(100% - 32px);
21687
21957
  }
21688
- .v-empty-state--mobile .v-empty-state__headline {
21689
- font-size: 2.125rem;
21958
+ .v-expansion-panels--variant-popout > .v-expansion-panel--active {
21959
+ max-width: calc(100% + 16px);
21690
21960
  }
21691
21961
 
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;
21962
+ .v-expansion-panels--variant-inset > .v-expansion-panel {
21963
+ max-width: 100%;
21698
21964
  }
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;
21965
+ .v-expansion-panels--variant-inset > .v-expansion-panel--active {
21966
+ max-width: calc(100% - 32px);
21706
21967
  }
21707
21968
 
21708
- .v-empty-state__content {
21709
- padding: 24px 0;
21969
+ .v-expansion-panels--flat > .v-expansion-panel::after {
21970
+ border-top: none;
21710
21971
  }
21711
-
21712
- .v-empty-state__actions {
21713
- display: flex;
21714
- gap: 8px;
21715
- padding: 16px;
21972
+ .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
21973
+ display: none;
21716
21974
  }
21717
21975
 
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));
21976
+ .v-expansion-panels--tile {
21977
+ border-radius: 0;
21978
+ }
21979
+ .v-expansion-panels--tile > .v-expansion-panel {
21980
+ border-radius: 0;
21721
21981
  }.v-fab {
21722
21982
  align-items: center;
21723
21983
  display: inline-flex;
@@ -21787,56 +22047,35 @@ html.overflow-y-hidden {
21787
22047
  }
21788
22048
  .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21789
22049
  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;
22050
+ }.v-file-input--hide.v-input .v-field,
22051
+ .v-file-input--hide.v-input .v-input__control,
22052
+ .v-file-input--hide.v-input .v-input__details {
22053
+ display: none;
21824
22054
  }
21825
- .v-divider__wrapper--vertical .v-divider__content {
21826
- padding: 4px 0;
22055
+ .v-file-input--hide.v-input .v-input__prepend {
22056
+ grid-area: control;
22057
+ margin: 0 auto;
21827
22058
  }
21828
-
21829
- .v-divider__wrapper {
21830
- display: flex;
21831
- align-items: center;
21832
- justify-content: center;
22059
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22060
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22061
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22062
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22063
+ top: 0px;
21833
22064
  }
21834
- .v-divider__wrapper--vertical {
21835
- flex-direction: column;
22065
+ .v-file-input input[type=file] {
21836
22066
  height: 100%;
22067
+ left: 0;
22068
+ opacity: 0;
22069
+ position: absolute;
22070
+ top: 0;
22071
+ width: 100%;
22072
+ z-index: 1;
21837
22073
  }
21838
- .v-divider__wrapper--vertical .v-divider {
21839
- margin: 0 auto;
22074
+ .v-file-input .v-input__details {
22075
+ padding-inline: 16px;
22076
+ }
22077
+ .v-input--plain-underlined.v-file-input .v-input__details {
22078
+ padding-inline: 0;
21840
22079
  }/* region INPUT */
21841
22080
  .v-field {
21842
22081
  --v-theme-overlay-multiplier: 1;
@@ -22335,319 +22574,80 @@ textarea.v-field__input::placeholder {
22335
22574
  pointer-events: none;
22336
22575
  position: absolute;
22337
22576
  top: 0;
22338
- left: 0;
22339
- width: 100%;
22340
- height: 100%;
22341
- }
22342
-
22343
- .v-field--variant-filled .v-field__overlay {
22344
- background-color: currentColor;
22345
- opacity: 0.04;
22346
- transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22347
- }
22348
- .v-field--variant-filled.v-field--has-background .v-field__overlay {
22349
- opacity: 0;
22350
- }
22351
- @media (hover: hover) {
22352
- .v-field--variant-filled:hover .v-field__overlay {
22353
- opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22354
- }
22355
- }
22356
- .v-field--variant-filled.v-field--focused .v-field__overlay {
22357
- opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22358
- }
22359
-
22360
- .v-field--variant-solo-filled .v-field__overlay {
22361
- background-color: currentColor;
22362
- opacity: 0.04;
22363
- transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22364
- }
22365
- @media (hover: hover) {
22366
- .v-field--variant-solo-filled:hover .v-field__overlay {
22367
- opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22368
- }
22369
- }
22370
- .v-field--variant-solo-filled.v-field--focused .v-field__overlay {
22371
- opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22372
- }
22373
-
22374
- .v-field--variant-solo-inverted .v-field__overlay {
22375
- transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22376
- }
22377
- .v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
22378
- opacity: 0;
22379
- }
22380
- @media (hover: hover) {
22381
- .v-field--variant-solo-inverted:hover .v-field__overlay {
22382
- opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22383
- }
22384
- }
22385
- .v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
22386
- background-color: rgb(var(--v-theme-surface-variant));
22387
- opacity: 1;
22388
- }
22389
-
22390
- /* endregion */
22391
- /* region MODIFIERS */
22392
- .v-field--reverse .v-field__field,
22393
- .v-field--reverse .v-field__input,
22394
- .v-field--reverse .v-field__outline {
22395
- flex-direction: row-reverse;
22396
- }
22397
- .v-field--reverse .v-field__input, .v-field--reverse input {
22398
- text-align: end;
22399
- }
22400
-
22401
- .v-input--disabled .v-field--variant-filled .v-field__outline::before,
22402
- .v-input--disabled .v-field--variant-underlined .v-field__outline::before {
22403
- border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
22404
- }
22405
-
22406
- .v-field--loading .v-field__outline::after,
22407
- .v-field--loading .v-field__outline::before {
22408
- opacity: 0;
22409
- }
22410
-
22411
- /* endregion */.v-expansion-panel {
22412
- background-color: rgb(var(--v-theme-surface));
22413
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22414
- }
22415
- .v-expansion-panel:not(:first-child)::after {
22416
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22417
- }
22418
- .v-expansion-panel--disabled .v-expansion-panel-title {
22419
- color: rgba(var(--v-theme-on-surface), 0.26);
22420
- }
22421
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
22422
- opacity: 0.4615384615;
22423
- }
22424
-
22425
- .v-expansion-panels {
22426
- display: flex;
22427
- flex-wrap: wrap;
22428
- justify-content: center;
22429
- list-style-type: none;
22430
- padding: 0;
22431
- width: 100%;
22432
- position: relative;
22433
- z-index: 1;
22434
- }
22435
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22436
- border-bottom-left-radius: 0 !important;
22437
- border-bottom-right-radius: 0 !important;
22438
- }
22439
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22440
- border-top-left-radius: 0 !important;
22441
- border-top-right-radius: 0 !important;
22442
- }
22443
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22444
- border-bottom-left-radius: 0 !important;
22445
- border-bottom-right-radius: 0 !important;
22446
- }
22447
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22448
- border-top-left-radius: 0 !important;
22449
- border-top-right-radius: 0 !important;
22450
- }
22451
- .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
22452
- border-bottom-left-radius: 0 !important;
22453
- border-bottom-right-radius: 0 !important;
22454
- }
22455
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
22456
- border-top-left-radius: 0 !important;
22457
- border-top-right-radius: 0 !important;
22458
- }
22459
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
22460
- border-bottom-left-radius: initial;
22461
- border-bottom-right-radius: initial;
22462
- }
22463
- .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
22464
- border-radius: 0 !important;
22465
- }
22466
- .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
22467
- transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
22468
- }
22469
-
22470
- .v-expansion-panel {
22471
- flex: 1 0 100%;
22472
- max-width: 100%;
22473
- position: relative;
22474
- transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
22475
- transition-property: margin-top, border-radius, border, max-width;
22476
- border-radius: 4px;
22477
- }
22478
- .v-expansion-panel:not(:first-child)::after {
22479
- border-top-style: solid;
22480
- border-top-width: thin;
22481
- content: "";
22482
- left: 0;
22483
- position: absolute;
22484
- right: 0;
22485
- top: 0;
22486
- transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
22487
- }
22488
- .v-expansion-panel--disabled .v-expansion-panel-title {
22489
- pointer-events: none;
22490
- }
22491
- .v-expansion-panel--active:not(:first-child),
22492
- .v-expansion-panel--active + .v-expansion-panel {
22493
- margin-top: 16px;
22494
- }
22495
- .v-expansion-panel--active:not(:first-child)::after,
22496
- .v-expansion-panel--active + .v-expansion-panel::after {
22497
- opacity: 0;
22498
- }
22499
- .v-expansion-panel--active > .v-expansion-panel-title {
22500
- border-bottom-left-radius: 0;
22501
- border-bottom-right-radius: 0;
22502
- }
22503
- .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
22504
- min-height: 64px;
22505
- }
22506
-
22507
- .v-expansion-panel__shadow {
22508
- position: absolute;
22509
- top: 0;
22510
- left: 0;
22511
- width: 100%;
22512
- height: 100%;
22513
- 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));
22514
- border-radius: inherit;
22515
- z-index: -1;
22516
- }
22517
-
22518
- .v-expansion-panel-title {
22519
- align-items: center;
22520
- text-align: start;
22521
- border-radius: inherit;
22522
- display: flex;
22523
- font-size: 0.9375rem;
22524
- line-height: 1;
22525
- min-height: 48px;
22526
- outline: none;
22527
- padding: 16px 24px;
22528
- position: relative;
22529
- transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
22530
- width: 100%;
22531
- justify-content: space-between;
22532
- }
22533
- .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
22534
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22535
- }
22536
- .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
22537
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22538
- }
22539
- @supports not selector(:focus-visible) {
22540
- .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
22541
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22542
- }
22543
- }
22544
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
22545
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
22546
- }
22547
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
22548
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22549
- }
22550
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
22551
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22552
- }
22553
- @supports not selector(:focus-visible) {
22554
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
22555
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22556
- }
22557
- }
22558
-
22559
- .v-expansion-panel-title__overlay {
22560
- position: absolute;
22561
- top: 0;
22562
- left: 0;
22563
- width: 100%;
22564
- height: 100%;
22565
- background-color: currentColor;
22566
- border-radius: inherit;
22567
- opacity: 0;
22568
- }
22569
-
22570
- .v-expansion-panel-title__icon {
22571
- display: inline-flex;
22572
- margin-bottom: -4px;
22573
- margin-top: -4px;
22574
- -webkit-user-select: none;
22575
- user-select: none;
22576
- margin-inline-start: auto;
22577
+ left: 0;
22578
+ width: 100%;
22579
+ height: 100%;
22577
22580
  }
22578
22581
 
22579
- .v-expansion-panel-text {
22580
- display: flex;
22582
+ .v-field--variant-filled .v-field__overlay {
22583
+ background-color: currentColor;
22584
+ opacity: 0.04;
22585
+ transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22581
22586
  }
22582
- .v-expansion-panel-text__wrapper {
22583
- padding: 8px 24px 16px;
22584
- flex: 1 1 auto;
22585
- max-width: 100%;
22587
+ .v-field--variant-filled.v-field--has-background .v-field__overlay {
22588
+ opacity: 0;
22586
22589
  }
22587
-
22588
- .v-expansion-panels--variant-accordion > .v-expansion-panel {
22589
- margin-top: 0;
22590
+ @media (hover: hover) {
22591
+ .v-field--variant-filled:hover .v-field__overlay {
22592
+ opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22593
+ }
22590
22594
  }
22591
- .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
22592
- opacity: 1;
22595
+ .v-field--variant-filled.v-field--focused .v-field__overlay {
22596
+ opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22593
22597
  }
22594
22598
 
22595
- .v-expansion-panels--variant-popout > .v-expansion-panel {
22596
- max-width: calc(100% - 32px);
22599
+ .v-field--variant-solo-filled .v-field__overlay {
22600
+ background-color: currentColor;
22601
+ opacity: 0.04;
22602
+ transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22597
22603
  }
22598
- .v-expansion-panels--variant-popout > .v-expansion-panel--active {
22599
- max-width: calc(100% + 16px);
22604
+ @media (hover: hover) {
22605
+ .v-field--variant-solo-filled:hover .v-field__overlay {
22606
+ opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22607
+ }
22608
+ }
22609
+ .v-field--variant-solo-filled.v-field--focused .v-field__overlay {
22610
+ opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22600
22611
  }
22601
22612
 
22602
- .v-expansion-panels--variant-inset > .v-expansion-panel {
22603
- max-width: 100%;
22613
+ .v-field--variant-solo-inverted .v-field__overlay {
22614
+ transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22604
22615
  }
22605
- .v-expansion-panels--variant-inset > .v-expansion-panel--active {
22606
- max-width: calc(100% - 32px);
22616
+ .v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
22617
+ opacity: 0;
22607
22618
  }
22608
-
22609
- .v-expansion-panels--flat > .v-expansion-panel::after {
22610
- border-top: none;
22619
+ @media (hover: hover) {
22620
+ .v-field--variant-solo-inverted:hover .v-field__overlay {
22621
+ opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22622
+ }
22611
22623
  }
22612
- .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
22613
- display: none;
22624
+ .v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
22625
+ background-color: rgb(var(--v-theme-surface-variant));
22626
+ opacity: 1;
22614
22627
  }
22615
22628
 
22616
- .v-expansion-panels--tile {
22617
- border-radius: 0;
22618
- }
22619
- .v-expansion-panels--tile > .v-expansion-panel {
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;
22629
+ /* endregion */
22630
+ /* region MODIFIERS */
22631
+ .v-field--reverse .v-field__field,
22632
+ .v-field--reverse .v-field__input,
22633
+ .v-field--reverse .v-field__outline {
22634
+ flex-direction: row-reverse;
22625
22635
  }
22626
- .v-file-input--hide.v-input .v-input__prepend {
22627
- grid-area: control;
22628
- margin: 0 auto;
22636
+ .v-field--reverse .v-field__input, .v-field--reverse input {
22637
+ text-align: end;
22629
22638
  }
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;
22639
+
22640
+ .v-input--disabled .v-field--variant-filled .v-field__outline::before,
22641
+ .v-input--disabled .v-field--variant-underlined .v-field__outline::before {
22642
+ border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
22635
22643
  }
22636
- .v-file-input input[type=file] {
22637
- height: 100%;
22638
- left: 0;
22644
+
22645
+ .v-field--loading .v-field__outline::after,
22646
+ .v-field--loading .v-field__outline::before {
22639
22647
  opacity: 0;
22640
- position: absolute;
22641
- top: 0;
22642
- width: 100%;
22643
- z-index: 1;
22644
22648
  }
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
- }.v-footer {
22649
+
22650
+ /* endregion */.v-footer {
22651
22651
  align-items: center;
22652
22652
  display: flex;
22653
22653
  flex: 1 1 auto;
@@ -22936,13 +22936,6 @@ textarea.v-field__input::placeholder {
22936
22936
  display: flex;
22937
22937
  justify-content: center;
22938
22938
  padding: 8px;
22939
- }.v-layout-item {
22940
- position: absolute;
22941
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22942
- }
22943
-
22944
- .v-layout-item--absolute {
22945
- position: absolute;
22946
22939
  }.v-layout {
22947
22940
  --v-scrollbar-offset: 0px;
22948
22941
  display: flex;
@@ -22951,6 +22944,13 @@ textarea.v-field__input::placeholder {
22951
22944
  .v-layout--full-height {
22952
22945
  --v-scrollbar-offset: inherit;
22953
22946
  height: 100%;
22947
+ }.v-layout-item {
22948
+ position: absolute;
22949
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22950
+ }
22951
+
22952
+ .v-layout-item--absolute {
22953
+ position: absolute;
22954
22954
  }.v-label {
22955
22955
  align-items: center;
22956
22956
  color: inherit;
@@ -22962,142 +22962,10 @@ textarea.v-field__input::placeholder {
22962
22962
  overflow: hidden;
22963
22963
  text-overflow: ellipsis;
22964
22964
  white-space: nowrap;
22965
- }
22966
-
22967
- .v-label--clickable {
22968
- 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
- }.v-main {
23074
- flex: 1 0 auto;
23075
- max-width: 100%;
23076
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23077
- padding-left: var(--v-layout-left);
23078
- padding-right: var(--v-layout-right);
23079
- padding-top: var(--v-layout-top);
23080
- padding-bottom: var(--v-layout-bottom);
23081
- }
23082
- .v-main__scroller {
23083
- max-width: 100%;
23084
- position: relative;
23085
- }
23086
- .v-main--scrollable {
23087
- display: flex;
23088
- position: absolute;
23089
- top: 0;
23090
- left: 0;
23091
- width: 100%;
23092
- height: 100%;
23093
- }
23094
- .v-main--scrollable > .v-main__scroller {
23095
- flex: 1 1 auto;
23096
- overflow-y: auto;
23097
- --v-layout-left: 0px;
23098
- --v-layout-right: 0px;
23099
- --v-layout-top: 0px;
23100
- --v-layout-bottom: 0px;
22965
+ }
22966
+
22967
+ .v-label--clickable {
22968
+ cursor: pointer;
23101
22969
  }.v-list {
23102
22970
  overflow: auto;
23103
22971
  padding: 8px 0;
@@ -23655,6 +23523,36 @@ textarea.v-field__input::placeholder {
23655
23523
  }
23656
23524
  .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
23657
23525
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23526
+ }.v-main {
23527
+ flex: 1 0 auto;
23528
+ max-width: 100%;
23529
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23530
+ padding-left: var(--v-layout-left);
23531
+ padding-right: var(--v-layout-right);
23532
+ padding-top: var(--v-layout-top);
23533
+ padding-bottom: var(--v-layout-bottom);
23534
+ }
23535
+ .v-main__scroller {
23536
+ max-width: 100%;
23537
+ position: relative;
23538
+ }
23539
+ .v-main--scrollable {
23540
+ display: flex;
23541
+ position: absolute;
23542
+ top: 0;
23543
+ left: 0;
23544
+ width: 100%;
23545
+ height: 100%;
23546
+ }
23547
+ .v-main--scrollable > .v-main__scroller {
23548
+ flex: 1 1 auto;
23549
+ overflow-y: auto;
23550
+ --v-layout-left: 0px;
23551
+ --v-layout-right: 0px;
23552
+ --v-layout-top: 0px;
23553
+ --v-layout-bottom: 0px;
23554
+ }.v-locale-provider {
23555
+ display: contents;
23658
23556
  }.v-messages {
23659
23557
  flex: 1 1 auto;
23660
23558
  font-size: 12px;
@@ -23684,6 +23582,62 @@ textarea.v-field__input::placeholder {
23684
23582
  overflow: auto;
23685
23583
  height: 100%;
23686
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-otp-input {
23586
+ border-radius: 4px;
23587
+ align-items: center;
23588
+ display: flex;
23589
+ justify-content: center;
23590
+ padding: 0.5rem 0;
23591
+ position: relative;
23592
+ }
23593
+ .v-otp-input .v-field {
23594
+ height: 100%;
23595
+ }
23596
+
23597
+ .v-otp-input__divider {
23598
+ margin: 0 8px;
23599
+ }
23600
+
23601
+ .v-otp-input__content {
23602
+ align-items: center;
23603
+ display: flex;
23604
+ gap: 0.5rem;
23605
+ height: 64px;
23606
+ padding: 0.5rem;
23607
+ justify-content: center;
23608
+ max-width: 320px;
23609
+ position: relative;
23610
+ border-radius: inherit;
23611
+ }
23612
+ .v-otp-input--divided .v-otp-input__content {
23613
+ max-width: 360px;
23614
+ }
23615
+
23616
+ .v-otp-input__field {
23617
+ color: inherit;
23618
+ font-size: 1.25rem;
23619
+ height: 100%;
23620
+ outline: none;
23621
+ text-align: center;
23622
+ width: 100%;
23623
+ }
23624
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23625
+ -webkit-appearance: none;
23626
+ margin: 0;
23627
+ }
23628
+ .v-otp-input__field[type=number] {
23629
+ -moz-appearance: textfield;
23630
+ }
23631
+
23632
+ .v-otp-input__loader {
23633
+ align-items: center;
23634
+ display: flex;
23635
+ height: 100%;
23636
+ justify-content: center;
23637
+ width: 100%;
23638
+ }
23639
+ .v-otp-input__loader .v-progress-linear {
23640
+ position: absolute;
23687
23641
  }.v-overlay-container {
23688
23642
  contain: layout;
23689
23643
  left: 0;
@@ -23747,62 +23701,122 @@ html.v-overlay-scroll-blocked {
23747
23701
 
23748
23702
  .v-overlay--scroll-blocked {
23749
23703
  padding-inline-end: var(--v-scrollbar-offset);
23750
- }.v-otp-input {
23751
- border-radius: 4px;
23752
- align-items: center;
23704
+ }.v-navigation-drawer {
23705
+ -webkit-overflow-scrolling: touch;
23706
+ background: rgb(var(--v-theme-surface));
23753
23707
  display: flex;
23754
- justify-content: center;
23755
- padding: 0.5rem 0;
23756
- position: relative;
23757
- }
23758
- .v-otp-input .v-field {
23708
+ flex-direction: column;
23759
23709
  height: 100%;
23710
+ max-width: 100%;
23711
+ pointer-events: auto;
23712
+ transition-duration: 0.2s;
23713
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
23714
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23715
+ position: absolute;
23716
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23717
+ border-style: solid;
23718
+ border-width: 0;
23719
+ 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));
23720
+ background: rgb(var(--v-theme-surface));
23721
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23760
23722
  }
23761
-
23762
- .v-otp-input__divider {
23763
- margin: 0 8px;
23723
+ .v-navigation-drawer--border {
23724
+ border-width: thin;
23725
+ box-shadow: none;
23764
23726
  }
23765
-
23766
- .v-otp-input__content {
23767
- align-items: center;
23768
- display: flex;
23769
- gap: 0.5rem;
23770
- height: 64px;
23771
- padding: 0.5rem;
23772
- justify-content: center;
23773
- max-width: 320px;
23774
- position: relative;
23775
- border-radius: inherit;
23727
+ .v-navigation-drawer--rounded {
23728
+ border-radius: 4px;
23776
23729
  }
23777
- .v-otp-input--divided .v-otp-input__content {
23778
- max-width: 360px;
23730
+ .v-navigation-drawer--top, .v-navigation-drawer--bottom {
23731
+ max-height: -webkit-fill-available;
23732
+ overflow-y: auto;
23733
+ }
23734
+ .v-navigation-drawer--top {
23735
+ top: 0;
23736
+ border-bottom-width: thin;
23737
+ }
23738
+ .v-navigation-drawer--bottom {
23739
+ left: 0;
23740
+ border-top-width: thin;
23741
+ }
23742
+ .v-navigation-drawer--left {
23743
+ top: 0;
23744
+ left: 0;
23745
+ right: auto;
23746
+ border-right-width: thin;
23747
+ }
23748
+ .v-navigation-drawer--right {
23749
+ top: 0;
23750
+ left: auto;
23751
+ right: 0;
23752
+ border-left-width: thin;
23753
+ }
23754
+ .v-navigation-drawer--floating {
23755
+ border: none;
23756
+ }
23757
+ .v-navigation-drawer--temporary.v-navigation-drawer--active {
23758
+ 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));
23759
+ }
23760
+ .v-navigation-drawer--sticky {
23761
+ height: auto;
23762
+ transition: box-shadow, transform, visibility, width, height, left, right;
23763
+ }
23764
+ .v-navigation-drawer .v-list {
23765
+ overflow: hidden;
23779
23766
  }
23780
23767
 
23781
- .v-otp-input__field {
23782
- color: inherit;
23783
- font-size: 1.25rem;
23768
+ .v-navigation-drawer__content {
23769
+ flex: 0 1 auto;
23784
23770
  height: 100%;
23785
- outline: none;
23786
- text-align: center;
23787
- width: 100%;
23771
+ max-width: 100%;
23772
+ overflow-x: hidden;
23773
+ overflow-y: auto;
23788
23774
  }
23789
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23790
- -webkit-appearance: none;
23791
- margin: 0;
23775
+
23776
+ .v-navigation-drawer__img {
23777
+ height: 100%;
23778
+ left: 0;
23779
+ position: absolute;
23780
+ top: 0;
23781
+ width: 100%;
23782
+ z-index: -1;
23792
23783
  }
23793
- .v-otp-input__field[type=number] {
23794
- -moz-appearance: textfield;
23784
+ .v-navigation-drawer__img img:not(.v-img__img) {
23785
+ height: inherit;
23786
+ object-fit: cover;
23787
+ width: inherit;
23795
23788
  }
23796
23789
 
23797
- .v-otp-input__loader {
23798
- align-items: center;
23799
- display: flex;
23790
+ .v-navigation-drawer__scrim {
23791
+ position: absolute;
23792
+ top: 0;
23793
+ left: 0;
23794
+ width: 100%;
23800
23795
  height: 100%;
23796
+ background: black;
23797
+ opacity: 0.2;
23798
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23799
+ z-index: 1;
23800
+ }
23801
+
23802
+ .v-navigation-drawer__prepend,
23803
+ .v-navigation-drawer__append {
23804
+ flex: none;
23805
+ overflow: hidden;
23806
+ }.v-pagination__list {
23807
+ display: inline-flex;
23808
+ list-style-type: none;
23801
23809
  justify-content: center;
23802
23810
  width: 100%;
23803
23811
  }
23804
- .v-otp-input__loader .v-progress-linear {
23805
- position: absolute;
23812
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23813
+ margin: 0.3rem;
23814
+ }.v-parallax {
23815
+ position: relative;
23816
+ overflow: hidden;
23817
+ }
23818
+ .v-parallax--active > .v-img__img {
23819
+ will-change: transform;
23806
23820
  }.v-progress-circular {
23807
23821
  align-items: center;
23808
23822
  display: inline-flex;
@@ -23905,20 +23919,6 @@ html.v-overlay-scroll-blocked {
23905
23919
  100% {
23906
23920
  transform: rotate(270deg);
23907
23921
  }
23908
- }.v-pagination__list {
23909
- display: inline-flex;
23910
- list-style-type: none;
23911
- justify-content: center;
23912
- width: 100%;
23913
- }
23914
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23915
- 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,6 +24241,18 @@ html.v-overlay-scroll-blocked {
24253
24241
  opacity: 0;
24254
24242
  position: absolute;
24255
24243
  width: 0;
24244
+ }.v-radio-group > .v-input__control {
24245
+ flex-direction: column;
24246
+ }
24247
+ .v-radio-group > .v-input__control > .v-label {
24248
+ margin-inline-start: 16px;
24249
+ }
24250
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24251
+ padding-inline-start: 6px;
24252
+ margin-top: 8px;
24253
+ }
24254
+ .v-radio-group .v-input__details {
24255
+ padding-inline: 16px;
24256
24256
  }.v-select .v-field .v-text-field__prefix,
24257
24257
  .v-select .v-field .v-text-field__suffix,
24258
24258
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -24436,6 +24436,34 @@ html.v-overlay-scroll-blocked {
24436
24436
  .v-selection-control-group--inline {
24437
24437
  flex-direction: row;
24438
24438
  flex-wrap: wrap;
24439
+ }.v-sheet {
24440
+ display: block;
24441
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24442
+ border-style: solid;
24443
+ border-width: 0;
24444
+ 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));
24445
+ border-radius: 0;
24446
+ background: rgb(var(--v-theme-surface));
24447
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24448
+ }
24449
+ .v-sheet--border {
24450
+ border-width: thin;
24451
+ box-shadow: none;
24452
+ }
24453
+ .v-sheet--absolute {
24454
+ position: absolute;
24455
+ }
24456
+ .v-sheet--fixed {
24457
+ position: fixed;
24458
+ }
24459
+ .v-sheet--relative {
24460
+ position: relative;
24461
+ }
24462
+ .v-sheet--sticky {
24463
+ position: sticky;
24464
+ }
24465
+ .v-sheet--rounded {
24466
+ border-radius: 4px;
24439
24467
  }.v-skeleton-loader {
24440
24468
  align-items: center;
24441
24469
  background: rgb(var(--v-theme-surface));
@@ -24659,89 +24687,56 @@ html.v-overlay-scroll-blocked {
24659
24687
  100% {
24660
24688
  transform: translateX(100%);
24661
24689
  }
24662
- }.v-sheet {
24663
- display: block;
24664
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24665
- border-style: solid;
24666
- border-width: 0;
24667
- 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));
24668
- border-radius: 0;
24669
- background: rgb(var(--v-theme-surface));
24670
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24671
- }
24672
- .v-sheet--border {
24673
- border-width: thin;
24674
- box-shadow: none;
24675
- }
24676
- .v-sheet--absolute {
24677
- position: absolute;
24678
- }
24679
- .v-sheet--fixed {
24680
- position: fixed;
24681
- }
24682
- .v-sheet--relative {
24683
- position: relative;
24684
- }
24685
- .v-sheet--sticky {
24686
- position: sticky;
24687
- }
24688
- .v-sheet--rounded {
24690
+ }.v-stepper.v-sheet {
24691
+ 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));
24689
24692
  border-radius: 4px;
24690
- }.v-slide-group {
24691
- display: flex;
24692
24693
  overflow: hidden;
24693
24694
  }
24695
+ .v-stepper.v-sheet.v-stepper--flat {
24696
+ 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));
24697
+ }
24694
24698
 
24695
- .v-slide-group__next,
24696
- .v-slide-group__prev {
24699
+ .v-stepper-header {
24700
+ 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));
24697
24701
  align-items: center;
24698
24702
  display: flex;
24699
- flex: 0 1 52px;
24700
- justify-content: center;
24701
- min-width: 52px;
24702
- cursor: pointer;
24703
+ position: relative;
24704
+ overflow-x: auto;
24705
+ justify-content: space-between;
24706
+ z-index: 1;
24703
24707
  }
24704
- .v-slide-group__next--disabled,
24705
- .v-slide-group__prev--disabled {
24706
- pointer-events: none;
24707
- opacity: var(--v-disabled-opacity);
24708
+ .v-stepper-header .v-divider {
24709
+ margin: 0 -16px;
24708
24710
  }
24709
-
24710
- .v-slide-group__content {
24711
- display: flex;
24712
- flex: 1 0 auto;
24713
- position: relative;
24714
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24715
- white-space: nowrap;
24711
+ .v-stepper-header .v-divider:last-child {
24712
+ margin-inline-end: 0;
24716
24713
  }
24717
- .v-slide-group__content > * {
24718
- white-space: initial;
24714
+ .v-stepper-header .v-divider:first-child {
24715
+ margin-inline-start: 0;
24719
24716
  }
24720
-
24721
- .v-slide-group__container {
24722
- contain: content;
24723
- display: flex;
24724
- flex: 1 1 auto;
24725
- overflow-x: auto;
24726
- overflow-y: hidden;
24727
- scrollbar-width: none;
24728
- scrollbar-color: rgba(0, 0, 0, 0);
24717
+ .v-stepper--alt-labels .v-stepper-header {
24718
+ height: auto;
24729
24719
  }
24730
- .v-slide-group__container::-webkit-scrollbar {
24731
- display: none;
24720
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
24721
+ align-self: flex-start;
24722
+ margin: 35px -67px 0;
24732
24723
  }
24733
24724
 
24734
- .v-slide-group--vertical {
24735
- max-height: inherit;
24725
+ .v-stepper-window {
24726
+ margin: 1.5rem;
24736
24727
  }
24737
- .v-slide-group--vertical,
24738
- .v-slide-group--vertical .v-slide-group__container,
24739
- .v-slide-group--vertical .v-slide-group__content {
24740
- flex-direction: column;
24728
+
24729
+ .v-stepper-actions {
24730
+ display: flex;
24731
+ align-items: center;
24732
+ justify-content: space-between;
24733
+ padding: 1rem;
24741
24734
  }
24742
- .v-slide-group--vertical .v-slide-group__container {
24743
- overflow-x: hidden;
24744
- overflow-y: auto;
24735
+ .v-stepper .v-stepper-actions {
24736
+ padding: 0 1.5rem 1rem;
24737
+ }
24738
+ .v-stepper-window-item .v-stepper-actions {
24739
+ padding: 1.5rem 0 0;
24745
24740
  }.v-snackbar {
24746
24741
  justify-content: center;
24747
24742
  z-index: 10000;
@@ -24749,7 +24744,7 @@ html.v-overlay-scroll-blocked {
24749
24744
  margin-inline-end: calc(8px + var(--v-scrollbar-offset));
24750
24745
  padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
24751
24746
  }
24752
- .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
24747
+ .v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
24753
24748
  align-items: flex-end;
24754
24749
  }
24755
24750
  .v-snackbar__wrapper {
@@ -24880,56 +24875,6 @@ html.v-overlay-scroll-blocked {
24880
24875
  }
24881
24876
  .v-snackbar-transition-leave-to {
24882
24877
  opacity: 0;
24883
- }.v-stepper.v-sheet {
24884
- 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));
24885
- border-radius: 4px;
24886
- overflow: hidden;
24887
- }
24888
- .v-stepper.v-sheet.v-stepper--flat {
24889
- 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));
24890
- }
24891
-
24892
- .v-stepper-header {
24893
- 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));
24894
- align-items: center;
24895
- display: flex;
24896
- position: relative;
24897
- overflow-x: auto;
24898
- justify-content: space-between;
24899
- z-index: 1;
24900
- }
24901
- .v-stepper-header .v-divider {
24902
- margin: 0 -16px;
24903
- }
24904
- .v-stepper-header .v-divider:last-child {
24905
- margin-inline-end: 0;
24906
- }
24907
- .v-stepper-header .v-divider:first-child {
24908
- margin-inline-start: 0;
24909
- }
24910
- .v-stepper--alt-labels .v-stepper-header {
24911
- height: auto;
24912
- }
24913
- .v-stepper--alt-labels .v-stepper-header .v-divider {
24914
- align-self: flex-start;
24915
- margin: 35px -67px 0;
24916
- }
24917
-
24918
- .v-stepper-window {
24919
- margin: 1.5rem;
24920
- }
24921
-
24922
- .v-stepper-actions {
24923
- display: flex;
24924
- align-items: center;
24925
- justify-content: space-between;
24926
- padding: 1rem;
24927
- }
24928
- .v-stepper .v-stepper-actions {
24929
- padding: 0 1.5rem 1rem;
24930
- }
24931
- .v-stepper-window-item .v-stepper-actions {
24932
- padding: 1.5rem 0 0;
24933
24878
  }.v-stepper-item {
24934
24879
  align-items: center;
24935
24880
  align-self: stretch;
@@ -24994,6 +24939,9 @@ html.v-overlay-scroll-blocked {
24994
24939
  font-size: 0.75rem;
24995
24940
  margin-inline-end: 8px;
24996
24941
  }
24942
+ .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
24943
+ margin-inline-end: 0;
24944
+ }
24997
24945
  .v-stepper-item__avatar.v-avatar .v-icon {
24998
24946
  font-size: 0.875rem;
24999
24947
  }
@@ -25043,47 +24991,61 @@ html.v-overlay-scroll-blocked {
25043
24991
  width: 100%;
25044
24992
  height: 100%;
25045
24993
  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;
24994
+ }.v-slide-group {
24995
+ display: flex;
24996
+ overflow: hidden;
25063
24997
  }
25064
- .v-speed-dial__content > *:nth-child(3) {
25065
- transition-delay: 0.1s;
24998
+
24999
+ .v-slide-group__next,
25000
+ .v-slide-group__prev {
25001
+ align-items: center;
25002
+ display: flex;
25003
+ flex: 0 1 52px;
25004
+ justify-content: center;
25005
+ min-width: 52px;
25006
+ cursor: pointer;
25066
25007
  }
25067
- .v-speed-dial__content > *:nth-child(4) {
25068
- transition-delay: 0.15s;
25008
+ .v-slide-group__next--disabled,
25009
+ .v-slide-group__prev--disabled {
25010
+ pointer-events: none;
25011
+ opacity: var(--v-disabled-opacity);
25069
25012
  }
25070
- .v-speed-dial__content > *:nth-child(5) {
25071
- transition-delay: 0.2s;
25013
+
25014
+ .v-slide-group__content {
25015
+ display: flex;
25016
+ flex: 1 0 auto;
25017
+ position: relative;
25018
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
25019
+ white-space: nowrap;
25072
25020
  }
25073
- .v-speed-dial__content > *:nth-child(6) {
25074
- transition-delay: 0.25s;
25021
+ .v-slide-group__content > * {
25022
+ white-space: initial;
25075
25023
  }
25076
- .v-speed-dial__content > *:nth-child(7) {
25077
- transition-delay: 0.3s;
25024
+
25025
+ .v-slide-group__container {
25026
+ contain: content;
25027
+ display: flex;
25028
+ flex: 1 1 auto;
25029
+ overflow-x: auto;
25030
+ overflow-y: hidden;
25031
+ scrollbar-width: none;
25032
+ scrollbar-color: rgba(0, 0, 0, 0);
25078
25033
  }
25079
- .v-speed-dial__content > *:nth-child(8) {
25080
- transition-delay: 0.35s;
25034
+ .v-slide-group__container::-webkit-scrollbar {
25035
+ display: none;
25081
25036
  }
25082
- .v-speed-dial__content > *:nth-child(9) {
25083
- transition-delay: 0.4s;
25037
+
25038
+ .v-slide-group--vertical {
25039
+ max-height: inherit;
25084
25040
  }
25085
- .v-speed-dial__content > *:nth-child(10) {
25086
- transition-delay: 0.45s;
25041
+ .v-slide-group--vertical,
25042
+ .v-slide-group--vertical .v-slide-group__container,
25043
+ .v-slide-group--vertical .v-slide-group__content {
25044
+ flex-direction: column;
25045
+ }
25046
+ .v-slide-group--vertical .v-slide-group__container {
25047
+ overflow-x: hidden;
25048
+ overflow-y: auto;
25087
25049
  }.v-switch .v-label {
25088
25050
  padding-inline-start: 10px;
25089
25051
  }
@@ -25264,6 +25226,84 @@ html.v-overlay-scroll-blocked {
25264
25226
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25265
25227
  border-width: 0;
25266
25228
  }
25229
+ }.v-speed-dial__content {
25230
+ gap: 8px;
25231
+ }
25232
+ .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 {
25233
+ flex-direction: row;
25234
+ }
25235
+ .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 {
25236
+ flex-direction: row-reverse;
25237
+ }
25238
+ .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 {
25239
+ flex-direction: column-reverse;
25240
+ }
25241
+ .v-speed-dial__content > *:nth-child(1) {
25242
+ transition-delay: 0s;
25243
+ }
25244
+ .v-speed-dial__content > *:nth-child(2) {
25245
+ transition-delay: 0.05s;
25246
+ }
25247
+ .v-speed-dial__content > *:nth-child(3) {
25248
+ transition-delay: 0.1s;
25249
+ }
25250
+ .v-speed-dial__content > *:nth-child(4) {
25251
+ transition-delay: 0.15s;
25252
+ }
25253
+ .v-speed-dial__content > *:nth-child(5) {
25254
+ transition-delay: 0.2s;
25255
+ }
25256
+ .v-speed-dial__content > *:nth-child(6) {
25257
+ transition-delay: 0.25s;
25258
+ }
25259
+ .v-speed-dial__content > *:nth-child(7) {
25260
+ transition-delay: 0.3s;
25261
+ }
25262
+ .v-speed-dial__content > *:nth-child(8) {
25263
+ transition-delay: 0.35s;
25264
+ }
25265
+ .v-speed-dial__content > *:nth-child(9) {
25266
+ transition-delay: 0.4s;
25267
+ }
25268
+ .v-speed-dial__content > *:nth-child(10) {
25269
+ transition-delay: 0.45s;
25270
+ }.v-system-bar {
25271
+ align-items: center;
25272
+ display: flex;
25273
+ flex: 1 1 auto;
25274
+ height: 24px;
25275
+ justify-content: flex-end;
25276
+ max-width: 100%;
25277
+ padding-inline: 8px;
25278
+ position: relative;
25279
+ text-align: end;
25280
+ width: 100%;
25281
+ 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));
25282
+ background: rgba(var(--v-theme-surface-light));
25283
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25284
+ font-size: 0.75rem;
25285
+ font-weight: 400;
25286
+ letter-spacing: 0.0333333333em;
25287
+ line-height: 1.667;
25288
+ text-transform: none;
25289
+ }
25290
+ .v-system-bar .v-icon {
25291
+ opacity: var(--v-medium-emphasis-opacity);
25292
+ }
25293
+ .v-system-bar--absolute {
25294
+ position: absolute;
25295
+ }
25296
+ .v-system-bar--fixed {
25297
+ position: fixed;
25298
+ }
25299
+ .v-system-bar--rounded {
25300
+ border-radius: 0;
25301
+ }
25302
+ .v-system-bar--window {
25303
+ height: 32px;
25304
+ }
25305
+ .v-system-bar:not(.v-system-bar--absolute) {
25306
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25267
25307
  }.v-tabs {
25268
25308
  display: flex;
25269
25309
  height: var(--v-tabs-height);
@@ -25330,43 +25370,6 @@ html.v-overlay-scroll-blocked {
25330
25370
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25331
25371
  margin-inline-end: 52px;
25332
25372
  }
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;
25364
- }
25365
- .v-system-bar--window {
25366
- height: 32px;
25367
- }
25368
- .v-system-bar:not(.v-system-bar--absolute) {
25369
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25370
25373
  }.v-tab.v-tab.v-btn {
25371
25374
  height: var(--v-tabs-height);
25372
25375
  border-radius: 0;
@@ -25502,7 +25505,10 @@ html.v-overlay-scroll-blocked {
25502
25505
  padding-inline-end: var(--v-field-padding-end);
25503
25506
  }
25504
25507
 
25505
- /* endregion */.v-table {
25508
+ /* endregion */.v-theme-provider {
25509
+ background: rgb(var(--v-theme-background));
25510
+ color: rgb(var(--v-theme-on-background));
25511
+ }.v-table {
25506
25512
  background: rgb(var(--v-theme-surface));
25507
25513
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25508
25514
  font-size: 0.875rem;
@@ -26056,9 +26062,6 @@ html.v-overlay-scroll-blocked {
26056
26062
 
26057
26063
  .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26058
26064
  padding-inline-end: 0;
26059
- }.v-theme-provider {
26060
- background: rgb(var(--v-theme-background));
26061
- color: rgb(var(--v-theme-on-background));
26062
26065
  }.v-toolbar {
26063
26066
  align-items: flex-start;
26064
26067
  display: flex;
@@ -26210,6 +26213,15 @@ html.v-overlay-scroll-blocked {
26210
26213
  .v-tooltip > .v-overlay__content[class*=leave-active] {
26211
26214
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26212
26215
  transition-duration: 75ms;
26216
+ }.v-virtual-scroll {
26217
+ display: block;
26218
+ flex: 1 1 auto;
26219
+ max-width: 100%;
26220
+ overflow: auto;
26221
+ position: relative;
26222
+ }
26223
+ .v-virtual-scroll__container {
26224
+ display: block;
26213
26225
  }.v-window {
26214
26226
  overflow: hidden;
26215
26227
  }
@@ -26280,65 +26292,6 @@ html.v-overlay-scroll-blocked {
26280
26292
  }
26281
26293
  .v-window-y-reverse-transition-leave-to {
26282
26294
  transform: translateY(100%);
26283
- }.v-virtual-scroll {
26284
- display: block;
26285
- flex: 1 1 auto;
26286
- max-width: 100%;
26287
- overflow: auto;
26288
- position: relative;
26289
- }
26290
- .v-virtual-scroll__container {
26291
- 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
- }.v-color-picker-canvas {
26321
- display: flex;
26322
- position: relative;
26323
- overflow: hidden;
26324
- contain: content;
26325
- touch-action: none;
26326
- }
26327
- .v-color-picker-canvas__dot {
26328
- position: absolute;
26329
- top: 0;
26330
- left: 0;
26331
- width: 15px;
26332
- height: 15px;
26333
- background: transparent;
26334
- border-radius: 50%;
26335
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26336
- }
26337
- .v-color-picker-canvas__dot--disabled {
26338
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26339
- }
26340
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26341
- will-change: transform;
26342
26295
  }.v-color-picker-preview__alpha .v-slider-track__background {
26343
26296
  background-color: transparent !important;
26344
26297
  }
@@ -26409,6 +26362,56 @@ html.v-overlay-scroll-blocked {
26409
26362
  .v-color-picker-preview__eye-dropper {
26410
26363
  position: relative;
26411
26364
  margin-right: 12px;
26365
+ }.v-color-picker-edit {
26366
+ display: flex;
26367
+ margin-top: 24px;
26368
+ }
26369
+
26370
+ .v-color-picker-edit__input {
26371
+ width: 100%;
26372
+ display: flex;
26373
+ flex-wrap: wrap;
26374
+ justify-content: center;
26375
+ text-align: center;
26376
+ }
26377
+ .v-color-picker-edit__input:not(:last-child) {
26378
+ margin-inline-end: 8px;
26379
+ }
26380
+ .v-color-picker-edit__input input {
26381
+ border-radius: 4px;
26382
+ margin-bottom: 8px;
26383
+ min-width: 0;
26384
+ outline: none;
26385
+ text-align: center;
26386
+ width: 100%;
26387
+ height: 32px;
26388
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26389
+ color: rgba(var(--v-theme-on-surface));
26390
+ }
26391
+ .v-color-picker-edit__input span {
26392
+ font-size: 0.75rem;
26393
+ }.v-color-picker-canvas {
26394
+ display: flex;
26395
+ position: relative;
26396
+ overflow: hidden;
26397
+ contain: content;
26398
+ touch-action: none;
26399
+ }
26400
+ .v-color-picker-canvas__dot {
26401
+ position: absolute;
26402
+ top: 0;
26403
+ left: 0;
26404
+ width: 15px;
26405
+ height: 15px;
26406
+ background: transparent;
26407
+ border-radius: 50%;
26408
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26409
+ }
26410
+ .v-color-picker-canvas__dot--disabled {
26411
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26412
+ }
26413
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26414
+ will-change: transform;
26412
26415
  }.v-color-picker-swatches {
26413
26416
  overflow-y: auto;
26414
26417
  }