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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +39 -7
  3. package/dist/json/importMap-labs.json +12 -12
  4. package/dist/json/importMap.json +146 -146
  5. package/dist/json/tags.json +8 -0
  6. package/dist/json/web-types.json +84 -12
  7. package/dist/vuetify-labs.css +2617 -2614
  8. package/dist/vuetify-labs.d.ts +78 -18
  9. package/dist/vuetify-labs.esm.js +27 -8
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +27 -8
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +723 -720
  14. package/dist/vuetify.d.ts +85 -55
  15. package/dist/vuetify.esm.js +21 -8
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +21 -8
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +9 -9
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VDivider/VDivider.mjs +1 -1
  23. package/lib/components/VDivider/VDivider.mjs.map +1 -1
  24. package/lib/components/VSnackbar/VSnackbar.css +1 -1
  25. package/lib/components/VSnackbar/VSnackbar.sass +1 -1
  26. package/lib/components/VStepper/VStepper.mjs +18 -4
  27. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  28. package/lib/components/VStepper/VStepperItem.css +3 -0
  29. package/lib/components/VStepper/VStepperItem.sass +3 -0
  30. package/lib/components/VStepper/index.d.mts +43 -9
  31. package/lib/components/index.d.mts +39 -9
  32. package/lib/entry-bundler.mjs +1 -1
  33. package/lib/framework.mjs +1 -1
  34. package/lib/index.d.mts +46 -46
  35. package/lib/labs/VNumberInput/VNumberInput.mjs +7 -0
  36. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  37. package/lib/labs/VStepperVertical/index.d.mts +43 -9
  38. package/lib/labs/components.d.mts +3752 -3718
  39. package/package.json +1 -1
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-27
2
+ * Vuetify v3.6.7-master.2024-05-29
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17777,6 +17777,77 @@ html.overflow-y-hidden {
17777
17777
  .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17778
17778
  opacity: var(--v-high-emphasis-opacity);
17779
17779
  transform: rotate(180deg);
17780
+ }.v-badge {
17781
+ display: inline-block;
17782
+ line-height: 1;
17783
+ }
17784
+
17785
+ .v-badge__badge {
17786
+ align-items: center;
17787
+ display: inline-flex;
17788
+ border-radius: 10px;
17789
+ font-size: 0.75rem;
17790
+ font-weight: 500;
17791
+ height: 1.25rem;
17792
+ justify-content: center;
17793
+ min-width: 20px;
17794
+ padding: 4px 6px;
17795
+ pointer-events: auto;
17796
+ position: absolute;
17797
+ text-align: center;
17798
+ text-indent: 0;
17799
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17800
+ white-space: nowrap;
17801
+ background: rgb(var(--v-theme-surface-variant));
17802
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17803
+ }
17804
+ .v-badge--bordered .v-badge__badge::after {
17805
+ border-radius: inherit;
17806
+ border-style: solid;
17807
+ border-width: 2px;
17808
+ bottom: 0;
17809
+ color: rgb(var(--v-theme-background));
17810
+ content: "";
17811
+ left: 0;
17812
+ position: absolute;
17813
+ right: 0;
17814
+ top: 0;
17815
+ transform: scale(1.05);
17816
+ }
17817
+ .v-badge--dot .v-badge__badge {
17818
+ border-radius: 4.5px;
17819
+ height: 9px;
17820
+ min-width: 0;
17821
+ padding: 0;
17822
+ width: 9px;
17823
+ }
17824
+ .v-badge--dot .v-badge__badge::after {
17825
+ border-width: 1.5px;
17826
+ }
17827
+ .v-badge--inline .v-badge__badge {
17828
+ position: relative;
17829
+ vertical-align: middle;
17830
+ }
17831
+ .v-badge__badge .v-icon {
17832
+ color: inherit;
17833
+ font-size: 0.75rem;
17834
+ margin: 0 -2px;
17835
+ }
17836
+ .v-badge__badge img,
17837
+ .v-badge__badge .v-img {
17838
+ height: 100%;
17839
+ width: 100%;
17840
+ }
17841
+
17842
+ .v-badge__wrapper {
17843
+ display: flex;
17844
+ position: relative;
17845
+ }
17846
+ .v-badge--inline .v-badge__wrapper {
17847
+ align-items: center;
17848
+ display: inline-flex;
17849
+ justify-content: center;
17850
+ margin: 0 4px;
17780
17851
  }.v-avatar {
17781
17852
  flex: none;
17782
17853
  align-items: center;
@@ -17872,77 +17943,6 @@ html.overflow-y-hidden {
17872
17943
  .v-avatar .v-img {
17873
17944
  height: 100%;
17874
17945
  width: 100%;
17875
- }.v-badge {
17876
- display: inline-block;
17877
- line-height: 1;
17878
- }
17879
-
17880
- .v-badge__badge {
17881
- align-items: center;
17882
- display: inline-flex;
17883
- border-radius: 10px;
17884
- font-size: 0.75rem;
17885
- font-weight: 500;
17886
- height: 1.25rem;
17887
- justify-content: center;
17888
- min-width: 20px;
17889
- padding: 4px 6px;
17890
- pointer-events: auto;
17891
- position: absolute;
17892
- text-align: center;
17893
- text-indent: 0;
17894
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17895
- white-space: nowrap;
17896
- background: rgb(var(--v-theme-surface-variant));
17897
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17898
- }
17899
- .v-badge--bordered .v-badge__badge::after {
17900
- border-radius: inherit;
17901
- border-style: solid;
17902
- border-width: 2px;
17903
- bottom: 0;
17904
- color: rgb(var(--v-theme-background));
17905
- content: "";
17906
- left: 0;
17907
- position: absolute;
17908
- right: 0;
17909
- top: 0;
17910
- transform: scale(1.05);
17911
- }
17912
- .v-badge--dot .v-badge__badge {
17913
- border-radius: 4.5px;
17914
- height: 9px;
17915
- min-width: 0;
17916
- padding: 0;
17917
- width: 9px;
17918
- }
17919
- .v-badge--dot .v-badge__badge::after {
17920
- border-width: 1.5px;
17921
- }
17922
- .v-badge--inline .v-badge__badge {
17923
- position: relative;
17924
- vertical-align: middle;
17925
- }
17926
- .v-badge__badge .v-icon {
17927
- color: inherit;
17928
- font-size: 0.75rem;
17929
- margin: 0 -2px;
17930
- }
17931
- .v-badge__badge img,
17932
- .v-badge__badge .v-img {
17933
- height: 100%;
17934
- width: 100%;
17935
- }
17936
-
17937
- .v-badge__wrapper {
17938
- display: flex;
17939
- position: relative;
17940
- }
17941
- .v-badge--inline .v-badge__wrapper {
17942
- align-items: center;
17943
- display: inline-flex;
17944
- justify-content: center;
17945
- margin: 0 4px;
17946
17946
  }.v-banner {
17947
17947
  display: grid;
17948
17948
  flex: 1 1;
@@ -19510,6 +19510,44 @@ html.overflow-y-hidden {
19510
19510
 
19511
19511
  .v-chip--label {
19512
19512
  border-radius: 4px;
19513
+ }.v-chip-group {
19514
+ display: flex;
19515
+ max-width: 100%;
19516
+ min-width: 0;
19517
+ overflow-x: auto;
19518
+ padding: 4px 0;
19519
+ }
19520
+ .v-chip-group .v-chip {
19521
+ margin: 4px 8px 4px 0;
19522
+ }
19523
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19524
+ opacity: var(--v-activated-opacity);
19525
+ }
19526
+
19527
+ .v-chip-group--column .v-slide-group__content {
19528
+ white-space: normal;
19529
+ flex-wrap: wrap;
19530
+ max-width: 100%;
19531
+ }.v-color-picker {
19532
+ align-self: flex-start;
19533
+ contain: content;
19534
+ }
19535
+ .v-color-picker.v-sheet {
19536
+ 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));
19537
+ border-radius: 4px;
19538
+ }
19539
+
19540
+ .v-color-picker__controls {
19541
+ display: flex;
19542
+ flex-direction: column;
19543
+ padding: 16px;
19544
+ }
19545
+
19546
+ .v-color-picker--flat {
19547
+ 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));
19548
+ }
19549
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19550
+ 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));
19513
19551
  }.v-combobox .v-field .v-text-field__prefix,
19514
19552
  .v-combobox .v-field .v-text-field__suffix,
19515
19553
  .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
@@ -19591,26 +19629,6 @@ html.overflow-y-hidden {
19591
19629
  .v-combobox--active-menu .v-combobox__menu-icon {
19592
19630
  opacity: var(--v-high-emphasis-opacity);
19593
19631
  transform: rotate(180deg);
19594
- }.v-color-picker {
19595
- align-self: flex-start;
19596
- contain: content;
19597
- }
19598
- .v-color-picker.v-sheet {
19599
- 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));
19600
- border-radius: 4px;
19601
- }
19602
-
19603
- .v-color-picker__controls {
19604
- display: flex;
19605
- flex-direction: column;
19606
- padding: 16px;
19607
- }
19608
-
19609
- .v-color-picker--flat {
19610
- 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));
19611
- }
19612
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19613
- 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));
19614
19632
  }.v-counter {
19615
19633
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
19616
19634
  flex: 0 1 auto;
@@ -19834,100 +19852,39 @@ html.overflow-y-hidden {
19834
19852
  }
19835
19853
  .v-data-table-footer__page {
19836
19854
  padding: 0 8px;
19837
- }.v-date-picker {
19838
- overflow: hidden;
19839
- width: 328px;
19840
- }
19841
- .v-date-picker--show-week {
19842
- width: 368px;
19843
- }.v-date-picker-month {
19855
+ }.v-date-picker-controls {
19844
19856
  display: flex;
19845
- justify-content: center;
19846
- padding: 0 12px 8px;
19847
- --v-date-picker-month-day-diff: 4px;
19857
+ align-items: center;
19858
+ justify-content: space-between;
19859
+ font-size: 0.875rem;
19860
+ padding-top: 4px;
19861
+ padding-bottom: 4px;
19862
+ padding-inline-start: 6px;
19863
+ padding-inline-end: 12px;
19848
19864
  }
19849
-
19850
- .v-date-picker-month__weeks {
19851
- display: grid;
19852
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
19853
- column-gap: 4px;
19854
- font-size: 0.85rem;
19865
+ .v-date-picker-controls > .v-btn:first-child {
19866
+ text-transform: none;
19867
+ font-weight: 400;
19868
+ line-height: initial;
19869
+ letter-spacing: initial;
19855
19870
  }
19856
- .v-date-picker-month__weeks + .v-date-picker-month__days {
19857
- grid-row-gap: 0;
19871
+ .v-date-picker-controls--variant-classic {
19872
+ padding-inline-start: 12px;
19858
19873
  }
19859
-
19860
- .v-date-picker-month__weekday {
19861
- font-size: 0.85rem;
19874
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
19875
+ opacity: 0.7;
19862
19876
  }
19863
-
19864
- .v-date-picker-month__days {
19865
- display: grid;
19866
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
19867
- column-gap: 4px;
19868
- flex: 1 1;
19869
- justify-content: space-around;
19870
- }
19871
-
19872
- .v-date-picker-month__day {
19873
- align-items: center;
19874
- display: flex;
19875
- justify-content: center;
19876
- position: relative;
19877
- height: 40px;
19878
- width: 40px;
19879
- }
19880
- .v-date-picker-month__day--selected .v-btn {
19881
- background-color: rgb(var(--v-theme-surface-variant));
19882
- color: rgb(var(--v-theme-on-surface-variant));
19883
- }
19884
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
19885
- --v-btn-height: 24px;
19886
- --v-btn-size: 0.85rem;
19887
- }
19888
- .v-date-picker-month__day--week {
19889
- font-size: var(--v-btn-size);
19890
- }
19891
-
19892
- .v-date-picker-month__day--adjacent {
19893
- opacity: 0.5;
19894
- }
19895
-
19896
- .v-date-picker-month__day--hide-adjacent {
19897
- opacity: 0;
19898
- }.v-date-picker-controls {
19899
- display: flex;
19900
- align-items: center;
19901
- justify-content: space-between;
19902
- font-size: 0.875rem;
19903
- padding-top: 4px;
19904
- padding-bottom: 4px;
19905
- padding-inline-start: 6px;
19906
- padding-inline-end: 12px;
19907
- }
19908
- .v-date-picker-controls > .v-btn:first-child {
19909
- text-transform: none;
19910
- font-weight: 400;
19911
- line-height: initial;
19912
- letter-spacing: initial;
19913
- }
19914
- .v-date-picker-controls--variant-classic {
19915
- padding-inline-start: 12px;
19916
- }
19917
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
19918
- opacity: 0.7;
19919
- }
19920
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
19921
- cursor: pointer;
19922
- }
19923
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
19924
- opacity: 1;
19925
- }
19926
- .v-date-picker-controls .v-btn:last-child {
19927
- margin-inline-start: 4px;
19928
- }
19929
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
19930
- transform: rotate(180deg);
19877
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
19878
+ cursor: pointer;
19879
+ }
19880
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
19881
+ opacity: 1;
19882
+ }
19883
+ .v-date-picker-controls .v-btn:last-child {
19884
+ margin-inline-start: 4px;
19885
+ }
19886
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
19887
+ transform: rotate(180deg);
19931
19888
  }
19932
19889
 
19933
19890
  .v-date-picker-controls__date {
@@ -20011,6 +19968,67 @@ html.overflow-y-hidden {
20011
19968
  .date-picker-header-reverse-transition-leave-to {
20012
19969
  opacity: 0;
20013
19970
  transform: translate(0, 100%);
19971
+ }.v-date-picker {
19972
+ overflow: hidden;
19973
+ width: 328px;
19974
+ }
19975
+ .v-date-picker--show-week {
19976
+ width: 368px;
19977
+ }.v-date-picker-month {
19978
+ display: flex;
19979
+ justify-content: center;
19980
+ padding: 0 12px 8px;
19981
+ --v-date-picker-month-day-diff: 4px;
19982
+ }
19983
+
19984
+ .v-date-picker-month__weeks {
19985
+ display: grid;
19986
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
19987
+ column-gap: 4px;
19988
+ font-size: 0.85rem;
19989
+ }
19990
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
19991
+ grid-row-gap: 0;
19992
+ }
19993
+
19994
+ .v-date-picker-month__weekday {
19995
+ font-size: 0.85rem;
19996
+ }
19997
+
19998
+ .v-date-picker-month__days {
19999
+ display: grid;
20000
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20001
+ column-gap: 4px;
20002
+ flex: 1 1;
20003
+ justify-content: space-around;
20004
+ }
20005
+
20006
+ .v-date-picker-month__day {
20007
+ align-items: center;
20008
+ display: flex;
20009
+ justify-content: center;
20010
+ position: relative;
20011
+ height: 40px;
20012
+ width: 40px;
20013
+ }
20014
+ .v-date-picker-month__day--selected .v-btn {
20015
+ background-color: rgb(var(--v-theme-surface-variant));
20016
+ color: rgb(var(--v-theme-on-surface-variant));
20017
+ }
20018
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
20019
+ --v-btn-height: 24px;
20020
+ --v-btn-size: 0.85rem;
20021
+ }
20022
+ .v-date-picker-month__day--week {
20023
+ font-size: var(--v-btn-size);
20024
+ }
20025
+
20026
+ .v-date-picker-month__day--adjacent {
20027
+ opacity: 0.5;
20028
+ }
20029
+
20030
+ .v-date-picker-month__day--hide-adjacent {
20031
+ opacity: 0;
20014
20032
  }.v-date-picker-months {
20015
20033
  height: 288px;
20016
20034
  }
@@ -20533,6 +20551,35 @@ html.overflow-y-hidden {
20533
20551
  }
20534
20552
  .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
20535
20553
  right: 0;
20554
+ }.v-file-input--hide.v-input .v-field,
20555
+ .v-file-input--hide.v-input .v-input__control,
20556
+ .v-file-input--hide.v-input .v-input__details {
20557
+ display: none;
20558
+ }
20559
+ .v-file-input--hide.v-input .v-input__prepend {
20560
+ grid-area: control;
20561
+ margin: 0 auto;
20562
+ }
20563
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20564
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20565
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20566
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20567
+ top: 0px;
20568
+ }
20569
+ .v-file-input input[type=file] {
20570
+ height: 100%;
20571
+ left: 0;
20572
+ opacity: 0;
20573
+ position: absolute;
20574
+ top: 0;
20575
+ width: 100%;
20576
+ z-index: 1;
20577
+ }
20578
+ .v-file-input .v-input__details {
20579
+ padding-inline: 16px;
20580
+ }
20581
+ .v-input--plain-underlined.v-file-input .v-input__details {
20582
+ padding-inline: 0;
20536
20583
  }/* region INPUT */
20537
20584
  .v-field {
20538
20585
  --v-theme-overlay-multiplier: 1;
@@ -21104,36 +21151,7 @@ textarea.v-field__input::placeholder {
21104
21151
  opacity: 0;
21105
21152
  }
21106
21153
 
21107
- /* endregion */.v-file-input--hide.v-input .v-field,
21108
- .v-file-input--hide.v-input .v-input__control,
21109
- .v-file-input--hide.v-input .v-input__details {
21110
- display: none;
21111
- }
21112
- .v-file-input--hide.v-input .v-input__prepend {
21113
- grid-area: control;
21114
- margin: 0 auto;
21115
- }
21116
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21117
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21118
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21119
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21120
- top: 0px;
21121
- }
21122
- .v-file-input input[type=file] {
21123
- height: 100%;
21124
- left: 0;
21125
- opacity: 0;
21126
- position: absolute;
21127
- top: 0;
21128
- width: 100%;
21129
- z-index: 1;
21130
- }
21131
- .v-file-input .v-input__details {
21132
- padding-inline: 16px;
21133
- }
21134
- .v-input--plain-underlined.v-file-input .v-input__details {
21135
- padding-inline: 0;
21136
- }.v-footer {
21154
+ /* endregion */.v-footer {
21137
21155
  align-items: center;
21138
21156
  display: flex;
21139
21157
  flex: 1 1 auto;
@@ -21886,6 +21904,31 @@ textarea.v-field__input::placeholder {
21886
21904
 
21887
21905
  .v-icon--end {
21888
21906
  margin-inline-start: 8px;
21907
+ }.v-infinite-scroll--horizontal {
21908
+ display: flex;
21909
+ flex-direction: row;
21910
+ overflow-x: auto;
21911
+ }
21912
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21913
+ height: 100%;
21914
+ width: 1px;
21915
+ }
21916
+
21917
+ .v-infinite-scroll--vertical {
21918
+ display: flex;
21919
+ flex-direction: column;
21920
+ overflow-y: auto;
21921
+ }
21922
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21923
+ height: 1px;
21924
+ width: 100%;
21925
+ }
21926
+
21927
+ .v-infinite-scroll__side {
21928
+ align-items: center;
21929
+ display: flex;
21930
+ justify-content: center;
21931
+ padding: 8px;
21889
21932
  }.v-img {
21890
21933
  --v-theme-overlay-multiplier: 3;
21891
21934
  z-index: 0;
@@ -21922,31 +21965,6 @@ textarea.v-field__input::placeholder {
21922
21965
 
21923
21966
  .v-img__gradient {
21924
21967
  background-repeat: no-repeat;
21925
- }.v-infinite-scroll--horizontal {
21926
- display: flex;
21927
- flex-direction: row;
21928
- overflow-x: auto;
21929
- }
21930
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21931
- height: 100%;
21932
- width: 1px;
21933
- }
21934
-
21935
- .v-infinite-scroll--vertical {
21936
- display: flex;
21937
- flex-direction: column;
21938
- overflow-y: auto;
21939
- }
21940
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21941
- height: 1px;
21942
- width: 100%;
21943
- }
21944
-
21945
- .v-infinite-scroll__side {
21946
- align-items: center;
21947
- display: flex;
21948
- justify-content: center;
21949
- padding: 8px;
21950
21968
  }.v-input {
21951
21969
  display: grid;
21952
21970
  flex: 1 1 auto;
@@ -22683,6 +22701,19 @@ textarea.v-field__input::placeholder {
22683
22701
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22684
22702
  }.v-locale-provider {
22685
22703
  display: contents;
22704
+ }.v-menu > .v-overlay__content {
22705
+ display: flex;
22706
+ flex-direction: column;
22707
+ border-radius: 4px;
22708
+ }
22709
+ .v-menu > .v-overlay__content > .v-card,
22710
+ .v-menu > .v-overlay__content > .v-sheet,
22711
+ .v-menu > .v-overlay__content > .v-list {
22712
+ background: rgb(var(--v-theme-surface));
22713
+ border-radius: inherit;
22714
+ overflow: auto;
22715
+ height: 100%;
22716
+ 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));
22686
22717
  }.v-main {
22687
22718
  flex: 1 0 auto;
22688
22719
  max-width: 100%;
@@ -22711,19 +22742,6 @@ textarea.v-field__input::placeholder {
22711
22742
  --v-layout-right: 0px;
22712
22743
  --v-layout-top: 0px;
22713
22744
  --v-layout-bottom: 0px;
22714
- }.v-menu > .v-overlay__content {
22715
- display: flex;
22716
- flex-direction: column;
22717
- border-radius: 4px;
22718
- }
22719
- .v-menu > .v-overlay__content > .v-card,
22720
- .v-menu > .v-overlay__content > .v-sheet,
22721
- .v-menu > .v-overlay__content > .v-list {
22722
- background: rgb(var(--v-theme-surface));
22723
- border-radius: inherit;
22724
- overflow: auto;
22725
- height: 100%;
22726
- 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));
22727
22745
  }.v-messages {
22728
22746
  flex: 1 1 auto;
22729
22747
  font-size: 12px;
@@ -22898,14 +22916,6 @@ textarea.v-field__input::placeholder {
22898
22916
  }
22899
22917
  .v-otp-input__loader .v-progress-linear {
22900
22918
  position: absolute;
22901
- }.v-pagination__list {
22902
- display: inline-flex;
22903
- list-style-type: none;
22904
- justify-content: center;
22905
- width: 100%;
22906
- }
22907
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22908
- margin: 0.3rem;
22909
22919
  }.v-overlay-container {
22910
22920
  contain: layout;
22911
22921
  left: 0;
@@ -22969,6 +22979,14 @@ html.v-overlay-scroll-blocked {
22969
22979
 
22970
22980
  .v-overlay--scroll-blocked {
22971
22981
  padding-inline-end: var(--v-scrollbar-offset);
22982
+ }.v-pagination__list {
22983
+ display: inline-flex;
22984
+ list-style-type: none;
22985
+ justify-content: center;
22986
+ width: 100%;
22987
+ }
22988
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22989
+ margin: 0.3rem;
22972
22990
  }.v-parallax {
22973
22991
  position: relative;
22974
22992
  overflow: hidden;
@@ -23900,6 +23918,144 @@ html.v-overlay-scroll-blocked {
23900
23918
  .v-slide-group--vertical .v-slide-group__container {
23901
23919
  overflow-x: hidden;
23902
23920
  overflow-y: auto;
23921
+ }.v-snackbar {
23922
+ justify-content: center;
23923
+ z-index: 10000;
23924
+ margin: 8px;
23925
+ margin-inline-end: calc(8px + var(--v-scrollbar-offset));
23926
+ padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
23927
+ }
23928
+ .v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
23929
+ align-items: flex-end;
23930
+ }
23931
+ .v-snackbar__wrapper {
23932
+ align-items: center;
23933
+ display: flex;
23934
+ max-width: 672px;
23935
+ min-height: 48px;
23936
+ min-width: 344px;
23937
+ overflow: hidden;
23938
+ padding: 0;
23939
+ border-radius: 4px;
23940
+ }
23941
+ .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
23942
+ background: transparent;
23943
+ color: inherit;
23944
+ }
23945
+ .v-snackbar--variant-plain {
23946
+ opacity: 0.62;
23947
+ }
23948
+ .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
23949
+ opacity: 1;
23950
+ }
23951
+ .v-snackbar--variant-plain .v-snackbar__overlay {
23952
+ display: none;
23953
+ }
23954
+ .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
23955
+ background: rgb(var(--v-theme-surface-variant));
23956
+ color: rgb(var(--v-theme-on-surface-variant));
23957
+ }
23958
+ .v-snackbar--variant-elevated {
23959
+ box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23960
+ }
23961
+ .v-snackbar--variant-flat {
23962
+ 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));
23963
+ }
23964
+ .v-snackbar--variant-outlined {
23965
+ border: thin solid currentColor;
23966
+ }
23967
+ .v-snackbar--variant-text .v-snackbar__overlay {
23968
+ background: currentColor;
23969
+ }
23970
+ .v-snackbar--variant-tonal .v-snackbar__underlay {
23971
+ background: currentColor;
23972
+ opacity: var(--v-activated-opacity);
23973
+ border-radius: inherit;
23974
+ top: 0;
23975
+ right: 0;
23976
+ bottom: 0;
23977
+ left: 0;
23978
+ pointer-events: none;
23979
+ }
23980
+ .v-snackbar .v-snackbar__underlay {
23981
+ position: absolute;
23982
+ }
23983
+
23984
+ .v-snackbar__content {
23985
+ flex-grow: 1;
23986
+ font-size: 0.875rem;
23987
+ font-weight: 400;
23988
+ letter-spacing: 0.0178571429em;
23989
+ line-height: 1.425;
23990
+ margin-right: auto;
23991
+ padding: 14px 16px;
23992
+ text-align: initial;
23993
+ }
23994
+ .v-snackbar__actions {
23995
+ align-items: center;
23996
+ align-self: center;
23997
+ display: flex;
23998
+ margin-inline-end: 8px;
23999
+ }
24000
+ .v-snackbar__actions > .v-btn {
24001
+ padding: 0 8px;
24002
+ min-width: auto;
24003
+ }
24004
+ .v-snackbar__timer {
24005
+ width: 100%;
24006
+ position: absolute;
24007
+ top: 0;
24008
+ }
24009
+ .v-snackbar__timer .v-progress-linear {
24010
+ transition: 0.2s linear;
24011
+ }
24012
+ .v-snackbar--absolute {
24013
+ position: absolute;
24014
+ z-index: 1;
24015
+ }
24016
+ .v-snackbar--multi-line .v-snackbar__wrapper {
24017
+ min-height: 68px;
24018
+ }
24019
+ .v-snackbar--vertical .v-snackbar__wrapper {
24020
+ flex-direction: column;
24021
+ }
24022
+ .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
24023
+ align-self: flex-end;
24024
+ margin-bottom: 8px;
24025
+ }
24026
+ .v-snackbar--center {
24027
+ align-items: center;
24028
+ justify-content: center;
24029
+ }
24030
+ .v-snackbar--top {
24031
+ align-items: flex-start;
24032
+ }
24033
+ .v-snackbar--bottom {
24034
+ align-items: flex-end;
24035
+ }
24036
+ .v-snackbar--left, .v-snackbar--start {
24037
+ justify-content: flex-start;
24038
+ }
24039
+ .v-snackbar--right, .v-snackbar--end {
24040
+ justify-content: flex-end;
24041
+ }
24042
+
24043
+ .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
24044
+ transition-duration: 0.15s;
24045
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24046
+ }
24047
+ .v-snackbar-transition-enter-active {
24048
+ transition-property: opacity, transform;
24049
+ }
24050
+ .v-snackbar-transition-enter-from {
24051
+ opacity: 0;
24052
+ transform: scale(0.8);
24053
+ }
24054
+ .v-snackbar-transition-leave-active {
24055
+ transition-property: opacity;
24056
+ }
24057
+ .v-snackbar-transition-leave-to {
24058
+ opacity: 0;
23903
24059
  }.v-speed-dial__content {
23904
24060
  gap: 8px;
23905
24061
  }
@@ -24055,6 +24211,9 @@ html.v-overlay-scroll-blocked {
24055
24211
  font-size: 0.75rem;
24056
24212
  margin-inline-end: 8px;
24057
24213
  }
24214
+ .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
24215
+ margin-inline-end: 0;
24216
+ }
24058
24217
  .v-stepper-item__avatar.v-avatar .v-icon {
24059
24218
  font-size: 0.875rem;
24060
24219
  }
@@ -24284,101 +24443,6 @@ html.v-overlay-scroll-blocked {
24284
24443
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
24285
24444
  border-width: 0;
24286
24445
  }
24287
- }.v-tabs {
24288
- display: flex;
24289
- height: var(--v-tabs-height);
24290
- }
24291
- .v-tabs--density-default {
24292
- --v-tabs-height: 48px;
24293
- }
24294
- .v-tabs--density-default.v-tabs--stacked {
24295
- --v-tabs-height: 72px;
24296
- }
24297
-
24298
- .v-tabs--density-comfortable {
24299
- --v-tabs-height: 44px;
24300
- }
24301
- .v-tabs--density-comfortable.v-tabs--stacked {
24302
- --v-tabs-height: 68px;
24303
- }
24304
-
24305
- .v-tabs--density-compact {
24306
- --v-tabs-height: 36px;
24307
- }
24308
- .v-tabs--density-compact.v-tabs--stacked {
24309
- --v-tabs-height: 60px;
24310
- }
24311
-
24312
- .v-tabs.v-slide-group--vertical {
24313
- height: auto;
24314
- flex: none;
24315
- --v-tabs-height: 48px;
24316
- }
24317
-
24318
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24319
- margin-inline-start: 42px;
24320
- }
24321
-
24322
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24323
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24324
- margin-inline-end: auto;
24325
- }
24326
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24327
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24328
- margin-inline-start: auto;
24329
- }
24330
-
24331
- .v-tabs--grow {
24332
- flex-grow: 1;
24333
- }
24334
- .v-tabs--grow .v-tab {
24335
- flex: 1 0 auto;
24336
- max-width: none;
24337
- }
24338
-
24339
- .v-tabs--align-tabs-end .v-tab:first-child {
24340
- margin-inline-start: auto;
24341
- }
24342
- .v-tabs--align-tabs-end .v-tab:last-child {
24343
- margin-inline-end: 0;
24344
- }
24345
-
24346
- @media (max-width: 1279.98px) {
24347
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24348
- margin-inline-start: 52px;
24349
- }
24350
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24351
- margin-inline-end: 52px;
24352
- }
24353
- }.v-tab.v-tab.v-btn {
24354
- height: var(--v-tabs-height);
24355
- border-radius: 0;
24356
- min-width: 90px;
24357
- }
24358
- .v-slide-group--horizontal .v-tab {
24359
- max-width: 360px;
24360
- }
24361
- .v-slide-group--vertical .v-tab {
24362
- justify-content: start;
24363
- }
24364
-
24365
- .v-tab__slider {
24366
- position: absolute;
24367
- bottom: 0;
24368
- left: 0;
24369
- height: 2px;
24370
- width: 100%;
24371
- background: currentColor;
24372
- pointer-events: none;
24373
- opacity: 0;
24374
- }
24375
- .v-tab--selected .v-tab__slider {
24376
- opacity: 1;
24377
- }
24378
- .v-slide-group--vertical .v-tab__slider {
24379
- top: 0;
24380
- height: 100%;
24381
- width: 2px;
24382
24446
  }.v-system-bar {
24383
24447
  align-items: center;
24384
24448
  display: flex;
@@ -24554,45 +24618,101 @@ html.v-overlay-scroll-blocked {
24554
24618
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24555
24619
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24556
24620
  border-top: 0px !important;
24557
- }.v-textarea .v-field {
24558
- --v-textarea-control-height: var(--v-input-control-height);
24559
- }
24560
- .v-textarea .v-field__field {
24561
- --v-input-control-height: var(--v-textarea-control-height);
24621
+ }.v-tab.v-tab.v-btn {
24622
+ height: var(--v-tabs-height);
24623
+ border-radius: 0;
24624
+ min-width: 90px;
24562
24625
  }
24563
- .v-textarea .v-field__input {
24564
- flex: 1 1 auto;
24565
- outline: none;
24566
- -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24567
- mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24626
+ .v-slide-group--horizontal .v-tab {
24627
+ max-width: 360px;
24568
24628
  }
24569
- .v-textarea .v-field__input.v-textarea__sizer {
24570
- visibility: hidden;
24629
+ .v-slide-group--vertical .v-tab {
24630
+ justify-content: start;
24631
+ }
24632
+
24633
+ .v-tab__slider {
24571
24634
  position: absolute;
24572
- top: 0;
24635
+ bottom: 0;
24573
24636
  left: 0;
24574
- height: 0 !important;
24575
- min-height: 0 !important;
24637
+ height: 2px;
24638
+ width: 100%;
24639
+ background: currentColor;
24576
24640
  pointer-events: none;
24641
+ opacity: 0;
24577
24642
  }
24578
- .v-textarea--no-resize .v-field__input {
24579
- resize: none;
24580
- }
24581
- .v-textarea .v-field--no-label textarea,
24582
- .v-textarea .v-field--active textarea {
24643
+ .v-tab--selected .v-tab__slider {
24583
24644
  opacity: 1;
24584
24645
  }
24585
- .v-textarea textarea {
24586
- opacity: 0;
24587
- flex: 1;
24588
- min-width: 0;
24589
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24646
+ .v-slide-group--vertical .v-tab__slider {
24647
+ top: 0;
24648
+ height: 100%;
24649
+ width: 2px;
24650
+ }.v-tabs {
24651
+ display: flex;
24652
+ height: var(--v-tabs-height);
24590
24653
  }
24591
- .v-textarea textarea:focus, .v-textarea textarea:active {
24592
- outline: none;
24654
+ .v-tabs--density-default {
24655
+ --v-tabs-height: 48px;
24593
24656
  }
24594
- .v-textarea textarea:invalid {
24595
- box-shadow: none;
24657
+ .v-tabs--density-default.v-tabs--stacked {
24658
+ --v-tabs-height: 72px;
24659
+ }
24660
+
24661
+ .v-tabs--density-comfortable {
24662
+ --v-tabs-height: 44px;
24663
+ }
24664
+ .v-tabs--density-comfortable.v-tabs--stacked {
24665
+ --v-tabs-height: 68px;
24666
+ }
24667
+
24668
+ .v-tabs--density-compact {
24669
+ --v-tabs-height: 36px;
24670
+ }
24671
+ .v-tabs--density-compact.v-tabs--stacked {
24672
+ --v-tabs-height: 60px;
24673
+ }
24674
+
24675
+ .v-tabs.v-slide-group--vertical {
24676
+ height: auto;
24677
+ flex: none;
24678
+ --v-tabs-height: 48px;
24679
+ }
24680
+
24681
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24682
+ margin-inline-start: 42px;
24683
+ }
24684
+
24685
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24686
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24687
+ margin-inline-end: auto;
24688
+ }
24689
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24690
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24691
+ margin-inline-start: auto;
24692
+ }
24693
+
24694
+ .v-tabs--grow {
24695
+ flex-grow: 1;
24696
+ }
24697
+ .v-tabs--grow .v-tab {
24698
+ flex: 1 0 auto;
24699
+ max-width: none;
24700
+ }
24701
+
24702
+ .v-tabs--align-tabs-end .v-tab:first-child {
24703
+ margin-inline-start: auto;
24704
+ }
24705
+ .v-tabs--align-tabs-end .v-tab:last-child {
24706
+ margin-inline-end: 0;
24707
+ }
24708
+
24709
+ @media (max-width: 1279.98px) {
24710
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24711
+ margin-inline-start: 52px;
24712
+ }
24713
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24714
+ margin-inline-end: 52px;
24715
+ }
24596
24716
  }/* region BLOCK */
24597
24717
  .v-text-field input {
24598
24718
  color: inherit;
@@ -24660,7 +24780,175 @@ html.v-overlay-scroll-blocked {
24660
24780
  padding-inline-end: var(--v-field-padding-end);
24661
24781
  }
24662
24782
 
24663
- /* endregion */.v-theme-provider {
24783
+ /* endregion */.v-textarea .v-field {
24784
+ --v-textarea-control-height: var(--v-input-control-height);
24785
+ }
24786
+ .v-textarea .v-field__field {
24787
+ --v-input-control-height: var(--v-textarea-control-height);
24788
+ }
24789
+ .v-textarea .v-field__input {
24790
+ flex: 1 1 auto;
24791
+ outline: none;
24792
+ -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24793
+ mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
24794
+ }
24795
+ .v-textarea .v-field__input.v-textarea__sizer {
24796
+ visibility: hidden;
24797
+ position: absolute;
24798
+ top: 0;
24799
+ left: 0;
24800
+ height: 0 !important;
24801
+ min-height: 0 !important;
24802
+ pointer-events: none;
24803
+ }
24804
+ .v-textarea--no-resize .v-field__input {
24805
+ resize: none;
24806
+ }
24807
+ .v-textarea .v-field--no-label textarea,
24808
+ .v-textarea .v-field--active textarea {
24809
+ opacity: 1;
24810
+ }
24811
+ .v-textarea textarea {
24812
+ opacity: 0;
24813
+ flex: 1;
24814
+ min-width: 0;
24815
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24816
+ }
24817
+ .v-textarea textarea:focus, .v-textarea textarea:active {
24818
+ outline: none;
24819
+ }
24820
+ .v-textarea textarea:invalid {
24821
+ box-shadow: none;
24822
+ }.v-toolbar {
24823
+ align-items: flex-start;
24824
+ display: flex;
24825
+ flex: none;
24826
+ flex-direction: column;
24827
+ justify-content: space-between;
24828
+ max-width: 100%;
24829
+ position: relative;
24830
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24831
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
24832
+ width: 100%;
24833
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24834
+ border-style: solid;
24835
+ border-width: 0;
24836
+ 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));
24837
+ border-radius: 0;
24838
+ background: rgb(var(--v-theme-surface-light));
24839
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24840
+ }
24841
+ .v-toolbar--border {
24842
+ border-width: thin;
24843
+ box-shadow: none;
24844
+ }
24845
+ .v-toolbar--absolute {
24846
+ position: absolute;
24847
+ }
24848
+ .v-toolbar--collapse {
24849
+ max-width: 112px;
24850
+ overflow: hidden;
24851
+ border-end-end-radius: 24px;
24852
+ }
24853
+ .v-toolbar--collapse .v-toolbar-title {
24854
+ display: none;
24855
+ }
24856
+ .v-toolbar--flat {
24857
+ 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));
24858
+ }
24859
+ .v-toolbar--floating {
24860
+ display: inline-flex;
24861
+ }
24862
+ .v-toolbar--rounded {
24863
+ border-radius: 4px;
24864
+ }
24865
+
24866
+ .v-toolbar__content,
24867
+ .v-toolbar__extension {
24868
+ align-items: center;
24869
+ display: flex;
24870
+ flex: 0 0 auto;
24871
+ position: relative;
24872
+ transition: inherit;
24873
+ width: 100%;
24874
+ }
24875
+
24876
+ .v-toolbar__content {
24877
+ overflow: hidden;
24878
+ }
24879
+ .v-toolbar__content > .v-btn:first-child {
24880
+ margin-inline-start: 4px;
24881
+ }
24882
+ .v-toolbar__content > .v-btn:last-child {
24883
+ margin-inline-end: 4px;
24884
+ }
24885
+ .v-toolbar__content > .v-toolbar-title {
24886
+ margin-inline-start: 20px;
24887
+ }
24888
+ .v-toolbar--density-prominent .v-toolbar__content {
24889
+ align-items: flex-start;
24890
+ }
24891
+
24892
+ .v-toolbar__image {
24893
+ position: absolute;
24894
+ top: 0;
24895
+ left: 0;
24896
+ width: 100%;
24897
+ height: 100%;
24898
+ display: flex;
24899
+ opacity: var(--v-toolbar-image-opacity, 1);
24900
+ transition-property: opacity;
24901
+ }
24902
+
24903
+ .v-toolbar__prepend,
24904
+ .v-toolbar__append {
24905
+ align-items: center;
24906
+ align-self: stretch;
24907
+ display: flex;
24908
+ }
24909
+
24910
+ .v-toolbar__prepend {
24911
+ margin-inline: 4px auto;
24912
+ }
24913
+
24914
+ .v-toolbar__append {
24915
+ margin-inline: auto 4px;
24916
+ }
24917
+
24918
+ .v-toolbar-title {
24919
+ flex: 1 1;
24920
+ font-size: 1.25rem;
24921
+ min-width: 0;
24922
+ font-size: 1.25rem;
24923
+ font-weight: 400;
24924
+ letter-spacing: 0;
24925
+ line-height: 1.75rem;
24926
+ text-transform: none;
24927
+ }
24928
+ .v-toolbar--density-prominent .v-toolbar-title {
24929
+ align-self: flex-end;
24930
+ padding-bottom: 6px;
24931
+ font-size: 1.5rem;
24932
+ font-weight: 400;
24933
+ letter-spacing: 0;
24934
+ line-height: 2.25rem;
24935
+ text-transform: none;
24936
+ }
24937
+
24938
+ .v-toolbar-title__placeholder {
24939
+ overflow: hidden;
24940
+ text-overflow: ellipsis;
24941
+ white-space: nowrap;
24942
+ }
24943
+
24944
+ .v-toolbar-items {
24945
+ display: flex;
24946
+ height: inherit;
24947
+ align-self: stretch;
24948
+ }
24949
+ .v-toolbar-items > .v-btn {
24950
+ border-radius: 0;
24951
+ }.v-theme-provider {
24664
24952
  background: rgb(var(--v-theme-background));
24665
24953
  color: rgb(var(--v-theme-on-background));
24666
24954
  }.v-timeline .v-timeline-divider__dot {
@@ -25067,147 +25355,18 @@ html.v-overlay-scroll-blocked {
25067
25355
  padding-inline-start: 0;
25068
25356
  }
25069
25357
 
25070
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
25071
- display: none;
25072
- }
25073
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
25074
- --v-timeline-line-size-offset: 12px;
25075
- }
25076
- .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 {
25077
- padding-block-end: 0;
25078
- }
25079
-
25080
- .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 {
25081
- padding-inline-end: 0;
25082
- }.v-toolbar {
25083
- align-items: flex-start;
25084
- display: flex;
25085
- flex: none;
25086
- flex-direction: column;
25087
- justify-content: space-between;
25088
- max-width: 100%;
25089
- position: relative;
25090
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25091
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25092
- width: 100%;
25093
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25094
- border-style: solid;
25095
- border-width: 0;
25096
- 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));
25097
- border-radius: 0;
25098
- background: rgb(var(--v-theme-surface-light));
25099
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25100
- }
25101
- .v-toolbar--border {
25102
- border-width: thin;
25103
- box-shadow: none;
25104
- }
25105
- .v-toolbar--absolute {
25106
- position: absolute;
25107
- }
25108
- .v-toolbar--collapse {
25109
- max-width: 112px;
25110
- overflow: hidden;
25111
- border-end-end-radius: 24px;
25112
- }
25113
- .v-toolbar--collapse .v-toolbar-title {
25114
- display: none;
25115
- }
25116
- .v-toolbar--flat {
25117
- 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));
25118
- }
25119
- .v-toolbar--floating {
25120
- display: inline-flex;
25121
- }
25122
- .v-toolbar--rounded {
25123
- border-radius: 4px;
25124
- }
25125
-
25126
- .v-toolbar__content,
25127
- .v-toolbar__extension {
25128
- align-items: center;
25129
- display: flex;
25130
- flex: 0 0 auto;
25131
- position: relative;
25132
- transition: inherit;
25133
- width: 100%;
25134
- }
25135
-
25136
- .v-toolbar__content {
25137
- overflow: hidden;
25138
- }
25139
- .v-toolbar__content > .v-btn:first-child {
25140
- margin-inline-start: 4px;
25141
- }
25142
- .v-toolbar__content > .v-btn:last-child {
25143
- margin-inline-end: 4px;
25144
- }
25145
- .v-toolbar__content > .v-toolbar-title {
25146
- margin-inline-start: 20px;
25147
- }
25148
- .v-toolbar--density-prominent .v-toolbar__content {
25149
- align-items: flex-start;
25150
- }
25151
-
25152
- .v-toolbar__image {
25153
- position: absolute;
25154
- top: 0;
25155
- left: 0;
25156
- width: 100%;
25157
- height: 100%;
25158
- display: flex;
25159
- opacity: var(--v-toolbar-image-opacity, 1);
25160
- transition-property: opacity;
25161
- }
25162
-
25163
- .v-toolbar__prepend,
25164
- .v-toolbar__append {
25165
- align-items: center;
25166
- align-self: stretch;
25167
- display: flex;
25168
- }
25169
-
25170
- .v-toolbar__prepend {
25171
- margin-inline: 4px auto;
25172
- }
25173
-
25174
- .v-toolbar__append {
25175
- margin-inline: auto 4px;
25176
- }
25177
-
25178
- .v-toolbar-title {
25179
- flex: 1 1;
25180
- font-size: 1.25rem;
25181
- min-width: 0;
25182
- font-size: 1.25rem;
25183
- font-weight: 400;
25184
- letter-spacing: 0;
25185
- line-height: 1.75rem;
25186
- text-transform: none;
25187
- }
25188
- .v-toolbar--density-prominent .v-toolbar-title {
25189
- align-self: flex-end;
25190
- padding-bottom: 6px;
25191
- font-size: 1.5rem;
25192
- font-weight: 400;
25193
- letter-spacing: 0;
25194
- line-height: 2.25rem;
25195
- text-transform: none;
25196
- }
25197
-
25198
- .v-toolbar-title__placeholder {
25199
- overflow: hidden;
25200
- text-overflow: ellipsis;
25201
- white-space: nowrap;
25202
- }
25203
-
25204
- .v-toolbar-items {
25205
- display: flex;
25206
- height: inherit;
25207
- align-self: stretch;
25358
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
25359
+ display: none;
25208
25360
  }
25209
- .v-toolbar-items > .v-btn {
25210
- border-radius: 0;
25361
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
25362
+ --v-timeline-line-size-offset: 12px;
25363
+ }
25364
+ .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 {
25365
+ padding-block-end: 0;
25366
+ }
25367
+
25368
+ .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 {
25369
+ padding-inline-end: 0;
25211
25370
  }.v-tooltip > .v-overlay__content {
25212
25371
  background: rgb(var(--v-theme-surface-variant));
25213
25372
  color: rgb(var(--v-theme-on-surface-variant));
@@ -25309,162 +25468,63 @@ html.v-overlay-scroll-blocked {
25309
25468
  }
25310
25469
  .v-window-y-reverse-transition-leave-to {
25311
25470
  transform: translateY(100%);
25312
- }.v-snackbar {
25313
- justify-content: center;
25314
- z-index: 10000;
25315
- margin: 8px;
25316
- margin-inline-end: calc(8px + var(--v-scrollbar-offset));
25317
- padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
25318
- }
25319
- .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
25320
- align-items: flex-end;
25321
- }
25322
- .v-snackbar__wrapper {
25323
- align-items: center;
25471
+ }.v-color-picker-canvas {
25324
25472
  display: flex;
25325
- max-width: 672px;
25326
- min-height: 48px;
25327
- min-width: 344px;
25473
+ position: relative;
25328
25474
  overflow: hidden;
25329
- padding: 0;
25330
- border-radius: 4px;
25331
- }
25332
- .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
25333
- background: transparent;
25334
- color: inherit;
25335
- }
25336
- .v-snackbar--variant-plain {
25337
- opacity: 0.62;
25338
- }
25339
- .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
25340
- opacity: 1;
25341
- }
25342
- .v-snackbar--variant-plain .v-snackbar__overlay {
25343
- display: none;
25344
- }
25345
- .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
25346
- background: rgb(var(--v-theme-surface-variant));
25347
- color: rgb(var(--v-theme-on-surface-variant));
25348
- }
25349
- .v-snackbar--variant-elevated {
25350
- box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25351
- }
25352
- .v-snackbar--variant-flat {
25353
- 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));
25354
- }
25355
- .v-snackbar--variant-outlined {
25356
- border: thin solid currentColor;
25357
- }
25358
- .v-snackbar--variant-text .v-snackbar__overlay {
25359
- background: currentColor;
25475
+ contain: content;
25476
+ touch-action: none;
25360
25477
  }
25361
- .v-snackbar--variant-tonal .v-snackbar__underlay {
25362
- background: currentColor;
25363
- opacity: var(--v-activated-opacity);
25364
- border-radius: inherit;
25478
+ .v-color-picker-canvas__dot {
25479
+ position: absolute;
25365
25480
  top: 0;
25366
- right: 0;
25367
- bottom: 0;
25368
25481
  left: 0;
25369
- pointer-events: none;
25482
+ width: 15px;
25483
+ height: 15px;
25484
+ background: transparent;
25485
+ border-radius: 50%;
25486
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25370
25487
  }
25371
- .v-snackbar .v-snackbar__underlay {
25372
- position: absolute;
25488
+ .v-color-picker-canvas__dot--disabled {
25489
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25373
25490
  }
25374
-
25375
- .v-snackbar__content {
25376
- flex-grow: 1;
25377
- font-size: 0.875rem;
25378
- font-weight: 400;
25379
- letter-spacing: 0.0178571429em;
25380
- line-height: 1.425;
25381
- margin-right: auto;
25382
- padding: 14px 16px;
25383
- text-align: initial;
25491
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25492
+ will-change: transform;
25493
+ }.v-color-picker-swatches {
25494
+ overflow-y: auto;
25384
25495
  }
25385
- .v-snackbar__actions {
25386
- align-items: center;
25387
- align-self: center;
25496
+ .v-color-picker-swatches > div {
25388
25497
  display: flex;
25389
- margin-inline-end: 8px;
25390
- }
25391
- .v-snackbar__actions > .v-btn {
25392
- padding: 0 8px;
25393
- min-width: auto;
25394
- }
25395
- .v-snackbar__timer {
25396
- width: 100%;
25397
- position: absolute;
25398
- top: 0;
25399
- }
25400
- .v-snackbar__timer .v-progress-linear {
25401
- transition: 0.2s linear;
25402
- }
25403
- .v-snackbar--absolute {
25404
- position: absolute;
25405
- z-index: 1;
25406
- }
25407
- .v-snackbar--multi-line .v-snackbar__wrapper {
25408
- min-height: 68px;
25409
- }
25410
- .v-snackbar--vertical .v-snackbar__wrapper {
25411
- flex-direction: column;
25412
- }
25413
- .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
25414
- align-self: flex-end;
25415
- margin-bottom: 8px;
25416
- }
25417
- .v-snackbar--center {
25418
- align-items: center;
25498
+ flex-wrap: wrap;
25419
25499
  justify-content: center;
25420
- }
25421
- .v-snackbar--top {
25422
- align-items: flex-start;
25423
- }
25424
- .v-snackbar--bottom {
25425
- align-items: flex-end;
25426
- }
25427
- .v-snackbar--left, .v-snackbar--start {
25428
- justify-content: flex-start;
25429
- }
25430
- .v-snackbar--right, .v-snackbar--end {
25431
- justify-content: flex-end;
25500
+ padding: 8px;
25432
25501
  }
25433
25502
 
25434
- .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
25435
- transition-duration: 0.15s;
25436
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25437
- }
25438
- .v-snackbar-transition-enter-active {
25439
- transition-property: opacity, transform;
25440
- }
25441
- .v-snackbar-transition-enter-from {
25442
- opacity: 0;
25443
- transform: scale(0.8);
25444
- }
25445
- .v-snackbar-transition-leave-active {
25446
- transition-property: opacity;
25447
- }
25448
- .v-snackbar-transition-leave-to {
25449
- opacity: 0;
25450
- }.v-chip-group {
25503
+ .v-color-picker-swatches__swatch {
25451
25504
  display: flex;
25452
- max-width: 100%;
25453
- min-width: 0;
25454
- overflow-x: auto;
25455
- padding: 4px 0;
25456
- }
25457
- .v-chip-group .v-chip {
25458
- margin: 4px 8px 4px 0;
25459
- }
25460
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
25461
- opacity: var(--v-activated-opacity);
25505
+ flex-direction: column;
25506
+ margin-bottom: 10px;
25462
25507
  }
25463
25508
 
25464
- .v-chip-group--column .v-slide-group__content {
25465
- white-space: normal;
25466
- flex-wrap: wrap;
25467
- max-width: 100%;
25509
+ .v-color-picker-swatches__color {
25510
+ position: relative;
25511
+ height: 18px;
25512
+ max-height: 18px;
25513
+ width: 45px;
25514
+ margin: 2px 4px;
25515
+ border-radius: 2px;
25516
+ -webkit-user-select: none;
25517
+ user-select: none;
25518
+ overflow: hidden;
25519
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25520
+ cursor: pointer;
25521
+ }
25522
+ .v-color-picker-swatches__color > div {
25523
+ display: flex;
25524
+ align-items: center;
25525
+ justify-content: center;
25526
+ width: 100%;
25527
+ height: 100%;
25468
25528
  }.v-color-picker-edit {
25469
25529
  display: flex;
25470
25530
  margin-top: 24px;
@@ -25493,28 +25553,6 @@ html.v-overlay-scroll-blocked {
25493
25553
  }
25494
25554
  .v-color-picker-edit__input span {
25495
25555
  font-size: 0.75rem;
25496
- }.v-color-picker-canvas {
25497
- display: flex;
25498
- position: relative;
25499
- overflow: hidden;
25500
- contain: content;
25501
- touch-action: none;
25502
- }
25503
- .v-color-picker-canvas__dot {
25504
- position: absolute;
25505
- top: 0;
25506
- left: 0;
25507
- width: 15px;
25508
- height: 15px;
25509
- background: transparent;
25510
- border-radius: 50%;
25511
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25512
- }
25513
- .v-color-picker-canvas__dot--disabled {
25514
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25515
- }
25516
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25517
- will-change: transform;
25518
25556
  }.v-color-picker-preview__alpha .v-slider-track__background {
25519
25557
  background-color: transparent !important;
25520
25558
  }
@@ -25585,41 +25623,6 @@ html.v-overlay-scroll-blocked {
25585
25623
  .v-color-picker-preview__eye-dropper {
25586
25624
  position: relative;
25587
25625
  margin-right: 12px;
25588
- }.v-color-picker-swatches {
25589
- overflow-y: auto;
25590
- }
25591
- .v-color-picker-swatches > div {
25592
- display: flex;
25593
- flex-wrap: wrap;
25594
- justify-content: center;
25595
- padding: 8px;
25596
- }
25597
-
25598
- .v-color-picker-swatches__swatch {
25599
- display: flex;
25600
- flex-direction: column;
25601
- margin-bottom: 10px;
25602
- }
25603
-
25604
- .v-color-picker-swatches__color {
25605
- position: relative;
25606
- height: 18px;
25607
- max-height: 18px;
25608
- width: 45px;
25609
- margin: 2px 4px;
25610
- border-radius: 2px;
25611
- -webkit-user-select: none;
25612
- user-select: none;
25613
- overflow: hidden;
25614
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25615
- cursor: pointer;
25616
- }
25617
- .v-color-picker-swatches__color > div {
25618
- display: flex;
25619
- align-items: center;
25620
- justify-content: center;
25621
- width: 100%;
25622
- height: 100%;
25623
25626
  }.v-picker.v-sheet {
25624
25627
  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));
25625
25628
  border-radius: 4px;