@vuetify/nightly 3.5.3-dev.2024-02-08 → 3.5.3-dev.2024-02-14

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 (50) hide show
  1. package/CHANGELOG.md +3 -2
  2. package/dist/json/attributes.json +5 -5
  3. package/dist/json/importMap-labs.json +8 -8
  4. package/dist/json/importMap.json +98 -98
  5. package/dist/json/web-types.json +6 -6
  6. package/dist/vuetify-labs.css +2446 -2446
  7. package/dist/vuetify-labs.d.ts +22 -21
  8. package/dist/vuetify-labs.esm.js +58 -62
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +57 -61
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +1218 -1218
  13. package/dist/vuetify.d.ts +53 -52
  14. package/dist/vuetify.esm.js +58 -62
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +57 -61
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +909 -914
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VApp/VApp.mjs +5 -2
  22. package/lib/components/VApp/VApp.mjs.map +1 -1
  23. package/lib/components/VApp/index.d.mts +6 -6
  24. package/lib/components/VAppBar/VAppBar.mjs +5 -5
  25. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  26. package/lib/components/VAppBar/index.d.mts +2 -2
  27. package/lib/components/VBottomNavigation/VBottomNavigation.mjs +5 -3
  28. package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
  29. package/lib/components/VBottomNavigation/index.d.mts +2 -2
  30. package/lib/components/VFooter/VFooter.mjs +3 -2
  31. package/lib/components/VFooter/VFooter.mjs.map +1 -1
  32. package/lib/components/VLayout/VLayout.mjs +5 -2
  33. package/lib/components/VLayout/VLayout.mjs.map +1 -1
  34. package/lib/components/VLayout/VLayoutItem.mjs +6 -4
  35. package/lib/components/VLayout/VLayoutItem.mjs.map +1 -1
  36. package/lib/components/VLayout/index.d.mts +9 -9
  37. package/lib/components/VMain/VMain.mjs +3 -2
  38. package/lib/components/VMain/VMain.mjs.map +1 -1
  39. package/lib/components/VMain/index.d.mts +2 -2
  40. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +7 -7
  41. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  42. package/lib/components/index.d.mts +21 -21
  43. package/lib/composables/layout.mjs +14 -37
  44. package/lib/composables/layout.mjs.map +1 -1
  45. package/lib/entry-bundler.mjs +1 -1
  46. package/lib/framework.mjs +1 -1
  47. package/lib/index.d.mts +32 -31
  48. package/lib/util/helpers.mjs +11 -1
  49. package/lib/util/helpers.mjs.map +1 -1
  50. package/package.json +1 -1
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.3-dev.2024-02-08
2
+ * Vuetify v3.5.3-dev.2024-02-14
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17451,6 +17451,77 @@ html.overflow-y-hidden {
17451
17451
  .v-avatar .v-img {
17452
17452
  height: 100%;
17453
17453
  width: 100%;
17454
+ }.v-badge {
17455
+ display: inline-block;
17456
+ line-height: 1;
17457
+ }
17458
+
17459
+ .v-badge__badge {
17460
+ align-items: center;
17461
+ display: inline-flex;
17462
+ border-radius: 10px;
17463
+ font-size: 0.75rem;
17464
+ font-weight: 500;
17465
+ height: 1.25rem;
17466
+ justify-content: center;
17467
+ min-width: 20px;
17468
+ padding: 4px 6px;
17469
+ pointer-events: auto;
17470
+ position: absolute;
17471
+ text-align: center;
17472
+ text-indent: 0;
17473
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17474
+ white-space: nowrap;
17475
+ background: rgb(var(--v-theme-surface-variant));
17476
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17477
+ }
17478
+ .v-badge--bordered .v-badge__badge::after {
17479
+ border-radius: inherit;
17480
+ border-style: solid;
17481
+ border-width: 2px;
17482
+ bottom: 0;
17483
+ color: rgb(var(--v-theme-background));
17484
+ content: "";
17485
+ left: 0;
17486
+ position: absolute;
17487
+ right: 0;
17488
+ top: 0;
17489
+ transform: scale(1.05);
17490
+ }
17491
+ .v-badge--dot .v-badge__badge {
17492
+ border-radius: 4.5px;
17493
+ height: 9px;
17494
+ min-width: 0;
17495
+ padding: 0;
17496
+ width: 9px;
17497
+ }
17498
+ .v-badge--dot .v-badge__badge::after {
17499
+ border-width: 1.5px;
17500
+ }
17501
+ .v-badge--inline .v-badge__badge {
17502
+ position: relative;
17503
+ vertical-align: middle;
17504
+ }
17505
+ .v-badge__badge .v-icon {
17506
+ color: inherit;
17507
+ font-size: 0.75rem;
17508
+ margin: 0 -2px;
17509
+ }
17510
+ .v-badge__badge img,
17511
+ .v-badge__badge .v-img {
17512
+ height: 100%;
17513
+ width: 100%;
17514
+ }
17515
+
17516
+ .v-badge__wrapper {
17517
+ display: flex;
17518
+ position: relative;
17519
+ }
17520
+ .v-badge--inline .v-badge__wrapper {
17521
+ align-items: center;
17522
+ display: inline-flex;
17523
+ justify-content: center;
17524
+ margin: 0 4px;
17454
17525
  }.v-banner {
17455
17526
  display: grid;
17456
17527
  flex: 1 1;
@@ -17608,109 +17679,6 @@ html.overflow-y-hidden {
17608
17679
  }
17609
17680
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
17610
17681
  align-self: flex-start;
17611
- }.v-badge {
17612
- display: inline-block;
17613
- line-height: 1;
17614
- }
17615
-
17616
- .v-badge__badge {
17617
- align-items: center;
17618
- display: inline-flex;
17619
- border-radius: 10px;
17620
- font-size: 0.75rem;
17621
- font-weight: 500;
17622
- height: 1.25rem;
17623
- justify-content: center;
17624
- min-width: 20px;
17625
- padding: 4px 6px;
17626
- pointer-events: auto;
17627
- position: absolute;
17628
- text-align: center;
17629
- text-indent: 0;
17630
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17631
- white-space: nowrap;
17632
- background: rgb(var(--v-theme-surface-variant));
17633
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17634
- }
17635
- .v-badge--bordered .v-badge__badge::after {
17636
- border-radius: inherit;
17637
- border-style: solid;
17638
- border-width: 2px;
17639
- bottom: 0;
17640
- color: rgb(var(--v-theme-background));
17641
- content: "";
17642
- left: 0;
17643
- position: absolute;
17644
- right: 0;
17645
- top: 0;
17646
- transform: scale(1.05);
17647
- }
17648
- .v-badge--dot .v-badge__badge {
17649
- border-radius: 4.5px;
17650
- height: 9px;
17651
- min-width: 0;
17652
- padding: 0;
17653
- width: 9px;
17654
- }
17655
- .v-badge--dot .v-badge__badge::after {
17656
- border-width: 1.5px;
17657
- }
17658
- .v-badge--inline .v-badge__badge {
17659
- position: relative;
17660
- vertical-align: middle;
17661
- }
17662
- .v-badge__badge .v-icon {
17663
- color: inherit;
17664
- font-size: 0.75rem;
17665
- margin: 0 -2px;
17666
- }
17667
- .v-badge__badge img,
17668
- .v-badge__badge .v-img {
17669
- height: 100%;
17670
- width: 100%;
17671
- }
17672
-
17673
- .v-badge__wrapper {
17674
- display: flex;
17675
- position: relative;
17676
- }
17677
- .v-badge--inline .v-badge__wrapper {
17678
- align-items: center;
17679
- display: inline-flex;
17680
- justify-content: center;
17681
- margin: 0 4px;
17682
- }.bottom-sheet-transition-enter-from {
17683
- transform: translateY(100%);
17684
- }
17685
- .bottom-sheet-transition-leave-to {
17686
- transform: translateY(100%);
17687
- }
17688
-
17689
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17690
- align-self: flex-end;
17691
- border-radius: 0;
17692
- flex: 0 1 auto;
17693
- left: 0;
17694
- right: 0;
17695
- margin-inline: 0;
17696
- margin-bottom: 0;
17697
- transition-duration: 0.2s;
17698
- width: 100%;
17699
- max-width: 100%;
17700
- overflow: visible;
17701
- 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));
17702
- }
17703
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17704
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17705
- border-radius: 0;
17706
- }
17707
- .v-bottom-sheet.v-bottom-sheet--inset {
17708
- max-width: none;
17709
- }
17710
- @media (min-width: 600px) {
17711
- .v-bottom-sheet.v-bottom-sheet--inset {
17712
- max-width: 70%;
17713
- }
17714
17682
  }.v-bottom-navigation {
17715
17683
  display: flex;
17716
17684
  max-width: 100%;
@@ -17823,6 +17791,38 @@ html.overflow-y-hidden {
17823
17791
  display: inline-block;
17824
17792
  padding: 0 8px;
17825
17793
  vertical-align: middle;
17794
+ }.bottom-sheet-transition-enter-from {
17795
+ transform: translateY(100%);
17796
+ }
17797
+ .bottom-sheet-transition-leave-to {
17798
+ transform: translateY(100%);
17799
+ }
17800
+
17801
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17802
+ align-self: flex-end;
17803
+ border-radius: 0;
17804
+ flex: 0 1 auto;
17805
+ left: 0;
17806
+ right: 0;
17807
+ margin-inline: 0;
17808
+ margin-bottom: 0;
17809
+ transition-duration: 0.2s;
17810
+ width: 100%;
17811
+ max-width: 100%;
17812
+ overflow: visible;
17813
+ 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));
17814
+ }
17815
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17816
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17817
+ border-radius: 0;
17818
+ }
17819
+ .v-bottom-sheet.v-bottom-sheet--inset {
17820
+ max-width: none;
17821
+ }
17822
+ @media (min-width: 600px) {
17823
+ .v-bottom-sheet.v-bottom-sheet--inset {
17824
+ max-width: 70%;
17825
+ }
17826
17826
  }.v-btn {
17827
17827
  align-items: center;
17828
17828
  border-radius: 4px;
@@ -19756,6 +19756,26 @@ html.overflow-y-hidden {
19756
19756
  .offset-xxl-11 {
19757
19757
  margin-inline-start: 91.6666666667%;
19758
19758
  }
19759
+ }.v-color-picker {
19760
+ align-self: flex-start;
19761
+ contain: content;
19762
+ }
19763
+ .v-color-picker.v-sheet {
19764
+ 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));
19765
+ border-radius: 4px;
19766
+ }
19767
+
19768
+ .v-color-picker__controls {
19769
+ display: flex;
19770
+ flex-direction: column;
19771
+ padding: 16px;
19772
+ }
19773
+
19774
+ .v-color-picker--flat {
19775
+ 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));
19776
+ }
19777
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19778
+ 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));
19759
19779
  }.v-combobox .v-field .v-text-field__prefix,
19760
19780
  .v-combobox .v-field .v-text-field__suffix,
19761
19781
  .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
@@ -19837,26 +19857,6 @@ html.overflow-y-hidden {
19837
19857
  .v-combobox--active-menu .v-combobox__menu-icon {
19838
19858
  opacity: var(--v-high-emphasis-opacity);
19839
19859
  transform: rotate(180deg);
19840
- }.v-color-picker {
19841
- align-self: flex-start;
19842
- contain: content;
19843
- }
19844
- .v-color-picker.v-sheet {
19845
- 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));
19846
- border-radius: 4px;
19847
- }
19848
-
19849
- .v-color-picker__controls {
19850
- display: flex;
19851
- flex-direction: column;
19852
- padding: 16px;
19853
- }
19854
-
19855
- .v-color-picker--flat {
19856
- 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));
19857
- }
19858
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19859
- 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));
19860
19860
  }.v-counter {
19861
19861
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
19862
19862
  flex: 0 1 auto;
@@ -20055,16 +20055,65 @@ html.overflow-y-hidden {
20055
20055
  .v-date-picker-month__day .v-btn {
20056
20056
  --v-btn-height: 28px;
20057
20057
  --v-btn-size: 0.85rem;
20058
- }.v-date-picker-controls {
20058
+ }.v-date-picker-month {
20059
20059
  display: flex;
20060
- align-items: center;
20061
- justify-content: space-between;
20062
- font-size: 0.875rem;
20063
- padding-top: 4px;
20064
- padding-bottom: 4px;
20065
- padding-inline-start: 6px;
20066
- padding-inline-end: 12px;
20067
- }
20060
+ justify-content: center;
20061
+ min-width: 328px;
20062
+ --v-date-picker-month-day-diff: 4px;
20063
+ }
20064
+
20065
+ .v-date-picker-month__weeks {
20066
+ display: grid;
20067
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20068
+ row-gap: 4px;
20069
+ font-size: 0.875rem;
20070
+ }
20071
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
20072
+ grid-row-gap: 0;
20073
+ }
20074
+
20075
+ .v-date-picker-month__weekday {
20076
+ font-size: 0.875rem;
20077
+ }
20078
+
20079
+ .v-date-picker-month__days {
20080
+ display: grid;
20081
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20082
+ row-gap: 4px;
20083
+ flex: 1 1;
20084
+ justify-content: space-around;
20085
+ }
20086
+
20087
+ .v-date-picker-month__day {
20088
+ align-items: center;
20089
+ display: flex;
20090
+ justify-content: center;
20091
+ position: relative;
20092
+ }
20093
+ .v-date-picker-month__day--selected .v-btn {
20094
+ background-color: rgb(var(--v-theme-surface-variant));
20095
+ color: rgb(var(--v-theme-on-surface-variant));
20096
+ }
20097
+ .v-date-picker-month__day--week {
20098
+ font-size: var(--v-btn-size);
20099
+ }
20100
+
20101
+ .v-date-picker-month__day--adjacent {
20102
+ opacity: 0.5;
20103
+ }
20104
+
20105
+ .v-date-picker-month__day--hide-adjacent {
20106
+ opacity: 0;
20107
+ }.v-date-picker-controls {
20108
+ display: flex;
20109
+ align-items: center;
20110
+ justify-content: space-between;
20111
+ font-size: 0.875rem;
20112
+ padding-top: 4px;
20113
+ padding-bottom: 4px;
20114
+ padding-inline-start: 6px;
20115
+ padding-inline-end: 12px;
20116
+ }
20068
20117
  .v-date-picker-controls > .v-btn:first-child {
20069
20118
  text-transform: none;
20070
20119
  font-weight: 400;
@@ -20111,6 +20160,26 @@ html.overflow-y-hidden {
20111
20160
 
20112
20161
  .v-date-picker__title {
20113
20162
  display: inline-block;
20163
+ }.v-date-picker-months {
20164
+ height: 320px;
20165
+ overflow-y: scroll;
20166
+ }
20167
+
20168
+ .v-date-picker-months__content {
20169
+ align-items: center;
20170
+ display: grid;
20171
+ flex: 1 1;
20172
+ height: inherit;
20173
+ justify-content: space-around;
20174
+ grid-template-columns: repeat(2, 1fr);
20175
+ grid-gap: 4px 24px;
20176
+ padding-inline-start: 36px;
20177
+ padding-inline-end: 36px;
20178
+ }
20179
+ .v-date-picker-months__content .v-btn {
20180
+ text-transform: none;
20181
+ padding-inline-start: 8px;
20182
+ padding-inline-end: 8px;
20114
20183
  }.v-date-picker-header {
20115
20184
  display: grid;
20116
20185
  grid-template-areas: "prepend content append";
@@ -20169,75 +20238,6 @@ html.overflow-y-hidden {
20169
20238
  .date-picker-header-reverse-transition-leave-to {
20170
20239
  opacity: 0;
20171
20240
  transform: translate(0, 100%);
20172
- }.v-date-picker-month {
20173
- display: flex;
20174
- justify-content: center;
20175
- min-width: 328px;
20176
- --v-date-picker-month-day-diff: 4px;
20177
- }
20178
-
20179
- .v-date-picker-month__weeks {
20180
- display: grid;
20181
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20182
- row-gap: 4px;
20183
- font-size: 0.875rem;
20184
- }
20185
- .v-date-picker-month__weeks + .v-date-picker-month__days {
20186
- grid-row-gap: 0;
20187
- }
20188
-
20189
- .v-date-picker-month__weekday {
20190
- font-size: 0.875rem;
20191
- }
20192
-
20193
- .v-date-picker-month__days {
20194
- display: grid;
20195
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20196
- row-gap: 4px;
20197
- flex: 1 1;
20198
- justify-content: space-around;
20199
- }
20200
-
20201
- .v-date-picker-month__day {
20202
- align-items: center;
20203
- display: flex;
20204
- justify-content: center;
20205
- position: relative;
20206
- }
20207
- .v-date-picker-month__day--selected .v-btn {
20208
- background-color: rgb(var(--v-theme-surface-variant));
20209
- color: rgb(var(--v-theme-on-surface-variant));
20210
- }
20211
- .v-date-picker-month__day--week {
20212
- font-size: var(--v-btn-size);
20213
- }
20214
-
20215
- .v-date-picker-month__day--adjacent {
20216
- opacity: 0.5;
20217
- }
20218
-
20219
- .v-date-picker-month__day--hide-adjacent {
20220
- opacity: 0;
20221
- }.v-date-picker-months {
20222
- height: 320px;
20223
- overflow-y: scroll;
20224
- }
20225
-
20226
- .v-date-picker-months__content {
20227
- align-items: center;
20228
- display: grid;
20229
- flex: 1 1;
20230
- height: inherit;
20231
- justify-content: space-around;
20232
- grid-template-columns: repeat(2, 1fr);
20233
- grid-gap: 4px 24px;
20234
- padding-inline-start: 36px;
20235
- padding-inline-end: 36px;
20236
- }
20237
- .v-date-picker-months__content .v-btn {
20238
- text-transform: none;
20239
- padding-inline-start: 8px;
20240
- padding-inline-end: 8px;
20241
20241
  }.v-date-picker-years {
20242
20242
  height: 320px;
20243
20243
  overflow-y: scroll;
@@ -20253,6 +20253,35 @@ html.overflow-y-hidden {
20253
20253
  }
20254
20254
  .v-date-picker-years__content .v-btn {
20255
20255
  padding-inline: 8px;
20256
+ }.v-divider {
20257
+ display: block;
20258
+ flex: 1 1 100%;
20259
+ height: 0px;
20260
+ max-height: 0px;
20261
+ opacity: var(--v-border-opacity);
20262
+ transition: inherit;
20263
+ border-style: solid;
20264
+ border-width: thin 0 0 0;
20265
+ }
20266
+ .v-divider--vertical {
20267
+ align-self: stretch;
20268
+ border-width: 0 thin 0 0;
20269
+ display: inline-flex;
20270
+ height: inherit;
20271
+ margin-left: -1px;
20272
+ max-height: 100%;
20273
+ max-width: 0px;
20274
+ vertical-align: text-bottom;
20275
+ width: 0px;
20276
+ }
20277
+ .v-divider--inset:not(.v-divider--vertical) {
20278
+ max-width: calc(100% - 72px);
20279
+ margin-inline-start: 72px;
20280
+ }
20281
+ .v-divider--inset.v-divider--vertical {
20282
+ margin-bottom: 8px;
20283
+ margin-top: 8px;
20284
+ max-height: calc(100% - 16px);
20256
20285
  }.v-dialog {
20257
20286
  align-items: center;
20258
20287
  justify-content: center;
@@ -20540,35 +20569,6 @@ html.overflow-y-hidden {
20540
20569
  }
20541
20570
  .v-expansion-panels--variant-inset > .v-expansion-panel--active {
20542
20571
  max-width: calc(100% - 32px);
20543
- }.v-divider {
20544
- display: block;
20545
- flex: 1 1 100%;
20546
- height: 0px;
20547
- max-height: 0px;
20548
- opacity: var(--v-border-opacity);
20549
- transition: inherit;
20550
- border-style: solid;
20551
- border-width: thin 0 0 0;
20552
- }
20553
- .v-divider--vertical {
20554
- align-self: stretch;
20555
- border-width: 0 thin 0 0;
20556
- display: inline-flex;
20557
- height: inherit;
20558
- margin-left: -1px;
20559
- max-height: 100%;
20560
- max-width: 0px;
20561
- vertical-align: text-bottom;
20562
- width: 0px;
20563
- }
20564
- .v-divider--inset:not(.v-divider--vertical) {
20565
- max-width: calc(100% - 72px);
20566
- margin-inline-start: 72px;
20567
- }
20568
- .v-divider--inset.v-divider--vertical {
20569
- margin-bottom: 8px;
20570
- margin-top: 8px;
20571
- max-height: calc(100% - 16px);
20572
20572
  }/* region INPUT */
20573
20573
  .v-field {
20574
20574
  display: grid;
@@ -21453,52 +21453,151 @@ textarea.v-field__input::placeholder {
21453
21453
 
21454
21454
  .v-label--clickable {
21455
21455
  cursor: pointer;
21456
- }.v-locale-provider {
21457
- display: contents;
21458
- }.v-list-item {
21459
- align-items: center;
21460
- display: grid;
21461
- flex: none;
21462
- grid-template-areas: "prepend content append";
21463
- grid-template-columns: max-content 1fr auto;
21464
- outline: none;
21465
- max-width: 100%;
21466
- padding: 4px 16px;
21456
+ }.v-list {
21457
+ overflow: auto;
21458
+ padding: 8px 0;
21467
21459
  position: relative;
21468
- text-decoration: none;
21460
+ outline: none;
21469
21461
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21470
21462
  border-style: solid;
21471
21463
  border-width: 0;
21464
+ 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));
21472
21465
  border-radius: 0;
21466
+ background: rgba(var(--v-theme-surface));
21467
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21473
21468
  }
21474
- .v-list-item--border {
21469
+ .v-list--border {
21475
21470
  border-width: thin;
21476
21471
  box-shadow: none;
21477
21472
  }
21478
- .v-list-item:hover > .v-list-item__overlay {
21479
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21480
- }
21481
- .v-list-item:focus-visible > .v-list-item__overlay {
21482
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21483
- }
21484
- @supports not selector(:focus-visible) {
21485
- .v-list-item:focus > .v-list-item__overlay {
21486
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21487
- }
21488
- }
21489
- .v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
21490
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
21473
+ .v-list--disabled {
21474
+ pointer-events: none;
21475
+ -webkit-user-select: none;
21476
+ user-select: none;
21491
21477
  }
21492
- .v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
21493
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
21478
+ .v-list--nav {
21479
+ padding-inline: 8px;
21494
21480
  }
21495
- .v-list-item--active:focus-visible > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-list-item__overlay {
21496
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21481
+ .v-list--rounded {
21482
+ border-radius: 4px;
21497
21483
  }
21498
- @supports not selector(:focus-visible) {
21499
- .v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
21500
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21501
- }
21484
+ .v-list--subheader {
21485
+ padding-top: 0;
21486
+ }
21487
+
21488
+ .v-list-img {
21489
+ border-radius: inherit;
21490
+ display: flex;
21491
+ height: 100%;
21492
+ left: 0;
21493
+ overflow: hidden;
21494
+ position: absolute;
21495
+ top: 0;
21496
+ width: 100%;
21497
+ z-index: -1;
21498
+ }
21499
+
21500
+ .v-list-subheader {
21501
+ align-items: center;
21502
+ background: inherit;
21503
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21504
+ display: flex;
21505
+ font-size: 0.875rem;
21506
+ font-weight: 400;
21507
+ line-height: 1.375rem;
21508
+ padding-inline-end: 16px;
21509
+ min-height: 40px;
21510
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
21511
+ }
21512
+ .v-list-subheader__text {
21513
+ overflow: hidden;
21514
+ text-overflow: ellipsis;
21515
+ white-space: nowrap;
21516
+ }
21517
+ .v-list--density-default .v-list-subheader {
21518
+ min-height: 40px;
21519
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
21520
+ }
21521
+
21522
+ .v-list--density-comfortable .v-list-subheader {
21523
+ min-height: 36px;
21524
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
21525
+ }
21526
+
21527
+ .v-list--density-compact .v-list-subheader {
21528
+ min-height: 32px;
21529
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
21530
+ }
21531
+
21532
+ .v-list-subheader--inset {
21533
+ --indent-padding: 56px;
21534
+ }
21535
+ .v-list--nav .v-list-subheader {
21536
+ font-size: 0.75rem;
21537
+ }
21538
+ .v-list-subheader--sticky {
21539
+ background: inherit;
21540
+ left: 0;
21541
+ position: sticky;
21542
+ top: 0;
21543
+ z-index: 1;
21544
+ }
21545
+
21546
+ .v-list__overlay {
21547
+ background-color: currentColor;
21548
+ border-radius: inherit;
21549
+ bottom: 0;
21550
+ left: 0;
21551
+ opacity: 0;
21552
+ pointer-events: none;
21553
+ position: absolute;
21554
+ right: 0;
21555
+ top: 0;
21556
+ transition: opacity 0.2s ease-in-out;
21557
+ }.v-list-item {
21558
+ align-items: center;
21559
+ display: grid;
21560
+ flex: none;
21561
+ grid-template-areas: "prepend content append";
21562
+ grid-template-columns: max-content 1fr auto;
21563
+ outline: none;
21564
+ max-width: 100%;
21565
+ padding: 4px 16px;
21566
+ position: relative;
21567
+ text-decoration: none;
21568
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21569
+ border-style: solid;
21570
+ border-width: 0;
21571
+ border-radius: 0;
21572
+ }
21573
+ .v-list-item--border {
21574
+ border-width: thin;
21575
+ box-shadow: none;
21576
+ }
21577
+ .v-list-item:hover > .v-list-item__overlay {
21578
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21579
+ }
21580
+ .v-list-item:focus-visible > .v-list-item__overlay {
21581
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21582
+ }
21583
+ @supports not selector(:focus-visible) {
21584
+ .v-list-item:focus > .v-list-item__overlay {
21585
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21586
+ }
21587
+ }
21588
+ .v-list-item--active > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true] > .v-list-item__overlay {
21589
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
21590
+ }
21591
+ .v-list-item--active:hover > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-list-item__overlay {
21592
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
21593
+ }
21594
+ .v-list-item--active:focus-visible > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-list-item__overlay {
21595
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21596
+ }
21597
+ @supports not selector(:focus-visible) {
21598
+ .v-list-item--active:focus > .v-list-item__overlay, .v-list-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-list-item__overlay {
21599
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21600
+ }
21502
21601
  }
21503
21602
  .v-list-item--variant-plain, .v-list-item--variant-outlined, .v-list-item--variant-text, .v-list-item--variant-tonal {
21504
21603
  background: transparent;
@@ -21905,107 +22004,8 @@ textarea.v-field__input::placeholder {
21905
22004
  }
21906
22005
  .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
21907
22006
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21908
- }.v-list {
21909
- overflow: auto;
21910
- padding: 8px 0;
21911
- position: relative;
21912
- outline: none;
21913
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21914
- border-style: solid;
21915
- border-width: 0;
21916
- 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));
21917
- border-radius: 0;
21918
- background: rgba(var(--v-theme-surface));
21919
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21920
- }
21921
- .v-list--border {
21922
- border-width: thin;
21923
- box-shadow: none;
21924
- }
21925
- .v-list--disabled {
21926
- pointer-events: none;
21927
- -webkit-user-select: none;
21928
- user-select: none;
21929
- }
21930
- .v-list--nav {
21931
- padding-inline: 8px;
21932
- }
21933
- .v-list--rounded {
21934
- border-radius: 4px;
21935
- }
21936
- .v-list--subheader {
21937
- padding-top: 0;
21938
- }
21939
-
21940
- .v-list-img {
21941
- border-radius: inherit;
21942
- display: flex;
21943
- height: 100%;
21944
- left: 0;
21945
- overflow: hidden;
21946
- position: absolute;
21947
- top: 0;
21948
- width: 100%;
21949
- z-index: -1;
21950
- }
21951
-
21952
- .v-list-subheader {
21953
- align-items: center;
21954
- background: inherit;
21955
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21956
- display: flex;
21957
- font-size: 0.875rem;
21958
- font-weight: 400;
21959
- line-height: 1.375rem;
21960
- padding-inline-end: 16px;
21961
- min-height: 40px;
21962
- transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
21963
- }
21964
- .v-list-subheader__text {
21965
- overflow: hidden;
21966
- text-overflow: ellipsis;
21967
- white-space: nowrap;
21968
- }
21969
- .v-list--density-default .v-list-subheader {
21970
- min-height: 40px;
21971
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
21972
- }
21973
-
21974
- .v-list--density-comfortable .v-list-subheader {
21975
- min-height: 36px;
21976
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
21977
- }
21978
-
21979
- .v-list--density-compact .v-list-subheader {
21980
- min-height: 32px;
21981
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
21982
- }
21983
-
21984
- .v-list-subheader--inset {
21985
- --indent-padding: 56px;
21986
- }
21987
- .v-list--nav .v-list-subheader {
21988
- font-size: 0.75rem;
21989
- }
21990
- .v-list-subheader--sticky {
21991
- background: inherit;
21992
- left: 0;
21993
- position: sticky;
21994
- top: 0;
21995
- z-index: 1;
21996
- }
21997
-
21998
- .v-list__overlay {
21999
- background-color: currentColor;
22000
- border-radius: inherit;
22001
- bottom: 0;
22002
- left: 0;
22003
- opacity: 0;
22004
- pointer-events: none;
22005
- position: absolute;
22006
- right: 0;
22007
- top: 0;
22008
- transition: opacity 0.2s ease-in-out;
22007
+ }.v-locale-provider {
22008
+ display: contents;
22009
22009
  }.v-main {
22010
22010
  flex: 1 0 auto;
22011
22011
  max-width: 100%;
@@ -22034,6 +22034,19 @@ textarea.v-field__input::placeholder {
22034
22034
  --v-layout-right: 0px;
22035
22035
  --v-layout-top: 0px;
22036
22036
  --v-layout-bottom: 0px;
22037
+ }.v-menu > .v-overlay__content {
22038
+ display: flex;
22039
+ flex-direction: column;
22040
+ border-radius: 4px;
22041
+ }
22042
+ .v-menu > .v-overlay__content > .v-card,
22043
+ .v-menu > .v-overlay__content > .v-sheet,
22044
+ .v-menu > .v-overlay__content > .v-list {
22045
+ background: rgb(var(--v-theme-surface));
22046
+ border-radius: inherit;
22047
+ overflow: auto;
22048
+ height: 100%;
22049
+ 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));
22037
22050
  }.v-messages {
22038
22051
  flex: 1 1 auto;
22039
22052
  font-size: 12px;
@@ -22050,93 +22063,17 @@ textarea.v-field__input::placeholder {
22050
22063
  -webkit-hyphens: auto;
22051
22064
  hyphens: auto;
22052
22065
  transition-duration: 150ms;
22053
- }.v-menu > .v-overlay__content {
22066
+ }.v-navigation-drawer {
22067
+ -webkit-overflow-scrolling: touch;
22068
+ background: rgb(var(--v-theme-surface));
22054
22069
  display: flex;
22055
22070
  flex-direction: column;
22056
- border-radius: 4px;
22057
- }
22058
- .v-menu > .v-overlay__content > .v-card,
22059
- .v-menu > .v-overlay__content > .v-sheet,
22060
- .v-menu > .v-overlay__content > .v-list {
22061
- background: rgb(var(--v-theme-surface));
22062
- border-radius: inherit;
22063
- overflow: auto;
22064
22071
  height: 100%;
22065
- 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));
22066
- }.v-overlay-container {
22067
- contain: layout;
22068
- left: 0;
22069
- pointer-events: none;
22070
- position: absolute;
22071
- top: 0;
22072
- display: contents;
22073
- }
22074
-
22075
- .v-overlay-scroll-blocked {
22076
- padding-inline-end: var(--v-scrollbar-offset);
22077
- }
22078
- .v-overlay-scroll-blocked:not(html) {
22079
- overflow-y: hidden !important;
22080
- }
22081
- html.v-overlay-scroll-blocked {
22082
- position: fixed;
22083
- top: var(--v-body-scroll-y);
22084
- left: var(--v-body-scroll-x);
22085
- width: 100%;
22086
- height: 100%;
22087
- }
22088
-
22089
- .v-overlay {
22090
- border-radius: inherit;
22091
- display: flex;
22092
- left: 0;
22093
- pointer-events: none;
22094
- position: fixed;
22095
- top: 0;
22096
- bottom: 0;
22097
- right: 0;
22098
- }
22099
-
22100
- .v-overlay__content {
22101
- outline: none;
22102
- position: absolute;
22103
- pointer-events: auto;
22104
- contain: layout;
22105
- }
22106
-
22107
- .v-overlay__scrim {
22108
- pointer-events: auto;
22109
- background: rgb(var(--v-theme-on-surface));
22110
- border-radius: inherit;
22111
- bottom: 0;
22112
- left: 0;
22113
- opacity: var(--v-overlay-opacity, 0.32);
22114
- position: fixed;
22115
- right: 0;
22116
- top: 0;
22117
- }
22118
-
22119
- .v-overlay--absolute {
22120
- position: absolute;
22121
- }
22122
-
22123
- .v-overlay--contained .v-overlay__scrim {
22124
- position: absolute;
22125
- }
22126
-
22127
- .v-overlay--scroll-blocked {
22128
- padding-inline-end: var(--v-scrollbar-offset);
22129
- }.v-navigation-drawer {
22130
- -webkit-overflow-scrolling: touch;
22131
- background: rgb(var(--v-theme-surface));
22132
- display: flex;
22133
- flex-direction: column;
22134
- height: 100%;
22135
- max-width: 100%;
22136
- pointer-events: auto;
22137
- transition-duration: 0.2s;
22138
- transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22139
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22072
+ max-width: 100%;
22073
+ pointer-events: auto;
22074
+ transition-duration: 0.2s;
22075
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22076
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22140
22077
  position: absolute;
22141
22078
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22142
22079
  border-style: solid;
@@ -22280,6 +22217,69 @@ html.v-overlay-scroll-blocked {
22280
22217
  }
22281
22218
  .v-otp-input__loader .v-progress-linear {
22282
22219
  position: absolute;
22220
+ }.v-overlay-container {
22221
+ contain: layout;
22222
+ left: 0;
22223
+ pointer-events: none;
22224
+ position: absolute;
22225
+ top: 0;
22226
+ display: contents;
22227
+ }
22228
+
22229
+ .v-overlay-scroll-blocked {
22230
+ padding-inline-end: var(--v-scrollbar-offset);
22231
+ }
22232
+ .v-overlay-scroll-blocked:not(html) {
22233
+ overflow-y: hidden !important;
22234
+ }
22235
+ html.v-overlay-scroll-blocked {
22236
+ position: fixed;
22237
+ top: var(--v-body-scroll-y);
22238
+ left: var(--v-body-scroll-x);
22239
+ width: 100%;
22240
+ height: 100%;
22241
+ }
22242
+
22243
+ .v-overlay {
22244
+ border-radius: inherit;
22245
+ display: flex;
22246
+ left: 0;
22247
+ pointer-events: none;
22248
+ position: fixed;
22249
+ top: 0;
22250
+ bottom: 0;
22251
+ right: 0;
22252
+ }
22253
+
22254
+ .v-overlay__content {
22255
+ outline: none;
22256
+ position: absolute;
22257
+ pointer-events: auto;
22258
+ contain: layout;
22259
+ }
22260
+
22261
+ .v-overlay__scrim {
22262
+ pointer-events: auto;
22263
+ background: rgb(var(--v-theme-on-surface));
22264
+ border-radius: inherit;
22265
+ bottom: 0;
22266
+ left: 0;
22267
+ opacity: var(--v-overlay-opacity, 0.32);
22268
+ position: fixed;
22269
+ right: 0;
22270
+ top: 0;
22271
+ }
22272
+
22273
+ .v-overlay--absolute {
22274
+ position: absolute;
22275
+ }
22276
+
22277
+ .v-overlay--contained .v-overlay__scrim {
22278
+ position: absolute;
22279
+ }
22280
+
22281
+ .v-overlay--scroll-blocked {
22282
+ padding-inline-end: var(--v-scrollbar-offset);
22283
22283
  }.v-pagination__list {
22284
22284
  display: inline-flex;
22285
22285
  list-style-type: none;
@@ -22288,6 +22288,114 @@ html.v-overlay-scroll-blocked {
22288
22288
  }
22289
22289
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22290
22290
  margin: 0.3rem;
22291
+ }.v-progress-circular {
22292
+ align-items: center;
22293
+ display: inline-flex;
22294
+ justify-content: center;
22295
+ position: relative;
22296
+ vertical-align: middle;
22297
+ }
22298
+ .v-progress-circular > svg {
22299
+ width: 100%;
22300
+ height: 100%;
22301
+ margin: auto;
22302
+ position: absolute;
22303
+ top: 0;
22304
+ bottom: 0;
22305
+ left: 0;
22306
+ right: 0;
22307
+ z-index: 0;
22308
+ }
22309
+
22310
+ .v-progress-circular__content {
22311
+ align-items: center;
22312
+ display: flex;
22313
+ justify-content: center;
22314
+ }
22315
+
22316
+ .v-progress-circular__underlay {
22317
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
22318
+ stroke: currentColor;
22319
+ z-index: 1;
22320
+ }
22321
+
22322
+ .v-progress-circular__overlay {
22323
+ stroke: currentColor;
22324
+ transition: all 0.2s ease-in-out, stroke-width 0s;
22325
+ z-index: 2;
22326
+ }
22327
+
22328
+ .v-progress-circular--size-x-small {
22329
+ height: 16px;
22330
+ width: 16px;
22331
+ }
22332
+ .v-progress-circular--size-small {
22333
+ height: 24px;
22334
+ width: 24px;
22335
+ }
22336
+ .v-progress-circular--size-default {
22337
+ height: 32px;
22338
+ width: 32px;
22339
+ }
22340
+ .v-progress-circular--size-large {
22341
+ height: 48px;
22342
+ width: 48px;
22343
+ }
22344
+ .v-progress-circular--size-x-large {
22345
+ height: 64px;
22346
+ width: 64px;
22347
+ }
22348
+
22349
+ .v-progress-circular--indeterminate > svg {
22350
+ animation: progress-circular-rotate 1.4s linear infinite;
22351
+ transform-origin: center center;
22352
+ transition: all 0.2s ease-in-out;
22353
+ }
22354
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
22355
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
22356
+ stroke-dasharray: 25, 200;
22357
+ stroke-dashoffset: 0;
22358
+ stroke-linecap: round;
22359
+ transform-origin: center center;
22360
+ transform: rotate(-90deg);
22361
+ }
22362
+
22363
+ .v-progress-circular--disable-shrink > svg {
22364
+ animation-duration: 0.7s;
22365
+ }
22366
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
22367
+ animation: none;
22368
+ }
22369
+
22370
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
22371
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
22372
+ animation-play-state: paused !important;
22373
+ }
22374
+
22375
+ @keyframes progress-circular-dash {
22376
+ 0% {
22377
+ stroke-dasharray: 1, 200;
22378
+ stroke-dashoffset: 0px;
22379
+ }
22380
+ 50% {
22381
+ stroke-dasharray: 100, 200;
22382
+ stroke-dashoffset: -15px;
22383
+ }
22384
+ 100% {
22385
+ stroke-dasharray: 100, 200;
22386
+ stroke-dashoffset: -124px;
22387
+ }
22388
+ }
22389
+ @keyframes progress-circular-rotate {
22390
+ 100% {
22391
+ transform: rotate(270deg);
22392
+ }
22393
+ }.v-parallax {
22394
+ position: relative;
22395
+ overflow: hidden;
22396
+ }
22397
+ .v-parallax--active > .v-img__img {
22398
+ will-change: transform;
22291
22399
  }.v-progress-linear {
22292
22400
  background: transparent;
22293
22401
  overflow: hidden;
@@ -22498,12 +22606,6 @@ html.v-overlay-scroll-blocked {
22498
22606
  0% {
22499
22607
  background-position-x: var(--v-progress-linear-height);
22500
22608
  }
22501
- }.v-parallax {
22502
- position: relative;
22503
- overflow: hidden;
22504
- }
22505
- .v-parallax--active > .v-img__img {
22506
- will-change: transform;
22507
22609
  }.v-radio-group > .v-input__control {
22508
22610
  flex-direction: column;
22509
22611
  }
@@ -22516,111 +22618,9 @@ html.v-overlay-scroll-blocked {
22516
22618
  }
22517
22619
  .v-radio-group .v-input__details {
22518
22620
  padding-inline: 16px;
22519
- }.v-progress-circular {
22520
- align-items: center;
22521
- display: inline-flex;
22522
- justify-content: center;
22523
- position: relative;
22524
- vertical-align: middle;
22525
- }
22526
- .v-progress-circular > svg {
22527
- width: 100%;
22528
- height: 100%;
22529
- margin: auto;
22530
- position: absolute;
22531
- top: 0;
22532
- bottom: 0;
22533
- left: 0;
22534
- right: 0;
22535
- z-index: 0;
22536
- }
22537
-
22538
- .v-progress-circular__content {
22539
- align-items: center;
22540
- display: flex;
22541
- justify-content: center;
22542
- }
22543
-
22544
- .v-progress-circular__underlay {
22545
- color: rgba(var(--v-border-color), var(--v-border-opacity));
22546
- stroke: currentColor;
22547
- z-index: 1;
22548
- }
22549
-
22550
- .v-progress-circular__overlay {
22551
- stroke: currentColor;
22552
- transition: all 0.2s ease-in-out, stroke-width 0s;
22553
- z-index: 2;
22554
- }
22555
-
22556
- .v-progress-circular--size-x-small {
22557
- height: 16px;
22558
- width: 16px;
22559
- }
22560
- .v-progress-circular--size-small {
22561
- height: 24px;
22562
- width: 24px;
22563
- }
22564
- .v-progress-circular--size-default {
22565
- height: 32px;
22566
- width: 32px;
22567
- }
22568
- .v-progress-circular--size-large {
22569
- height: 48px;
22570
- width: 48px;
22571
- }
22572
- .v-progress-circular--size-x-large {
22573
- height: 64px;
22574
- width: 64px;
22575
- }
22576
-
22577
- .v-progress-circular--indeterminate > svg {
22578
- animation: progress-circular-rotate 1.4s linear infinite;
22579
- transform-origin: center center;
22580
- transition: all 0.2s ease-in-out;
22581
- }
22582
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
22583
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
22584
- stroke-dasharray: 25, 200;
22585
- stroke-dashoffset: 0;
22586
- stroke-linecap: round;
22587
- transform-origin: center center;
22588
- transform: rotate(-90deg);
22589
- }
22590
-
22591
- .v-progress-circular--disable-shrink > svg {
22592
- animation-duration: 0.7s;
22593
- }
22594
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
22595
- animation: none;
22596
- }
22597
-
22598
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
22599
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
22600
- animation-play-state: paused !important;
22601
- }
22602
-
22603
- @keyframes progress-circular-dash {
22604
- 0% {
22605
- stroke-dasharray: 1, 200;
22606
- stroke-dashoffset: 0px;
22607
- }
22608
- 50% {
22609
- stroke-dasharray: 100, 200;
22610
- stroke-dashoffset: -15px;
22611
- }
22612
- 100% {
22613
- stroke-dasharray: 100, 200;
22614
- stroke-dashoffset: -124px;
22615
- }
22616
- }
22617
- @keyframes progress-circular-rotate {
22618
- 100% {
22619
- transform: rotate(270deg);
22620
- }
22621
- }.v-slider .v-slider__container input {
22622
- cursor: default;
22623
- padding: 0;
22621
+ }.v-slider .v-slider__container input {
22622
+ cursor: default;
22623
+ padding: 0;
22624
22624
  width: 100%;
22625
22625
  display: none;
22626
22626
  }
@@ -22675,32 +22675,6 @@ html.v-overlay-scroll-blocked {
22675
22675
 
22676
22676
  .v-slider__label {
22677
22677
  margin-inline-end: 12px;
22678
- }.v-responsive {
22679
- display: flex;
22680
- flex: 1 0 auto;
22681
- max-height: 100%;
22682
- max-width: 100%;
22683
- overflow: hidden;
22684
- position: relative;
22685
- }
22686
- .v-responsive--inline {
22687
- display: inline-flex;
22688
- flex: 0 0 auto;
22689
- }
22690
-
22691
- .v-responsive__content {
22692
- flex: 1 0 0px;
22693
- max-width: 100%;
22694
- }
22695
-
22696
- .v-responsive__sizer ~ .v-responsive__content {
22697
- margin-inline-start: -100%;
22698
- }
22699
-
22700
- .v-responsive__sizer {
22701
- flex: 1 0 0px;
22702
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22703
- pointer-events: none;
22704
22678
  }.v-rating {
22705
22679
  max-width: 100%;
22706
22680
  display: inline-flex;
@@ -22755,6 +22729,32 @@ html.v-overlay-scroll-blocked {
22755
22729
  opacity: 0;
22756
22730
  position: absolute;
22757
22731
  width: 0;
22732
+ }.v-responsive {
22733
+ display: flex;
22734
+ flex: 1 0 auto;
22735
+ max-height: 100%;
22736
+ max-width: 100%;
22737
+ overflow: hidden;
22738
+ position: relative;
22739
+ }
22740
+ .v-responsive--inline {
22741
+ display: inline-flex;
22742
+ flex: 0 0 auto;
22743
+ }
22744
+
22745
+ .v-responsive__content {
22746
+ flex: 1 0 0px;
22747
+ max-width: 100%;
22748
+ }
22749
+
22750
+ .v-responsive__sizer ~ .v-responsive__content {
22751
+ margin-inline-start: -100%;
22752
+ }
22753
+
22754
+ .v-responsive__sizer {
22755
+ flex: 1 0 0px;
22756
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22757
+ pointer-events: none;
22758
22758
  }.v-select .v-field .v-text-field__prefix,
22759
22759
  .v-select .v-field .v-text-field__suffix,
22760
22760
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -23324,183 +23324,69 @@ html.v-overlay-scroll-blocked {
23324
23324
  }
23325
23325
  .v-snackbar-transition-leave-to {
23326
23326
  opacity: 0;
23327
- }.v-switch .v-label {
23328
- padding-inline-start: 10px;
23327
+ }.v-stepper.v-sheet {
23328
+ 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));
23329
+ border-radius: 4px;
23330
+ overflow: hidden;
23329
23331
  }
23330
- .v-switch .v-switch__thumb {
23331
- background-color: rgb(var(--v-theme-surface-bright));
23332
- color: rgb(var(--v-theme-on-surface-bright));
23332
+ .v-stepper.v-sheet.v-stepper--flat {
23333
+ 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));
23333
23334
  }
23334
23335
 
23335
- .v-switch__loader {
23336
+ .v-stepper-header {
23337
+ 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));
23338
+ align-items: center;
23336
23339
  display: flex;
23340
+ position: relative;
23341
+ overflow-x: auto;
23342
+ justify-content: space-between;
23343
+ z-index: 1;
23337
23344
  }
23338
- .v-switch__loader .v-progress-circular {
23339
- color: rgb(var(--v-theme-surface));
23345
+ .v-stepper-header .v-divider {
23346
+ margin: 0 -16px;
23340
23347
  }
23341
-
23342
- .v-switch__track,
23343
- .v-switch__thumb {
23344
- transition: none;
23348
+ .v-stepper-header .v-divider:last-child {
23349
+ margin-inline-end: 0;
23345
23350
  }
23346
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
23347
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
23348
- background-color: rgb(var(--v-theme-error));
23349
- color: rgb(var(--v-theme-on-error));
23351
+ .v-stepper-header .v-divider:first-child {
23352
+ margin-inline-start: 0;
23350
23353
  }
23351
-
23352
- .v-switch__track-true {
23353
- margin-inline-end: auto;
23354
+ .v-stepper--alt-labels .v-stepper-header {
23355
+ height: auto;
23354
23356
  }
23355
- .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
23356
- opacity: 0;
23357
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
23358
+ align-self: flex-start;
23359
+ margin: 35px -67px 0;
23357
23360
  }
23358
23361
 
23359
- .v-switch__track-false {
23360
- margin-inline-start: auto;
23361
- }
23362
- .v-selection-control--dirty .v-switch__track-false {
23363
- opacity: 0;
23362
+ .v-stepper-window {
23363
+ margin: 1.5rem;
23364
23364
  }
23365
23365
 
23366
- .v-switch__track {
23367
- display: inline-flex;
23366
+ .v-stepper-actions {
23367
+ display: flex;
23368
23368
  align-items: center;
23369
- font-size: 0.5rem;
23370
- padding: 0 5px;
23371
- background-color: rgb(var(--v-theme-surface-variant));
23372
- border-radius: 9999px;
23373
- height: 14px;
23374
- opacity: 0.6;
23375
- min-width: 36px;
23376
- cursor: pointer;
23377
- transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23369
+ justify-content: space-between;
23370
+ padding: 1rem;
23378
23371
  }
23379
- .v-switch--inset .v-switch__track {
23380
- border-radius: 9999px;
23381
- font-size: 0.75rem;
23382
- height: 32px;
23383
- min-width: 52px;
23372
+ .v-stepper .v-stepper-actions {
23373
+ padding: 0 1.5rem 1rem;
23384
23374
  }
23385
-
23386
- .v-switch__thumb {
23375
+ .v-stepper-window-item .v-stepper-actions {
23376
+ padding: 1.5rem 0 0;
23377
+ }.v-stepper-item {
23387
23378
  align-items: center;
23388
- border-radius: 50%;
23389
- display: flex;
23390
- font-size: 0.75rem;
23391
- height: 20px;
23392
- justify-content: center;
23393
- width: 20px;
23394
- pointer-events: none;
23395
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23396
- position: relative;
23397
- overflow: hidden;
23398
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23399
- }
23400
- .v-switch--inset .v-switch__thumb {
23401
- height: 24px;
23402
- width: 24px;
23403
- transform: scale(0.6666666667);
23404
- 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));
23379
+ align-self: stretch;
23380
+ display: inline-flex;
23381
+ flex: none;
23382
+ opacity: var(--v-medium-emphasis-opacity);
23383
+ padding: 1.5rem;
23384
+ transition-duration: 0.2s;
23385
+ transition-property: opacity;
23386
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23405
23387
  }
23406
- .v-switch--inset .v-switch__thumb--filled {
23407
- transform: none;
23408
- }
23409
- .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
23410
- transform: none;
23411
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
23412
- }
23413
-
23414
- .v-switch.v-input {
23415
- flex: 0 1 auto;
23416
- }
23417
- .v-switch .v-selection-control {
23418
- min-height: var(--v-input-control-height);
23419
- }
23420
- .v-switch .v-selection-control__input {
23421
- border-radius: 50%;
23422
- transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
23423
- transform: translateX(-10px);
23424
- position: absolute;
23425
- }
23426
- .v-switch .v-selection-control__input .v-icon {
23427
- position: absolute;
23428
- }
23429
- .v-switch .v-selection-control--dirty .v-selection-control__input {
23430
- transform: translateX(10px);
23431
- }
23432
- .v-switch.v-switch--indeterminate .v-selection-control__input {
23433
- transform: scale(0.8);
23434
- }
23435
- .v-switch.v-switch--indeterminate .v-switch__thumb {
23436
- transform: scale(0.75);
23437
- box-shadow: none;
23438
- }
23439
- .v-switch.v-switch--inset .v-selection-control__wrapper {
23440
- width: auto;
23441
- }.v-stepper.v-sheet {
23442
- 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));
23443
- border-radius: 4px;
23444
- overflow: hidden;
23445
- }
23446
- .v-stepper.v-sheet.v-stepper--flat {
23447
- 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));
23448
- }
23449
-
23450
- .v-stepper-header {
23451
- 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));
23452
- align-items: center;
23453
- display: flex;
23454
- position: relative;
23455
- overflow-x: auto;
23456
- justify-content: space-between;
23457
- z-index: 1;
23458
- }
23459
- .v-stepper-header .v-divider {
23460
- margin: 0 -16px;
23461
- }
23462
- .v-stepper-header .v-divider:last-child {
23463
- margin-inline-end: 0;
23464
- }
23465
- .v-stepper-header .v-divider:first-child {
23466
- margin-inline-start: 0;
23467
- }
23468
- .v-stepper--alt-labels .v-stepper-header {
23469
- height: auto;
23470
- }
23471
- .v-stepper--alt-labels .v-stepper-header .v-divider {
23472
- align-self: flex-start;
23473
- margin: 35px -67px 0;
23474
- }
23475
-
23476
- .v-stepper-window {
23477
- margin: 1.5rem;
23478
- }
23479
-
23480
- .v-stepper-actions {
23481
- display: flex;
23482
- align-items: center;
23483
- justify-content: space-between;
23484
- padding: 1rem;
23485
- }
23486
- .v-stepper .v-stepper-actions {
23487
- padding: 0 1.5rem 1rem;
23488
- }
23489
- .v-stepper-window-item .v-stepper-actions {
23490
- padding: 1.5rem 0 0;
23491
- }.v-stepper-item {
23492
- align-items: center;
23493
- align-self: stretch;
23494
- display: inline-flex;
23495
- flex: none;
23496
- opacity: var(--v-medium-emphasis-opacity);
23497
- padding: 1.5rem;
23498
- transition-duration: 0.2s;
23499
- transition-property: opacity;
23500
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23501
- }
23502
- .v-stepper-item--selected {
23503
- opacity: 1;
23388
+ .v-stepper-item--selected {
23389
+ opacity: 1;
23504
23390
  }
23505
23391
  .v-stepper-item--error {
23506
23392
  color: rgb(var(--v-theme-error));
@@ -23554,6 +23440,186 @@ html.v-overlay-scroll-blocked {
23554
23440
  }
23555
23441
  .v-stepper--mobile .v-stepper-item__subtitle {
23556
23442
  display: none;
23443
+ }.v-switch .v-label {
23444
+ padding-inline-start: 10px;
23445
+ }
23446
+ .v-switch .v-switch__thumb {
23447
+ background-color: rgb(var(--v-theme-surface-bright));
23448
+ color: rgb(var(--v-theme-on-surface-bright));
23449
+ }
23450
+
23451
+ .v-switch__loader {
23452
+ display: flex;
23453
+ }
23454
+ .v-switch__loader .v-progress-circular {
23455
+ color: rgb(var(--v-theme-surface));
23456
+ }
23457
+
23458
+ .v-switch__track,
23459
+ .v-switch__thumb {
23460
+ transition: none;
23461
+ }
23462
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
23463
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
23464
+ background-color: rgb(var(--v-theme-error));
23465
+ color: rgb(var(--v-theme-on-error));
23466
+ }
23467
+
23468
+ .v-switch__track-true {
23469
+ margin-inline-end: auto;
23470
+ }
23471
+ .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
23472
+ opacity: 0;
23473
+ }
23474
+
23475
+ .v-switch__track-false {
23476
+ margin-inline-start: auto;
23477
+ }
23478
+ .v-selection-control--dirty .v-switch__track-false {
23479
+ opacity: 0;
23480
+ }
23481
+
23482
+ .v-switch__track {
23483
+ display: inline-flex;
23484
+ align-items: center;
23485
+ font-size: 0.5rem;
23486
+ padding: 0 5px;
23487
+ background-color: rgb(var(--v-theme-surface-variant));
23488
+ border-radius: 9999px;
23489
+ height: 14px;
23490
+ opacity: 0.6;
23491
+ min-width: 36px;
23492
+ cursor: pointer;
23493
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23494
+ }
23495
+ .v-switch--inset .v-switch__track {
23496
+ border-radius: 9999px;
23497
+ font-size: 0.75rem;
23498
+ height: 32px;
23499
+ min-width: 52px;
23500
+ }
23501
+
23502
+ .v-switch__thumb {
23503
+ align-items: center;
23504
+ border-radius: 50%;
23505
+ display: flex;
23506
+ font-size: 0.75rem;
23507
+ height: 20px;
23508
+ justify-content: center;
23509
+ width: 20px;
23510
+ pointer-events: none;
23511
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23512
+ position: relative;
23513
+ overflow: hidden;
23514
+ box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23515
+ }
23516
+ .v-switch--inset .v-switch__thumb {
23517
+ height: 24px;
23518
+ width: 24px;
23519
+ transform: scale(0.6666666667);
23520
+ 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));
23521
+ }
23522
+ .v-switch--inset .v-switch__thumb--filled {
23523
+ transform: none;
23524
+ }
23525
+ .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
23526
+ transform: none;
23527
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
23528
+ }
23529
+
23530
+ .v-switch.v-input {
23531
+ flex: 0 1 auto;
23532
+ }
23533
+ .v-switch .v-selection-control {
23534
+ min-height: var(--v-input-control-height);
23535
+ }
23536
+ .v-switch .v-selection-control__input {
23537
+ border-radius: 50%;
23538
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
23539
+ transform: translateX(-10px);
23540
+ position: absolute;
23541
+ }
23542
+ .v-switch .v-selection-control__input .v-icon {
23543
+ position: absolute;
23544
+ }
23545
+ .v-switch .v-selection-control--dirty .v-selection-control__input {
23546
+ transform: translateX(10px);
23547
+ }
23548
+ .v-switch.v-switch--indeterminate .v-selection-control__input {
23549
+ transform: scale(0.8);
23550
+ }
23551
+ .v-switch.v-switch--indeterminate .v-switch__thumb {
23552
+ transform: scale(0.75);
23553
+ box-shadow: none;
23554
+ }
23555
+ .v-switch.v-switch--inset .v-selection-control__wrapper {
23556
+ width: auto;
23557
+ }.v-system-bar {
23558
+ align-items: center;
23559
+ display: flex;
23560
+ flex: 1 1 auto;
23561
+ height: 24px;
23562
+ justify-content: flex-end;
23563
+ max-width: 100%;
23564
+ padding-inline: 8px;
23565
+ position: relative;
23566
+ text-align: end;
23567
+ width: 100%;
23568
+ 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));
23569
+ background: rgba(var(--v-theme-surface-light));
23570
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
23571
+ font-size: 0.75rem;
23572
+ font-weight: 400;
23573
+ letter-spacing: 0.0333333333em;
23574
+ line-height: 1.25rem;
23575
+ text-transform: none;
23576
+ }
23577
+ .v-system-bar .v-icon {
23578
+ opacity: var(--v-medium-emphasis-opacity);
23579
+ }
23580
+ .v-system-bar--absolute {
23581
+ position: absolute;
23582
+ }
23583
+ .v-system-bar--fixed {
23584
+ position: fixed;
23585
+ }
23586
+ .v-system-bar--rounded {
23587
+ border-radius: 0;
23588
+ }
23589
+ .v-system-bar--window {
23590
+ height: 32px;
23591
+ }
23592
+ .v-system-bar:not(.v-system-bar--absolute) {
23593
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
23594
+ }.v-tab.v-tab.v-btn {
23595
+ height: var(--v-tabs-height);
23596
+ border-radius: 0;
23597
+ min-width: 90px;
23598
+ }
23599
+ .v-slide-group--horizontal .v-tab {
23600
+ max-width: 360px;
23601
+ }
23602
+ .v-slide-group--vertical .v-tab {
23603
+ justify-content: start;
23604
+ }
23605
+
23606
+ .v-tab__slider {
23607
+ position: absolute;
23608
+ bottom: 0;
23609
+ left: 0;
23610
+ height: 2px;
23611
+ width: 100%;
23612
+ background: currentColor;
23613
+ pointer-events: none;
23614
+ opacity: 0;
23615
+ }
23616
+ .v-tab--selected .v-tab__slider {
23617
+ opacity: 1;
23618
+ }
23619
+ .v-slide-group--vertical .v-tab__slider {
23620
+ top: 0;
23621
+ height: 100%;
23622
+ width: 2px;
23557
23623
  }.v-tabs {
23558
23624
  display: flex;
23559
23625
  height: var(--v-tabs-height);
@@ -23620,72 +23686,6 @@ html.v-overlay-scroll-blocked {
23620
23686
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
23621
23687
  margin-inline-end: 52px;
23622
23688
  }
23623
- }.v-tab.v-tab.v-btn {
23624
- height: var(--v-tabs-height);
23625
- border-radius: 0;
23626
- min-width: 90px;
23627
- }
23628
- .v-slide-group--horizontal .v-tab {
23629
- max-width: 360px;
23630
- }
23631
- .v-slide-group--vertical .v-tab {
23632
- justify-content: start;
23633
- }
23634
-
23635
- .v-tab__slider {
23636
- position: absolute;
23637
- bottom: 0;
23638
- left: 0;
23639
- height: 2px;
23640
- width: 100%;
23641
- background: currentColor;
23642
- pointer-events: none;
23643
- opacity: 0;
23644
- }
23645
- .v-tab--selected .v-tab__slider {
23646
- opacity: 1;
23647
- }
23648
- .v-slide-group--vertical .v-tab__slider {
23649
- top: 0;
23650
- height: 100%;
23651
- width: 2px;
23652
- }.v-system-bar {
23653
- align-items: center;
23654
- display: flex;
23655
- flex: 1 1 auto;
23656
- height: 24px;
23657
- justify-content: flex-end;
23658
- max-width: 100%;
23659
- padding-inline: 8px;
23660
- position: relative;
23661
- text-align: end;
23662
- width: 100%;
23663
- 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));
23664
- background: rgba(var(--v-theme-surface-light));
23665
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
23666
- font-size: 0.75rem;
23667
- font-weight: 400;
23668
- letter-spacing: 0.0333333333em;
23669
- line-height: 1.25rem;
23670
- text-transform: none;
23671
- }
23672
- .v-system-bar .v-icon {
23673
- opacity: var(--v-medium-emphasis-opacity);
23674
- }
23675
- .v-system-bar--absolute {
23676
- position: absolute;
23677
- }
23678
- .v-system-bar--fixed {
23679
- position: fixed;
23680
- }
23681
- .v-system-bar--rounded {
23682
- border-radius: 0;
23683
- }
23684
- .v-system-bar--window {
23685
- height: 32px;
23686
- }
23687
- .v-system-bar:not(.v-system-bar--absolute) {
23688
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
23689
23689
  }.v-table {
23690
23690
  background: rgb(var(--v-theme-surface));
23691
23691
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -23819,50 +23819,11 @@ html.v-overlay-scroll-blocked {
23819
23819
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
23820
23820
  position: sticky;
23821
23821
  bottom: 0;
23822
- z-index: 1;
23823
- }
23824
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
23825
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
23826
- border-top: 0px !important;
23827
- }.v-textarea .v-field {
23828
- --v-textarea-control-height: var(--v-input-control-height);
23829
- }
23830
- .v-textarea .v-field__field {
23831
- --v-input-control-height: var(--v-textarea-control-height);
23832
- }
23833
- .v-textarea .v-field__input {
23834
- flex: 1 1 auto;
23835
- outline: none;
23836
- -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
23837
- mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
23838
- }
23839
- .v-textarea .v-field__input.v-textarea__sizer {
23840
- visibility: hidden;
23841
- position: absolute;
23842
- top: 0;
23843
- left: 0;
23844
- height: 0 !important;
23845
- min-height: 0 !important;
23846
- pointer-events: none;
23847
- }
23848
- .v-textarea--no-resize .v-field__input {
23849
- resize: none;
23850
- }
23851
- .v-textarea .v-field--no-label textarea,
23852
- .v-textarea .v-field--active textarea {
23853
- opacity: 1;
23854
- }
23855
- .v-textarea textarea {
23856
- opacity: 0;
23857
- flex: 1;
23858
- min-width: 0;
23859
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
23860
- }
23861
- .v-textarea textarea:focus, .v-textarea textarea:active {
23862
- outline: none;
23822
+ z-index: 1;
23863
23823
  }
23864
- .v-textarea textarea:invalid {
23865
- box-shadow: none;
23824
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
23825
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
23826
+ border-top: 0px !important;
23866
23827
  }/* region BLOCK */
23867
23828
  .v-text-field input {
23868
23829
  color: inherit;
@@ -23930,136 +23891,48 @@ html.v-overlay-scroll-blocked {
23930
23891
  padding-inline-end: var(--v-field-padding-end);
23931
23892
  }
23932
23893
 
23933
- /* endregion */.v-theme-provider {
23934
- background: rgb(var(--v-theme-background));
23935
- color: rgb(var(--v-theme-on-background));
23936
- }.v-toolbar {
23937
- align-items: flex-start;
23938
- display: flex;
23939
- flex: none;
23940
- flex-direction: column;
23941
- justify-content: space-between;
23942
- max-width: 100%;
23943
- overflow: hidden;
23944
- position: relative;
23945
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23946
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
23947
- width: 100%;
23948
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23949
- border-style: solid;
23950
- border-width: 0;
23951
- 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));
23952
- border-radius: 0;
23953
- background: rgb(var(--v-theme-surface-light));
23954
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
23955
- }
23956
- .v-toolbar--border {
23957
- border-width: thin;
23958
- box-shadow: none;
23959
- }
23960
- .v-toolbar--absolute {
23961
- position: absolute;
23962
- }
23963
- .v-toolbar--collapse {
23964
- max-width: 112px;
23965
- overflow: hidden;
23966
- border-end-end-radius: 24px;
23967
- }
23968
- .v-toolbar--collapse .v-toolbar-title {
23969
- display: none;
23970
- }
23971
- .v-toolbar--flat {
23972
- 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));
23973
- }
23974
- .v-toolbar--floating {
23975
- display: inline-flex;
23976
- }
23977
- .v-toolbar--rounded {
23978
- border-radius: 4px;
23979
- }
23980
-
23981
- .v-toolbar__content,
23982
- .v-toolbar__extension {
23983
- align-items: center;
23984
- display: flex;
23985
- flex: 0 0 auto;
23986
- position: relative;
23987
- transition: inherit;
23988
- width: 100%;
23989
- }
23990
-
23991
- .v-toolbar__content > .v-btn:first-child {
23992
- margin-inline-start: 10px;
23993
- }
23994
- .v-toolbar__content > .v-btn:last-child {
23995
- margin-inline-end: 10px;
23894
+ /* endregion */.v-textarea .v-field {
23895
+ --v-textarea-control-height: var(--v-input-control-height);
23996
23896
  }
23997
- .v-toolbar__content > .v-toolbar-title {
23998
- margin-inline-start: 16px;
23897
+ .v-textarea .v-field__field {
23898
+ --v-input-control-height: var(--v-textarea-control-height);
23999
23899
  }
24000
- .v-toolbar--density-prominent .v-toolbar__content {
24001
- align-items: flex-start;
23900
+ .v-textarea .v-field__input {
23901
+ flex: 1 1 auto;
23902
+ outline: none;
23903
+ -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
23904
+ mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24002
23905
  }
24003
-
24004
- .v-toolbar__image {
23906
+ .v-textarea .v-field__input.v-textarea__sizer {
23907
+ visibility: hidden;
24005
23908
  position: absolute;
24006
23909
  top: 0;
24007
23910
  left: 0;
24008
- width: 100%;
24009
- height: 100%;
24010
- display: flex;
24011
- opacity: var(--v-toolbar-image-opacity, 1);
24012
- transition-property: opacity;
24013
- }
24014
-
24015
- .v-toolbar__prepend,
24016
- .v-toolbar__append {
24017
- align-items: center;
24018
- align-self: stretch;
24019
- display: flex;
23911
+ height: 0 !important;
23912
+ min-height: 0 !important;
23913
+ pointer-events: none;
24020
23914
  }
24021
-
24022
- .v-toolbar__prepend {
24023
- margin-inline: 10px auto;
23915
+ .v-textarea--no-resize .v-field__input {
23916
+ resize: none;
24024
23917
  }
24025
-
24026
- .v-toolbar__append {
24027
- margin-inline: auto 10px;
23918
+ .v-textarea .v-field--no-label textarea,
23919
+ .v-textarea .v-field--active textarea {
23920
+ opacity: 1;
24028
23921
  }
24029
-
24030
- .v-toolbar-title {
24031
- flex: 1 1;
24032
- font-size: 1.25rem;
23922
+ .v-textarea textarea {
23923
+ opacity: 0;
23924
+ flex: 1;
24033
23925
  min-width: 0;
24034
- font-size: 1.25rem;
24035
- font-weight: 400;
24036
- letter-spacing: 0;
24037
- line-height: 1.75rem;
24038
- text-transform: none;
24039
- }
24040
- .v-toolbar--density-prominent .v-toolbar-title {
24041
- align-self: flex-end;
24042
- padding-bottom: 6px;
24043
- font-size: 1.5rem;
24044
- font-weight: 400;
24045
- letter-spacing: 0;
24046
- line-height: 2.25rem;
24047
- text-transform: none;
24048
- }
24049
-
24050
- .v-toolbar-title__placeholder {
24051
- overflow: hidden;
24052
- text-overflow: ellipsis;
24053
- white-space: nowrap;
23926
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24054
23927
  }
24055
-
24056
- .v-toolbar-items {
24057
- display: flex;
24058
- height: inherit;
24059
- align-self: stretch;
23928
+ .v-textarea textarea:focus, .v-textarea textarea:active {
23929
+ outline: none;
24060
23930
  }
24061
- .v-toolbar-items > .v-btn {
24062
- border-radius: 0;
23931
+ .v-textarea textarea:invalid {
23932
+ box-shadow: none;
23933
+ }.v-theme-provider {
23934
+ background: rgb(var(--v-theme-background));
23935
+ color: rgb(var(--v-theme-on-background));
24063
23936
  }.v-timeline .v-timeline-divider__dot {
24064
23937
  background: rgb(var(--v-theme-surface-light));
24065
23938
  }
@@ -24460,22 +24333,149 @@ html.v-overlay-scroll-blocked {
24460
24333
  padding-block-start: 0;
24461
24334
  }
24462
24335
 
24463
- .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
24464
- padding-inline-start: 0;
24336
+ .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
24337
+ padding-inline-start: 0;
24338
+ }
24339
+
24340
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
24341
+ display: none;
24342
+ }
24343
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
24344
+ --v-timeline-line-size-offset: 12px;
24345
+ }
24346
+ .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
24347
+ padding-block-end: 0;
24348
+ }
24349
+
24350
+ .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 {
24351
+ padding-inline-end: 0;
24352
+ }.v-toolbar {
24353
+ align-items: flex-start;
24354
+ display: flex;
24355
+ flex: none;
24356
+ flex-direction: column;
24357
+ justify-content: space-between;
24358
+ max-width: 100%;
24359
+ overflow: hidden;
24360
+ position: relative;
24361
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24362
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
24363
+ width: 100%;
24364
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24365
+ border-style: solid;
24366
+ border-width: 0;
24367
+ 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));
24368
+ border-radius: 0;
24369
+ background: rgb(var(--v-theme-surface-light));
24370
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24371
+ }
24372
+ .v-toolbar--border {
24373
+ border-width: thin;
24374
+ box-shadow: none;
24375
+ }
24376
+ .v-toolbar--absolute {
24377
+ position: absolute;
24378
+ }
24379
+ .v-toolbar--collapse {
24380
+ max-width: 112px;
24381
+ overflow: hidden;
24382
+ border-end-end-radius: 24px;
24383
+ }
24384
+ .v-toolbar--collapse .v-toolbar-title {
24385
+ display: none;
24386
+ }
24387
+ .v-toolbar--flat {
24388
+ 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));
24389
+ }
24390
+ .v-toolbar--floating {
24391
+ display: inline-flex;
24392
+ }
24393
+ .v-toolbar--rounded {
24394
+ border-radius: 4px;
24395
+ }
24396
+
24397
+ .v-toolbar__content,
24398
+ .v-toolbar__extension {
24399
+ align-items: center;
24400
+ display: flex;
24401
+ flex: 0 0 auto;
24402
+ position: relative;
24403
+ transition: inherit;
24404
+ width: 100%;
24405
+ }
24406
+
24407
+ .v-toolbar__content > .v-btn:first-child {
24408
+ margin-inline-start: 10px;
24409
+ }
24410
+ .v-toolbar__content > .v-btn:last-child {
24411
+ margin-inline-end: 10px;
24412
+ }
24413
+ .v-toolbar__content > .v-toolbar-title {
24414
+ margin-inline-start: 16px;
24415
+ }
24416
+ .v-toolbar--density-prominent .v-toolbar__content {
24417
+ align-items: flex-start;
24418
+ }
24419
+
24420
+ .v-toolbar__image {
24421
+ position: absolute;
24422
+ top: 0;
24423
+ left: 0;
24424
+ width: 100%;
24425
+ height: 100%;
24426
+ display: flex;
24427
+ opacity: var(--v-toolbar-image-opacity, 1);
24428
+ transition-property: opacity;
24429
+ }
24430
+
24431
+ .v-toolbar__prepend,
24432
+ .v-toolbar__append {
24433
+ align-items: center;
24434
+ align-self: stretch;
24435
+ display: flex;
24436
+ }
24437
+
24438
+ .v-toolbar__prepend {
24439
+ margin-inline: 10px auto;
24440
+ }
24441
+
24442
+ .v-toolbar__append {
24443
+ margin-inline: auto 10px;
24465
24444
  }
24466
24445
 
24467
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
24468
- display: none;
24446
+ .v-toolbar-title {
24447
+ flex: 1 1;
24448
+ font-size: 1.25rem;
24449
+ min-width: 0;
24450
+ font-size: 1.25rem;
24451
+ font-weight: 400;
24452
+ letter-spacing: 0;
24453
+ line-height: 1.75rem;
24454
+ text-transform: none;
24469
24455
  }
24470
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
24471
- --v-timeline-line-size-offset: 12px;
24456
+ .v-toolbar--density-prominent .v-toolbar-title {
24457
+ align-self: flex-end;
24458
+ padding-bottom: 6px;
24459
+ font-size: 1.5rem;
24460
+ font-weight: 400;
24461
+ letter-spacing: 0;
24462
+ line-height: 2.25rem;
24463
+ text-transform: none;
24472
24464
  }
24473
- .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
24474
- padding-block-end: 0;
24465
+
24466
+ .v-toolbar-title__placeholder {
24467
+ overflow: hidden;
24468
+ text-overflow: ellipsis;
24469
+ white-space: nowrap;
24475
24470
  }
24476
24471
 
24477
- .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 {
24478
- padding-inline-end: 0;
24472
+ .v-toolbar-items {
24473
+ display: flex;
24474
+ height: inherit;
24475
+ align-self: stretch;
24476
+ }
24477
+ .v-toolbar-items > .v-btn {
24478
+ border-radius: 0;
24479
24479
  }.v-tooltip > .v-overlay__content {
24480
24480
  background: rgb(var(--v-theme-surface-variant));
24481
24481
  color: rgb(var(--v-theme-on-surface-variant));
@@ -24497,15 +24497,6 @@ html.v-overlay-scroll-blocked {
24497
24497
  .v-tooltip > .v-overlay__content[class*=leave-active] {
24498
24498
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24499
24499
  transition-duration: 75ms;
24500
- }.v-virtual-scroll {
24501
- display: block;
24502
- flex: 1 1 auto;
24503
- max-width: 100%;
24504
- overflow: auto;
24505
- position: relative;
24506
- }
24507
- .v-virtual-scroll__container {
24508
- display: block;
24509
24500
  }.v-window {
24510
24501
  overflow: hidden;
24511
24502
  }
@@ -24575,6 +24566,37 @@ html.v-overlay-scroll-blocked {
24575
24566
  }
24576
24567
  .v-window-y-reverse-transition-leave-to {
24577
24568
  transform: translateY(100%);
24569
+ }.v-virtual-scroll {
24570
+ display: block;
24571
+ flex: 1 1 auto;
24572
+ max-width: 100%;
24573
+ overflow: auto;
24574
+ position: relative;
24575
+ }
24576
+ .v-virtual-scroll__container {
24577
+ display: block;
24578
+ }.v-color-picker-canvas {
24579
+ display: flex;
24580
+ position: relative;
24581
+ overflow: hidden;
24582
+ contain: content;
24583
+ touch-action: none;
24584
+ }
24585
+ .v-color-picker-canvas__dot {
24586
+ position: absolute;
24587
+ top: 0;
24588
+ left: 0;
24589
+ width: 15px;
24590
+ height: 15px;
24591
+ background: transparent;
24592
+ border-radius: 50%;
24593
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
24594
+ }
24595
+ .v-color-picker-canvas__dot--disabled {
24596
+ 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);
24597
+ }
24598
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
24599
+ will-change: transform;
24578
24600
  }.v-color-picker-preview__alpha .v-slider-track__background {
24579
24601
  background-color: transparent !important;
24580
24602
  }
@@ -24644,6 +24666,34 @@ html.v-overlay-scroll-blocked {
24644
24666
  .v-color-picker-preview__eye-dropper {
24645
24667
  position: relative;
24646
24668
  margin-right: 12px;
24669
+ }.v-color-picker-edit {
24670
+ display: flex;
24671
+ margin-top: 24px;
24672
+ }
24673
+
24674
+ .v-color-picker-edit__input {
24675
+ width: 100%;
24676
+ display: flex;
24677
+ flex-wrap: wrap;
24678
+ justify-content: center;
24679
+ text-align: center;
24680
+ }
24681
+ .v-color-picker-edit__input:not(:last-child) {
24682
+ margin-inline-end: 8px;
24683
+ }
24684
+ .v-color-picker-edit__input input {
24685
+ border-radius: 4px;
24686
+ margin-bottom: 8px;
24687
+ min-width: 0;
24688
+ outline: none;
24689
+ text-align: center;
24690
+ width: 100%;
24691
+ height: 32px;
24692
+ background: rgba(var(--v-theme-surface-variant), 0.2);
24693
+ color: rgba(var(--v-theme-on-surface));
24694
+ }
24695
+ .v-color-picker-edit__input span {
24696
+ font-size: 0.75rem;
24647
24697
  }.v-color-picker-swatches {
24648
24698
  overflow-y: auto;
24649
24699
  }
@@ -24679,107 +24729,211 @@ html.v-overlay-scroll-blocked {
24679
24729
  justify-content: center;
24680
24730
  width: 100%;
24681
24731
  height: 100%;
24682
- }.v-color-picker-edit {
24683
- display: flex;
24684
- margin-top: 24px;
24732
+ }.v-picker.v-sheet {
24733
+ 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));
24734
+ border-radius: 4px;
24735
+ display: grid;
24736
+ grid-auto-rows: min-content;
24737
+ grid-template-areas: "title" "header" "body";
24738
+ overflow: hidden;
24739
+ }
24740
+ .v-picker.v-sheet.v-picker--with-actions {
24741
+ grid-template-areas: "title" "header" "body" "actions";
24685
24742
  }
24686
24743
 
24687
- .v-color-picker-edit__input {
24688
- width: 100%;
24744
+ .v-picker__body {
24745
+ grid-area: body;
24746
+ }
24747
+
24748
+ .v-picker__header {
24749
+ grid-area: header;
24750
+ }
24751
+
24752
+ .v-picker__actions {
24753
+ grid-area: actions;
24754
+ padding: 0 12px 12px 12px;
24689
24755
  display: flex;
24690
- flex-wrap: wrap;
24691
- justify-content: center;
24692
- text-align: center;
24756
+ align-items: center;
24757
+ justify-content: flex-end;
24693
24758
  }
24694
- .v-color-picker-edit__input:not(:last-child) {
24759
+ .v-picker__actions .v-btn {
24760
+ min-width: 48px;
24761
+ }
24762
+ .v-picker__actions .v-btn:not(:last-child) {
24695
24763
  margin-inline-end: 8px;
24696
24764
  }
24697
- .v-color-picker-edit__input input {
24698
- border-radius: 4px;
24699
- margin-bottom: 8px;
24700
- min-width: 0;
24765
+
24766
+ .v-picker--landscape {
24767
+ grid-template-areas: "title" "header body" "header body";
24768
+ }
24769
+
24770
+ .v-picker--landscape.v-picker--with-actions {
24771
+ grid-template-areas: "title" "header body" "header actions";
24772
+ }
24773
+
24774
+ .v-picker-title {
24775
+ text-transform: uppercase;
24776
+ font-size: 0.75rem;
24777
+ grid-area: title;
24778
+ padding-inline: 24px 12px;
24779
+ padding-top: 16px;
24780
+ padding-bottom: 16px;
24781
+ font-weight: 600;
24782
+ letter-spacing: 0.1666666667em;
24783
+ }.v-slider-thumb {
24784
+ touch-action: none;
24785
+ color: rgb(var(--v-theme-surface-variant));
24786
+ }
24787
+ .v-input--error:not(.v-input--disabled) .v-slider-thumb {
24788
+ color: inherit;
24789
+ }
24790
+
24791
+ .v-slider-thumb__label {
24792
+ background: rgba(var(--v-theme-surface-variant), 0.7);
24793
+ color: rgb(var(--v-theme-on-surface-variant));
24794
+ }
24795
+ .v-slider-thumb__label::before {
24796
+ color: rgba(var(--v-theme-surface-variant), 0.7);
24797
+ }
24798
+
24799
+ .v-slider-thumb {
24701
24800
  outline: none;
24702
- text-align: center;
24801
+ position: absolute;
24802
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
24803
+ }
24804
+
24805
+ .v-slider-thumb__surface {
24806
+ cursor: pointer;
24807
+ width: var(--v-slider-thumb-size);
24808
+ height: var(--v-slider-thumb-size);
24809
+ border-radius: 50%;
24810
+ -webkit-user-select: none;
24811
+ user-select: none;
24812
+ background-color: currentColor;
24813
+ }
24814
+ .v-slider-thumb__surface::before {
24815
+ transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
24816
+ content: "";
24817
+ color: inherit;
24818
+ top: 0;
24819
+ left: 0;
24703
24820
  width: 100%;
24704
- height: 32px;
24705
- background: rgba(var(--v-theme-surface-variant), 0.2);
24706
- color: rgba(var(--v-theme-on-surface));
24821
+ height: 100%;
24822
+ border-radius: 50%;
24823
+ background: currentColor;
24824
+ position: absolute;
24825
+ pointer-events: none;
24826
+ opacity: 0;
24707
24827
  }
24708
- .v-color-picker-edit__input span {
24709
- font-size: 0.75rem;
24710
- }.v-color-picker-canvas {
24828
+ .v-slider-thumb__surface::after {
24829
+ content: "";
24830
+ width: 42px;
24831
+ height: 42px;
24832
+ position: absolute;
24833
+ top: 50%;
24834
+ left: 50%;
24835
+ transform: translate(-50%, -50%);
24836
+ }
24837
+
24838
+ .v-slider-thumb__label-container {
24839
+ position: absolute;
24840
+ transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
24841
+ }
24842
+
24843
+ .v-slider-thumb__label {
24711
24844
  display: flex;
24712
- position: relative;
24713
- overflow: hidden;
24714
- contain: content;
24715
- touch-action: none;
24845
+ align-items: center;
24846
+ justify-content: center;
24847
+ font-size: 0.75rem;
24848
+ min-width: 35px;
24849
+ height: 25px;
24850
+ border-radius: 4px;
24851
+ padding: 6px;
24852
+ position: absolute;
24853
+ -webkit-user-select: none;
24854
+ user-select: none;
24855
+ transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
24716
24856
  }
24717
- .v-color-picker-canvas__dot {
24857
+ .v-slider-thumb__label::before {
24858
+ content: "";
24859
+ width: 0;
24860
+ height: 0;
24861
+ position: absolute;
24862
+ }
24863
+
24864
+ .v-slider-thumb__ripple {
24718
24865
  position: absolute;
24719
- top: 0;
24720
- left: 0;
24721
- width: 15px;
24722
- height: 15px;
24723
- background: transparent;
24724
- border-radius: 50%;
24725
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
24866
+ left: calc(var(--v-slider-thumb-size) / -2);
24867
+ top: calc(var(--v-slider-thumb-size) / -2);
24868
+ width: calc(var(--v-slider-thumb-size) * 2);
24869
+ height: calc(var(--v-slider-thumb-size) * 2);
24870
+ background: inherit;
24726
24871
  }
24727
- .v-color-picker-canvas__dot--disabled {
24728
- 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);
24872
+
24873
+ .v-slider.v-input--horizontal .v-slider-thumb {
24874
+ top: 50%;
24875
+ transform: translateY(-50%);
24876
+ inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
24729
24877
  }
24730
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
24731
- will-change: transform;
24732
- }.v-picker.v-sheet {
24733
- 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));
24734
- border-radius: 4px;
24735
- display: grid;
24736
- grid-auto-rows: min-content;
24737
- grid-template-areas: "title" "header" "body";
24738
- overflow: hidden;
24878
+ .v-slider.v-input--horizontal .v-slider-thumb__label-container {
24879
+ left: calc(var(--v-slider-thumb-size) / 2);
24880
+ top: 0;
24739
24881
  }
24740
- .v-picker.v-sheet.v-picker--with-actions {
24741
- grid-template-areas: "title" "header" "body" "actions";
24882
+ .v-slider.v-input--horizontal .v-slider-thumb__label {
24883
+ bottom: calc(var(--v-slider-thumb-size) / 2);
24884
+ }
24885
+ .v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
24886
+ transform: translateX(-50%);
24742
24887
  }
24743
24888
 
24744
- .v-picker__body {
24745
- grid-area: body;
24889
+ .v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
24890
+ transform: translateX(50%);
24746
24891
  }
24747
24892
 
24748
- .v-picker__header {
24749
- grid-area: header;
24893
+ .v-slider.v-input--horizontal .v-slider-thumb__label::before {
24894
+ border-left: 6px solid transparent;
24895
+ border-right: 6px solid transparent;
24896
+ border-top: 6px solid currentColor;
24897
+ bottom: -6px;
24750
24898
  }
24751
24899
 
24752
- .v-picker__actions {
24753
- grid-area: actions;
24754
- padding: 0 12px 12px 12px;
24755
- display: flex;
24756
- align-items: center;
24757
- justify-content: flex-end;
24900
+ .v-slider.v-input--vertical .v-slider-thumb {
24901
+ top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
24758
24902
  }
24759
- .v-picker__actions .v-btn {
24760
- min-width: 48px;
24903
+ .v-slider.v-input--vertical .v-slider-thumb__label-container {
24904
+ top: calc(var(--v-slider-thumb-size) / 2);
24905
+ right: 0;
24761
24906
  }
24762
- .v-picker__actions .v-btn:not(:last-child) {
24763
- margin-inline-end: 8px;
24907
+ .v-slider.v-input--vertical .v-slider-thumb__label {
24908
+ top: -12.5px;
24909
+ left: calc(var(--v-slider-thumb-size) / 2);
24910
+ }
24911
+ .v-slider.v-input--vertical .v-slider-thumb__label::before {
24912
+ border-right: 6px solid currentColor;
24913
+ border-top: 6px solid transparent;
24914
+ border-bottom: 6px solid transparent;
24915
+ left: -6px;
24764
24916
  }
24765
24917
 
24766
- .v-picker--landscape {
24767
- grid-template-areas: "title" "header body" "header body";
24918
+ .v-slider-thumb--focused .v-slider-thumb__surface::before {
24919
+ transform: scale(2);
24920
+ opacity: var(--v-focus-opacity);
24768
24921
  }
24769
24922
 
24770
- .v-picker--landscape.v-picker--with-actions {
24771
- grid-template-areas: "title" "header body" "header actions";
24923
+ .v-slider-thumb--pressed {
24924
+ transition: none;
24925
+ }
24926
+ .v-slider-thumb--pressed .v-slider-thumb__surface::before {
24927
+ opacity: var(--v-pressed-opacity);
24772
24928
  }
24773
24929
 
24774
- .v-picker-title {
24775
- text-transform: uppercase;
24776
- font-size: 0.75rem;
24777
- grid-area: title;
24778
- padding-inline: 24px 12px;
24779
- padding-top: 16px;
24780
- padding-bottom: 16px;
24781
- font-weight: 600;
24782
- letter-spacing: 0.1666666667em;
24930
+ @media (hover: hover) {
24931
+ .v-slider-thumb:hover .v-slider-thumb__surface::before {
24932
+ transform: scale(2);
24933
+ }
24934
+ .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
24935
+ opacity: var(--v-hover-opacity);
24936
+ }
24783
24937
  }.v-slider-track__background {
24784
24938
  background-color: rgb(var(--v-theme-surface-variant));
24785
24939
  }
@@ -24943,158 +25097,4 @@ html.v-overlay-scroll-blocked {
24943
25097
 
24944
25098
  .v-slider-track__background--opacity {
24945
25099
  opacity: 0.38;
24946
- }.v-slider-thumb {
24947
- touch-action: none;
24948
- color: rgb(var(--v-theme-surface-variant));
24949
- }
24950
- .v-input--error:not(.v-input--disabled) .v-slider-thumb {
24951
- color: inherit;
24952
- }
24953
-
24954
- .v-slider-thumb__label {
24955
- background: rgba(var(--v-theme-surface-variant), 0.7);
24956
- color: rgb(var(--v-theme-on-surface-variant));
24957
- }
24958
- .v-slider-thumb__label::before {
24959
- color: rgba(var(--v-theme-surface-variant), 0.7);
24960
- }
24961
-
24962
- .v-slider-thumb {
24963
- outline: none;
24964
- position: absolute;
24965
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
24966
- }
24967
-
24968
- .v-slider-thumb__surface {
24969
- cursor: pointer;
24970
- width: var(--v-slider-thumb-size);
24971
- height: var(--v-slider-thumb-size);
24972
- border-radius: 50%;
24973
- -webkit-user-select: none;
24974
- user-select: none;
24975
- background-color: currentColor;
24976
- }
24977
- .v-slider-thumb__surface::before {
24978
- transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
24979
- content: "";
24980
- color: inherit;
24981
- top: 0;
24982
- left: 0;
24983
- width: 100%;
24984
- height: 100%;
24985
- border-radius: 50%;
24986
- background: currentColor;
24987
- position: absolute;
24988
- pointer-events: none;
24989
- opacity: 0;
24990
- }
24991
- .v-slider-thumb__surface::after {
24992
- content: "";
24993
- width: 42px;
24994
- height: 42px;
24995
- position: absolute;
24996
- top: 50%;
24997
- left: 50%;
24998
- transform: translate(-50%, -50%);
24999
- }
25000
-
25001
- .v-slider-thumb__label-container {
25002
- position: absolute;
25003
- transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
25004
- }
25005
-
25006
- .v-slider-thumb__label {
25007
- display: flex;
25008
- align-items: center;
25009
- justify-content: center;
25010
- font-size: 0.75rem;
25011
- min-width: 35px;
25012
- height: 25px;
25013
- border-radius: 4px;
25014
- padding: 6px;
25015
- position: absolute;
25016
- -webkit-user-select: none;
25017
- user-select: none;
25018
- transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
25019
- }
25020
- .v-slider-thumb__label::before {
25021
- content: "";
25022
- width: 0;
25023
- height: 0;
25024
- position: absolute;
25025
- }
25026
-
25027
- .v-slider-thumb__ripple {
25028
- position: absolute;
25029
- left: calc(var(--v-slider-thumb-size) / -2);
25030
- top: calc(var(--v-slider-thumb-size) / -2);
25031
- width: calc(var(--v-slider-thumb-size) * 2);
25032
- height: calc(var(--v-slider-thumb-size) * 2);
25033
- background: inherit;
25034
- }
25035
-
25036
- .v-slider.v-input--horizontal .v-slider-thumb {
25037
- top: 50%;
25038
- transform: translateY(-50%);
25039
- inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25040
- }
25041
- .v-slider.v-input--horizontal .v-slider-thumb__label-container {
25042
- left: calc(var(--v-slider-thumb-size) / 2);
25043
- top: 0;
25044
- }
25045
- .v-slider.v-input--horizontal .v-slider-thumb__label {
25046
- bottom: calc(var(--v-slider-thumb-size) / 2);
25047
- }
25048
- .v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
25049
- transform: translateX(-50%);
25050
- }
25051
-
25052
- .v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
25053
- transform: translateX(50%);
25054
- }
25055
-
25056
- .v-slider.v-input--horizontal .v-slider-thumb__label::before {
25057
- border-left: 6px solid transparent;
25058
- border-right: 6px solid transparent;
25059
- border-top: 6px solid currentColor;
25060
- bottom: -6px;
25061
- }
25062
-
25063
- .v-slider.v-input--vertical .v-slider-thumb {
25064
- top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25065
- }
25066
- .v-slider.v-input--vertical .v-slider-thumb__label-container {
25067
- top: calc(var(--v-slider-thumb-size) / 2);
25068
- right: 0;
25069
- }
25070
- .v-slider.v-input--vertical .v-slider-thumb__label {
25071
- top: -12.5px;
25072
- left: calc(var(--v-slider-thumb-size) / 2);
25073
- }
25074
- .v-slider.v-input--vertical .v-slider-thumb__label::before {
25075
- border-right: 6px solid currentColor;
25076
- border-top: 6px solid transparent;
25077
- border-bottom: 6px solid transparent;
25078
- left: -6px;
25079
- }
25080
-
25081
- .v-slider-thumb--focused .v-slider-thumb__surface::before {
25082
- transform: scale(2);
25083
- opacity: var(--v-focus-opacity);
25084
- }
25085
-
25086
- .v-slider-thumb--pressed {
25087
- transition: none;
25088
- }
25089
- .v-slider-thumb--pressed .v-slider-thumb__surface::before {
25090
- opacity: var(--v-pressed-opacity);
25091
- }
25092
-
25093
- @media (hover: hover) {
25094
- .v-slider-thumb:hover .v-slider-thumb__surface::before {
25095
- transform: scale(2);
25096
- }
25097
- .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
25098
- opacity: var(--v-hover-opacity);
25099
- }
25100
25100
  }