@vuetify/nightly 3.6.7-master.2024-05-22 → 3.6.7-master.2024-05-23

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 (47) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/importMap-labs.json +4 -4
  3. package/dist/json/importMap.json +112 -112
  4. package/dist/json/web-types.json +3 -3
  5. package/dist/vuetify-labs.css +2177 -2177
  6. package/dist/vuetify-labs.esm.js +60 -57
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +59 -56
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +2390 -2390
  11. package/dist/vuetify.d.ts +33 -33
  12. package/dist/vuetify.esm.js +60 -57
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +59 -56
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +298 -297
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VExpansionPanel/VExpansionPanel.mjs +1 -1
  20. package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
  21. package/lib/components/VExpansionPanel/VExpansionPanelText.mjs +1 -1
  22. package/lib/components/VExpansionPanel/VExpansionPanelText.mjs.map +1 -1
  23. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +1 -1
  24. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  25. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +1 -1
  26. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  27. package/lib/components/VExpansionPanel/index.d.mts +36 -36
  28. package/lib/components/VExpansionPanel/shared.mjs +4 -0
  29. package/lib/components/VExpansionPanel/shared.mjs.map +1 -0
  30. package/lib/components/VStepper/VStepper.mjs +1 -1
  31. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperItem.mjs +1 -1
  33. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  34. package/lib/components/VStepper/VStepperWindow.mjs +2 -2
  35. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  36. package/lib/components/VStepper/shared.mjs +4 -0
  37. package/lib/components/VStepper/shared.mjs.map +1 -0
  38. package/lib/composables/defaults.mjs +3 -1
  39. package/lib/composables/defaults.mjs.map +1 -1
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +33 -33
  43. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +1 -2
  44. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -1
  45. package/lib/labs/VTreeview/VTreeviewItem.mjs +2 -2
  46. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  47. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-22
2
+ * Vuetify v3.6.7-master.2024-05-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17380,6 +17380,38 @@ html.overflow-y-hidden {
17380
17380
  font-weight: normal;
17381
17381
  padding: 0.2em 0.4rem;
17382
17382
  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));
17383
+ }.v-calendar-day {
17384
+ position: relative;
17385
+ display: flex;
17386
+ flex-direction: column;
17387
+ }
17388
+
17389
+ .v-calendar-weekly .v-calendar__container {
17390
+ display: grid;
17391
+ }
17392
+ .v-calendar-weekly .v-calendar__container.days__7 {
17393
+ grid-template-columns: repeat(7, 1fr);
17394
+ }
17395
+ .v-calendar-weekly .v-calendar__container.days__6 {
17396
+ grid-template-columns: repeat(6, 1fr);
17397
+ }
17398
+ .v-calendar-weekly .v-calendar__container.days__5 {
17399
+ grid-template-columns: repeat(5, 1fr);
17400
+ }
17401
+ .v-calendar-weekly .v-calendar__container.days__4 {
17402
+ grid-template-columns: repeat(4, 1fr);
17403
+ }
17404
+ .v-calendar-weekly .v-calendar__container.days__3 {
17405
+ grid-template-columns: repeat(3, 1fr);
17406
+ }
17407
+ .v-calendar-weekly .v-calendar__container.days__2 {
17408
+ grid-template-columns: repeat(2, 1fr);
17409
+ }
17410
+ .v-calendar-weekly .v-calendar__container.days__1 {
17411
+ grid-template-columns: repeat(1, 1fr);
17412
+ }
17413
+ .v-calendar-weekly .v-calendar__container.days__0 {
17414
+ grid-template-columns: repeat(1, 1fr);
17383
17415
  }.v-calendar {
17384
17416
  background: rgb(var(--v-theme-background));
17385
17417
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
@@ -17620,38 +17652,6 @@ html.overflow-y-hidden {
17620
17652
  .v-calendar-header__title {
17621
17653
  font-size: 1.5rem;
17622
17654
  margin-inline-start: 24px;
17623
- }.v-calendar-day {
17624
- position: relative;
17625
- display: flex;
17626
- flex-direction: column;
17627
- }
17628
-
17629
- .v-calendar-weekly .v-calendar__container {
17630
- display: grid;
17631
- }
17632
- .v-calendar-weekly .v-calendar__container.days__7 {
17633
- grid-template-columns: repeat(7, 1fr);
17634
- }
17635
- .v-calendar-weekly .v-calendar__container.days__6 {
17636
- grid-template-columns: repeat(6, 1fr);
17637
- }
17638
- .v-calendar-weekly .v-calendar__container.days__5 {
17639
- grid-template-columns: repeat(5, 1fr);
17640
- }
17641
- .v-calendar-weekly .v-calendar__container.days__4 {
17642
- grid-template-columns: repeat(4, 1fr);
17643
- }
17644
- .v-calendar-weekly .v-calendar__container.days__3 {
17645
- grid-template-columns: repeat(3, 1fr);
17646
- }
17647
- .v-calendar-weekly .v-calendar__container.days__2 {
17648
- grid-template-columns: repeat(2, 1fr);
17649
- }
17650
- .v-calendar-weekly .v-calendar__container.days__1 {
17651
- grid-template-columns: repeat(1, 1fr);
17652
- }
17653
- .v-calendar-weekly .v-calendar__container.days__0 {
17654
- grid-template-columns: repeat(1, 1fr);
17655
17655
  }.v-calendar-internal-event {
17656
17656
  overflow: hidden;
17657
17657
  padding: 4px;
@@ -17762,74 +17762,44 @@ html.overflow-y-hidden {
17762
17762
  }
17763
17763
  .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17764
17764
  border-bottom: none;
17765
- }.v-stepper-vertical-item {
17766
- position: relative;
17767
- transition-duration: 0.2s;
17768
- transition-property: opacity;
17769
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17770
- }
17771
- .v-stepper-vertical-item__title {
17772
- font-size: 1rem;
17773
- }
17774
- .v-stepper-vertical-item__subtitle {
17775
- font-size: 0.75rem;
17776
- }
17777
- .v-stepper-vertical-item .v-expansion-panel-text {
17778
- padding-inline-start: 32px;
17779
- }
17780
- .v-stepper-vertical-item:not(:last-child):before {
17781
- content: "";
17782
- position: absolute;
17783
- width: 2px;
17784
- height: calc(100% - 30px);
17785
- background: rgba(var(--v-border-color), var(--v-border-opacity));
17786
- left: 35px;
17787
- top: 44px;
17788
- z-index: 1;
17789
- transition-duration: 300ms;
17790
- transition-property: height;
17791
- }
17792
- .v-stepper-vertical-item:after {
17793
- display: none;
17765
+ }.v-number-input input[type=number] {
17766
+ -moz-appearance: textfield;
17794
17767
  }
17795
- .v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title {
17796
- pointer-events: none;
17768
+ .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
17769
+ -webkit-appearance: none;
17797
17770
  }
17798
- .v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title .v-expansion-panel-title__overlay {
17799
- opacity: 0;
17771
+ .v-number-input .v-field {
17772
+ padding-inline-end: 0;
17773
+ padding-inline-start: 0;
17800
17774
  }
17801
-
17802
- .v-stepper-vertical-item__avatar.v-avatar {
17803
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17804
- color: rgb(var(--v-theme-on-surface-variant));
17805
- transition-property: background;
17775
+ .v-number-input--inset .v-divider {
17776
+ height: 55%;
17777
+ width: 55%;
17778
+ align-self: center;
17806
17779
  }
17807
- .v-stepper-vertical-item__avatar.v-avatar .v-icon {
17808
- font-size: 0.875rem;
17780
+ .v-number-input--split .v-field__input {
17781
+ text-align: center;
17809
17782
  }
17810
- .v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
17811
- background: rgb(var(--v-theme-surface-variant));
17783
+ .v-number-input--stacked .v-number-input__control {
17784
+ flex-direction: column-reverse;
17812
17785
  }
17813
- .v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
17814
- background: rgb(var(--v-theme-error));
17815
- color: rgb(var(--v-theme-on-error));
17786
+ .v-number-input--stacked .v-number-input__control .v-btn {
17787
+ flex: 1;
17816
17788
  }
17817
-
17818
- .v-stepper-vertical-item--error .v-stepper-vertical-item__title {
17819
- color: rgb(var(--v-theme-error));
17789
+ .v-number-input--hide-input .v-field {
17790
+ flex: none;
17820
17791
  }
17821
-
17822
- .v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
17823
- color: rgb(var(--v-theme-error));
17792
+ .v-number-input--hide-input .v-field__input {
17793
+ width: 0;
17794
+ padding-inline: 0;
17824
17795
  }
17825
-
17826
- .v-stepper-vertical-actions.v-stepper-actions .v-btn {
17827
- margin-inline-end: 8px;
17796
+ .v-number-input__control {
17797
+ display: flex;
17798
+ height: 100%;
17828
17799
  }
17829
- .v-stepper .v-stepper-vertical-actions.v-stepper-actions {
17830
- justify-content: flex-end;
17831
- padding: 24px 0 0;
17832
- flex-direction: row-reverse;
17800
+ .v-number-input__control .v-btn {
17801
+ background-color: transparent;
17802
+ border-radius: 0;
17833
17803
  }.v-picker.v-sheet {
17834
17804
  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));
17835
17805
  border-radius: 4px;
@@ -17883,44 +17853,6 @@ html.overflow-y-hidden {
17883
17853
  padding-bottom: 16px;
17884
17854
  font-weight: 400;
17885
17855
  letter-spacing: 0.1666666667em;
17886
- }.v-number-input input[type=number] {
17887
- -moz-appearance: textfield;
17888
- }
17889
- .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
17890
- -webkit-appearance: none;
17891
- }
17892
- .v-number-input .v-field {
17893
- padding-inline-end: 0;
17894
- padding-inline-start: 0;
17895
- }
17896
- .v-number-input--inset .v-divider {
17897
- height: 55%;
17898
- width: 55%;
17899
- align-self: center;
17900
- }
17901
- .v-number-input--split .v-field__input {
17902
- text-align: center;
17903
- }
17904
- .v-number-input--stacked .v-number-input__control {
17905
- flex-direction: column-reverse;
17906
- }
17907
- .v-number-input--stacked .v-number-input__control .v-btn {
17908
- flex: 1;
17909
- }
17910
- .v-number-input--hide-input .v-field {
17911
- flex: none;
17912
- }
17913
- .v-number-input--hide-input .v-field__input {
17914
- width: 0;
17915
- padding-inline: 0;
17916
- }
17917
- .v-number-input__control {
17918
- display: flex;
17919
- height: 100%;
17920
- }
17921
- .v-number-input__control .v-btn {
17922
- background-color: transparent;
17923
- border-radius: 0;
17924
17856
  }.v-pull-to-refresh {
17925
17857
  overflow: hidden;
17926
17858
  position: relative;
@@ -17947,13 +17879,6 @@ html.overflow-y-hidden {
17947
17879
  }
17948
17880
  .v-pull-to-refresh__scroll-container--touching {
17949
17881
  transition: none;
17950
- }.v-time-picker.v-picker {
17951
- padding: 24px;
17952
- width: 328px;
17953
- }
17954
- .v-time-picker.v-picker .v-picker-title {
17955
- padding: 0;
17956
- margin-bottom: 20px;
17957
17882
  }.v-treeview-item--filtered {
17958
17883
  display: none;
17959
17884
  }
@@ -17970,46 +17895,121 @@ html.overflow-y-hidden {
17970
17895
  }
17971
17896
  .v-treeview-group.v-list-group .v-list-group__items .v-list-item {
17972
17897
  padding-inline-start: calc(12px + var(--indent-padding)) !important;
17973
- }.v-time-picker-controls {
17974
- display: flex;
17975
- align-items: center;
17976
- justify-content: center;
17977
- font-size: 0.875rem;
17978
- padding-top: 4px;
17979
- padding-bottom: 4px;
17980
- margin-bottom: 36px;
17898
+ }.v-stepper-vertical-item {
17899
+ position: relative;
17900
+ transition-duration: 0.2s;
17901
+ transition-property: opacity;
17902
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17981
17903
  }
17982
- .v-time-picker-controls__text {
17983
- padding-bottom: 12px;
17904
+ .v-stepper-vertical-item__title {
17905
+ font-size: 1rem;
17984
17906
  }
17985
- .v-time-picker-controls__time {
17986
- display: flex;
17987
- white-space: nowrap;
17988
- direction: ltr;
17989
- justify-content: center;
17907
+ .v-stepper-vertical-item__subtitle {
17908
+ font-size: 0.75rem;
17990
17909
  }
17991
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
17992
- width: 96px;
17993
- height: 80px;
17994
- font-size: 56px;
17910
+ .v-stepper-vertical-item .v-expansion-panel-text {
17911
+ padding-inline-start: 32px;
17995
17912
  }
17996
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
17997
- background: rgb(var(--v-theme-primary));
17913
+ .v-stepper-vertical-item:not(:last-child):before {
17914
+ content: "";
17915
+ position: absolute;
17916
+ width: 2px;
17917
+ height: calc(100% - 30px);
17918
+ background: rgba(var(--v-border-color), var(--v-border-opacity));
17919
+ left: 35px;
17920
+ top: 44px;
17921
+ z-index: 1;
17922
+ transition-duration: 300ms;
17923
+ transition-property: height;
17998
17924
  }
17999
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
18000
- width: 96px;
18001
- height: 80px;
17925
+ .v-stepper-vertical-item:after {
17926
+ display: none;
18002
17927
  }
18003
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
18004
- width: 64px;
18005
- height: 80px;
18006
- font-size: 40px;
17928
+ .v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title {
17929
+ pointer-events: none;
18007
17930
  }
18008
- .v-time-picker-controls__time__separator {
18009
- font-size: 56px;
18010
- height: 80px;
18011
- width: 24px;
18012
- text-align: center;
17931
+ .v-stepper-vertical-item.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay, .v-stepper-vertical-item:not(.v-stepper-vertical-item--editable) .v-expansion-panel-title .v-expansion-panel-title__overlay {
17932
+ opacity: 0;
17933
+ }
17934
+
17935
+ .v-stepper-vertical-item__avatar.v-avatar {
17936
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17937
+ color: rgb(var(--v-theme-on-surface-variant));
17938
+ transition-property: background;
17939
+ }
17940
+ .v-stepper-vertical-item__avatar.v-avatar .v-icon {
17941
+ font-size: 0.875rem;
17942
+ }
17943
+ .v-expansion-panel--active .v-stepper-vertical-item__avatar.v-avatar {
17944
+ background: rgb(var(--v-theme-surface-variant));
17945
+ }
17946
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__avatar.v-avatar {
17947
+ background: rgb(var(--v-theme-error));
17948
+ color: rgb(var(--v-theme-on-error));
17949
+ }
17950
+
17951
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__title {
17952
+ color: rgb(var(--v-theme-error));
17953
+ }
17954
+
17955
+ .v-stepper-vertical-item--error .v-stepper-vertical-item__subtitle {
17956
+ color: rgb(var(--v-theme-error));
17957
+ }
17958
+
17959
+ .v-stepper-vertical-actions.v-stepper-actions .v-btn {
17960
+ margin-inline-end: 8px;
17961
+ }
17962
+ .v-stepper .v-stepper-vertical-actions.v-stepper-actions {
17963
+ justify-content: flex-end;
17964
+ padding: 24px 0 0;
17965
+ flex-direction: row-reverse;
17966
+ }.v-time-picker.v-picker {
17967
+ padding: 24px;
17968
+ width: 328px;
17969
+ }
17970
+ .v-time-picker.v-picker .v-picker-title {
17971
+ padding: 0;
17972
+ margin-bottom: 20px;
17973
+ }.v-time-picker-controls {
17974
+ display: flex;
17975
+ align-items: center;
17976
+ justify-content: center;
17977
+ font-size: 0.875rem;
17978
+ padding-top: 4px;
17979
+ padding-bottom: 4px;
17980
+ margin-bottom: 36px;
17981
+ }
17982
+ .v-time-picker-controls__text {
17983
+ padding-bottom: 12px;
17984
+ }
17985
+ .v-time-picker-controls__time {
17986
+ display: flex;
17987
+ white-space: nowrap;
17988
+ direction: ltr;
17989
+ justify-content: center;
17990
+ }
17991
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
17992
+ width: 96px;
17993
+ height: 80px;
17994
+ font-size: 56px;
17995
+ }
17996
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
17997
+ background: rgb(var(--v-theme-primary));
17998
+ }
17999
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
18000
+ width: 96px;
18001
+ height: 80px;
18002
+ }
18003
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
18004
+ width: 64px;
18005
+ height: 80px;
18006
+ font-size: 40px;
18007
+ }
18008
+ .v-time-picker-controls__time__separator {
18009
+ font-size: 56px;
18010
+ height: 80px;
18011
+ width: 24px;
18012
+ text-align: center;
18013
18013
  }
18014
18014
  .v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
18015
18015
  height: 80px;
@@ -18204,6 +18204,22 @@ html.overflow-y-hidden {
18204
18204
 
18205
18205
  .v-picker--landscape .v-time-picker-clock__container {
18206
18206
  flex-direction: row;
18207
+ }.v-application {
18208
+ display: flex;
18209
+ background: rgb(var(--v-theme-background));
18210
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18211
+ }
18212
+
18213
+ .v-application__wrap {
18214
+ -webkit-backface-visibility: hidden;
18215
+ backface-visibility: hidden;
18216
+ display: flex;
18217
+ flex-direction: column;
18218
+ flex: 1 1 auto;
18219
+ max-width: 100%;
18220
+ min-height: 100vh;
18221
+ min-height: 100dvh;
18222
+ position: relative;
18207
18223
  }.v-alert {
18208
18224
  display: grid;
18209
18225
  flex: 1 1;
@@ -18416,22 +18432,6 @@ html.overflow-y-hidden {
18416
18432
  text-transform: none;
18417
18433
  word-break: normal;
18418
18434
  word-wrap: break-word;
18419
- }.v-application {
18420
- display: flex;
18421
- background: rgb(var(--v-theme-background));
18422
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18423
- }
18424
-
18425
- .v-application__wrap {
18426
- -webkit-backface-visibility: hidden;
18427
- backface-visibility: hidden;
18428
- display: flex;
18429
- flex-direction: column;
18430
- flex: 1 1 auto;
18431
- max-width: 100%;
18432
- min-height: 100vh;
18433
- min-height: 100dvh;
18434
- position: relative;
18435
18435
  }.v-app-bar {
18436
18436
  display: flex;
18437
18437
  }
@@ -18620,61 +18620,6 @@ html.overflow-y-hidden {
18620
18620
  .v-avatar .v-img {
18621
18621
  height: 100%;
18622
18622
  width: 100%;
18623
- }.v-bottom-navigation {
18624
- display: flex;
18625
- max-width: 100%;
18626
- overflow: hidden;
18627
- position: absolute;
18628
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18629
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18630
- border-style: solid;
18631
- border-width: 0;
18632
- border-radius: 0;
18633
- background: rgb(var(--v-theme-surface));
18634
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18635
- }
18636
- .v-bottom-navigation--border {
18637
- border-width: thin;
18638
- box-shadow: none;
18639
- }
18640
- .v-bottom-navigation--active {
18641
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18642
- }
18643
-
18644
- .v-bottom-navigation__content {
18645
- display: flex;
18646
- flex: none;
18647
- font-size: 0.75rem;
18648
- justify-content: center;
18649
- transition: inherit;
18650
- width: 100%;
18651
- }
18652
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18653
- font-size: inherit;
18654
- height: 100%;
18655
- max-width: 168px;
18656
- min-width: 80px;
18657
- text-transform: none;
18658
- transition: inherit;
18659
- width: auto;
18660
- border-radius: 0;
18661
- }
18662
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18663
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18664
- transition: inherit;
18665
- }
18666
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18667
- font-size: 1.5rem;
18668
- }
18669
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18670
- flex-grow: 1;
18671
- }
18672
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18673
- transition: inherit;
18674
- opacity: 0;
18675
- }
18676
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18677
- transform: translateY(0.5rem);
18678
18623
  }.v-badge {
18679
18624
  display: inline-block;
18680
18625
  line-height: 1;
@@ -18746,38 +18691,63 @@ html.overflow-y-hidden {
18746
18691
  display: inline-flex;
18747
18692
  justify-content: center;
18748
18693
  margin: 0 4px;
18749
- }.bottom-sheet-transition-enter-from {
18750
- transform: translateY(100%);
18694
+ }.v-breadcrumbs {
18695
+ display: flex;
18696
+ align-items: center;
18697
+ line-height: 1.6;
18698
+ padding: 16px 12px;
18751
18699
  }
18752
- .bottom-sheet-transition-leave-to {
18753
- transform: translateY(100%);
18700
+ .v-breadcrumbs--rounded {
18701
+ border-radius: 4px;
18702
+ }
18703
+ .v-breadcrumbs--density-default {
18704
+ padding-top: 16px;
18705
+ padding-bottom: 16px;
18754
18706
  }
18755
18707
 
18756
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18757
- align-self: flex-end;
18758
- border-radius: 0;
18759
- flex: 0 1 auto;
18760
- left: 0;
18761
- right: 0;
18762
- margin-inline: 0;
18763
- margin-bottom: 0;
18764
- transition-duration: 0.2s;
18765
- width: 100%;
18766
- max-width: 100%;
18767
- overflow: visible;
18768
- 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));
18708
+ .v-breadcrumbs--density-comfortable {
18709
+ padding-top: 12px;
18710
+ padding-bottom: 12px;
18769
18711
  }
18770
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18771
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18772
- border-radius: 0;
18712
+
18713
+ .v-breadcrumbs--density-compact {
18714
+ padding-top: 8px;
18715
+ padding-bottom: 8px;
18773
18716
  }
18774
- .v-bottom-sheet.v-bottom-sheet--inset {
18775
- max-width: none;
18717
+
18718
+ .v-breadcrumbs__prepend {
18719
+ align-items: center;
18720
+ display: inline-flex;
18776
18721
  }
18777
- @media (min-width: 600px) {
18778
- .v-bottom-sheet.v-bottom-sheet--inset {
18779
- max-width: 70%;
18780
- }
18722
+
18723
+ .v-breadcrumbs-item {
18724
+ align-items: center;
18725
+ color: inherit;
18726
+ display: inline-flex;
18727
+ padding: 0 4px;
18728
+ text-decoration: none;
18729
+ vertical-align: middle;
18730
+ }
18731
+ .v-breadcrumbs-item--disabled {
18732
+ opacity: var(--v-disabled-opacity);
18733
+ pointer-events: none;
18734
+ }
18735
+ .v-breadcrumbs-item--link {
18736
+ color: inherit;
18737
+ text-decoration: none;
18738
+ }
18739
+ .v-breadcrumbs-item--link:hover {
18740
+ text-decoration: underline;
18741
+ }
18742
+ .v-breadcrumbs-item .v-icon {
18743
+ font-size: 1rem;
18744
+ margin-inline: -4px 2px;
18745
+ }
18746
+
18747
+ .v-breadcrumbs-divider {
18748
+ display: inline-block;
18749
+ padding: 0 8px;
18750
+ vertical-align: middle;
18781
18751
  }.v-banner {
18782
18752
  display: grid;
18783
18753
  flex: 1 1;
@@ -18935,18 +18905,106 @@ html.overflow-y-hidden {
18935
18905
  }
18936
18906
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18937
18907
  align-self: flex-start;
18938
- }.v-btn {
18939
- align-items: center;
18940
- border-radius: 4px;
18941
- display: inline-grid;
18942
- grid-template-areas: "prepend content append";
18943
- grid-template-columns: max-content auto max-content;
18944
- font-weight: 500;
18945
- justify-content: center;
18946
- letter-spacing: 0.0892857143em;
18947
- line-height: normal;
18948
- max-width: 100%;
18949
- outline: none;
18908
+ }.bottom-sheet-transition-enter-from {
18909
+ transform: translateY(100%);
18910
+ }
18911
+ .bottom-sheet-transition-leave-to {
18912
+ transform: translateY(100%);
18913
+ }
18914
+
18915
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18916
+ align-self: flex-end;
18917
+ border-radius: 0;
18918
+ flex: 0 1 auto;
18919
+ left: 0;
18920
+ right: 0;
18921
+ margin-inline: 0;
18922
+ margin-bottom: 0;
18923
+ transition-duration: 0.2s;
18924
+ width: 100%;
18925
+ max-width: 100%;
18926
+ overflow: visible;
18927
+ 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));
18928
+ }
18929
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18930
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18931
+ border-radius: 0;
18932
+ }
18933
+ .v-bottom-sheet.v-bottom-sheet--inset {
18934
+ max-width: none;
18935
+ }
18936
+ @media (min-width: 600px) {
18937
+ .v-bottom-sheet.v-bottom-sheet--inset {
18938
+ max-width: 70%;
18939
+ }
18940
+ }.v-btn-group {
18941
+ display: inline-flex;
18942
+ flex-wrap: nowrap;
18943
+ max-width: 100%;
18944
+ min-width: 0;
18945
+ overflow: hidden;
18946
+ vertical-align: middle;
18947
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18948
+ border-style: solid;
18949
+ border-width: 0;
18950
+ 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));
18951
+ border-radius: 4px;
18952
+ background: transparent;
18953
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18954
+ }
18955
+ .v-btn-group--border {
18956
+ border-width: thin;
18957
+ box-shadow: none;
18958
+ }
18959
+ .v-btn-group--density-default.v-btn-group {
18960
+ height: 48px;
18961
+ }
18962
+
18963
+ .v-btn-group--density-comfortable.v-btn-group {
18964
+ height: 40px;
18965
+ }
18966
+
18967
+ .v-btn-group--density-compact.v-btn-group {
18968
+ height: 36px;
18969
+ }
18970
+
18971
+ .v-btn-group .v-btn {
18972
+ border-radius: 0;
18973
+ border-color: inherit;
18974
+ }
18975
+ .v-btn-group .v-btn:not(:last-child) {
18976
+ border-inline-end: none;
18977
+ }
18978
+ .v-btn-group .v-btn:not(:first-child) {
18979
+ border-inline-start: none;
18980
+ }
18981
+ .v-btn-group .v-btn:first-child {
18982
+ border-start-start-radius: inherit;
18983
+ border-end-start-radius: inherit;
18984
+ }
18985
+ .v-btn-group .v-btn:last-child {
18986
+ border-start-end-radius: inherit;
18987
+ border-end-end-radius: inherit;
18988
+ }
18989
+ .v-btn-group--divided .v-btn:not(:last-child) {
18990
+ border-inline-end-width: thin;
18991
+ border-inline-end-style: solid;
18992
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
18993
+ }
18994
+ .v-btn-group--tile {
18995
+ border-radius: 0;
18996
+ }.v-btn {
18997
+ align-items: center;
18998
+ border-radius: 4px;
18999
+ display: inline-grid;
19000
+ grid-template-areas: "prepend content append";
19001
+ grid-template-columns: max-content auto max-content;
19002
+ font-weight: 500;
19003
+ justify-content: center;
19004
+ letter-spacing: 0.0892857143em;
19005
+ line-height: normal;
19006
+ max-width: 100%;
19007
+ outline: none;
18950
19008
  position: relative;
18951
19009
  text-decoration: none;
18952
19010
  text-indent: 0.0892857143em;
@@ -19353,76 +19411,61 @@ html.overflow-y-hidden {
19353
19411
  }
19354
19412
  .v-pagination__item--is-active .v-btn__overlay {
19355
19413
  opacity: var(--v-border-opacity);
19356
- }.v-breadcrumbs {
19414
+ }.v-bottom-navigation {
19357
19415
  display: flex;
19358
- align-items: center;
19359
- line-height: 1.6;
19360
- padding: 16px 12px;
19361
- }
19362
- .v-breadcrumbs--rounded {
19363
- border-radius: 4px;
19364
- }
19365
- .v-breadcrumbs--density-default {
19366
- padding-top: 16px;
19367
- padding-bottom: 16px;
19368
- }
19369
-
19370
- .v-breadcrumbs--density-comfortable {
19371
- padding-top: 12px;
19372
- padding-bottom: 12px;
19416
+ max-width: 100%;
19417
+ overflow: hidden;
19418
+ position: absolute;
19419
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
19420
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19421
+ border-style: solid;
19422
+ border-width: 0;
19423
+ border-radius: 0;
19424
+ background: rgb(var(--v-theme-surface));
19425
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19373
19426
  }
19374
-
19375
- .v-breadcrumbs--density-compact {
19376
- padding-top: 8px;
19377
- padding-bottom: 8px;
19427
+ .v-bottom-navigation--border {
19428
+ border-width: thin;
19429
+ box-shadow: none;
19378
19430
  }
19379
-
19380
- .v-breadcrumbs__prepend {
19381
- align-items: center;
19382
- display: inline-flex;
19431
+ .v-bottom-navigation--active {
19432
+ 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));
19383
19433
  }
19384
19434
 
19385
- .v-breadcrumbs-item {
19386
- align-items: center;
19387
- color: inherit;
19388
- display: inline-flex;
19389
- padding: 0 4px;
19390
- text-decoration: none;
19391
- vertical-align: middle;
19392
- }
19393
- .v-breadcrumbs-item--disabled {
19394
- opacity: var(--v-disabled-opacity);
19395
- pointer-events: none;
19396
- }
19397
- .v-breadcrumbs-item--link {
19398
- color: inherit;
19399
- text-decoration: none;
19435
+ .v-bottom-navigation__content {
19436
+ display: flex;
19437
+ flex: none;
19438
+ font-size: 0.75rem;
19439
+ justify-content: center;
19440
+ transition: inherit;
19441
+ width: 100%;
19400
19442
  }
19401
- .v-breadcrumbs-item--link:hover {
19402
- text-decoration: underline;
19443
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
19444
+ font-size: inherit;
19445
+ height: 100%;
19446
+ max-width: 168px;
19447
+ min-width: 80px;
19448
+ text-transform: none;
19449
+ transition: inherit;
19450
+ width: auto;
19451
+ border-radius: 0;
19403
19452
  }
19404
- .v-breadcrumbs-item .v-icon {
19405
- font-size: 1rem;
19406
- margin-inline: -4px 2px;
19453
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
19454
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
19455
+ transition: inherit;
19407
19456
  }
19408
-
19409
- .v-breadcrumbs-divider {
19410
- display: inline-block;
19411
- padding: 0 8px;
19412
- vertical-align: middle;
19413
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19414
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19457
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
19458
+ font-size: 1.5rem;
19415
19459
  }
19416
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19417
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19460
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
19461
+ flex-grow: 1;
19418
19462
  }
19419
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19420
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19463
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
19464
+ transition: inherit;
19465
+ opacity: 0;
19421
19466
  }
19422
- @supports not selector(:focus-visible) {
19423
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19424
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19425
- }
19467
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
19468
+ transform: translateY(0.5rem);
19426
19469
  }.v-card {
19427
19470
  display: block;
19428
19471
  overflow: hidden;
@@ -19785,115 +19828,54 @@ html.overflow-y-hidden {
19785
19828
  flex-direction: column;
19786
19829
  height: 100% !important;
19787
19830
  width: 50px;
19788
- }.v-btn-group {
19831
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19832
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19833
+ }
19834
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19835
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19836
+ }
19837
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19838
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19839
+ }
19840
+ @supports not selector(:focus-visible) {
19841
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19842
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19843
+ }
19844
+ }.v-checkbox.v-input {
19845
+ flex: 0 1 auto;
19846
+ }
19847
+ .v-checkbox .v-selection-control {
19848
+ min-height: var(--v-input-control-height);
19849
+ }.v-chip {
19850
+ align-items: center;
19789
19851
  display: inline-flex;
19790
- flex-wrap: nowrap;
19852
+ font-weight: 400;
19791
19853
  max-width: 100%;
19792
19854
  min-width: 0;
19793
19855
  overflow: hidden;
19856
+ position: relative;
19857
+ text-decoration: none;
19858
+ white-space: nowrap;
19794
19859
  vertical-align: middle;
19795
19860
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19796
19861
  border-style: solid;
19797
19862
  border-width: 0;
19798
- 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));
19799
- border-radius: 4px;
19800
- background: transparent;
19801
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19863
+ border-radius: 9999px;
19802
19864
  }
19803
- .v-btn-group--border {
19804
- border-width: thin;
19805
- box-shadow: none;
19865
+ .v-chip .v-icon {
19866
+ --v-icon-size-multiplier: 0.8571428571;
19806
19867
  }
19807
- .v-btn-group--density-default.v-btn-group {
19808
- height: 48px;
19868
+ .v-chip.v-chip--size-x-small {
19869
+ --v-chip-size: 0.625rem;
19870
+ --v-chip-height: 20px;
19871
+ font-size: 0.625rem;
19872
+ padding: 0 8px;
19809
19873
  }
19810
-
19811
- .v-btn-group--density-comfortable.v-btn-group {
19812
- height: 40px;
19874
+ .v-chip.v-chip--size-x-small .v-avatar {
19875
+ --v-avatar-height: 14px;
19813
19876
  }
19814
-
19815
- .v-btn-group--density-compact.v-btn-group {
19816
- height: 36px;
19817
- }
19818
-
19819
- .v-btn-group .v-btn {
19820
- border-radius: 0;
19821
- border-color: inherit;
19822
- }
19823
- .v-btn-group .v-btn:not(:last-child) {
19824
- border-inline-end: none;
19825
- }
19826
- .v-btn-group .v-btn:not(:first-child) {
19827
- border-inline-start: none;
19828
- }
19829
- .v-btn-group .v-btn:first-child {
19830
- border-start-start-radius: inherit;
19831
- border-end-start-radius: inherit;
19832
- }
19833
- .v-btn-group .v-btn:last-child {
19834
- border-start-end-radius: inherit;
19835
- border-end-end-radius: inherit;
19836
- }
19837
- .v-btn-group--divided .v-btn:not(:last-child) {
19838
- border-inline-end-width: thin;
19839
- border-inline-end-style: solid;
19840
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19841
- }
19842
- .v-btn-group--tile {
19843
- border-radius: 0;
19844
- }.v-chip-group {
19845
- display: flex;
19846
- max-width: 100%;
19847
- min-width: 0;
19848
- overflow-x: auto;
19849
- padding: 4px 0;
19850
- }
19851
- .v-chip-group .v-chip {
19852
- margin: 4px 8px 4px 0;
19853
- }
19854
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19855
- opacity: var(--v-activated-opacity);
19856
- }
19857
-
19858
- .v-chip-group--column .v-slide-group__content {
19859
- white-space: normal;
19860
- flex-wrap: wrap;
19861
- max-width: 100%;
19862
- }.v-checkbox.v-input {
19863
- flex: 0 1 auto;
19864
- }
19865
- .v-checkbox .v-selection-control {
19866
- min-height: var(--v-input-control-height);
19867
- }.v-chip {
19868
- align-items: center;
19869
- display: inline-flex;
19870
- font-weight: 400;
19871
- max-width: 100%;
19872
- min-width: 0;
19873
- overflow: hidden;
19874
- position: relative;
19875
- text-decoration: none;
19876
- white-space: nowrap;
19877
- vertical-align: middle;
19878
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19879
- border-style: solid;
19880
- border-width: 0;
19881
- border-radius: 9999px;
19882
- }
19883
- .v-chip .v-icon {
19884
- --v-icon-size-multiplier: 0.8571428571;
19885
- }
19886
- .v-chip.v-chip--size-x-small {
19887
- --v-chip-size: 0.625rem;
19888
- --v-chip-height: 20px;
19889
- font-size: 0.625rem;
19890
- padding: 0 8px;
19891
- }
19892
- .v-chip.v-chip--size-x-small .v-avatar {
19893
- --v-avatar-height: 14px;
19894
- }
19895
- .v-chip--pill.v-chip.v-chip--size-x-small .v-avatar {
19896
- --v-avatar-height: 20px;
19877
+ .v-chip--pill.v-chip.v-chip--size-x-small .v-avatar {
19878
+ --v-avatar-height: 20px;
19897
19879
  }
19898
19880
 
19899
19881
  .v-chip.v-chip--size-x-small .v-avatar--start {
@@ -20276,6 +20258,105 @@ html.overflow-y-hidden {
20276
20258
 
20277
20259
  .v-chip--label {
20278
20260
  border-radius: 4px;
20261
+ }.v-combobox .v-field .v-text-field__prefix,
20262
+ .v-combobox .v-field .v-text-field__suffix,
20263
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20264
+ cursor: text;
20265
+ }
20266
+ .v-combobox .v-field .v-field__input > input {
20267
+ flex: 1 1;
20268
+ }
20269
+ .v-combobox .v-field input {
20270
+ min-width: 64px;
20271
+ }
20272
+ .v-combobox .v-field:not(.v-field--focused) input {
20273
+ min-width: 0;
20274
+ }
20275
+ .v-combobox .v-field--dirty .v-combobox__selection {
20276
+ margin-inline-end: 2px;
20277
+ }
20278
+ .v-combobox .v-combobox__selection-text {
20279
+ overflow: hidden;
20280
+ text-overflow: ellipsis;
20281
+ white-space: nowrap;
20282
+ }
20283
+
20284
+ .v-combobox__content {
20285
+ overflow: hidden;
20286
+ 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));
20287
+ border-radius: 4px;
20288
+ }
20289
+ .v-combobox__mask {
20290
+ background: rgb(var(--v-theme-surface-light));
20291
+ }
20292
+ .v-combobox__selection {
20293
+ display: inline-flex;
20294
+ align-items: center;
20295
+ height: 1.5rem;
20296
+ letter-spacing: inherit;
20297
+ line-height: inherit;
20298
+ max-width: calc(100% - 2px - 2px);
20299
+ }
20300
+ .v-combobox__selection:first-child {
20301
+ margin-inline-start: 0;
20302
+ }
20303
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20304
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20305
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20306
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20307
+ top: 0px;
20308
+ }
20309
+ .v-combobox--selecting-index .v-combobox__selection {
20310
+ opacity: var(--v-medium-emphasis-opacity);
20311
+ }
20312
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20313
+ opacity: 1;
20314
+ }
20315
+ .v-combobox--selecting-index .v-field__input > input {
20316
+ caret-color: transparent;
20317
+ }
20318
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20319
+ flex: 1 1;
20320
+ position: absolute;
20321
+ left: 0;
20322
+ right: 0;
20323
+ width: 100%;
20324
+ padding-inline: inherit;
20325
+ }
20326
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20327
+ transition: none;
20328
+ }
20329
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20330
+ opacity: 0;
20331
+ }
20332
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20333
+ opacity: 0;
20334
+ }
20335
+ .v-combobox__menu-icon {
20336
+ margin-inline-start: 4px;
20337
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20338
+ }
20339
+ .v-combobox--active-menu .v-combobox__menu-icon {
20340
+ opacity: var(--v-high-emphasis-opacity);
20341
+ transform: rotate(180deg);
20342
+ }.v-chip-group {
20343
+ display: flex;
20344
+ max-width: 100%;
20345
+ min-width: 0;
20346
+ overflow-x: auto;
20347
+ padding: 4px 0;
20348
+ }
20349
+ .v-chip-group .v-chip {
20350
+ margin: 4px 8px 4px 0;
20351
+ }
20352
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20353
+ opacity: var(--v-activated-opacity);
20354
+ }
20355
+
20356
+ .v-chip-group--column .v-slide-group__content {
20357
+ white-space: normal;
20358
+ flex-wrap: wrap;
20359
+ max-width: 100%;
20279
20360
  }.v-container {
20280
20361
  width: 100%;
20281
20362
  padding: 16px;
@@ -20948,112 +21029,242 @@ html.overflow-y-hidden {
20948
21029
  .offset-xxl-11 {
20949
21030
  margin-inline-start: 91.6666666667%;
20950
21031
  }
20951
- }.v-combobox .v-field .v-text-field__prefix,
20952
- .v-combobox .v-field .v-text-field__suffix,
20953
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20954
- cursor: text;
20955
- }
20956
- .v-combobox .v-field .v-field__input > input {
20957
- flex: 1 1;
21032
+ }.v-color-picker {
21033
+ align-self: flex-start;
21034
+ contain: content;
20958
21035
  }
20959
- .v-combobox .v-field input {
20960
- min-width: 64px;
21036
+ .v-color-picker.v-sheet {
21037
+ 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));
21038
+ border-radius: 4px;
20961
21039
  }
20962
- .v-combobox .v-field:not(.v-field--focused) input {
20963
- min-width: 0;
21040
+
21041
+ .v-color-picker__controls {
21042
+ display: flex;
21043
+ flex-direction: column;
21044
+ padding: 16px;
20964
21045
  }
20965
- .v-combobox .v-field--dirty .v-combobox__selection {
20966
- margin-inline-end: 2px;
21046
+
21047
+ .v-color-picker--flat {
21048
+ 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));
20967
21049
  }
20968
- .v-combobox .v-combobox__selection-text {
21050
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
21051
+ 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));
21052
+ }.v-counter {
21053
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21054
+ flex: 0 1 auto;
21055
+ font-size: 12px;
21056
+ transition-duration: 150ms;
21057
+ }.v-date-picker-header {
21058
+ align-items: flex-end;
21059
+ height: 70px;
21060
+ display: grid;
21061
+ grid-template-areas: "prepend content append";
21062
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
20969
21063
  overflow: hidden;
20970
- text-overflow: ellipsis;
20971
- white-space: nowrap;
21064
+ padding-inline: 24px 12px;
21065
+ padding-bottom: 12px;
20972
21066
  }
20973
21067
 
20974
- .v-combobox__content {
20975
- overflow: hidden;
20976
- 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));
20977
- border-radius: 4px;
21068
+ .v-date-picker-header__append {
21069
+ grid-area: append;
20978
21070
  }
20979
- .v-combobox__mask {
20980
- background: rgb(var(--v-theme-surface-light));
21071
+
21072
+ .v-date-picker-header__prepend {
21073
+ grid-area: prepend;
21074
+ padding-inline-start: 8px;
20981
21075
  }
20982
- .v-combobox__selection {
20983
- display: inline-flex;
21076
+
21077
+ .v-date-picker-header__content {
20984
21078
  align-items: center;
20985
- height: 1.5rem;
20986
- letter-spacing: inherit;
20987
- line-height: inherit;
20988
- max-width: calc(100% - 2px - 2px);
21079
+ display: inline-flex;
21080
+ font-size: 32px;
21081
+ line-height: 40px;
21082
+ grid-area: content;
21083
+ justify-content: space-between;
20989
21084
  }
20990
- .v-combobox__selection:first-child {
20991
- margin-inline-start: 0;
21085
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21086
+ cursor: pointer;
20992
21087
  }
20993
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20994
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20995
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20996
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20997
- top: 0px;
21088
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21089
+ opacity: 0.7;
20998
21090
  }
20999
- .v-combobox--selecting-index .v-combobox__selection {
21000
- opacity: var(--v-medium-emphasis-opacity);
21091
+
21092
+ .date-picker-header-transition-enter-active,
21093
+ .date-picker-header-reverse-transition-enter-active {
21094
+ transition-duration: 0.3s;
21095
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21001
21096
  }
21002
- .v-combobox--selecting-index .v-combobox__selection--selected {
21003
- opacity: 1;
21097
+ .date-picker-header-transition-leave-active,
21098
+ .date-picker-header-reverse-transition-leave-active {
21099
+ transition-duration: 0.3s;
21100
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21004
21101
  }
21005
- .v-combobox--selecting-index .v-field__input > input {
21006
- caret-color: transparent;
21102
+
21103
+ .date-picker-header-transition-enter-from {
21104
+ transform: translate(0, 100%);
21007
21105
  }
21008
- .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
21009
- flex: 1 1;
21010
- position: absolute;
21011
- left: 0;
21012
- right: 0;
21013
- width: 100%;
21014
- padding-inline: inherit;
21106
+ .date-picker-header-transition-leave-to {
21107
+ opacity: 0;
21108
+ transform: translate(0, -100%);
21015
21109
  }
21016
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
21017
- transition: none;
21110
+
21111
+ .date-picker-header-reverse-transition-enter-from {
21112
+ transform: translate(0, -100%);
21018
21113
  }
21019
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
21114
+ .date-picker-header-reverse-transition-leave-to {
21020
21115
  opacity: 0;
21116
+ transform: translate(0, 100%);
21117
+ }.v-date-picker-controls {
21118
+ display: flex;
21119
+ align-items: center;
21120
+ justify-content: space-between;
21121
+ font-size: 0.875rem;
21122
+ padding-top: 4px;
21123
+ padding-bottom: 4px;
21124
+ padding-inline-start: 6px;
21125
+ padding-inline-end: 12px;
21021
21126
  }
21022
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
21023
- opacity: 0;
21127
+ .v-date-picker-controls > .v-btn:first-child {
21128
+ text-transform: none;
21129
+ font-weight: 400;
21130
+ line-height: initial;
21131
+ letter-spacing: initial;
21024
21132
  }
21025
- .v-combobox__menu-icon {
21133
+ .v-date-picker-controls--variant-classic {
21134
+ padding-inline-start: 12px;
21135
+ }
21136
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21137
+ opacity: 0.7;
21138
+ }
21139
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21140
+ cursor: pointer;
21141
+ }
21142
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21143
+ opacity: 1;
21144
+ }
21145
+ .v-date-picker-controls .v-btn:last-child {
21026
21146
  margin-inline-start: 4px;
21027
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21028
21147
  }
21029
- .v-combobox--active-menu .v-combobox__menu-icon {
21030
- opacity: var(--v-high-emphasis-opacity);
21148
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21031
21149
  transform: rotate(180deg);
21032
- }.v-counter {
21033
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21034
- flex: 0 1 auto;
21035
- font-size: 12px;
21036
- transition-duration: 150ms;
21037
- }.v-color-picker {
21038
- align-self: flex-start;
21039
- contain: content;
21040
21150
  }
21041
- .v-color-picker.v-sheet {
21042
- box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21043
- border-radius: 4px;
21151
+
21152
+ .v-date-picker-controls__date {
21153
+ margin-inline-end: 4px;
21154
+ }
21155
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21156
+ margin: auto;
21157
+ text-align: center;
21044
21158
  }
21045
21159
 
21046
- .v-color-picker__controls {
21160
+ .v-date-picker-controls__month {
21047
21161
  display: flex;
21048
- flex-direction: column;
21049
- padding: 16px;
21162
+ }
21163
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21164
+ flex-direction: row-reverse;
21050
21165
  }
21051
21166
 
21052
- .v-color-picker--flat {
21053
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21167
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21168
+ flex: 1 0 auto;
21054
21169
  }
21055
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
21056
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21170
+
21171
+ .v-date-picker__title {
21172
+ display: inline-block;
21173
+ }.v-date-picker-month {
21174
+ display: flex;
21175
+ justify-content: center;
21176
+ padding: 0 12px 8px;
21177
+ --v-date-picker-month-day-diff: 4px;
21178
+ }
21179
+
21180
+ .v-date-picker-month__weeks {
21181
+ display: grid;
21182
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21183
+ column-gap: 4px;
21184
+ font-size: 0.85rem;
21185
+ }
21186
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
21187
+ grid-row-gap: 0;
21188
+ }
21189
+
21190
+ .v-date-picker-month__weekday {
21191
+ font-size: 0.85rem;
21192
+ }
21193
+
21194
+ .v-date-picker-month__days {
21195
+ display: grid;
21196
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21197
+ column-gap: 4px;
21198
+ flex: 1 1;
21199
+ justify-content: space-around;
21200
+ }
21201
+
21202
+ .v-date-picker-month__day {
21203
+ align-items: center;
21204
+ display: flex;
21205
+ justify-content: center;
21206
+ position: relative;
21207
+ height: 40px;
21208
+ width: 40px;
21209
+ }
21210
+ .v-date-picker-month__day--selected .v-btn {
21211
+ background-color: rgb(var(--v-theme-surface-variant));
21212
+ color: rgb(var(--v-theme-on-surface-variant));
21213
+ }
21214
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21215
+ --v-btn-height: 24px;
21216
+ --v-btn-size: 0.85rem;
21217
+ }
21218
+ .v-date-picker-month__day--week {
21219
+ font-size: var(--v-btn-size);
21220
+ }
21221
+
21222
+ .v-date-picker-month__day--adjacent {
21223
+ opacity: 0.5;
21224
+ }
21225
+
21226
+ .v-date-picker-month__day--hide-adjacent {
21227
+ opacity: 0;
21228
+ }.v-date-picker {
21229
+ overflow: hidden;
21230
+ width: 328px;
21231
+ }
21232
+ .v-date-picker--show-week {
21233
+ width: 368px;
21234
+ }.v-date-picker-months {
21235
+ height: 288px;
21236
+ }
21237
+
21238
+ .v-date-picker-months__content {
21239
+ align-items: center;
21240
+ display: grid;
21241
+ flex: 1 1;
21242
+ height: inherit;
21243
+ justify-content: space-around;
21244
+ grid-template-columns: repeat(2, 1fr);
21245
+ grid-gap: 0px 24px;
21246
+ padding-inline-start: 36px;
21247
+ padding-inline-end: 36px;
21248
+ }
21249
+ .v-date-picker-months__content .v-btn {
21250
+ text-transform: none;
21251
+ padding-inline-start: 8px;
21252
+ padding-inline-end: 8px;
21253
+ }.v-date-picker-years {
21254
+ height: 288px;
21255
+ overflow-y: scroll;
21256
+ }
21257
+
21258
+ .v-date-picker-years__content {
21259
+ display: grid;
21260
+ flex: 1 1;
21261
+ justify-content: space-around;
21262
+ grid-template-columns: repeat(3, 1fr);
21263
+ gap: 8px 24px;
21264
+ padding-inline: 32px;
21265
+ }
21266
+ .v-date-picker-years__content .v-btn {
21267
+ padding-inline: 8px;
21057
21268
  }.v-data-table {
21058
21269
  width: 100%;
21059
21270
  }
@@ -21272,36 +21483,222 @@ html.overflow-y-hidden {
21272
21483
  }
21273
21484
  .v-data-table-footer__page {
21274
21485
  padding: 0 8px;
21275
- }.v-dialog {
21276
- align-items: center;
21277
- justify-content: center;
21278
- margin: auto;
21279
- }
21280
- .v-dialog > .v-overlay__content {
21281
- max-height: calc(100% - 48px);
21282
- width: calc(100% - 48px);
21283
- max-width: calc(100% - 48px);
21284
- margin: 24px;
21486
+ }.v-divider {
21487
+ display: block;
21488
+ flex: 1 1 100%;
21489
+ height: 0px;
21490
+ max-height: 0px;
21491
+ opacity: var(--v-border-opacity);
21492
+ transition: inherit;
21493
+ border-style: solid;
21494
+ border-width: thin 0 0 0;
21285
21495
  }
21286
- .v-dialog > .v-overlay__content,
21287
- .v-dialog > .v-overlay__content > form {
21288
- display: flex;
21289
- flex-direction: column;
21290
- min-height: 0;
21496
+ .v-divider--vertical {
21497
+ align-self: stretch;
21498
+ border-width: 0 thin 0 0;
21499
+ display: inline-flex;
21500
+ height: auto;
21501
+ margin-left: -1px;
21502
+ max-height: 100%;
21503
+ max-width: 0px;
21504
+ vertical-align: text-bottom;
21505
+ width: 0px;
21291
21506
  }
21292
- .v-dialog > .v-overlay__content > .v-card,
21293
- .v-dialog > .v-overlay__content > .v-sheet,
21294
- .v-dialog > .v-overlay__content > form > .v-card,
21295
- .v-dialog > .v-overlay__content > form > .v-sheet {
21296
- --v-scrollbar-offset: 0px;
21297
- border-radius: 4px;
21298
- overflow-y: auto;
21299
- box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21507
+ .v-divider--inset:not(.v-divider--vertical) {
21508
+ max-width: calc(100% - 72px);
21509
+ margin-inline-start: 72px;
21300
21510
  }
21301
- .v-dialog > .v-overlay__content > .v-card,
21302
- .v-dialog > .v-overlay__content > form > .v-card {
21303
- display: flex;
21304
- flex-direction: column;
21511
+ .v-divider--inset.v-divider--vertical {
21512
+ margin-bottom: 8px;
21513
+ margin-top: 8px;
21514
+ max-height: calc(100% - 16px);
21515
+ }
21516
+
21517
+ .v-divider__content {
21518
+ padding: 0 16px;
21519
+ text-wrap: nowrap;
21520
+ }
21521
+ .v-divider__wrapper--vertical .v-divider__content {
21522
+ padding: 4px 0;
21523
+ }
21524
+
21525
+ .v-divider__wrapper {
21526
+ display: flex;
21527
+ align-items: center;
21528
+ justify-content: center;
21529
+ }
21530
+ .v-divider__wrapper--vertical {
21531
+ flex-direction: column;
21532
+ height: 100%;
21533
+ }
21534
+ .v-divider__wrapper--vertical .v-divider {
21535
+ margin: 0 auto;
21536
+ }.v-fab {
21537
+ align-items: center;
21538
+ display: inline-flex;
21539
+ flex: 1 1 auto;
21540
+ pointer-events: none;
21541
+ position: relative;
21542
+ transition-duration: 0.2s;
21543
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21544
+ vertical-align: middle;
21545
+ }
21546
+ .v-fab .v-btn {
21547
+ pointer-events: auto;
21548
+ }
21549
+ .v-fab .v-btn--variant-elevated {
21550
+ box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21551
+ }
21552
+ .v-fab--app, .v-fab--absolute {
21553
+ display: flex;
21554
+ }
21555
+ .v-fab--start, .v-fab--left {
21556
+ justify-content: flex-start;
21557
+ }
21558
+ .v-fab--center {
21559
+ align-items: center;
21560
+ justify-content: center;
21561
+ }
21562
+ .v-fab--end, .v-fab--right {
21563
+ justify-content: flex-end;
21564
+ }
21565
+ .v-fab--bottom {
21566
+ align-items: flex-end;
21567
+ }
21568
+ .v-fab--top {
21569
+ align-items: flex-start;
21570
+ }
21571
+ .v-fab--extended .v-btn {
21572
+ border-radius: 9999px !important;
21573
+ }
21574
+
21575
+ .v-fab__container {
21576
+ align-self: center;
21577
+ display: inline-flex;
21578
+ position: absolute;
21579
+ vertical-align: middle;
21580
+ }
21581
+ .v-fab--app .v-fab__container {
21582
+ margin: 12px;
21583
+ }
21584
+ .v-fab--absolute .v-fab__container {
21585
+ position: absolute;
21586
+ z-index: 4;
21587
+ }
21588
+ .v-fab--offset.v-fab--top .v-fab__container {
21589
+ transform: translateY(-50%);
21590
+ }
21591
+ .v-fab--offset.v-fab--bottom .v-fab__container {
21592
+ transform: translateY(50%);
21593
+ }
21594
+ .v-fab--top .v-fab__container {
21595
+ top: 0;
21596
+ }
21597
+ .v-fab--bottom .v-fab__container {
21598
+ bottom: 0;
21599
+ }
21600
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21601
+ left: 0;
21602
+ }
21603
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21604
+ right: 0;
21605
+ }.v-empty-state {
21606
+ align-items: center;
21607
+ display: flex;
21608
+ flex-direction: column;
21609
+ justify-content: center;
21610
+ min-height: 100%;
21611
+ padding: 16px;
21612
+ }
21613
+ .v-empty-state--start {
21614
+ align-items: flex-start;
21615
+ }
21616
+ .v-empty-state--center {
21617
+ align-items: center;
21618
+ }
21619
+ .v-empty-state--end {
21620
+ align-items: flex-end;
21621
+ }
21622
+
21623
+ .v-empty-state__media {
21624
+ text-align: center;
21625
+ width: 100%;
21626
+ }
21627
+ .v-empty-state__media .v-icon {
21628
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21629
+ }
21630
+
21631
+ .v-empty-state__headline {
21632
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21633
+ font-size: 3.75rem;
21634
+ font-weight: 300;
21635
+ line-height: 1;
21636
+ text-align: center;
21637
+ margin-bottom: 8px;
21638
+ }
21639
+ .v-empty-state--mobile .v-empty-state__headline {
21640
+ font-size: 2.125rem;
21641
+ }
21642
+
21643
+ .v-empty-state__title {
21644
+ font-size: 1.25rem;
21645
+ font-weight: 500;
21646
+ line-height: 1.6;
21647
+ margin-bottom: 4px;
21648
+ text-align: center;
21649
+ }
21650
+
21651
+ .v-empty-state__text {
21652
+ font-size: 0.875rem;
21653
+ font-weight: 400;
21654
+ line-height: 1.425;
21655
+ padding: 0 16px;
21656
+ text-align: center;
21657
+ }
21658
+
21659
+ .v-empty-state__content {
21660
+ padding: 24px 0;
21661
+ }
21662
+
21663
+ .v-empty-state__actions {
21664
+ display: flex;
21665
+ gap: 8px;
21666
+ padding: 16px;
21667
+ }
21668
+
21669
+ .v-empty-state__action-btn.v-btn {
21670
+ background-color: rgb(var(--v-theme-surface-variant));
21671
+ color: rgb(var(--v-theme-on-surface-variant));
21672
+ }.v-dialog {
21673
+ align-items: center;
21674
+ justify-content: center;
21675
+ margin: auto;
21676
+ }
21677
+ .v-dialog > .v-overlay__content {
21678
+ max-height: calc(100% - 48px);
21679
+ width: calc(100% - 48px);
21680
+ max-width: calc(100% - 48px);
21681
+ margin: 24px;
21682
+ }
21683
+ .v-dialog > .v-overlay__content,
21684
+ .v-dialog > .v-overlay__content > form {
21685
+ display: flex;
21686
+ flex-direction: column;
21687
+ min-height: 0;
21688
+ }
21689
+ .v-dialog > .v-overlay__content > .v-card,
21690
+ .v-dialog > .v-overlay__content > .v-sheet,
21691
+ .v-dialog > .v-overlay__content > form > .v-card,
21692
+ .v-dialog > .v-overlay__content > form > .v-sheet {
21693
+ --v-scrollbar-offset: 0px;
21694
+ border-radius: 4px;
21695
+ overflow-y: auto;
21696
+ box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21697
+ }
21698
+ .v-dialog > .v-overlay__content > .v-card,
21699
+ .v-dialog > .v-overlay__content > form > .v-card {
21700
+ display: flex;
21701
+ flex-direction: column;
21305
21702
  }
21306
21703
  .v-dialog > .v-overlay__content > .v-card > .v-card-item,
21307
21704
  .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
@@ -21364,580 +21761,42 @@ html.overflow-y-hidden {
21364
21761
  -webkit-backface-visibility: hidden;
21365
21762
  backface-visibility: hidden;
21366
21763
  overflow-y: auto;
21367
- }.v-divider {
21368
- display: block;
21369
- flex: 1 1 100%;
21370
- height: 0px;
21371
- max-height: 0px;
21372
- opacity: var(--v-border-opacity);
21373
- transition: inherit;
21374
- border-style: solid;
21375
- border-width: thin 0 0 0;
21376
- }
21377
- .v-divider--vertical {
21378
- align-self: stretch;
21379
- border-width: 0 thin 0 0;
21380
- display: inline-flex;
21381
- height: auto;
21382
- margin-left: -1px;
21383
- max-height: 100%;
21384
- max-width: 0px;
21385
- vertical-align: text-bottom;
21386
- width: 0px;
21764
+ }/* region INPUT */
21765
+ .v-field {
21766
+ --v-theme-overlay-multiplier: 1;
21767
+ display: grid;
21768
+ grid-template-areas: "prepend-inner field clear append-inner";
21769
+ grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
21770
+ font-size: 16px;
21771
+ letter-spacing: 0.009375em;
21772
+ max-width: 100%;
21773
+ border-radius: 4px;
21774
+ contain: layout;
21775
+ flex: 1 0;
21776
+ grid-area: control;
21777
+ position: relative;
21778
+ --v-field-padding-start: 16px;
21779
+ --v-field-padding-end: 16px;
21780
+ --v-field-padding-top: 8px;
21781
+ --v-field-padding-bottom: 4px;
21782
+ --v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
21783
+ --v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
21387
21784
  }
21388
- .v-divider--inset:not(.v-divider--vertical) {
21389
- max-width: calc(100% - 72px);
21390
- margin-inline-start: 72px;
21785
+ .v-field--disabled {
21786
+ opacity: var(--v-disabled-opacity);
21787
+ pointer-events: none;
21391
21788
  }
21392
- .v-divider--inset.v-divider--vertical {
21393
- margin-bottom: 8px;
21394
- margin-top: 8px;
21395
- max-height: calc(100% - 16px);
21789
+ .v-field .v-chip {
21790
+ --v-chip-height: 24px;
21396
21791
  }
21397
21792
 
21398
- .v-divider__content {
21399
- padding: 0 16px;
21400
- text-wrap: nowrap;
21401
- }
21402
- .v-divider__wrapper--vertical .v-divider__content {
21403
- padding: 4px 0;
21793
+ /* endregion */
21794
+ /* region MODIFIERS */
21795
+ .v-field--prepended {
21796
+ padding-inline-start: 12px;
21404
21797
  }
21405
-
21406
- .v-divider__wrapper {
21407
- display: flex;
21408
- align-items: center;
21409
- justify-content: center;
21410
- }
21411
- .v-divider__wrapper--vertical {
21412
- flex-direction: column;
21413
- height: 100%;
21414
- }
21415
- .v-divider__wrapper--vertical .v-divider {
21416
- margin: 0 auto;
21417
- }.v-date-picker-controls {
21418
- display: flex;
21419
- align-items: center;
21420
- justify-content: space-between;
21421
- font-size: 0.875rem;
21422
- padding-top: 4px;
21423
- padding-bottom: 4px;
21424
- padding-inline-start: 6px;
21425
- padding-inline-end: 12px;
21426
- }
21427
- .v-date-picker-controls > .v-btn:first-child {
21428
- text-transform: none;
21429
- font-weight: 400;
21430
- line-height: initial;
21431
- letter-spacing: initial;
21432
- }
21433
- .v-date-picker-controls--variant-classic {
21434
- padding-inline-start: 12px;
21435
- }
21436
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21437
- opacity: 0.7;
21438
- }
21439
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21440
- cursor: pointer;
21441
- }
21442
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21443
- opacity: 1;
21444
- }
21445
- .v-date-picker-controls .v-btn:last-child {
21446
- margin-inline-start: 4px;
21447
- }
21448
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21449
- transform: rotate(180deg);
21450
- }
21451
-
21452
- .v-date-picker-controls__date {
21453
- margin-inline-end: 4px;
21454
- }
21455
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21456
- margin: auto;
21457
- text-align: center;
21458
- }
21459
-
21460
- .v-date-picker-controls__month {
21461
- display: flex;
21462
- }
21463
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21464
- flex-direction: row-reverse;
21465
- }
21466
-
21467
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21468
- flex: 1 0 auto;
21469
- }
21470
-
21471
- .v-date-picker__title {
21472
- display: inline-block;
21473
- }.v-date-picker {
21474
- overflow: hidden;
21475
- width: 328px;
21476
- }
21477
- .v-date-picker--show-week {
21478
- width: 368px;
21479
- }.v-date-picker-header {
21480
- align-items: flex-end;
21481
- height: 70px;
21482
- display: grid;
21483
- grid-template-areas: "prepend content append";
21484
- grid-template-columns: min-content minmax(0, 1fr) min-content;
21485
- overflow: hidden;
21486
- padding-inline: 24px 12px;
21487
- padding-bottom: 12px;
21488
- }
21489
-
21490
- .v-date-picker-header__append {
21491
- grid-area: append;
21492
- }
21493
-
21494
- .v-date-picker-header__prepend {
21495
- grid-area: prepend;
21496
- padding-inline-start: 8px;
21497
- }
21498
-
21499
- .v-date-picker-header__content {
21500
- align-items: center;
21501
- display: inline-flex;
21502
- font-size: 32px;
21503
- line-height: 40px;
21504
- grid-area: content;
21505
- justify-content: space-between;
21506
- }
21507
- .v-date-picker-header--clickable .v-date-picker-header__content {
21508
- cursor: pointer;
21509
- }
21510
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21511
- opacity: 0.7;
21512
- }
21513
-
21514
- .date-picker-header-transition-enter-active,
21515
- .date-picker-header-reverse-transition-enter-active {
21516
- transition-duration: 0.3s;
21517
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21518
- }
21519
- .date-picker-header-transition-leave-active,
21520
- .date-picker-header-reverse-transition-leave-active {
21521
- transition-duration: 0.3s;
21522
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21523
- }
21524
-
21525
- .date-picker-header-transition-enter-from {
21526
- transform: translate(0, 100%);
21527
- }
21528
- .date-picker-header-transition-leave-to {
21529
- opacity: 0;
21530
- transform: translate(0, -100%);
21531
- }
21532
-
21533
- .date-picker-header-reverse-transition-enter-from {
21534
- transform: translate(0, -100%);
21535
- }
21536
- .date-picker-header-reverse-transition-leave-to {
21537
- opacity: 0;
21538
- transform: translate(0, 100%);
21539
- }.v-date-picker-month {
21540
- display: flex;
21541
- justify-content: center;
21542
- padding: 0 12px 8px;
21543
- --v-date-picker-month-day-diff: 4px;
21544
- }
21545
-
21546
- .v-date-picker-month__weeks {
21547
- display: grid;
21548
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21549
- column-gap: 4px;
21550
- font-size: 0.85rem;
21551
- }
21552
- .v-date-picker-month__weeks + .v-date-picker-month__days {
21553
- grid-row-gap: 0;
21554
- }
21555
-
21556
- .v-date-picker-month__weekday {
21557
- font-size: 0.85rem;
21558
- }
21559
-
21560
- .v-date-picker-month__days {
21561
- display: grid;
21562
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21563
- column-gap: 4px;
21564
- flex: 1 1;
21565
- justify-content: space-around;
21566
- }
21567
-
21568
- .v-date-picker-month__day {
21569
- align-items: center;
21570
- display: flex;
21571
- justify-content: center;
21572
- position: relative;
21573
- height: 40px;
21574
- width: 40px;
21575
- }
21576
- .v-date-picker-month__day--selected .v-btn {
21577
- background-color: rgb(var(--v-theme-surface-variant));
21578
- color: rgb(var(--v-theme-on-surface-variant));
21579
- }
21580
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21581
- --v-btn-height: 24px;
21582
- --v-btn-size: 0.85rem;
21583
- }
21584
- .v-date-picker-month__day--week {
21585
- font-size: var(--v-btn-size);
21586
- }
21587
-
21588
- .v-date-picker-month__day--adjacent {
21589
- opacity: 0.5;
21590
- }
21591
-
21592
- .v-date-picker-month__day--hide-adjacent {
21593
- opacity: 0;
21594
- }.v-date-picker-years {
21595
- height: 288px;
21596
- overflow-y: scroll;
21597
- }
21598
-
21599
- .v-date-picker-years__content {
21600
- display: grid;
21601
- flex: 1 1;
21602
- justify-content: space-around;
21603
- grid-template-columns: repeat(3, 1fr);
21604
- gap: 8px 24px;
21605
- padding-inline: 32px;
21606
- }
21607
- .v-date-picker-years__content .v-btn {
21608
- padding-inline: 8px;
21609
- }.v-date-picker-months {
21610
- height: 288px;
21611
- }
21612
-
21613
- .v-date-picker-months__content {
21614
- align-items: center;
21615
- display: grid;
21616
- flex: 1 1;
21617
- height: inherit;
21618
- justify-content: space-around;
21619
- grid-template-columns: repeat(2, 1fr);
21620
- grid-gap: 0px 24px;
21621
- padding-inline-start: 36px;
21622
- padding-inline-end: 36px;
21623
- }
21624
- .v-date-picker-months__content .v-btn {
21625
- text-transform: none;
21626
- padding-inline-start: 8px;
21627
- padding-inline-end: 8px;
21628
- }.v-expansion-panel {
21629
- background-color: rgb(var(--v-theme-surface));
21630
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21631
- }
21632
- .v-expansion-panel:not(:first-child)::after {
21633
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21634
- }
21635
- .v-expansion-panel--disabled .v-expansion-panel-title {
21636
- color: rgba(var(--v-theme-on-surface), 0.26);
21637
- }
21638
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
21639
- opacity: 0.4615384615;
21640
- }
21641
-
21642
- .v-expansion-panels {
21643
- display: flex;
21644
- flex-wrap: wrap;
21645
- justify-content: center;
21646
- list-style-type: none;
21647
- padding: 0;
21648
- width: 100%;
21649
- position: relative;
21650
- z-index: 1;
21651
- }
21652
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21653
- border-bottom-left-radius: 0 !important;
21654
- border-bottom-right-radius: 0 !important;
21655
- }
21656
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21657
- border-top-left-radius: 0 !important;
21658
- border-top-right-radius: 0 !important;
21659
- }
21660
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21661
- border-bottom-left-radius: 0 !important;
21662
- border-bottom-right-radius: 0 !important;
21663
- }
21664
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21665
- border-top-left-radius: 0 !important;
21666
- border-top-right-radius: 0 !important;
21667
- }
21668
- .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
21669
- border-bottom-left-radius: 0 !important;
21670
- border-bottom-right-radius: 0 !important;
21671
- }
21672
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
21673
- border-top-left-radius: 0 !important;
21674
- border-top-right-radius: 0 !important;
21675
- }
21676
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
21677
- border-bottom-left-radius: initial;
21678
- border-bottom-right-radius: initial;
21679
- }
21680
- .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
21681
- border-radius: 0 !important;
21682
- }
21683
- .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
21684
- transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
21685
- }
21686
-
21687
- .v-expansion-panel {
21688
- flex: 1 0 100%;
21689
- max-width: 100%;
21690
- position: relative;
21691
- transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
21692
- transition-property: margin-top, border-radius, border, max-width;
21693
- border-radius: 4px;
21694
- }
21695
- .v-expansion-panel:not(:first-child)::after {
21696
- border-top-style: solid;
21697
- border-top-width: thin;
21698
- content: "";
21699
- left: 0;
21700
- position: absolute;
21701
- right: 0;
21702
- top: 0;
21703
- transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
21704
- }
21705
- .v-expansion-panel--disabled .v-expansion-panel-title {
21706
- pointer-events: none;
21707
- }
21708
- .v-expansion-panel--active:not(:first-child),
21709
- .v-expansion-panel--active + .v-expansion-panel {
21710
- margin-top: 16px;
21711
- }
21712
- .v-expansion-panel--active:not(:first-child)::after,
21713
- .v-expansion-panel--active + .v-expansion-panel::after {
21714
- opacity: 0;
21715
- }
21716
- .v-expansion-panel--active > .v-expansion-panel-title {
21717
- border-bottom-left-radius: 0;
21718
- border-bottom-right-radius: 0;
21719
- }
21720
- .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
21721
- min-height: 64px;
21722
- }
21723
-
21724
- .v-expansion-panel__shadow {
21725
- position: absolute;
21726
- top: 0;
21727
- left: 0;
21728
- width: 100%;
21729
- height: 100%;
21730
- 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));
21731
- border-radius: inherit;
21732
- z-index: -1;
21733
- }
21734
-
21735
- .v-expansion-panel-title {
21736
- align-items: center;
21737
- text-align: start;
21738
- border-radius: inherit;
21739
- display: flex;
21740
- font-size: 0.9375rem;
21741
- line-height: 1;
21742
- min-height: 48px;
21743
- outline: none;
21744
- padding: 16px 24px;
21745
- position: relative;
21746
- transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
21747
- width: 100%;
21748
- justify-content: space-between;
21749
- }
21750
- .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
21751
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21752
- }
21753
- .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
21754
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21755
- }
21756
- @supports not selector(:focus-visible) {
21757
- .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
21758
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21759
- }
21760
- }
21761
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
21762
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
21763
- }
21764
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
21765
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
21766
- }
21767
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
21768
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21769
- }
21770
- @supports not selector(:focus-visible) {
21771
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
21772
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21773
- }
21774
- }
21775
-
21776
- .v-expansion-panel-title__overlay {
21777
- position: absolute;
21778
- top: 0;
21779
- left: 0;
21780
- width: 100%;
21781
- height: 100%;
21782
- background-color: currentColor;
21783
- border-radius: inherit;
21784
- opacity: 0;
21785
- }
21786
-
21787
- .v-expansion-panel-title__icon {
21788
- display: inline-flex;
21789
- margin-bottom: -4px;
21790
- margin-top: -4px;
21791
- -webkit-user-select: none;
21792
- user-select: none;
21793
- margin-inline-start: auto;
21794
- }
21795
-
21796
- .v-expansion-panel-text {
21797
- display: flex;
21798
- }
21799
- .v-expansion-panel-text__wrapper {
21800
- padding: 8px 24px 16px;
21801
- flex: 1 1 auto;
21802
- max-width: 100%;
21803
- }
21804
-
21805
- .v-expansion-panels--variant-accordion > .v-expansion-panel {
21806
- margin-top: 0;
21807
- }
21808
- .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
21809
- opacity: 1;
21810
- }
21811
-
21812
- .v-expansion-panels--variant-popout > .v-expansion-panel {
21813
- max-width: calc(100% - 32px);
21814
- }
21815
- .v-expansion-panels--variant-popout > .v-expansion-panel--active {
21816
- max-width: calc(100% + 16px);
21817
- }
21818
-
21819
- .v-expansion-panels--variant-inset > .v-expansion-panel {
21820
- max-width: 100%;
21821
- }
21822
- .v-expansion-panels--variant-inset > .v-expansion-panel--active {
21823
- max-width: calc(100% - 32px);
21824
- }
21825
-
21826
- .v-expansion-panels--flat > .v-expansion-panel::after {
21827
- border-top: none;
21828
- }
21829
- .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
21830
- display: none;
21831
- }
21832
-
21833
- .v-expansion-panels--tile {
21834
- border-radius: 0;
21835
- }
21836
- .v-expansion-panels--tile > .v-expansion-panel {
21837
- border-radius: 0;
21838
- }.v-empty-state {
21839
- align-items: center;
21840
- display: flex;
21841
- flex-direction: column;
21842
- justify-content: center;
21843
- min-height: 100%;
21844
- padding: 16px;
21845
- }
21846
- .v-empty-state--start {
21847
- align-items: flex-start;
21848
- }
21849
- .v-empty-state--center {
21850
- align-items: center;
21851
- }
21852
- .v-empty-state--end {
21853
- align-items: flex-end;
21854
- }
21855
-
21856
- .v-empty-state__media {
21857
- text-align: center;
21858
- width: 100%;
21859
- }
21860
- .v-empty-state__media .v-icon {
21861
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21862
- }
21863
-
21864
- .v-empty-state__headline {
21865
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21866
- font-size: 3.75rem;
21867
- font-weight: 300;
21868
- line-height: 1;
21869
- text-align: center;
21870
- margin-bottom: 8px;
21871
- }
21872
- .v-empty-state--mobile .v-empty-state__headline {
21873
- font-size: 2.125rem;
21874
- }
21875
-
21876
- .v-empty-state__title {
21877
- font-size: 1.25rem;
21878
- font-weight: 500;
21879
- line-height: 1.6;
21880
- margin-bottom: 4px;
21881
- text-align: center;
21882
- }
21883
-
21884
- .v-empty-state__text {
21885
- font-size: 0.875rem;
21886
- font-weight: 400;
21887
- line-height: 1.425;
21888
- padding: 0 16px;
21889
- text-align: center;
21890
- }
21891
-
21892
- .v-empty-state__content {
21893
- padding: 24px 0;
21894
- }
21895
-
21896
- .v-empty-state__actions {
21897
- display: flex;
21898
- gap: 8px;
21899
- padding: 16px;
21900
- }
21901
-
21902
- .v-empty-state__action-btn.v-btn {
21903
- background-color: rgb(var(--v-theme-surface-variant));
21904
- color: rgb(var(--v-theme-on-surface-variant));
21905
- }/* region INPUT */
21906
- .v-field {
21907
- --v-theme-overlay-multiplier: 1;
21908
- display: grid;
21909
- grid-template-areas: "prepend-inner field clear append-inner";
21910
- grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
21911
- font-size: 16px;
21912
- letter-spacing: 0.009375em;
21913
- max-width: 100%;
21914
- border-radius: 4px;
21915
- contain: layout;
21916
- flex: 1 0;
21917
- grid-area: control;
21918
- position: relative;
21919
- --v-field-padding-start: 16px;
21920
- --v-field-padding-end: 16px;
21921
- --v-field-padding-top: 8px;
21922
- --v-field-padding-bottom: 4px;
21923
- --v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
21924
- --v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
21925
- }
21926
- .v-field--disabled {
21927
- opacity: var(--v-disabled-opacity);
21928
- pointer-events: none;
21929
- }
21930
- .v-field .v-chip {
21931
- --v-chip-height: 24px;
21932
- }
21933
-
21934
- /* endregion */
21935
- /* region MODIFIERS */
21936
- .v-field--prepended {
21937
- padding-inline-start: 12px;
21938
- }
21939
- .v-field--appended {
21940
- padding-inline-end: 12px;
21798
+ .v-field--appended {
21799
+ padding-inline-end: 12px;
21941
21800
  }
21942
21801
  .v-field--variant-solo, .v-field--variant-solo-filled {
21943
21802
  background: rgb(var(--v-theme-surface));
@@ -22339,141 +22198,380 @@ textarea.v-field__input::placeholder {
22339
22198
  content: "";
22340
22199
  position: absolute;
22341
22200
  top: 0;
22342
- left: 0;
22343
- width: 100%;
22344
- height: 100%;
22201
+ left: 0;
22202
+ width: 100%;
22203
+ height: 100%;
22204
+ }
22205
+ .v-field--variant-outlined .v-field__outline__notch::before {
22206
+ border-width: var(--v-field-border-width) 0 0;
22207
+ }
22208
+ .v-field--variant-outlined .v-field__outline__notch::after {
22209
+ bottom: 0;
22210
+ border-width: 0 0 var(--v-field-border-width);
22211
+ }
22212
+ .v-field--active.v-field--variant-outlined .v-field__outline__notch::before {
22213
+ opacity: 0;
22214
+ }
22215
+
22216
+ .v-field--variant-outlined .v-field__outline__end {
22217
+ flex: 1;
22218
+ border-top-width: var(--v-field-border-width);
22219
+ border-bottom-width: var(--v-field-border-width);
22220
+ border-inline-end-width: var(--v-field-border-width);
22221
+ border-start-start-radius: 0;
22222
+ border-start-end-radius: inherit;
22223
+ border-end-end-radius: inherit;
22224
+ border-end-start-radius: 0;
22225
+ }
22226
+ .v-field--reverse.v-field--variant-outlined .v-field__outline__end {
22227
+ border-start-start-radius: inherit;
22228
+ border-start-end-radius: 0;
22229
+ border-end-end-radius: 0;
22230
+ border-end-start-radius: inherit;
22231
+ border-inline-end-width: 0;
22232
+ border-inline-start-width: var(--v-field-border-width);
22233
+ }
22234
+
22235
+ /* endregion */
22236
+ /* region LOADER */
22237
+ .v-field__loader {
22238
+ top: calc(100% - 2px);
22239
+ left: 0;
22240
+ position: absolute;
22241
+ right: 0;
22242
+ width: 100%;
22243
+ border-top-left-radius: 0;
22244
+ border-top-right-radius: 0;
22245
+ border-bottom-left-radius: inherit;
22246
+ border-bottom-right-radius: inherit;
22247
+ overflow: hidden;
22248
+ }
22249
+ .v-field--variant-outlined .v-field__loader {
22250
+ top: calc(100% - 3px);
22251
+ width: calc(100% - 1px * 2);
22252
+ left: 1px;
22253
+ }
22254
+
22255
+ /* endregion */
22256
+ /* region OVERLAY */
22257
+ .v-field__overlay {
22258
+ border-radius: inherit;
22259
+ pointer-events: none;
22260
+ position: absolute;
22261
+ top: 0;
22262
+ left: 0;
22263
+ width: 100%;
22264
+ height: 100%;
22265
+ }
22266
+
22267
+ .v-field--variant-filled .v-field__overlay {
22268
+ background-color: currentColor;
22269
+ opacity: 0.04;
22270
+ transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22271
+ }
22272
+ .v-field--variant-filled.v-field--has-background .v-field__overlay {
22273
+ opacity: 0;
22274
+ }
22275
+ @media (hover: hover) {
22276
+ .v-field--variant-filled:hover .v-field__overlay {
22277
+ opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22278
+ }
22279
+ }
22280
+ .v-field--variant-filled.v-field--focused .v-field__overlay {
22281
+ opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22282
+ }
22283
+
22284
+ .v-field--variant-solo-filled .v-field__overlay {
22285
+ background-color: currentColor;
22286
+ opacity: 0.04;
22287
+ transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22288
+ }
22289
+ @media (hover: hover) {
22290
+ .v-field--variant-solo-filled:hover .v-field__overlay {
22291
+ opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22292
+ }
22293
+ }
22294
+ .v-field--variant-solo-filled.v-field--focused .v-field__overlay {
22295
+ opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22296
+ }
22297
+
22298
+ .v-field--variant-solo-inverted .v-field__overlay {
22299
+ transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22300
+ }
22301
+ .v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
22302
+ opacity: 0;
22303
+ }
22304
+ @media (hover: hover) {
22305
+ .v-field--variant-solo-inverted:hover .v-field__overlay {
22306
+ opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22307
+ }
22308
+ }
22309
+ .v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
22310
+ background-color: rgb(var(--v-theme-surface-variant));
22311
+ opacity: 1;
22312
+ }
22313
+
22314
+ /* endregion */
22315
+ /* region MODIFIERS */
22316
+ .v-field--reverse .v-field__field,
22317
+ .v-field--reverse .v-field__input,
22318
+ .v-field--reverse .v-field__outline {
22319
+ flex-direction: row-reverse;
22320
+ }
22321
+ .v-field--reverse .v-field__input, .v-field--reverse input {
22322
+ text-align: end;
22323
+ }
22324
+
22325
+ .v-input--disabled .v-field--variant-filled .v-field__outline::before,
22326
+ .v-input--disabled .v-field--variant-underlined .v-field__outline::before {
22327
+ border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
22328
+ }
22329
+
22330
+ .v-field--loading .v-field__outline::after,
22331
+ .v-field--loading .v-field__outline::before {
22332
+ opacity: 0;
22333
+ }
22334
+
22335
+ /* endregion */.v-file-input--hide.v-input .v-field,
22336
+ .v-file-input--hide.v-input .v-input__control,
22337
+ .v-file-input--hide.v-input .v-input__details {
22338
+ display: none;
22339
+ }
22340
+ .v-file-input--hide.v-input .v-input__prepend {
22341
+ grid-area: control;
22342
+ margin: 0 auto;
22343
+ }
22344
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22345
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22346
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22347
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22348
+ top: 0px;
22349
+ }
22350
+ .v-file-input input[type=file] {
22351
+ height: 100%;
22352
+ left: 0;
22353
+ opacity: 0;
22354
+ position: absolute;
22355
+ top: 0;
22356
+ width: 100%;
22357
+ z-index: 1;
22358
+ }
22359
+ .v-file-input .v-input__details {
22360
+ padding-inline: 16px;
22361
+ }
22362
+ .v-input--plain-underlined.v-file-input .v-input__details {
22363
+ padding-inline: 0;
22364
+ }.v-expansion-panel {
22365
+ background-color: rgb(var(--v-theme-surface));
22366
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22367
+ }
22368
+ .v-expansion-panel:not(:first-child)::after {
22369
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22370
+ }
22371
+ .v-expansion-panel--disabled .v-expansion-panel-title {
22372
+ color: rgba(var(--v-theme-on-surface), 0.26);
22373
+ }
22374
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
22375
+ opacity: 0.4615384615;
22376
+ }
22377
+
22378
+ .v-expansion-panels {
22379
+ display: flex;
22380
+ flex-wrap: wrap;
22381
+ justify-content: center;
22382
+ list-style-type: none;
22383
+ padding: 0;
22384
+ width: 100%;
22385
+ position: relative;
22386
+ z-index: 1;
22387
+ }
22388
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22389
+ border-bottom-left-radius: 0 !important;
22390
+ border-bottom-right-radius: 0 !important;
22391
+ }
22392
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22393
+ border-top-left-radius: 0 !important;
22394
+ border-top-right-radius: 0 !important;
22395
+ }
22396
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22397
+ border-bottom-left-radius: 0 !important;
22398
+ border-bottom-right-radius: 0 !important;
22399
+ }
22400
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22401
+ border-top-left-radius: 0 !important;
22402
+ border-top-right-radius: 0 !important;
22403
+ }
22404
+ .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
22405
+ border-bottom-left-radius: 0 !important;
22406
+ border-bottom-right-radius: 0 !important;
22407
+ }
22408
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
22409
+ border-top-left-radius: 0 !important;
22410
+ border-top-right-radius: 0 !important;
22411
+ }
22412
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
22413
+ border-bottom-left-radius: initial;
22414
+ border-bottom-right-radius: initial;
22415
+ }
22416
+ .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
22417
+ border-radius: 0 !important;
22418
+ }
22419
+ .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
22420
+ transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
22421
+ }
22422
+
22423
+ .v-expansion-panel {
22424
+ flex: 1 0 100%;
22425
+ max-width: 100%;
22426
+ position: relative;
22427
+ transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
22428
+ transition-property: margin-top, border-radius, border, max-width;
22429
+ border-radius: 4px;
22430
+ }
22431
+ .v-expansion-panel:not(:first-child)::after {
22432
+ border-top-style: solid;
22433
+ border-top-width: thin;
22434
+ content: "";
22435
+ left: 0;
22436
+ position: absolute;
22437
+ right: 0;
22438
+ top: 0;
22439
+ transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
22345
22440
  }
22346
- .v-field--variant-outlined .v-field__outline__notch::before {
22347
- border-width: var(--v-field-border-width) 0 0;
22441
+ .v-expansion-panel--disabled .v-expansion-panel-title {
22442
+ pointer-events: none;
22348
22443
  }
22349
- .v-field--variant-outlined .v-field__outline__notch::after {
22350
- bottom: 0;
22351
- border-width: 0 0 var(--v-field-border-width);
22444
+ .v-expansion-panel--active:not(:first-child),
22445
+ .v-expansion-panel--active + .v-expansion-panel {
22446
+ margin-top: 16px;
22352
22447
  }
22353
- .v-field--active.v-field--variant-outlined .v-field__outline__notch::before {
22448
+ .v-expansion-panel--active:not(:first-child)::after,
22449
+ .v-expansion-panel--active + .v-expansion-panel::after {
22354
22450
  opacity: 0;
22355
22451
  }
22356
-
22357
- .v-field--variant-outlined .v-field__outline__end {
22358
- flex: 1;
22359
- border-top-width: var(--v-field-border-width);
22360
- border-bottom-width: var(--v-field-border-width);
22361
- border-inline-end-width: var(--v-field-border-width);
22362
- border-start-start-radius: 0;
22363
- border-start-end-radius: inherit;
22364
- border-end-end-radius: inherit;
22365
- border-end-start-radius: 0;
22366
- }
22367
- .v-field--reverse.v-field--variant-outlined .v-field__outline__end {
22368
- border-start-start-radius: inherit;
22369
- border-start-end-radius: 0;
22370
- border-end-end-radius: 0;
22371
- border-end-start-radius: inherit;
22372
- border-inline-end-width: 0;
22373
- border-inline-start-width: var(--v-field-border-width);
22374
- }
22375
-
22376
- /* endregion */
22377
- /* region LOADER */
22378
- .v-field__loader {
22379
- top: calc(100% - 2px);
22380
- left: 0;
22381
- position: absolute;
22382
- right: 0;
22383
- width: 100%;
22384
- border-top-left-radius: 0;
22385
- border-top-right-radius: 0;
22386
- border-bottom-left-radius: inherit;
22387
- border-bottom-right-radius: inherit;
22388
- overflow: hidden;
22452
+ .v-expansion-panel--active > .v-expansion-panel-title {
22453
+ border-bottom-left-radius: 0;
22454
+ border-bottom-right-radius: 0;
22389
22455
  }
22390
- .v-field--variant-outlined .v-field__loader {
22391
- top: calc(100% - 3px);
22392
- width: calc(100% - 1px * 2);
22393
- left: 1px;
22456
+ .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
22457
+ min-height: 64px;
22394
22458
  }
22395
22459
 
22396
- /* endregion */
22397
- /* region OVERLAY */
22398
- .v-field__overlay {
22399
- border-radius: inherit;
22400
- pointer-events: none;
22460
+ .v-expansion-panel__shadow {
22401
22461
  position: absolute;
22402
22462
  top: 0;
22403
22463
  left: 0;
22404
22464
  width: 100%;
22405
22465
  height: 100%;
22466
+ 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));
22467
+ border-radius: inherit;
22468
+ z-index: -1;
22406
22469
  }
22407
22470
 
22408
- .v-field--variant-filled .v-field__overlay {
22409
- background-color: currentColor;
22410
- opacity: 0.04;
22411
- transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22471
+ .v-expansion-panel-title {
22472
+ align-items: center;
22473
+ text-align: start;
22474
+ border-radius: inherit;
22475
+ display: flex;
22476
+ font-size: 0.9375rem;
22477
+ line-height: 1;
22478
+ min-height: 48px;
22479
+ outline: none;
22480
+ padding: 16px 24px;
22481
+ position: relative;
22482
+ transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
22483
+ width: 100%;
22484
+ justify-content: space-between;
22412
22485
  }
22413
- .v-field--variant-filled.v-field--has-background .v-field__overlay {
22414
- opacity: 0;
22486
+ .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
22487
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22415
22488
  }
22416
- @media (hover: hover) {
22417
- .v-field--variant-filled:hover .v-field__overlay {
22418
- opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22489
+ .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
22490
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22491
+ }
22492
+ @supports not selector(:focus-visible) {
22493
+ .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
22494
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22419
22495
  }
22420
22496
  }
22421
- .v-field--variant-filled.v-field--focused .v-field__overlay {
22422
- opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22497
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
22498
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
22423
22499
  }
22424
-
22425
- .v-field--variant-solo-filled .v-field__overlay {
22426
- background-color: currentColor;
22427
- opacity: 0.04;
22428
- transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22500
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
22501
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22429
22502
  }
22430
- @media (hover: hover) {
22431
- .v-field--variant-solo-filled:hover .v-field__overlay {
22432
- opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22503
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
22504
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22505
+ }
22506
+ @supports not selector(:focus-visible) {
22507
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
22508
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22433
22509
  }
22434
22510
  }
22435
- .v-field--variant-solo-filled.v-field--focused .v-field__overlay {
22436
- opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22511
+
22512
+ .v-expansion-panel-title__overlay {
22513
+ position: absolute;
22514
+ top: 0;
22515
+ left: 0;
22516
+ width: 100%;
22517
+ height: 100%;
22518
+ background-color: currentColor;
22519
+ border-radius: inherit;
22520
+ opacity: 0;
22437
22521
  }
22438
22522
 
22439
- .v-field--variant-solo-inverted .v-field__overlay {
22440
- transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
22523
+ .v-expansion-panel-title__icon {
22524
+ display: inline-flex;
22525
+ margin-bottom: -4px;
22526
+ margin-top: -4px;
22527
+ -webkit-user-select: none;
22528
+ user-select: none;
22529
+ margin-inline-start: auto;
22441
22530
  }
22442
- .v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
22443
- opacity: 0;
22531
+
22532
+ .v-expansion-panel-text {
22533
+ display: flex;
22444
22534
  }
22445
- @media (hover: hover) {
22446
- .v-field--variant-solo-inverted:hover .v-field__overlay {
22447
- opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22448
- }
22535
+ .v-expansion-panel-text__wrapper {
22536
+ padding: 8px 24px 16px;
22537
+ flex: 1 1 auto;
22538
+ max-width: 100%;
22449
22539
  }
22450
- .v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
22451
- background-color: rgb(var(--v-theme-surface-variant));
22540
+
22541
+ .v-expansion-panels--variant-accordion > .v-expansion-panel {
22542
+ margin-top: 0;
22543
+ }
22544
+ .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
22452
22545
  opacity: 1;
22453
22546
  }
22454
22547
 
22455
- /* endregion */
22456
- /* region MODIFIERS */
22457
- .v-field--reverse .v-field__field,
22458
- .v-field--reverse .v-field__input,
22459
- .v-field--reverse .v-field__outline {
22460
- flex-direction: row-reverse;
22548
+ .v-expansion-panels--variant-popout > .v-expansion-panel {
22549
+ max-width: calc(100% - 32px);
22461
22550
  }
22462
- .v-field--reverse .v-field__input, .v-field--reverse input {
22463
- text-align: end;
22551
+ .v-expansion-panels--variant-popout > .v-expansion-panel--active {
22552
+ max-width: calc(100% + 16px);
22464
22553
  }
22465
22554
 
22466
- .v-input--disabled .v-field--variant-filled .v-field__outline::before,
22467
- .v-input--disabled .v-field--variant-underlined .v-field__outline::before {
22468
- border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
22555
+ .v-expansion-panels--variant-inset > .v-expansion-panel {
22556
+ max-width: 100%;
22557
+ }
22558
+ .v-expansion-panels--variant-inset > .v-expansion-panel--active {
22559
+ max-width: calc(100% - 32px);
22469
22560
  }
22470
22561
 
22471
- .v-field--loading .v-field__outline::after,
22472
- .v-field--loading .v-field__outline::before {
22473
- opacity: 0;
22562
+ .v-expansion-panels--flat > .v-expansion-panel::after {
22563
+ border-top: none;
22564
+ }
22565
+ .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
22566
+ display: none;
22474
22567
  }
22475
22568
 
22476
- /* endregion */.v-footer {
22569
+ .v-expansion-panels--tile {
22570
+ border-radius: 0;
22571
+ }
22572
+ .v-expansion-panels--tile > .v-expansion-panel {
22573
+ border-radius: 0;
22574
+ }.v-footer {
22477
22575
  align-items: center;
22478
22576
  display: flex;
22479
22577
  flex: 1 1 auto;
@@ -22486,119 +22584,57 @@ textarea.v-field__input::placeholder {
22486
22584
  border-width: 0;
22487
22585
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22488
22586
  border-radius: 0;
22489
- background: rgb(var(--v-theme-surface));
22490
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22491
- }
22492
- .v-footer--border {
22493
- border-width: thin;
22494
- box-shadow: none;
22495
- }
22496
- .v-footer--absolute {
22497
- position: absolute;
22498
- }
22499
- .v-footer--fixed {
22500
- position: fixed;
22501
- }
22502
- .v-footer--rounded {
22503
- border-radius: 4px;
22504
- }.v-fab {
22505
- align-items: center;
22506
- display: inline-flex;
22507
- flex: 1 1 auto;
22508
- pointer-events: none;
22509
- position: relative;
22510
- transition-duration: 0.2s;
22511
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22512
- vertical-align: middle;
22513
- }
22514
- .v-fab .v-btn {
22515
- pointer-events: auto;
22516
- }
22517
- .v-fab .v-btn--variant-elevated {
22518
- box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22519
- }
22520
- .v-fab--app, .v-fab--absolute {
22521
- display: flex;
22522
- }
22523
- .v-fab--start, .v-fab--left {
22524
- justify-content: flex-start;
22525
- }
22526
- .v-fab--center {
22527
- align-items: center;
22528
- justify-content: center;
22529
- }
22530
- .v-fab--end, .v-fab--right {
22531
- justify-content: flex-end;
22532
- }
22533
- .v-fab--bottom {
22534
- align-items: flex-end;
22535
- }
22536
- .v-fab--top {
22537
- align-items: flex-start;
22538
- }
22539
- .v-fab--extended .v-btn {
22540
- border-radius: 9999px !important;
22541
- }
22542
-
22543
- .v-fab__container {
22544
- align-self: center;
22545
- display: inline-flex;
22546
- position: absolute;
22547
- vertical-align: middle;
22587
+ background: rgb(var(--v-theme-surface));
22588
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22548
22589
  }
22549
- .v-fab--app .v-fab__container {
22550
- margin: 12px;
22590
+ .v-footer--border {
22591
+ border-width: thin;
22592
+ box-shadow: none;
22551
22593
  }
22552
- .v-fab--absolute .v-fab__container {
22594
+ .v-footer--absolute {
22553
22595
  position: absolute;
22554
- z-index: 4;
22555
- }
22556
- .v-fab--offset.v-fab--top .v-fab__container {
22557
- transform: translateY(-50%);
22558
- }
22559
- .v-fab--offset.v-fab--bottom .v-fab__container {
22560
- transform: translateY(50%);
22561
22596
  }
22562
- .v-fab--top .v-fab__container {
22563
- top: 0;
22564
- }
22565
- .v-fab--bottom .v-fab__container {
22566
- bottom: 0;
22567
- }
22568
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
22569
- left: 0;
22597
+ .v-footer--fixed {
22598
+ position: fixed;
22570
22599
  }
22571
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
22572
- right: 0;
22573
- }.v-file-input--hide.v-input .v-field,
22574
- .v-file-input--hide.v-input .v-input__control,
22575
- .v-file-input--hide.v-input .v-input__details {
22576
- display: none;
22600
+ .v-footer--rounded {
22601
+ border-radius: 4px;
22602
+ }.v-img {
22603
+ --v-theme-overlay-multiplier: 3;
22604
+ z-index: 0;
22577
22605
  }
22578
- .v-file-input--hide.v-input .v-input__prepend {
22579
- grid-area: control;
22580
- margin: 0 auto;
22606
+ .v-img--booting .v-responsive__sizer {
22607
+ transition: none;
22581
22608
  }
22582
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22583
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22584
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22585
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22586
- top: 0px;
22609
+ .v-img--rounded {
22610
+ border-radius: 4px;
22587
22611
  }
22588
- .v-file-input input[type=file] {
22589
- height: 100%;
22590
- left: 0;
22591
- opacity: 0;
22612
+
22613
+ .v-img__img,
22614
+ .v-img__picture,
22615
+ .v-img__gradient,
22616
+ .v-img__placeholder,
22617
+ .v-img__error {
22618
+ z-index: -1;
22592
22619
  position: absolute;
22593
22620
  top: 0;
22621
+ left: 0;
22594
22622
  width: 100%;
22595
- z-index: 1;
22623
+ height: 100%;
22596
22624
  }
22597
- .v-file-input .v-input__details {
22598
- padding-inline: 16px;
22625
+
22626
+ .v-img__img--preload {
22627
+ filter: blur(4px);
22599
22628
  }
22600
- .v-input--plain-underlined.v-file-input .v-input__details {
22601
- padding-inline: 0;
22629
+ .v-img__img--contain {
22630
+ object-fit: contain;
22631
+ }
22632
+ .v-img__img--cover {
22633
+ object-fit: cover;
22634
+ }
22635
+
22636
+ .v-img__gradient {
22637
+ background-repeat: no-repeat;
22602
22638
  }.v-icon {
22603
22639
  --v-icon-size-multiplier: 1;
22604
22640
  align-items: center;
@@ -22652,67 +22688,6 @@ textarea.v-field__input::placeholder {
22652
22688
 
22653
22689
  .v-icon--end {
22654
22690
  margin-inline-start: 8px;
22655
- }.v-infinite-scroll--horizontal {
22656
- display: flex;
22657
- flex-direction: row;
22658
- overflow-x: auto;
22659
- }
22660
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22661
- height: 100%;
22662
- width: 1px;
22663
- }
22664
-
22665
- .v-infinite-scroll--vertical {
22666
- display: flex;
22667
- flex-direction: column;
22668
- overflow-y: auto;
22669
- }
22670
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22671
- height: 1px;
22672
- width: 100%;
22673
- }
22674
-
22675
- .v-infinite-scroll__side {
22676
- align-items: center;
22677
- display: flex;
22678
- justify-content: center;
22679
- padding: 8px;
22680
- }.v-img {
22681
- --v-theme-overlay-multiplier: 3;
22682
- z-index: 0;
22683
- }
22684
- .v-img--booting .v-responsive__sizer {
22685
- transition: none;
22686
- }
22687
- .v-img--rounded {
22688
- border-radius: 4px;
22689
- }
22690
-
22691
- .v-img__img,
22692
- .v-img__picture,
22693
- .v-img__gradient,
22694
- .v-img__placeholder,
22695
- .v-img__error {
22696
- z-index: -1;
22697
- position: absolute;
22698
- top: 0;
22699
- left: 0;
22700
- width: 100%;
22701
- height: 100%;
22702
- }
22703
-
22704
- .v-img__img--preload {
22705
- filter: blur(4px);
22706
- }
22707
- .v-img__img--contain {
22708
- object-fit: contain;
22709
- }
22710
- .v-img__img--cover {
22711
- object-fit: cover;
22712
- }
22713
-
22714
- .v-img__gradient {
22715
- background-repeat: no-repeat;
22716
22691
  }.v-input {
22717
22692
  display: grid;
22718
22693
  flex: 1 1 auto;
@@ -22855,6 +22830,36 @@ textarea.v-field__input::placeholder {
22855
22830
 
22856
22831
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22857
22832
  padding-top: calc(var(--v-input-padding-top) + 0px);
22833
+ }.v-infinite-scroll--horizontal {
22834
+ display: flex;
22835
+ flex-direction: row;
22836
+ overflow-x: auto;
22837
+ }
22838
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22839
+ height: 100%;
22840
+ width: 1px;
22841
+ }
22842
+
22843
+ .v-infinite-scroll--vertical {
22844
+ display: flex;
22845
+ flex-direction: column;
22846
+ overflow-y: auto;
22847
+ }
22848
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22849
+ height: 1px;
22850
+ width: 100%;
22851
+ }
22852
+
22853
+ .v-infinite-scroll__side {
22854
+ align-items: center;
22855
+ display: flex;
22856
+ justify-content: center;
22857
+ padding: 8px;
22858
+ }.v-item-group {
22859
+ flex: 0 1 auto;
22860
+ max-width: 100%;
22861
+ position: relative;
22862
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22858
22863
  }.v-label {
22859
22864
  align-items: center;
22860
22865
  color: inherit;
@@ -22870,6 +22875,21 @@ textarea.v-field__input::placeholder {
22870
22875
 
22871
22876
  .v-label--clickable {
22872
22877
  cursor: pointer;
22878
+ }.v-layout {
22879
+ --v-scrollbar-offset: 0px;
22880
+ display: flex;
22881
+ flex: 1 1 auto;
22882
+ }
22883
+ .v-layout--full-height {
22884
+ --v-scrollbar-offset: inherit;
22885
+ height: 100%;
22886
+ }.v-layout-item {
22887
+ position: absolute;
22888
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22889
+ }
22890
+
22891
+ .v-layout-item--absolute {
22892
+ position: absolute;
22873
22893
  }.v-list {
22874
22894
  overflow: auto;
22875
22895
  padding: 8px 0;
@@ -23385,70 +23405,168 @@ textarea.v-field__input::placeholder {
23385
23405
  top: 0;
23386
23406
  transition: opacity 0.2s ease-in-out;
23387
23407
  }
23388
- .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
23389
- --v-theme-overlay-multiplier: 0;
23408
+ .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
23409
+ --v-theme-overlay-multiplier: 0;
23410
+ }
23411
+
23412
+ .v-list {
23413
+ --indent-padding: 0px;
23414
+ }
23415
+ .v-list--nav {
23416
+ --indent-padding: -8px;
23417
+ }
23418
+
23419
+ .v-list-group {
23420
+ --list-indent-size: 16px;
23421
+ --parent-padding: var(--indent-padding);
23422
+ --prepend-width: 40px;
23423
+ }
23424
+ .v-list--slim .v-list-group {
23425
+ --prepend-width: 28px;
23426
+ }
23427
+ .v-list-group--fluid {
23428
+ --list-indent-size: 0px;
23429
+ }
23430
+ .v-list-group--prepend {
23431
+ --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
23432
+ }
23433
+ .v-list-group--fluid.v-list-group--prepend {
23434
+ --parent-padding: var(--indent-padding);
23435
+ }
23436
+
23437
+ .v-list-group__items {
23438
+ --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
23439
+ }
23440
+
23441
+ .v-list-group__items .v-list-item {
23442
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23443
+ }
23444
+
23445
+ .v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23446
+ opacity: 0;
23447
+ }
23448
+ .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
23449
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23450
+ }.v-locale-provider {
23451
+ display: contents;
23452
+ }.v-messages {
23453
+ flex: 1 1 auto;
23454
+ font-size: 12px;
23455
+ min-height: 14px;
23456
+ min-width: 1px;
23457
+ opacity: var(--v-medium-emphasis-opacity);
23458
+ position: relative;
23459
+ }
23460
+ .v-messages__message {
23461
+ line-height: 12px;
23462
+ word-break: break-word;
23463
+ overflow-wrap: break-word;
23464
+ word-wrap: break-word;
23465
+ -webkit-hyphens: auto;
23466
+ hyphens: auto;
23467
+ transition-duration: 150ms;
23468
+ }.v-navigation-drawer {
23469
+ -webkit-overflow-scrolling: touch;
23470
+ background: rgb(var(--v-theme-surface));
23471
+ display: flex;
23472
+ flex-direction: column;
23473
+ height: 100%;
23474
+ max-width: 100%;
23475
+ pointer-events: auto;
23476
+ transition-duration: 0.2s;
23477
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
23478
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23479
+ position: absolute;
23480
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23481
+ border-style: solid;
23482
+ border-width: 0;
23483
+ 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));
23484
+ background: rgb(var(--v-theme-surface));
23485
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23486
+ }
23487
+ .v-navigation-drawer--border {
23488
+ border-width: thin;
23489
+ box-shadow: none;
23390
23490
  }
23391
-
23392
- .v-list {
23393
- --indent-padding: 0px;
23491
+ .v-navigation-drawer--rounded {
23492
+ border-radius: 4px;
23394
23493
  }
23395
- .v-list--nav {
23396
- --indent-padding: -8px;
23494
+ .v-navigation-drawer--top, .v-navigation-drawer--bottom {
23495
+ max-height: -webkit-fill-available;
23496
+ overflow-y: auto;
23397
23497
  }
23398
-
23399
- .v-list-group {
23400
- --list-indent-size: 16px;
23401
- --parent-padding: var(--indent-padding);
23402
- --prepend-width: 40px;
23498
+ .v-navigation-drawer--top {
23499
+ top: 0;
23500
+ border-bottom-width: thin;
23403
23501
  }
23404
- .v-list--slim .v-list-group {
23405
- --prepend-width: 28px;
23502
+ .v-navigation-drawer--bottom {
23503
+ left: 0;
23504
+ border-top-width: thin;
23406
23505
  }
23407
- .v-list-group--fluid {
23408
- --list-indent-size: 0px;
23506
+ .v-navigation-drawer--left {
23507
+ top: 0;
23508
+ left: 0;
23509
+ right: auto;
23510
+ border-right-width: thin;
23409
23511
  }
23410
- .v-list-group--prepend {
23411
- --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
23512
+ .v-navigation-drawer--right {
23513
+ top: 0;
23514
+ left: auto;
23515
+ right: 0;
23516
+ border-left-width: thin;
23412
23517
  }
23413
- .v-list-group--fluid.v-list-group--prepend {
23414
- --parent-padding: var(--indent-padding);
23518
+ .v-navigation-drawer--floating {
23519
+ border: none;
23415
23520
  }
23416
-
23417
- .v-list-group__items {
23418
- --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
23521
+ .v-navigation-drawer--temporary.v-navigation-drawer--active {
23522
+ box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23419
23523
  }
23420
-
23421
- .v-list-group__items .v-list-item {
23422
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
23524
+ .v-navigation-drawer--sticky {
23525
+ height: auto;
23526
+ transition: box-shadow, transform, visibility, width, height, left, right;
23423
23527
  }
23424
-
23425
- .v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23426
- opacity: 0;
23528
+ .v-navigation-drawer .v-list {
23529
+ overflow: hidden;
23427
23530
  }
23428
- .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
23429
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23430
- }.v-item-group {
23531
+
23532
+ .v-navigation-drawer__content {
23431
23533
  flex: 0 1 auto;
23534
+ height: 100%;
23432
23535
  max-width: 100%;
23433
- position: relative;
23434
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23435
- }.v-layout {
23436
- --v-scrollbar-offset: 0px;
23437
- display: flex;
23438
- flex: 1 1 auto;
23536
+ overflow-x: hidden;
23537
+ overflow-y: auto;
23439
23538
  }
23440
- .v-layout--full-height {
23441
- --v-scrollbar-offset: inherit;
23539
+
23540
+ .v-navigation-drawer__img {
23442
23541
  height: 100%;
23443
- }.v-layout-item {
23542
+ left: 0;
23444
23543
  position: absolute;
23445
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23544
+ top: 0;
23545
+ width: 100%;
23546
+ z-index: -1;
23547
+ }
23548
+ .v-navigation-drawer__img img:not(.v-img__img) {
23549
+ height: inherit;
23550
+ object-fit: cover;
23551
+ width: inherit;
23446
23552
  }
23447
23553
 
23448
- .v-layout-item--absolute {
23554
+ .v-navigation-drawer__scrim {
23449
23555
  position: absolute;
23450
- }.v-locale-provider {
23451
- display: contents;
23556
+ top: 0;
23557
+ left: 0;
23558
+ width: 100%;
23559
+ height: 100%;
23560
+ background: black;
23561
+ opacity: 0.2;
23562
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23563
+ z-index: 1;
23564
+ }
23565
+
23566
+ .v-navigation-drawer__prepend,
23567
+ .v-navigation-drawer__append {
23568
+ flex: none;
23569
+ overflow: hidden;
23452
23570
  }.v-main {
23453
23571
  flex: 1 0 auto;
23454
23572
  max-width: 100%;
@@ -23490,22 +23608,14 @@ textarea.v-field__input::placeholder {
23490
23608
  overflow: auto;
23491
23609
  height: 100%;
23492
23610
  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));
23493
- }.v-messages {
23494
- flex: 1 1 auto;
23495
- font-size: 12px;
23496
- min-height: 14px;
23497
- min-width: 1px;
23498
- opacity: var(--v-medium-emphasis-opacity);
23499
- position: relative;
23611
+ }.v-pagination__list {
23612
+ display: inline-flex;
23613
+ list-style-type: none;
23614
+ justify-content: center;
23615
+ width: 100%;
23500
23616
  }
23501
- .v-messages__message {
23502
- line-height: 12px;
23503
- word-break: break-word;
23504
- overflow-wrap: break-word;
23505
- word-wrap: break-word;
23506
- -webkit-hyphens: auto;
23507
- hyphens: auto;
23508
- transition-duration: 150ms;
23617
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23618
+ margin: 0.3rem;
23509
23619
  }.v-overlay-container {
23510
23620
  contain: layout;
23511
23621
  left: 0;
@@ -23609,130 +23719,28 @@ html.v-overlay-scroll-blocked {
23609
23719
  width: 100%;
23610
23720
  }
23611
23721
  .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23612
- -webkit-appearance: none;
23613
- margin: 0;
23614
- }
23615
- .v-otp-input__field[type=number] {
23616
- -moz-appearance: textfield;
23617
- }
23618
-
23619
- .v-otp-input__loader {
23620
- align-items: center;
23621
- display: flex;
23622
- height: 100%;
23623
- justify-content: center;
23624
- width: 100%;
23625
- }
23626
- .v-otp-input__loader .v-progress-linear {
23627
- position: absolute;
23628
- }.v-parallax {
23629
- position: relative;
23630
- overflow: hidden;
23631
- }
23632
- .v-parallax--active > .v-img__img {
23633
- will-change: transform;
23634
- }.v-navigation-drawer {
23635
- -webkit-overflow-scrolling: touch;
23636
- background: rgb(var(--v-theme-surface));
23637
- display: flex;
23638
- flex-direction: column;
23639
- height: 100%;
23640
- max-width: 100%;
23641
- pointer-events: auto;
23642
- transition-duration: 0.2s;
23643
- transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
23644
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23645
- position: absolute;
23646
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23647
- border-style: solid;
23648
- border-width: 0;
23649
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23650
- background: rgb(var(--v-theme-surface));
23651
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23652
- }
23653
- .v-navigation-drawer--border {
23654
- border-width: thin;
23655
- box-shadow: none;
23656
- }
23657
- .v-navigation-drawer--rounded {
23658
- border-radius: 4px;
23659
- }
23660
- .v-navigation-drawer--top, .v-navigation-drawer--bottom {
23661
- max-height: -webkit-fill-available;
23662
- overflow-y: auto;
23663
- }
23664
- .v-navigation-drawer--top {
23665
- top: 0;
23666
- border-bottom-width: thin;
23667
- }
23668
- .v-navigation-drawer--bottom {
23669
- left: 0;
23670
- border-top-width: thin;
23671
- }
23672
- .v-navigation-drawer--left {
23673
- top: 0;
23674
- left: 0;
23675
- right: auto;
23676
- border-right-width: thin;
23677
- }
23678
- .v-navigation-drawer--right {
23679
- top: 0;
23680
- left: auto;
23681
- right: 0;
23682
- border-left-width: thin;
23683
- }
23684
- .v-navigation-drawer--floating {
23685
- border: none;
23686
- }
23687
- .v-navigation-drawer--temporary.v-navigation-drawer--active {
23688
- box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23689
- }
23690
- .v-navigation-drawer--sticky {
23691
- height: auto;
23692
- transition: box-shadow, transform, visibility, width, height, left, right;
23693
- }
23694
- .v-navigation-drawer .v-list {
23695
- overflow: hidden;
23696
- }
23697
-
23698
- .v-navigation-drawer__content {
23699
- flex: 0 1 auto;
23700
- height: 100%;
23701
- max-width: 100%;
23702
- overflow-x: hidden;
23703
- overflow-y: auto;
23704
- }
23705
-
23706
- .v-navigation-drawer__img {
23707
- height: 100%;
23708
- left: 0;
23709
- position: absolute;
23710
- top: 0;
23711
- width: 100%;
23712
- z-index: -1;
23713
- }
23714
- .v-navigation-drawer__img img:not(.v-img__img) {
23715
- height: inherit;
23716
- object-fit: cover;
23717
- width: inherit;
23718
- }
23719
-
23720
- .v-navigation-drawer__scrim {
23721
- position: absolute;
23722
- top: 0;
23723
- left: 0;
23724
- width: 100%;
23725
- height: 100%;
23726
- background: black;
23727
- opacity: 0.2;
23728
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23729
- z-index: 1;
23722
+ -webkit-appearance: none;
23723
+ margin: 0;
23724
+ }
23725
+ .v-otp-input__field[type=number] {
23726
+ -moz-appearance: textfield;
23730
23727
  }
23731
23728
 
23732
- .v-navigation-drawer__prepend,
23733
- .v-navigation-drawer__append {
23734
- flex: none;
23729
+ .v-otp-input__loader {
23730
+ align-items: center;
23731
+ display: flex;
23732
+ height: 100%;
23733
+ justify-content: center;
23734
+ width: 100%;
23735
+ }
23736
+ .v-otp-input__loader .v-progress-linear {
23737
+ position: absolute;
23738
+ }.v-parallax {
23739
+ position: relative;
23735
23740
  overflow: hidden;
23741
+ }
23742
+ .v-parallax--active > .v-img__img {
23743
+ will-change: transform;
23736
23744
  }.v-progress-circular {
23737
23745
  align-items: center;
23738
23746
  display: inline-flex;
@@ -23835,14 +23843,6 @@ html.v-overlay-scroll-blocked {
23835
23843
  100% {
23836
23844
  transform: rotate(270deg);
23837
23845
  }
23838
- }.v-pagination__list {
23839
- display: inline-flex;
23840
- list-style-type: none;
23841
- justify-content: center;
23842
- width: 100%;
23843
- }
23844
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23845
- margin: 0.3rem;
23846
23846
  }.v-progress-linear {
23847
23847
  background: transparent;
23848
23848
  overflow: hidden;
@@ -24054,6 +24054,18 @@ html.v-overlay-scroll-blocked {
24054
24054
  0% {
24055
24055
  background-position-x: var(--v-progress-linear-height);
24056
24056
  }
24057
+ }.v-radio-group > .v-input__control {
24058
+ flex-direction: column;
24059
+ }
24060
+ .v-radio-group > .v-input__control > .v-label {
24061
+ margin-inline-start: 16px;
24062
+ }
24063
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24064
+ padding-inline-start: 6px;
24065
+ margin-top: 8px;
24066
+ }
24067
+ .v-radio-group .v-input__details {
24068
+ padding-inline: 16px;
24057
24069
  }.v-slider .v-slider__container input {
24058
24070
  cursor: default;
24059
24071
  padding: 0;
@@ -24111,6 +24123,54 @@ html.v-overlay-scroll-blocked {
24111
24123
 
24112
24124
  .v-slider__label {
24113
24125
  margin-inline-end: 12px;
24126
+ }.v-select .v-field .v-text-field__prefix,
24127
+ .v-select .v-field .v-text-field__suffix,
24128
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
24129
+ cursor: pointer;
24130
+ }
24131
+ .v-select .v-field .v-field__input > input {
24132
+ align-self: flex-start;
24133
+ opacity: 1;
24134
+ flex: 0 0;
24135
+ position: absolute;
24136
+ width: 100%;
24137
+ transition: none;
24138
+ pointer-events: none;
24139
+ caret-color: transparent;
24140
+ }
24141
+ .v-select .v-field--dirty .v-select__selection {
24142
+ margin-inline-end: 2px;
24143
+ }
24144
+ .v-select .v-select__selection-text {
24145
+ overflow: hidden;
24146
+ text-overflow: ellipsis;
24147
+ white-space: nowrap;
24148
+ }
24149
+ .v-select__content {
24150
+ overflow: hidden;
24151
+ 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));
24152
+ border-radius: 4px;
24153
+ }
24154
+ .v-select__selection {
24155
+ display: inline-flex;
24156
+ align-items: center;
24157
+ letter-spacing: inherit;
24158
+ line-height: inherit;
24159
+ max-width: 100%;
24160
+ }
24161
+ .v-select .v-select__selection:first-child {
24162
+ margin-inline-start: 0;
24163
+ }
24164
+ .v-select--selected .v-field .v-field__input > input {
24165
+ opacity: 0;
24166
+ }
24167
+ .v-select__menu-icon {
24168
+ margin-inline-start: 4px;
24169
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24170
+ }
24171
+ .v-select--active-menu .v-select__menu-icon {
24172
+ opacity: var(--v-high-emphasis-opacity);
24173
+ transform: rotate(180deg);
24114
24174
  }.v-rating {
24115
24175
  max-width: 100%;
24116
24176
  display: inline-flex;
@@ -24165,74 +24225,32 @@ html.v-overlay-scroll-blocked {
24165
24225
  opacity: 0;
24166
24226
  position: absolute;
24167
24227
  width: 0;
24168
- }.v-select .v-field .v-text-field__prefix,
24169
- .v-select .v-field .v-text-field__suffix,
24170
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
24171
- cursor: pointer;
24172
- }
24173
- .v-select .v-field .v-field__input > input {
24174
- align-self: flex-start;
24175
- opacity: 1;
24176
- flex: 0 0;
24177
- position: absolute;
24178
- width: 100%;
24179
- transition: none;
24180
- pointer-events: none;
24181
- caret-color: transparent;
24182
- }
24183
- .v-select .v-field--dirty .v-select__selection {
24184
- margin-inline-end: 2px;
24185
- }
24186
- .v-select .v-select__selection-text {
24187
- overflow: hidden;
24188
- text-overflow: ellipsis;
24189
- white-space: nowrap;
24190
- }
24191
- .v-select__content {
24228
+ }.v-responsive {
24229
+ display: flex;
24230
+ flex: 1 0 auto;
24231
+ max-height: 100%;
24232
+ max-width: 100%;
24192
24233
  overflow: hidden;
24193
- 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));
24194
- border-radius: 4px;
24234
+ position: relative;
24195
24235
  }
24196
- .v-select__selection {
24236
+ .v-responsive--inline {
24197
24237
  display: inline-flex;
24198
- align-items: center;
24199
- letter-spacing: inherit;
24200
- line-height: inherit;
24201
- max-width: 100%;
24202
- }
24203
- .v-select .v-select__selection:first-child {
24204
- margin-inline-start: 0;
24205
- }
24206
- .v-select--selected .v-field .v-field__input > input {
24207
- opacity: 0;
24208
- }
24209
- .v-select__menu-icon {
24210
- margin-inline-start: 4px;
24211
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24212
- }
24213
- .v-select--active-menu .v-select__menu-icon {
24214
- opacity: var(--v-high-emphasis-opacity);
24215
- transform: rotate(180deg);
24216
- }.v-radio-group > .v-input__control {
24217
- flex-direction: column;
24218
- }
24219
- .v-radio-group > .v-input__control > .v-label {
24220
- margin-inline-start: 16px;
24238
+ flex: 0 0 auto;
24221
24239
  }
24222
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24223
- padding-inline-start: 6px;
24224
- margin-top: 8px;
24240
+
24241
+ .v-responsive__content {
24242
+ flex: 1 0 0px;
24243
+ max-width: 100%;
24225
24244
  }
24226
- .v-radio-group .v-input__details {
24227
- padding-inline: 16px;
24228
- }.v-selection-control-group {
24229
- grid-area: control;
24230
- display: flex;
24231
- flex-direction: column;
24245
+
24246
+ .v-responsive__sizer ~ .v-responsive__content {
24247
+ margin-inline-start: -100%;
24232
24248
  }
24233
- .v-selection-control-group--inline {
24234
- flex-direction: row;
24235
- flex-wrap: wrap;
24249
+
24250
+ .v-responsive__sizer {
24251
+ flex: 1 0 0px;
24252
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24253
+ pointer-events: none;
24236
24254
  }.v-selection-control {
24237
24255
  align-items: center;
24238
24256
  contain: layout;
@@ -24334,32 +24352,6 @@ html.v-overlay-scroll-blocked {
24334
24352
  }
24335
24353
  .v-selection-control--focus-visible .v-selection-control__input::before {
24336
24354
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24337
- }.v-responsive {
24338
- display: flex;
24339
- flex: 1 0 auto;
24340
- max-height: 100%;
24341
- max-width: 100%;
24342
- overflow: hidden;
24343
- position: relative;
24344
- }
24345
- .v-responsive--inline {
24346
- display: inline-flex;
24347
- flex: 0 0 auto;
24348
- }
24349
-
24350
- .v-responsive__content {
24351
- flex: 1 0 0px;
24352
- max-width: 100%;
24353
- }
24354
-
24355
- .v-responsive__sizer ~ .v-responsive__content {
24356
- margin-inline-start: -100%;
24357
- }
24358
-
24359
- .v-responsive__sizer {
24360
- flex: 1 0 0px;
24361
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24362
- pointer-events: none;
24363
24355
  }.v-skeleton-loader {
24364
24356
  align-items: center;
24365
24357
  background: rgb(var(--v-theme-surface));
@@ -24576,68 +24568,13 @@ html.v-overlay-scroll-blocked {
24576
24568
  border-radius: 0;
24577
24569
  }
24578
24570
  .v-skeleton-loader--tile .v-skeleton-loader__bone {
24579
- border-radius: 0;
24580
- }
24581
-
24582
- @keyframes loading {
24583
- 100% {
24584
- transform: translateX(100%);
24585
- }
24586
- }.v-slide-group {
24587
- display: flex;
24588
- overflow: hidden;
24589
- }
24590
-
24591
- .v-slide-group__next,
24592
- .v-slide-group__prev {
24593
- align-items: center;
24594
- display: flex;
24595
- flex: 0 1 52px;
24596
- justify-content: center;
24597
- min-width: 52px;
24598
- cursor: pointer;
24599
- }
24600
- .v-slide-group__next--disabled,
24601
- .v-slide-group__prev--disabled {
24602
- pointer-events: none;
24603
- opacity: var(--v-disabled-opacity);
24604
- }
24605
-
24606
- .v-slide-group__content {
24607
- display: flex;
24608
- flex: 1 0 auto;
24609
- position: relative;
24610
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24611
- white-space: nowrap;
24612
- }
24613
- .v-slide-group__content > * {
24614
- white-space: initial;
24615
- }
24616
-
24617
- .v-slide-group__container {
24618
- contain: content;
24619
- display: flex;
24620
- flex: 1 1 auto;
24621
- overflow-x: auto;
24622
- overflow-y: hidden;
24623
- scrollbar-width: none;
24624
- scrollbar-color: rgba(0, 0, 0, 0);
24625
- }
24626
- .v-slide-group__container::-webkit-scrollbar {
24627
- display: none;
24628
- }
24629
-
24630
- .v-slide-group--vertical {
24631
- max-height: inherit;
24632
- }
24633
- .v-slide-group--vertical,
24634
- .v-slide-group--vertical .v-slide-group__container,
24635
- .v-slide-group--vertical .v-slide-group__content {
24636
- flex-direction: column;
24571
+ border-radius: 0;
24637
24572
  }
24638
- .v-slide-group--vertical .v-slide-group__container {
24639
- overflow-x: hidden;
24640
- overflow-y: auto;
24573
+
24574
+ @keyframes loading {
24575
+ 100% {
24576
+ transform: translateX(100%);
24577
+ }
24641
24578
  }.v-sheet {
24642
24579
  display: block;
24643
24580
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -24666,6 +24603,14 @@ html.v-overlay-scroll-blocked {
24666
24603
  }
24667
24604
  .v-sheet--rounded {
24668
24605
  border-radius: 4px;
24606
+ }.v-selection-control-group {
24607
+ grid-area: control;
24608
+ display: flex;
24609
+ flex-direction: column;
24610
+ }
24611
+ .v-selection-control-group--inline {
24612
+ flex-direction: row;
24613
+ flex-wrap: wrap;
24669
24614
  }.v-snackbar {
24670
24615
  justify-content: center;
24671
24616
  z-index: 10000;
@@ -24804,6 +24749,102 @@ html.v-overlay-scroll-blocked {
24804
24749
  }
24805
24750
  .v-snackbar-transition-leave-to {
24806
24751
  opacity: 0;
24752
+ }.v-slide-group {
24753
+ display: flex;
24754
+ overflow: hidden;
24755
+ }
24756
+
24757
+ .v-slide-group__next,
24758
+ .v-slide-group__prev {
24759
+ align-items: center;
24760
+ display: flex;
24761
+ flex: 0 1 52px;
24762
+ justify-content: center;
24763
+ min-width: 52px;
24764
+ cursor: pointer;
24765
+ }
24766
+ .v-slide-group__next--disabled,
24767
+ .v-slide-group__prev--disabled {
24768
+ pointer-events: none;
24769
+ opacity: var(--v-disabled-opacity);
24770
+ }
24771
+
24772
+ .v-slide-group__content {
24773
+ display: flex;
24774
+ flex: 1 0 auto;
24775
+ position: relative;
24776
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24777
+ white-space: nowrap;
24778
+ }
24779
+ .v-slide-group__content > * {
24780
+ white-space: initial;
24781
+ }
24782
+
24783
+ .v-slide-group__container {
24784
+ contain: content;
24785
+ display: flex;
24786
+ flex: 1 1 auto;
24787
+ overflow-x: auto;
24788
+ overflow-y: hidden;
24789
+ scrollbar-width: none;
24790
+ scrollbar-color: rgba(0, 0, 0, 0);
24791
+ }
24792
+ .v-slide-group__container::-webkit-scrollbar {
24793
+ display: none;
24794
+ }
24795
+
24796
+ .v-slide-group--vertical {
24797
+ max-height: inherit;
24798
+ }
24799
+ .v-slide-group--vertical,
24800
+ .v-slide-group--vertical .v-slide-group__container,
24801
+ .v-slide-group--vertical .v-slide-group__content {
24802
+ flex-direction: column;
24803
+ }
24804
+ .v-slide-group--vertical .v-slide-group__container {
24805
+ overflow-x: hidden;
24806
+ overflow-y: auto;
24807
+ }.v-speed-dial__content {
24808
+ gap: 8px;
24809
+ }
24810
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24811
+ flex-direction: row;
24812
+ }
24813
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24814
+ flex-direction: row-reverse;
24815
+ }
24816
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24817
+ flex-direction: column-reverse;
24818
+ }
24819
+ .v-speed-dial__content > *:nth-child(1) {
24820
+ transition-delay: 0s;
24821
+ }
24822
+ .v-speed-dial__content > *:nth-child(2) {
24823
+ transition-delay: 0.05s;
24824
+ }
24825
+ .v-speed-dial__content > *:nth-child(3) {
24826
+ transition-delay: 0.1s;
24827
+ }
24828
+ .v-speed-dial__content > *:nth-child(4) {
24829
+ transition-delay: 0.15s;
24830
+ }
24831
+ .v-speed-dial__content > *:nth-child(5) {
24832
+ transition-delay: 0.2s;
24833
+ }
24834
+ .v-speed-dial__content > *:nth-child(6) {
24835
+ transition-delay: 0.25s;
24836
+ }
24837
+ .v-speed-dial__content > *:nth-child(7) {
24838
+ transition-delay: 0.3s;
24839
+ }
24840
+ .v-speed-dial__content > *:nth-child(8) {
24841
+ transition-delay: 0.35s;
24842
+ }
24843
+ .v-speed-dial__content > *:nth-child(9) {
24844
+ transition-delay: 0.4s;
24845
+ }
24846
+ .v-speed-dial__content > *:nth-child(10) {
24847
+ transition-delay: 0.45s;
24807
24848
  }.v-stepper.v-sheet {
24808
24849
  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));
24809
24850
  border-radius: 4px;
@@ -24948,25 +24989,163 @@ html.v-overlay-scroll-blocked {
24948
24989
  .v-stepper--alt-labels .v-stepper-item__subtitle {
24949
24990
  text-align: center;
24950
24991
  }
24951
- .v-stepper--mobile .v-stepper-item__subtitle {
24952
- display: none;
24992
+ .v-stepper--mobile .v-stepper-item__subtitle {
24993
+ display: none;
24994
+ }
24995
+
24996
+ .v-stepper-item__overlay {
24997
+ background-color: currentColor;
24998
+ border-radius: inherit;
24999
+ opacity: 0;
25000
+ transition: opacity 0.2s ease-in-out;
25001
+ }
25002
+
25003
+ .v-stepper-item__overlay,
25004
+ .v-stepper-item__underlay {
25005
+ position: absolute;
25006
+ top: 0;
25007
+ left: 0;
25008
+ width: 100%;
25009
+ height: 100%;
25010
+ pointer-events: none;
25011
+ }.v-table {
25012
+ background: rgb(var(--v-theme-surface));
25013
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25014
+ font-size: 0.875rem;
25015
+ transition-duration: 0.28s;
25016
+ transition-property: box-shadow, opacity, background, height;
25017
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25018
+ }
25019
+ .v-table .v-table-divider {
25020
+ border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25021
+ }
25022
+ .v-table .v-table__wrapper > table > thead > tr > th {
25023
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25024
+ }
25025
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25026
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25027
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25028
+ }
25029
+ .v-table .v-table__wrapper > table > tfoot > tr > td,
25030
+ .v-table .v-table__wrapper > table > tfoot > tr > th {
25031
+ border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25032
+ }
25033
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25034
+ position: relative;
25035
+ }
25036
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25037
+ content: "";
25038
+ position: absolute;
25039
+ top: 0;
25040
+ left: 0;
25041
+ width: 100%;
25042
+ height: 100%;
25043
+ background: rgba(var(--v-border-color), var(--v-hover-opacity));
25044
+ pointer-events: none;
25045
+ }
25046
+ .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25047
+ background: rgb(var(--v-theme-surface));
25048
+ box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25049
+ z-index: 1;
25050
+ }
25051
+ .v-table.v-table--fixed-footer > tfoot > tr > th,
25052
+ .v-table.v-table--fixed-footer > tfoot > tr > td {
25053
+ background: rgb(var(--v-theme-surface));
25054
+ box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25055
+ }
25056
+
25057
+ .v-table {
25058
+ border-radius: inherit;
25059
+ line-height: 1.5;
25060
+ max-width: 100%;
25061
+ display: flex;
25062
+ flex-direction: column;
25063
+ }
25064
+ .v-table > .v-table__wrapper > table {
25065
+ width: 100%;
25066
+ border-spacing: 0;
25067
+ }
25068
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25069
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25070
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25071
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25072
+ .v-table > .v-table__wrapper > table > tfoot > tr > td,
25073
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25074
+ padding: 0 16px;
25075
+ transition-duration: 0.28s;
25076
+ transition-property: box-shadow, opacity, background, height;
25077
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25078
+ }
25079
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25080
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25081
+ .v-table > .v-table__wrapper > table > tfoot > tr > td {
25082
+ height: var(--v-table-row-height);
25083
+ }
25084
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25085
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25086
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25087
+ height: var(--v-table-header-height);
25088
+ font-weight: 500;
25089
+ -webkit-user-select: none;
25090
+ user-select: none;
25091
+ text-align: start;
25092
+ }
25093
+ .v-table--density-default {
25094
+ --v-table-header-height: 56px;
25095
+ --v-table-row-height: 52px;
25096
+ }
25097
+
25098
+ .v-table--density-comfortable {
25099
+ --v-table-header-height: 48px;
25100
+ --v-table-row-height: 44px;
25101
+ }
25102
+
25103
+ .v-table--density-compact {
25104
+ --v-table-header-height: 40px;
25105
+ --v-table-row-height: 36px;
25106
+ }
25107
+
25108
+ .v-table__wrapper {
25109
+ border-radius: inherit;
25110
+ overflow: auto;
25111
+ flex: 1 1 auto;
25112
+ }
25113
+
25114
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25115
+ border-top-left-radius: 0;
25116
+ }
25117
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25118
+ border-top-right-radius: 0;
25119
+ }
25120
+
25121
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25122
+ border-bottom-left-radius: 0;
25123
+ }
25124
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25125
+ border-bottom-right-radius: 0;
25126
+ }
25127
+
25128
+ .v-table--fixed-height > .v-table__wrapper {
25129
+ overflow-y: auto;
25130
+ }
25131
+
25132
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25133
+ position: sticky;
25134
+ top: 0;
25135
+ z-index: 2;
25136
+ }
25137
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25138
+ border-bottom: 0px !important;
24953
25139
  }
24954
25140
 
24955
- .v-stepper-item__overlay {
24956
- background-color: currentColor;
24957
- border-radius: inherit;
24958
- opacity: 0;
24959
- transition: opacity 0.2s ease-in-out;
25141
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25142
+ position: sticky;
25143
+ bottom: 0;
25144
+ z-index: 1;
24960
25145
  }
24961
-
24962
- .v-stepper-item__overlay,
24963
- .v-stepper-item__underlay {
24964
- position: absolute;
24965
- top: 0;
24966
- left: 0;
24967
- width: 100%;
24968
- height: 100%;
24969
- pointer-events: none;
25146
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25147
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25148
+ border-top: 0px !important;
24970
25149
  }.v-system-bar {
24971
25150
  align-items: center;
24972
25151
  display: flex;
@@ -25004,47 +25183,6 @@ html.v-overlay-scroll-blocked {
25004
25183
  }
25005
25184
  .v-system-bar:not(.v-system-bar--absolute) {
25006
25185
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25007
- }.v-speed-dial__content {
25008
- gap: 8px;
25009
- }
25010
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
25011
- flex-direction: row;
25012
- }
25013
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
25014
- flex-direction: row-reverse;
25015
- }
25016
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
25017
- flex-direction: column-reverse;
25018
- }
25019
- .v-speed-dial__content > *:nth-child(1) {
25020
- transition-delay: 0s;
25021
- }
25022
- .v-speed-dial__content > *:nth-child(2) {
25023
- transition-delay: 0.05s;
25024
- }
25025
- .v-speed-dial__content > *:nth-child(3) {
25026
- transition-delay: 0.1s;
25027
- }
25028
- .v-speed-dial__content > *:nth-child(4) {
25029
- transition-delay: 0.15s;
25030
- }
25031
- .v-speed-dial__content > *:nth-child(5) {
25032
- transition-delay: 0.2s;
25033
- }
25034
- .v-speed-dial__content > *:nth-child(6) {
25035
- transition-delay: 0.25s;
25036
- }
25037
- .v-speed-dial__content > *:nth-child(7) {
25038
- transition-delay: 0.3s;
25039
- }
25040
- .v-speed-dial__content > *:nth-child(8) {
25041
- transition-delay: 0.35s;
25042
- }
25043
- .v-speed-dial__content > *:nth-child(9) {
25044
- transition-delay: 0.4s;
25045
- }
25046
- .v-speed-dial__content > *:nth-child(10) {
25047
- transition-delay: 0.45s;
25048
25186
  }.v-switch .v-label {
25049
25187
  padding-inline-start: 10px;
25050
25188
  }
@@ -25225,173 +25363,6 @@ html.v-overlay-scroll-blocked {
25225
25363
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25226
25364
  border-width: 0;
25227
25365
  }
25228
- }.v-table {
25229
- background: rgb(var(--v-theme-surface));
25230
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25231
- font-size: 0.875rem;
25232
- transition-duration: 0.28s;
25233
- transition-property: box-shadow, opacity, background, height;
25234
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25235
- }
25236
- .v-table .v-table-divider {
25237
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25238
- }
25239
- .v-table .v-table__wrapper > table > thead > tr > th {
25240
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25241
- }
25242
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25243
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25244
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25245
- }
25246
- .v-table .v-table__wrapper > table > tfoot > tr > td,
25247
- .v-table .v-table__wrapper > table > tfoot > tr > th {
25248
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25249
- }
25250
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25251
- position: relative;
25252
- }
25253
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25254
- content: "";
25255
- position: absolute;
25256
- top: 0;
25257
- left: 0;
25258
- width: 100%;
25259
- height: 100%;
25260
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
25261
- pointer-events: none;
25262
- }
25263
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25264
- background: rgb(var(--v-theme-surface));
25265
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25266
- z-index: 1;
25267
- }
25268
- .v-table.v-table--fixed-footer > tfoot > tr > th,
25269
- .v-table.v-table--fixed-footer > tfoot > tr > td {
25270
- background: rgb(var(--v-theme-surface));
25271
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25272
- }
25273
-
25274
- .v-table {
25275
- border-radius: inherit;
25276
- line-height: 1.5;
25277
- max-width: 100%;
25278
- display: flex;
25279
- flex-direction: column;
25280
- }
25281
- .v-table > .v-table__wrapper > table {
25282
- width: 100%;
25283
- border-spacing: 0;
25284
- }
25285
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25286
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25287
- .v-table > .v-table__wrapper > table > thead > tr > td,
25288
- .v-table > .v-table__wrapper > table > thead > tr > th,
25289
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
25290
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25291
- padding: 0 16px;
25292
- transition-duration: 0.28s;
25293
- transition-property: box-shadow, opacity, background, height;
25294
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25295
- }
25296
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25297
- .v-table > .v-table__wrapper > table > thead > tr > td,
25298
- .v-table > .v-table__wrapper > table > tfoot > tr > td {
25299
- height: var(--v-table-row-height);
25300
- }
25301
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25302
- .v-table > .v-table__wrapper > table > thead > tr > th,
25303
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25304
- height: var(--v-table-header-height);
25305
- font-weight: 500;
25306
- -webkit-user-select: none;
25307
- user-select: none;
25308
- text-align: start;
25309
- }
25310
- .v-table--density-default {
25311
- --v-table-header-height: 56px;
25312
- --v-table-row-height: 52px;
25313
- }
25314
-
25315
- .v-table--density-comfortable {
25316
- --v-table-header-height: 48px;
25317
- --v-table-row-height: 44px;
25318
- }
25319
-
25320
- .v-table--density-compact {
25321
- --v-table-header-height: 40px;
25322
- --v-table-row-height: 36px;
25323
- }
25324
-
25325
- .v-table__wrapper {
25326
- border-radius: inherit;
25327
- overflow: auto;
25328
- flex: 1 1 auto;
25329
- }
25330
-
25331
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25332
- border-top-left-radius: 0;
25333
- }
25334
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25335
- border-top-right-radius: 0;
25336
- }
25337
-
25338
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25339
- border-bottom-left-radius: 0;
25340
- }
25341
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25342
- border-bottom-right-radius: 0;
25343
- }
25344
-
25345
- .v-table--fixed-height > .v-table__wrapper {
25346
- overflow-y: auto;
25347
- }
25348
-
25349
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25350
- position: sticky;
25351
- top: 0;
25352
- z-index: 2;
25353
- }
25354
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25355
- border-bottom: 0px !important;
25356
- }
25357
-
25358
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25359
- position: sticky;
25360
- bottom: 0;
25361
- z-index: 1;
25362
- }
25363
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25364
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25365
- border-top: 0px !important;
25366
- }.v-tab.v-tab.v-btn {
25367
- height: var(--v-tabs-height);
25368
- border-radius: 0;
25369
- min-width: 90px;
25370
- }
25371
- .v-slide-group--horizontal .v-tab {
25372
- max-width: 360px;
25373
- }
25374
- .v-slide-group--vertical .v-tab {
25375
- justify-content: start;
25376
- }
25377
-
25378
- .v-tab__slider {
25379
- position: absolute;
25380
- bottom: 0;
25381
- left: 0;
25382
- height: 2px;
25383
- width: 100%;
25384
- background: currentColor;
25385
- pointer-events: none;
25386
- opacity: 0;
25387
- }
25388
- .v-tab--selected .v-tab__slider {
25389
- opacity: 1;
25390
- }
25391
- .v-slide-group--vertical .v-tab__slider {
25392
- top: 0;
25393
- height: 100%;
25394
- width: 2px;
25395
25366
  }.v-tabs {
25396
25367
  display: flex;
25397
25368
  height: var(--v-tabs-height);
@@ -25458,6 +25429,35 @@ html.v-overlay-scroll-blocked {
25458
25429
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25459
25430
  margin-inline-end: 52px;
25460
25431
  }
25432
+ }.v-tab.v-tab.v-btn {
25433
+ height: var(--v-tabs-height);
25434
+ border-radius: 0;
25435
+ min-width: 90px;
25436
+ }
25437
+ .v-slide-group--horizontal .v-tab {
25438
+ max-width: 360px;
25439
+ }
25440
+ .v-slide-group--vertical .v-tab {
25441
+ justify-content: start;
25442
+ }
25443
+
25444
+ .v-tab__slider {
25445
+ position: absolute;
25446
+ bottom: 0;
25447
+ left: 0;
25448
+ height: 2px;
25449
+ width: 100%;
25450
+ background: currentColor;
25451
+ pointer-events: none;
25452
+ opacity: 0;
25453
+ }
25454
+ .v-tab--selected .v-tab__slider {
25455
+ opacity: 1;
25456
+ }
25457
+ .v-slide-group--vertical .v-tab__slider {
25458
+ top: 0;
25459
+ height: 100%;
25460
+ width: 2px;
25461
25461
  }/* region BLOCK */
25462
25462
  .v-text-field input {
25463
25463
  color: inherit;
@@ -25564,138 +25564,6 @@ html.v-overlay-scroll-blocked {
25564
25564
  }
25565
25565
  .v-textarea textarea:invalid {
25566
25566
  box-shadow: none;
25567
- }.v-toolbar {
25568
- align-items: flex-start;
25569
- display: flex;
25570
- flex: none;
25571
- flex-direction: column;
25572
- justify-content: space-between;
25573
- max-width: 100%;
25574
- position: relative;
25575
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25576
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25577
- width: 100%;
25578
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25579
- border-style: solid;
25580
- border-width: 0;
25581
- 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));
25582
- border-radius: 0;
25583
- background: rgb(var(--v-theme-surface-light));
25584
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25585
- }
25586
- .v-toolbar--border {
25587
- border-width: thin;
25588
- box-shadow: none;
25589
- }
25590
- .v-toolbar--absolute {
25591
- position: absolute;
25592
- }
25593
- .v-toolbar--collapse {
25594
- max-width: 112px;
25595
- overflow: hidden;
25596
- border-end-end-radius: 24px;
25597
- }
25598
- .v-toolbar--collapse .v-toolbar-title {
25599
- display: none;
25600
- }
25601
- .v-toolbar--flat {
25602
- 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));
25603
- }
25604
- .v-toolbar--floating {
25605
- display: inline-flex;
25606
- }
25607
- .v-toolbar--rounded {
25608
- border-radius: 4px;
25609
- }
25610
-
25611
- .v-toolbar__content,
25612
- .v-toolbar__extension {
25613
- align-items: center;
25614
- display: flex;
25615
- flex: 0 0 auto;
25616
- position: relative;
25617
- transition: inherit;
25618
- width: 100%;
25619
- }
25620
-
25621
- .v-toolbar__content {
25622
- overflow: hidden;
25623
- }
25624
- .v-toolbar__content > .v-btn:first-child {
25625
- margin-inline-start: 4px;
25626
- }
25627
- .v-toolbar__content > .v-btn:last-child {
25628
- margin-inline-end: 4px;
25629
- }
25630
- .v-toolbar__content > .v-toolbar-title {
25631
- margin-inline-start: 20px;
25632
- }
25633
- .v-toolbar--density-prominent .v-toolbar__content {
25634
- align-items: flex-start;
25635
- }
25636
-
25637
- .v-toolbar__image {
25638
- position: absolute;
25639
- top: 0;
25640
- left: 0;
25641
- width: 100%;
25642
- height: 100%;
25643
- display: flex;
25644
- opacity: var(--v-toolbar-image-opacity, 1);
25645
- transition-property: opacity;
25646
- }
25647
-
25648
- .v-toolbar__prepend,
25649
- .v-toolbar__append {
25650
- align-items: center;
25651
- align-self: stretch;
25652
- display: flex;
25653
- }
25654
-
25655
- .v-toolbar__prepend {
25656
- margin-inline: 4px auto;
25657
- }
25658
-
25659
- .v-toolbar__append {
25660
- margin-inline: auto 4px;
25661
- }
25662
-
25663
- .v-toolbar-title {
25664
- flex: 1 1;
25665
- font-size: 1.25rem;
25666
- min-width: 0;
25667
- font-size: 1.25rem;
25668
- font-weight: 400;
25669
- letter-spacing: 0;
25670
- line-height: 1.75rem;
25671
- text-transform: none;
25672
- }
25673
- .v-toolbar--density-prominent .v-toolbar-title {
25674
- align-self: flex-end;
25675
- padding-bottom: 6px;
25676
- font-size: 1.5rem;
25677
- font-weight: 400;
25678
- letter-spacing: 0;
25679
- line-height: 2.25rem;
25680
- text-transform: none;
25681
- }
25682
-
25683
- .v-toolbar-title__placeholder {
25684
- overflow: hidden;
25685
- text-overflow: ellipsis;
25686
- white-space: nowrap;
25687
- }
25688
-
25689
- .v-toolbar-items {
25690
- display: flex;
25691
- height: inherit;
25692
- align-self: stretch;
25693
- }
25694
- .v-toolbar-items > .v-btn {
25695
- border-radius: 0;
25696
- }.v-theme-provider {
25697
- background: rgb(var(--v-theme-background));
25698
- color: rgb(var(--v-theme-on-background));
25699
25567
  }.v-timeline .v-timeline-divider__dot {
25700
25568
  background: rgb(var(--v-theme-surface-light));
25701
25569
  }
@@ -26033,85 +25901,226 @@ html.v-overlay-scroll-blocked {
26033
25901
  .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__body {
26034
25902
  padding-inline: 12px;
26035
25903
  }
26036
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
26037
- padding-inline: 12px;
25904
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
25905
+ padding-inline: 12px;
25906
+ }
25907
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
25908
+ justify-content: center;
25909
+ }
25910
+
25911
+ .v-timeline--vertical.v-timeline--align-center {
25912
+ align-items: center;
25913
+ }
25914
+ .v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
25915
+ justify-content: center;
25916
+ }
25917
+
25918
+ .v-timeline--align-start {
25919
+ --v-timeline-line-size-base: 100%;
25920
+ --v-timeline-line-size-offset: 12px;
25921
+ }
25922
+ .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
25923
+ --v-timeline-line-size-offset: 24px;
25924
+ }
25925
+ .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
25926
+ --v-timeline-line-size-offset: -12px;
25927
+ }
25928
+ .v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
25929
+ --v-timeline-line-size-offset: 0px;
25930
+ }
25931
+ .v-timeline--horizontal.v-timeline--align-start {
25932
+ justify-items: flex-start;
25933
+ }
25934
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
25935
+ justify-content: flex-start;
25936
+ }
25937
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
25938
+ width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
25939
+ }
25940
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
25941
+ width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
25942
+ }
25943
+
25944
+ .v-timeline--vertical.v-timeline--align-start {
25945
+ align-items: flex-start;
25946
+ }
25947
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
25948
+ justify-content: flex-start;
25949
+ }
25950
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
25951
+ height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
25952
+ }
25953
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
25954
+ height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
25955
+ }
25956
+
25957
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
25958
+ display: none;
25959
+ }
25960
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
25961
+ --v-timeline-line-size-offset: 12px;
25962
+ }
25963
+ .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
25964
+ padding-block-start: 0;
25965
+ }
25966
+
25967
+ .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 {
25968
+ padding-inline-start: 0;
25969
+ }
25970
+
25971
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
25972
+ display: none;
25973
+ }
25974
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
25975
+ --v-timeline-line-size-offset: 12px;
25976
+ }
25977
+ .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 {
25978
+ padding-block-end: 0;
25979
+ }
25980
+
25981
+ .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 {
25982
+ padding-inline-end: 0;
25983
+ }.v-theme-provider {
25984
+ background: rgb(var(--v-theme-background));
25985
+ color: rgb(var(--v-theme-on-background));
25986
+ }.v-toolbar {
25987
+ align-items: flex-start;
25988
+ display: flex;
25989
+ flex: none;
25990
+ flex-direction: column;
25991
+ justify-content: space-between;
25992
+ max-width: 100%;
25993
+ position: relative;
25994
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25995
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25996
+ width: 100%;
25997
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25998
+ border-style: solid;
25999
+ border-width: 0;
26000
+ 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));
26001
+ border-radius: 0;
26002
+ background: rgb(var(--v-theme-surface-light));
26003
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26004
+ }
26005
+ .v-toolbar--border {
26006
+ border-width: thin;
26007
+ box-shadow: none;
26008
+ }
26009
+ .v-toolbar--absolute {
26010
+ position: absolute;
26011
+ }
26012
+ .v-toolbar--collapse {
26013
+ max-width: 112px;
26014
+ overflow: hidden;
26015
+ border-end-end-radius: 24px;
26016
+ }
26017
+ .v-toolbar--collapse .v-toolbar-title {
26018
+ display: none;
26019
+ }
26020
+ .v-toolbar--flat {
26021
+ 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));
26038
26022
  }
26039
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
26040
- justify-content: center;
26023
+ .v-toolbar--floating {
26024
+ display: inline-flex;
26025
+ }
26026
+ .v-toolbar--rounded {
26027
+ border-radius: 4px;
26041
26028
  }
26042
26029
 
26043
- .v-timeline--vertical.v-timeline--align-center {
26030
+ .v-toolbar__content,
26031
+ .v-toolbar__extension {
26044
26032
  align-items: center;
26045
- }
26046
- .v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
26047
- justify-content: center;
26033
+ display: flex;
26034
+ flex: 0 0 auto;
26035
+ position: relative;
26036
+ transition: inherit;
26037
+ width: 100%;
26048
26038
  }
26049
26039
 
26050
- .v-timeline--align-start {
26051
- --v-timeline-line-size-base: 100%;
26052
- --v-timeline-line-size-offset: 12px;
26053
- }
26054
- .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
26055
- --v-timeline-line-size-offset: 24px;
26056
- }
26057
- .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
26058
- --v-timeline-line-size-offset: -12px;
26059
- }
26060
- .v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
26061
- --v-timeline-line-size-offset: 0px;
26062
- }
26063
- .v-timeline--horizontal.v-timeline--align-start {
26064
- justify-items: flex-start;
26040
+ .v-toolbar__content {
26041
+ overflow: hidden;
26065
26042
  }
26066
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
26067
- justify-content: flex-start;
26043
+ .v-toolbar__content > .v-btn:first-child {
26044
+ margin-inline-start: 4px;
26068
26045
  }
26069
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26070
- width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26046
+ .v-toolbar__content > .v-btn:last-child {
26047
+ margin-inline-end: 4px;
26071
26048
  }
26072
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26073
- width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26049
+ .v-toolbar__content > .v-toolbar-title {
26050
+ margin-inline-start: 20px;
26074
26051
  }
26075
-
26076
- .v-timeline--vertical.v-timeline--align-start {
26052
+ .v-toolbar--density-prominent .v-toolbar__content {
26077
26053
  align-items: flex-start;
26078
26054
  }
26079
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
26080
- justify-content: flex-start;
26055
+
26056
+ .v-toolbar__image {
26057
+ position: absolute;
26058
+ top: 0;
26059
+ left: 0;
26060
+ width: 100%;
26061
+ height: 100%;
26062
+ display: flex;
26063
+ opacity: var(--v-toolbar-image-opacity, 1);
26064
+ transition-property: opacity;
26081
26065
  }
26082
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26083
- height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26066
+
26067
+ .v-toolbar__prepend,
26068
+ .v-toolbar__append {
26069
+ align-items: center;
26070
+ align-self: stretch;
26071
+ display: flex;
26084
26072
  }
26085
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26086
- height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26073
+
26074
+ .v-toolbar__prepend {
26075
+ margin-inline: 4px auto;
26087
26076
  }
26088
26077
 
26089
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
26090
- display: none;
26078
+ .v-toolbar__append {
26079
+ margin-inline: auto 4px;
26091
26080
  }
26092
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
26093
- --v-timeline-line-size-offset: 12px;
26081
+
26082
+ .v-toolbar-title {
26083
+ flex: 1 1;
26084
+ font-size: 1.25rem;
26085
+ min-width: 0;
26086
+ font-size: 1.25rem;
26087
+ font-weight: 400;
26088
+ letter-spacing: 0;
26089
+ line-height: 1.75rem;
26090
+ text-transform: none;
26094
26091
  }
26095
- .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26096
- padding-block-start: 0;
26092
+ .v-toolbar--density-prominent .v-toolbar-title {
26093
+ align-self: flex-end;
26094
+ padding-bottom: 6px;
26095
+ font-size: 1.5rem;
26096
+ font-weight: 400;
26097
+ letter-spacing: 0;
26098
+ line-height: 2.25rem;
26099
+ text-transform: none;
26097
26100
  }
26098
26101
 
26099
- .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 {
26100
- padding-inline-start: 0;
26102
+ .v-toolbar-title__placeholder {
26103
+ overflow: hidden;
26104
+ text-overflow: ellipsis;
26105
+ white-space: nowrap;
26101
26106
  }
26102
26107
 
26103
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
26104
- display: none;
26105
- }
26106
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
26107
- --v-timeline-line-size-offset: 12px;
26108
+ .v-toolbar-items {
26109
+ display: flex;
26110
+ height: inherit;
26111
+ align-self: stretch;
26108
26112
  }
26109
- .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 {
26110
- padding-block-end: 0;
26113
+ .v-toolbar-items > .v-btn {
26114
+ border-radius: 0;
26115
+ }.v-virtual-scroll {
26116
+ display: block;
26117
+ flex: 1 1 auto;
26118
+ max-width: 100%;
26119
+ overflow: auto;
26120
+ position: relative;
26111
26121
  }
26112
-
26113
- .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26114
- padding-inline-end: 0;
26122
+ .v-virtual-scroll__container {
26123
+ display: block;
26115
26124
  }.v-tooltip > .v-overlay__content {
26116
26125
  background: rgb(var(--v-theme-surface-variant));
26117
26126
  color: rgb(var(--v-theme-on-surface-variant));
@@ -26134,15 +26143,6 @@ html.v-overlay-scroll-blocked {
26134
26143
  .v-tooltip > .v-overlay__content[class*=leave-active] {
26135
26144
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26136
26145
  transition-duration: 75ms;
26137
- }.v-virtual-scroll {
26138
- display: block;
26139
- flex: 1 1 auto;
26140
- max-width: 100%;
26141
- overflow: auto;
26142
- position: relative;
26143
- }
26144
- .v-virtual-scroll__container {
26145
- display: block;
26146
26146
  }.v-window {
26147
26147
  overflow: hidden;
26148
26148
  }
@@ -26213,6 +26213,34 @@ html.v-overlay-scroll-blocked {
26213
26213
  }
26214
26214
  .v-window-y-reverse-transition-leave-to {
26215
26215
  transform: translateY(100%);
26216
+ }.v-color-picker-edit {
26217
+ display: flex;
26218
+ margin-top: 24px;
26219
+ }
26220
+
26221
+ .v-color-picker-edit__input {
26222
+ width: 100%;
26223
+ display: flex;
26224
+ flex-wrap: wrap;
26225
+ justify-content: center;
26226
+ text-align: center;
26227
+ }
26228
+ .v-color-picker-edit__input:not(:last-child) {
26229
+ margin-inline-end: 8px;
26230
+ }
26231
+ .v-color-picker-edit__input input {
26232
+ border-radius: 4px;
26233
+ margin-bottom: 8px;
26234
+ min-width: 0;
26235
+ outline: none;
26236
+ text-align: center;
26237
+ width: 100%;
26238
+ height: 32px;
26239
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26240
+ color: rgba(var(--v-theme-on-surface));
26241
+ }
26242
+ .v-color-picker-edit__input span {
26243
+ font-size: 0.75rem;
26216
26244
  }.v-color-picker-canvas {
26217
26245
  display: flex;
26218
26246
  position: relative;
@@ -26235,34 +26263,41 @@ html.v-overlay-scroll-blocked {
26235
26263
  }
26236
26264
  .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26237
26265
  will-change: transform;
26238
- }.v-color-picker-edit {
26239
- display: flex;
26240
- margin-top: 24px;
26266
+ }.v-color-picker-swatches {
26267
+ overflow-y: auto;
26241
26268
  }
26242
-
26243
- .v-color-picker-edit__input {
26244
- width: 100%;
26269
+ .v-color-picker-swatches > div {
26245
26270
  display: flex;
26246
26271
  flex-wrap: wrap;
26247
26272
  justify-content: center;
26248
- text-align: center;
26273
+ padding: 8px;
26249
26274
  }
26250
- .v-color-picker-edit__input:not(:last-child) {
26251
- margin-inline-end: 8px;
26275
+
26276
+ .v-color-picker-swatches__swatch {
26277
+ display: flex;
26278
+ flex-direction: column;
26279
+ margin-bottom: 10px;
26252
26280
  }
26253
- .v-color-picker-edit__input input {
26254
- border-radius: 4px;
26255
- margin-bottom: 8px;
26256
- min-width: 0;
26257
- outline: none;
26258
- text-align: center;
26259
- width: 100%;
26260
- height: 32px;
26261
- background: rgba(var(--v-theme-surface-variant), 0.2);
26262
- color: rgba(var(--v-theme-on-surface));
26281
+
26282
+ .v-color-picker-swatches__color {
26283
+ position: relative;
26284
+ height: 18px;
26285
+ max-height: 18px;
26286
+ width: 45px;
26287
+ margin: 2px 4px;
26288
+ border-radius: 2px;
26289
+ -webkit-user-select: none;
26290
+ user-select: none;
26291
+ overflow: hidden;
26292
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26293
+ cursor: pointer;
26263
26294
  }
26264
- .v-color-picker-edit__input span {
26265
- font-size: 0.75rem;
26295
+ .v-color-picker-swatches__color > div {
26296
+ display: flex;
26297
+ align-items: center;
26298
+ justify-content: center;
26299
+ width: 100%;
26300
+ height: 100%;
26266
26301
  }.v-color-picker-preview__alpha .v-slider-track__background {
26267
26302
  background-color: transparent !important;
26268
26303
  }
@@ -26333,41 +26368,6 @@ html.v-overlay-scroll-blocked {
26333
26368
  .v-color-picker-preview__eye-dropper {
26334
26369
  position: relative;
26335
26370
  margin-right: 12px;
26336
- }.v-color-picker-swatches {
26337
- overflow-y: auto;
26338
- }
26339
- .v-color-picker-swatches > div {
26340
- display: flex;
26341
- flex-wrap: wrap;
26342
- justify-content: center;
26343
- padding: 8px;
26344
- }
26345
-
26346
- .v-color-picker-swatches__swatch {
26347
- display: flex;
26348
- flex-direction: column;
26349
- margin-bottom: 10px;
26350
- }
26351
-
26352
- .v-color-picker-swatches__color {
26353
- position: relative;
26354
- height: 18px;
26355
- max-height: 18px;
26356
- width: 45px;
26357
- margin: 2px 4px;
26358
- border-radius: 2px;
26359
- -webkit-user-select: none;
26360
- user-select: none;
26361
- overflow: hidden;
26362
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26363
- cursor: pointer;
26364
- }
26365
- .v-color-picker-swatches__color > div {
26366
- display: flex;
26367
- align-items: center;
26368
- justify-content: center;
26369
- width: 100%;
26370
- height: 100%;
26371
26371
  }.v-slider-thumb {
26372
26372
  touch-action: none;
26373
26373
  color: rgb(var(--v-theme-surface-variant));