vuetify 3.5.2 → 3.5.4

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 (63) hide show
  1. package/dist/json/attributes.json +24 -0
  2. package/dist/json/importMap-labs.json +8 -8
  3. package/dist/json/importMap.json +118 -118
  4. package/dist/json/tags.json +6 -0
  5. package/dist/json/web-types.json +55 -1
  6. package/dist/vuetify-labs.css +1604 -1586
  7. package/dist/vuetify-labs.d.ts +132 -12
  8. package/dist/vuetify-labs.esm.js +50 -23
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +50 -23
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +1280 -1262
  13. package/dist/vuetify.d.ts +167 -47
  14. package/dist/vuetify.esm.js +50 -23
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +50 -23
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +16 -13
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAutocomplete/index.d.mts +12 -0
  22. package/lib/components/VAvatar/VAvatar.mjs +16 -2
  23. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  24. package/lib/components/VBottomSheet/index.d.mts +6 -0
  25. package/lib/components/VCheckbox/VCheckbox.css +3 -0
  26. package/lib/components/VCheckbox/VCheckbox.sass +3 -0
  27. package/lib/components/VCheckbox/_variables.scss +3 -0
  28. package/lib/components/VChip/VChip.css +0 -1
  29. package/lib/components/VChip/VChip.mjs +2 -1
  30. package/lib/components/VChip/VChip.mjs.map +1 -1
  31. package/lib/components/VChip/VChip.sass +0 -1
  32. package/lib/components/VColorPicker/VColorPicker.mjs +24 -12
  33. package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
  34. package/lib/components/VColorPicker/VColorPickerCanvas.mjs +1 -1
  35. package/lib/components/VColorPicker/VColorPickerCanvas.mjs.map +1 -1
  36. package/lib/components/VCombobox/index.d.mts +12 -0
  37. package/lib/components/VDatePicker/VDatePicker.mjs +1 -1
  38. package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
  39. package/lib/components/VDialog/index.d.mts +21 -3
  40. package/lib/components/VList/VListItem.css +19 -6
  41. package/lib/components/VList/VListItem.sass +16 -3
  42. package/lib/components/VList/_variables.scss +6 -4
  43. package/lib/components/VMenu/index.d.mts +21 -3
  44. package/lib/components/VOverlay/VOverlay.css +1 -1
  45. package/lib/components/VOverlay/VOverlay.mjs +4 -2
  46. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  47. package/lib/components/VOverlay/_variables.scss +1 -1
  48. package/lib/components/VOverlay/index.d.mts +6 -0
  49. package/lib/components/VSelect/index.d.mts +12 -0
  50. package/lib/components/VSnackbar/VSnackbar.mjs +1 -2
  51. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  52. package/lib/components/VSnackbar/index.d.mts +21 -3
  53. package/lib/components/VSwitch/VSwitch.css +3 -0
  54. package/lib/components/VSwitch/VSwitch.sass +3 -0
  55. package/lib/components/VSwitch/_variables.scss +1 -0
  56. package/lib/components/VTooltip/index.d.mts +21 -3
  57. package/lib/components/index.d.mts +132 -12
  58. package/lib/entry-bundler.mjs +1 -1
  59. package/lib/framework.mjs +1 -1
  60. package/lib/index.d.mts +35 -35
  61. package/lib/labs/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs +1 -1
  62. package/lib/labs/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs.map +1 -1
  63. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.2
2
+ * Vuetify v3.5.4
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17029,6 +17029,19 @@ html.overflow-y-hidden {
17029
17029
  font-weight: normal;
17030
17030
  padding: 0.2em 0.4rem;
17031
17031
  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));
17032
+ }.v-calendar-header {
17033
+ align-items: center;
17034
+ display: flex;
17035
+ min-height: 64px;
17036
+ }
17037
+
17038
+ .v-calendar-header__today {
17039
+ margin-inline-end: 24px;
17040
+ }
17041
+
17042
+ .v-calendar-header__title {
17043
+ font-size: 1.5rem;
17044
+ margin-inline-start: 24px;
17032
17045
  }.v-calendar-weekly {
17033
17046
  width: 100%;
17034
17047
  height: 100%;
@@ -17252,38 +17265,6 @@ html.overflow-y-hidden {
17252
17265
  }
17253
17266
  .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
17254
17267
  border-right: none;
17255
- }.v-calendar-day {
17256
- position: relative;
17257
- display: flex;
17258
- flex-direction: column;
17259
- }
17260
-
17261
- .v-calendar-weekly .v-calendar__container {
17262
- display: grid;
17263
- }
17264
- .v-calendar-weekly .v-calendar__container.days__7 {
17265
- grid-template-columns: repeat(7, 1fr);
17266
- }
17267
- .v-calendar-weekly .v-calendar__container.days__6 {
17268
- grid-template-columns: repeat(6, 1fr);
17269
- }
17270
- .v-calendar-weekly .v-calendar__container.days__5 {
17271
- grid-template-columns: repeat(5, 1fr);
17272
- }
17273
- .v-calendar-weekly .v-calendar__container.days__4 {
17274
- grid-template-columns: repeat(4, 1fr);
17275
- }
17276
- .v-calendar-weekly .v-calendar__container.days__3 {
17277
- grid-template-columns: repeat(3, 1fr);
17278
- }
17279
- .v-calendar-weekly .v-calendar__container.days__2 {
17280
- grid-template-columns: repeat(2, 1fr);
17281
- }
17282
- .v-calendar-weekly .v-calendar__container.days__1 {
17283
- grid-template-columns: repeat(1, 1fr);
17284
- }
17285
- .v-calendar-weekly .v-calendar__container.days__0 {
17286
- grid-template-columns: repeat(1, 1fr);
17287
17268
  }.v-calendar-day__row-with-label {
17288
17269
  display: grid;
17289
17270
  grid-template-columns: 48px 8px 1fr;
@@ -17388,19 +17369,38 @@ html.overflow-y-hidden {
17388
17369
 
17389
17370
  .v-calendar-weekly__day-alldayevents-container {
17390
17371
  min-height: 24px;
17391
- }.v-calendar-header {
17392
- align-items: center;
17372
+ }.v-calendar-day {
17373
+ position: relative;
17393
17374
  display: flex;
17394
- min-height: 64px;
17375
+ flex-direction: column;
17395
17376
  }
17396
17377
 
17397
- .v-calendar-header__today {
17398
- margin-inline-end: 24px;
17378
+ .v-calendar-weekly .v-calendar__container {
17379
+ display: grid;
17399
17380
  }
17400
-
17401
- .v-calendar-header__title {
17402
- font-size: 1.5rem;
17403
- margin-inline-start: 24px;
17381
+ .v-calendar-weekly .v-calendar__container.days__7 {
17382
+ grid-template-columns: repeat(7, 1fr);
17383
+ }
17384
+ .v-calendar-weekly .v-calendar__container.days__6 {
17385
+ grid-template-columns: repeat(6, 1fr);
17386
+ }
17387
+ .v-calendar-weekly .v-calendar__container.days__5 {
17388
+ grid-template-columns: repeat(5, 1fr);
17389
+ }
17390
+ .v-calendar-weekly .v-calendar__container.days__4 {
17391
+ grid-template-columns: repeat(4, 1fr);
17392
+ }
17393
+ .v-calendar-weekly .v-calendar__container.days__3 {
17394
+ grid-template-columns: repeat(3, 1fr);
17395
+ }
17396
+ .v-calendar-weekly .v-calendar__container.days__2 {
17397
+ grid-template-columns: repeat(2, 1fr);
17398
+ }
17399
+ .v-calendar-weekly .v-calendar__container.days__1 {
17400
+ grid-template-columns: repeat(1, 1fr);
17401
+ }
17402
+ .v-calendar-weekly .v-calendar__container.days__0 {
17403
+ grid-template-columns: repeat(1, 1fr);
17404
17404
  }.v-picker.v-sheet {
17405
17405
  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));
17406
17406
  border-radius: 4px;
@@ -17452,6 +17452,22 @@ html.overflow-y-hidden {
17452
17452
  padding-bottom: 16px;
17453
17453
  font-weight: 600;
17454
17454
  letter-spacing: 0.1666666667em;
17455
+ }.v-application {
17456
+ display: flex;
17457
+ background: rgb(var(--v-theme-background));
17458
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
17459
+ }
17460
+
17461
+ .v-application__wrap {
17462
+ -webkit-backface-visibility: hidden;
17463
+ backface-visibility: hidden;
17464
+ display: flex;
17465
+ flex-direction: column;
17466
+ flex: 1 1 auto;
17467
+ max-width: 100%;
17468
+ min-height: 100vh;
17469
+ min-height: 100dvh;
17470
+ position: relative;
17455
17471
  }.v-alert {
17456
17472
  display: grid;
17457
17473
  flex: 1 1;
@@ -17662,22 +17678,6 @@ html.overflow-y-hidden {
17662
17678
  text-transform: none;
17663
17679
  word-break: normal;
17664
17680
  word-wrap: break-word;
17665
- }.v-application {
17666
- display: flex;
17667
- background: rgb(var(--v-theme-background));
17668
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
17669
- }
17670
-
17671
- .v-application__wrap {
17672
- -webkit-backface-visibility: hidden;
17673
- backface-visibility: hidden;
17674
- display: flex;
17675
- flex-direction: column;
17676
- flex: 1 1 auto;
17677
- max-width: 100%;
17678
- min-height: 100vh;
17679
- min-height: 100dvh;
17680
- position: relative;
17681
17681
  }.v-app-bar {
17682
17682
  display: flex;
17683
17683
  }
@@ -17771,77 +17771,6 @@ html.overflow-y-hidden {
17771
17771
  .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17772
17772
  opacity: var(--v-high-emphasis-opacity);
17773
17773
  transform: rotate(180deg);
17774
- }.v-badge {
17775
- display: inline-block;
17776
- line-height: 1;
17777
- }
17778
-
17779
- .v-badge__badge {
17780
- align-items: center;
17781
- display: inline-flex;
17782
- border-radius: 10px;
17783
- font-size: 0.75rem;
17784
- font-weight: 500;
17785
- height: 1.25rem;
17786
- justify-content: center;
17787
- min-width: 20px;
17788
- padding: 4px 6px;
17789
- pointer-events: auto;
17790
- position: absolute;
17791
- text-align: center;
17792
- text-indent: 0;
17793
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17794
- white-space: nowrap;
17795
- background: rgb(var(--v-theme-surface-variant));
17796
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17797
- }
17798
- .v-badge--bordered .v-badge__badge::after {
17799
- border-radius: inherit;
17800
- border-style: solid;
17801
- border-width: 2px;
17802
- bottom: 0;
17803
- color: rgb(var(--v-theme-background));
17804
- content: "";
17805
- left: 0;
17806
- position: absolute;
17807
- right: 0;
17808
- top: 0;
17809
- transform: scale(1.05);
17810
- }
17811
- .v-badge--dot .v-badge__badge {
17812
- border-radius: 4.5px;
17813
- height: 9px;
17814
- min-width: 0;
17815
- padding: 0;
17816
- width: 9px;
17817
- }
17818
- .v-badge--dot .v-badge__badge::after {
17819
- border-width: 1.5px;
17820
- }
17821
- .v-badge--inline .v-badge__badge {
17822
- position: relative;
17823
- vertical-align: middle;
17824
- }
17825
- .v-badge__badge .v-icon {
17826
- color: inherit;
17827
- font-size: 0.75rem;
17828
- margin: 0 -2px;
17829
- }
17830
- .v-badge__badge img,
17831
- .v-badge__badge .v-img {
17832
- height: 100%;
17833
- width: 100%;
17834
- }
17835
-
17836
- .v-badge__wrapper {
17837
- display: flex;
17838
- position: relative;
17839
- }
17840
- .v-badge--inline .v-badge__wrapper {
17841
- align-items: center;
17842
- display: inline-flex;
17843
- justify-content: center;
17844
- margin: 0 4px;
17845
17774
  }.v-avatar {
17846
17775
  flex: none;
17847
17776
  align-items: center;
@@ -17929,118 +17858,109 @@ html.overflow-y-hidden {
17929
17858
  .v-avatar .v-img {
17930
17859
  height: 100%;
17931
17860
  width: 100%;
17932
- }.v-bottom-navigation {
17933
- display: flex;
17934
- max-width: 100%;
17935
- overflow: hidden;
17861
+ }.v-badge {
17862
+ display: inline-block;
17863
+ line-height: 1;
17864
+ }
17865
+
17866
+ .v-badge__badge {
17867
+ align-items: center;
17868
+ display: inline-flex;
17869
+ border-radius: 10px;
17870
+ font-size: 0.75rem;
17871
+ font-weight: 500;
17872
+ height: 1.25rem;
17873
+ justify-content: center;
17874
+ min-width: 20px;
17875
+ padding: 4px 6px;
17876
+ pointer-events: auto;
17936
17877
  position: absolute;
17937
- transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17938
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
17878
+ text-align: center;
17879
+ text-indent: 0;
17880
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17881
+ white-space: nowrap;
17882
+ background: rgb(var(--v-theme-surface-variant));
17883
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17884
+ }
17885
+ .v-badge--bordered .v-badge__badge::after {
17886
+ border-radius: inherit;
17939
17887
  border-style: solid;
17940
- border-width: 0;
17941
- border-radius: 0;
17942
- background: rgb(var(--v-theme-surface));
17943
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17888
+ border-width: 2px;
17889
+ bottom: 0;
17890
+ color: rgb(var(--v-theme-background));
17891
+ content: "";
17892
+ left: 0;
17893
+ position: absolute;
17894
+ right: 0;
17895
+ top: 0;
17896
+ transform: scale(1.05);
17944
17897
  }
17945
- .v-bottom-navigation--border {
17946
- border-width: thin;
17947
- box-shadow: none;
17898
+ .v-badge--dot .v-badge__badge {
17899
+ border-radius: 4.5px;
17900
+ height: 9px;
17901
+ min-width: 0;
17902
+ padding: 0;
17903
+ width: 9px;
17948
17904
  }
17949
- .v-bottom-navigation--active {
17950
- 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));
17905
+ .v-badge--dot .v-badge__badge::after {
17906
+ border-width: 1.5px;
17951
17907
  }
17952
-
17953
- .v-bottom-navigation__content {
17954
- display: flex;
17955
- flex: none;
17908
+ .v-badge--inline .v-badge__badge {
17909
+ position: relative;
17910
+ vertical-align: middle;
17911
+ }
17912
+ .v-badge__badge .v-icon {
17913
+ color: inherit;
17956
17914
  font-size: 0.75rem;
17957
- justify-content: center;
17958
- transition: inherit;
17959
- width: 100%;
17915
+ margin: 0 -2px;
17960
17916
  }
17961
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
17962
- font-size: inherit;
17917
+ .v-badge__badge img,
17918
+ .v-badge__badge .v-img {
17963
17919
  height: 100%;
17964
- max-width: 168px;
17965
- min-width: 80px;
17966
- text-transform: none;
17967
- transition: inherit;
17968
- width: auto;
17969
- border-radius: 0;
17970
- }
17971
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
17972
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
17973
- transition: inherit;
17974
- }
17975
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
17976
- font-size: 1.5rem;
17977
- }
17978
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
17979
- flex-grow: 1;
17980
- }
17981
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
17982
- transition: inherit;
17983
- opacity: 0;
17984
- }
17985
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
17986
- transform: translateY(0.5rem);
17987
- }.v-breadcrumbs {
17988
- display: flex;
17989
- align-items: center;
17990
- line-height: 1.375rem;
17991
- padding: 16px 12px;
17992
- }
17993
- .v-breadcrumbs--rounded {
17994
- border-radius: 4px;
17995
- }
17996
- .v-breadcrumbs--density-default {
17997
- padding-top: 16px;
17998
- padding-bottom: 16px;
17999
- }
18000
-
18001
- .v-breadcrumbs--density-comfortable {
18002
- padding-top: 12px;
18003
- padding-bottom: 12px;
18004
- }
18005
-
18006
- .v-breadcrumbs--density-compact {
18007
- padding-top: 8px;
18008
- padding-bottom: 8px;
17920
+ width: 100%;
18009
17921
  }
18010
17922
 
18011
- .v-breadcrumbs__prepend {
18012
- align-items: center;
18013
- display: inline-flex;
17923
+ .v-badge__wrapper {
17924
+ display: flex;
17925
+ position: relative;
18014
17926
  }
18015
-
18016
- .v-breadcrumbs-item {
17927
+ .v-badge--inline .v-badge__wrapper {
18017
17928
  align-items: center;
18018
- color: inherit;
18019
17929
  display: inline-flex;
18020
- padding: 0 4px;
18021
- text-decoration: none;
18022
- vertical-align: middle;
17930
+ justify-content: center;
17931
+ margin: 0 4px;
17932
+ }.bottom-sheet-transition-enter-from {
17933
+ transform: translateY(100%);
18023
17934
  }
18024
- .v-breadcrumbs-item--disabled {
18025
- opacity: var(--v-disabled-opacity);
18026
- pointer-events: none;
17935
+ .bottom-sheet-transition-leave-to {
17936
+ transform: translateY(100%);
18027
17937
  }
18028
- .v-breadcrumbs-item--link {
18029
- color: inherit;
18030
- text-decoration: none;
17938
+
17939
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17940
+ align-self: flex-end;
17941
+ border-radius: 0;
17942
+ flex: 0 1 auto;
17943
+ left: 0;
17944
+ right: 0;
17945
+ margin-inline: 0;
17946
+ margin-bottom: 0;
17947
+ transition-duration: 0.2s;
17948
+ width: 100%;
17949
+ max-width: 100%;
17950
+ overflow: visible;
17951
+ 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));
18031
17952
  }
18032
- .v-breadcrumbs-item--link:hover {
18033
- text-decoration: underline;
17953
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17954
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17955
+ border-radius: 0;
18034
17956
  }
18035
- .v-breadcrumbs-item .v-icon {
18036
- font-size: 1rem;
18037
- margin-inline: -4px 2px;
17957
+ .v-bottom-sheet.v-bottom-sheet--inset {
17958
+ max-width: none;
18038
17959
  }
18039
-
18040
- .v-breadcrumbs-divider {
18041
- display: inline-block;
18042
- padding: 0 8px;
18043
- vertical-align: middle;
17960
+ @media (min-width: 600px) {
17961
+ .v-bottom-sheet.v-bottom-sheet--inset {
17962
+ max-width: 70%;
17963
+ }
18044
17964
  }.v-banner {
18045
17965
  display: grid;
18046
17966
  flex: 1 1;
@@ -18198,111 +18118,247 @@ html.overflow-y-hidden {
18198
18118
  }
18199
18119
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18200
18120
  align-self: flex-start;
18201
- }.bottom-sheet-transition-enter-from {
18202
- transform: translateY(100%);
18121
+ }.v-bottom-navigation {
18122
+ display: flex;
18123
+ max-width: 100%;
18124
+ overflow: hidden;
18125
+ position: absolute;
18126
+ transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18127
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18128
+ border-style: solid;
18129
+ border-width: 0;
18130
+ border-radius: 0;
18131
+ background: rgb(var(--v-theme-surface));
18132
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18203
18133
  }
18204
- .bottom-sheet-transition-leave-to {
18205
- transform: translateY(100%);
18134
+ .v-bottom-navigation--border {
18135
+ border-width: thin;
18136
+ box-shadow: none;
18137
+ }
18138
+ .v-bottom-navigation--active {
18139
+ 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));
18206
18140
  }
18207
18141
 
18208
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18209
- align-self: flex-end;
18210
- border-radius: 0;
18211
- flex: 0 1 auto;
18212
- left: 0;
18213
- right: 0;
18214
- margin-inline: 0;
18215
- margin-bottom: 0;
18216
- transition-duration: 0.2s;
18142
+ .v-bottom-navigation__content {
18143
+ display: flex;
18144
+ flex: none;
18145
+ font-size: 0.75rem;
18146
+ justify-content: center;
18147
+ transition: inherit;
18217
18148
  width: 100%;
18218
- max-width: 100%;
18219
- overflow: visible;
18220
- 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));
18221
18149
  }
18222
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18223
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18150
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18151
+ font-size: inherit;
18152
+ height: 100%;
18153
+ max-width: 168px;
18154
+ min-width: 80px;
18155
+ text-transform: none;
18156
+ transition: inherit;
18157
+ width: auto;
18224
18158
  border-radius: 0;
18225
18159
  }
18226
- .v-bottom-sheet.v-bottom-sheet--inset {
18227
- max-width: none;
18160
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18161
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18162
+ transition: inherit;
18228
18163
  }
18229
- @media (min-width: 600px) {
18230
- .v-bottom-sheet.v-bottom-sheet--inset {
18231
- max-width: 70%;
18232
- }
18233
- }.v-btn {
18234
- align-items: center;
18235
- border-radius: 4px;
18236
- display: inline-grid;
18237
- grid-template-areas: "prepend content append";
18238
- grid-template-columns: max-content auto max-content;
18239
- font-weight: 500;
18240
- justify-content: center;
18241
- letter-spacing: 0.0892857143em;
18242
- line-height: normal;
18243
- max-width: 100%;
18244
- outline: none;
18245
- position: relative;
18246
- text-decoration: none;
18247
- text-indent: 0.0892857143em;
18248
- text-transform: uppercase;
18249
- transition-property: box-shadow, transform, opacity, background;
18250
- transition-duration: 0.28s;
18251
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18252
- -webkit-user-select: none;
18253
- user-select: none;
18254
- vertical-align: middle;
18255
- flex-shrink: 0;
18256
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18257
- border-style: solid;
18258
- border-width: 0;
18164
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18165
+ font-size: 1.5rem;
18259
18166
  }
18260
- .v-btn--size-x-small {
18261
- --v-btn-size: 0.625rem;
18262
- --v-btn-height: 20px;
18263
- font-size: var(--v-btn-size);
18264
- min-width: 36px;
18265
- padding: 0 8px;
18167
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18168
+ flex-grow: 1;
18266
18169
  }
18267
-
18268
- .v-btn--size-small {
18269
- --v-btn-size: 0.75rem;
18270
- --v-btn-height: 28px;
18271
- font-size: var(--v-btn-size);
18272
- min-width: 50px;
18273
- padding: 0 12px;
18170
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18171
+ transition: inherit;
18172
+ opacity: 0;
18274
18173
  }
18275
-
18276
- .v-btn--size-default {
18277
- --v-btn-size: 0.875rem;
18278
- --v-btn-height: 36px;
18279
- font-size: var(--v-btn-size);
18280
- min-width: 64px;
18281
- padding: 0 16px;
18174
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18175
+ transform: translateY(0.5rem);
18176
+ }.v-breadcrumbs {
18177
+ display: flex;
18178
+ align-items: center;
18179
+ line-height: 1.375rem;
18180
+ padding: 16px 12px;
18282
18181
  }
18283
-
18284
- .v-btn--size-large {
18285
- --v-btn-size: 1rem;
18286
- --v-btn-height: 44px;
18287
- font-size: var(--v-btn-size);
18288
- min-width: 78px;
18289
- padding: 0 20px;
18182
+ .v-breadcrumbs--rounded {
18183
+ border-radius: 4px;
18290
18184
  }
18291
-
18292
- .v-btn--size-x-large {
18293
- --v-btn-size: 1.125rem;
18294
- --v-btn-height: 52px;
18295
- font-size: var(--v-btn-size);
18296
- min-width: 92px;
18297
- padding: 0 24px;
18185
+ .v-breadcrumbs--density-default {
18186
+ padding-top: 16px;
18187
+ padding-bottom: 16px;
18298
18188
  }
18299
18189
 
18300
- .v-btn.v-btn--density-default {
18301
- height: calc(var(--v-btn-height) + 0px);
18190
+ .v-breadcrumbs--density-comfortable {
18191
+ padding-top: 12px;
18192
+ padding-bottom: 12px;
18302
18193
  }
18303
18194
 
18304
- .v-btn.v-btn--density-comfortable {
18305
- height: calc(var(--v-btn-height) + -8px);
18195
+ .v-breadcrumbs--density-compact {
18196
+ padding-top: 8px;
18197
+ padding-bottom: 8px;
18198
+ }
18199
+
18200
+ .v-breadcrumbs__prepend {
18201
+ align-items: center;
18202
+ display: inline-flex;
18203
+ }
18204
+
18205
+ .v-breadcrumbs-item {
18206
+ align-items: center;
18207
+ color: inherit;
18208
+ display: inline-flex;
18209
+ padding: 0 4px;
18210
+ text-decoration: none;
18211
+ vertical-align: middle;
18212
+ }
18213
+ .v-breadcrumbs-item--disabled {
18214
+ opacity: var(--v-disabled-opacity);
18215
+ pointer-events: none;
18216
+ }
18217
+ .v-breadcrumbs-item--link {
18218
+ color: inherit;
18219
+ text-decoration: none;
18220
+ }
18221
+ .v-breadcrumbs-item--link:hover {
18222
+ text-decoration: underline;
18223
+ }
18224
+ .v-breadcrumbs-item .v-icon {
18225
+ font-size: 1rem;
18226
+ margin-inline: -4px 2px;
18227
+ }
18228
+
18229
+ .v-breadcrumbs-divider {
18230
+ display: inline-block;
18231
+ padding: 0 8px;
18232
+ vertical-align: middle;
18233
+ }.v-btn-group {
18234
+ display: inline-flex;
18235
+ flex-wrap: nowrap;
18236
+ max-width: 100%;
18237
+ min-width: 0;
18238
+ overflow: hidden;
18239
+ vertical-align: middle;
18240
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18241
+ border-style: solid;
18242
+ border-width: 0;
18243
+ 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));
18244
+ border-radius: 4px;
18245
+ background: transparent;
18246
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18247
+ }
18248
+ .v-btn-group--border {
18249
+ border-width: thin;
18250
+ box-shadow: none;
18251
+ }
18252
+ .v-btn-group--density-default.v-btn-group {
18253
+ height: 48px;
18254
+ }
18255
+
18256
+ .v-btn-group--density-comfortable.v-btn-group {
18257
+ height: 40px;
18258
+ }
18259
+
18260
+ .v-btn-group--density-compact.v-btn-group {
18261
+ height: 36px;
18262
+ }
18263
+
18264
+ .v-btn-group .v-btn {
18265
+ border-radius: 0;
18266
+ border-color: inherit;
18267
+ }
18268
+ .v-btn-group .v-btn:not(:last-child) {
18269
+ border-inline-end: none;
18270
+ }
18271
+ .v-btn-group .v-btn:not(:first-child) {
18272
+ border-inline-start: none;
18273
+ }
18274
+ .v-btn-group .v-btn:first-child {
18275
+ border-start-start-radius: inherit;
18276
+ border-end-start-radius: inherit;
18277
+ }
18278
+ .v-btn-group .v-btn:last-child {
18279
+ border-start-end-radius: inherit;
18280
+ border-end-end-radius: inherit;
18281
+ }
18282
+ .v-btn-group--divided .v-btn:not(:last-child) {
18283
+ border-inline-end-width: thin;
18284
+ border-inline-end-style: solid;
18285
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
18286
+ }
18287
+ .v-btn-group--tile {
18288
+ border-radius: 0;
18289
+ }.v-btn {
18290
+ align-items: center;
18291
+ border-radius: 4px;
18292
+ display: inline-grid;
18293
+ grid-template-areas: "prepend content append";
18294
+ grid-template-columns: max-content auto max-content;
18295
+ font-weight: 500;
18296
+ justify-content: center;
18297
+ letter-spacing: 0.0892857143em;
18298
+ line-height: normal;
18299
+ max-width: 100%;
18300
+ outline: none;
18301
+ position: relative;
18302
+ text-decoration: none;
18303
+ text-indent: 0.0892857143em;
18304
+ text-transform: uppercase;
18305
+ transition-property: box-shadow, transform, opacity, background;
18306
+ transition-duration: 0.28s;
18307
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18308
+ -webkit-user-select: none;
18309
+ user-select: none;
18310
+ vertical-align: middle;
18311
+ flex-shrink: 0;
18312
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18313
+ border-style: solid;
18314
+ border-width: 0;
18315
+ }
18316
+ .v-btn--size-x-small {
18317
+ --v-btn-size: 0.625rem;
18318
+ --v-btn-height: 20px;
18319
+ font-size: var(--v-btn-size);
18320
+ min-width: 36px;
18321
+ padding: 0 8px;
18322
+ }
18323
+
18324
+ .v-btn--size-small {
18325
+ --v-btn-size: 0.75rem;
18326
+ --v-btn-height: 28px;
18327
+ font-size: var(--v-btn-size);
18328
+ min-width: 50px;
18329
+ padding: 0 12px;
18330
+ }
18331
+
18332
+ .v-btn--size-default {
18333
+ --v-btn-size: 0.875rem;
18334
+ --v-btn-height: 36px;
18335
+ font-size: var(--v-btn-size);
18336
+ min-width: 64px;
18337
+ padding: 0 16px;
18338
+ }
18339
+
18340
+ .v-btn--size-large {
18341
+ --v-btn-size: 1rem;
18342
+ --v-btn-height: 44px;
18343
+ font-size: var(--v-btn-size);
18344
+ min-width: 78px;
18345
+ padding: 0 20px;
18346
+ }
18347
+
18348
+ .v-btn--size-x-large {
18349
+ --v-btn-size: 1.125rem;
18350
+ --v-btn-height: 52px;
18351
+ font-size: var(--v-btn-size);
18352
+ min-width: 92px;
18353
+ padding: 0 24px;
18354
+ }
18355
+
18356
+ .v-btn.v-btn--density-default {
18357
+ height: calc(var(--v-btn-height) + 0px);
18358
+ }
18359
+
18360
+ .v-btn.v-btn--density-comfortable {
18361
+ height: calc(var(--v-btn-height) + -8px);
18306
18362
  }
18307
18363
 
18308
18364
  .v-btn.v-btn--density-compact {
@@ -18646,182 +18702,63 @@ html.overflow-y-hidden {
18646
18702
  .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18647
18703
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18648
18704
  }
18649
- }.v-btn-group {
18650
- display: inline-flex;
18651
- flex-wrap: nowrap;
18652
- max-width: 100%;
18653
- min-width: 0;
18705
+ }.v-card {
18706
+ display: block;
18654
18707
  overflow: hidden;
18655
- vertical-align: middle;
18708
+ overflow-wrap: break-word;
18709
+ position: relative;
18710
+ padding: 0;
18711
+ text-decoration: none;
18712
+ transition-duration: 0.28s;
18713
+ transition-property: box-shadow, opacity, background;
18714
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18715
+ z-index: 0;
18656
18716
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18657
18717
  border-style: solid;
18658
18718
  border-width: 0;
18659
- 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));
18660
18719
  border-radius: 4px;
18661
- background: transparent;
18662
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18663
18720
  }
18664
- .v-btn-group--border {
18721
+ .v-card--border {
18665
18722
  border-width: thin;
18666
18723
  box-shadow: none;
18667
18724
  }
18668
- .v-btn-group--density-default.v-btn-group {
18669
- height: 48px;
18725
+ .v-card--absolute {
18726
+ position: absolute;
18670
18727
  }
18671
-
18672
- .v-btn-group--density-comfortable.v-btn-group {
18673
- height: 40px;
18728
+ .v-card--fixed {
18729
+ position: fixed;
18674
18730
  }
18675
-
18676
- .v-btn-group--density-compact.v-btn-group {
18677
- height: 36px;
18731
+ .v-card:hover > .v-card__overlay {
18732
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
18678
18733
  }
18679
-
18680
- .v-btn-group .v-btn {
18681
- border-radius: 0;
18682
- border-color: inherit;
18734
+ .v-card:focus-visible > .v-card__overlay {
18735
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
18683
18736
  }
18684
- .v-btn-group .v-btn:not(:last-child) {
18685
- border-inline-end: none;
18737
+ @supports not selector(:focus-visible) {
18738
+ .v-card:focus > .v-card__overlay {
18739
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
18740
+ }
18686
18741
  }
18687
- .v-btn-group .v-btn:not(:first-child) {
18688
- border-inline-start: none;
18742
+ .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
18743
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18689
18744
  }
18690
- .v-btn-group .v-btn:first-child {
18691
- border-start-start-radius: inherit;
18692
- border-end-start-radius: inherit;
18745
+ .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
18746
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18693
18747
  }
18694
- .v-btn-group .v-btn:last-child {
18695
- border-start-end-radius: inherit;
18696
- border-end-end-radius: inherit;
18748
+ .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
18749
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18697
18750
  }
18698
- .v-btn-group--divided .v-btn:not(:last-child) {
18699
- border-inline-end-width: thin;
18700
- border-inline-end-style: solid;
18701
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
18751
+ @supports not selector(:focus-visible) {
18752
+ .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
18753
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18754
+ }
18702
18755
  }
18703
- .v-btn-group--tile {
18704
- border-radius: 0;
18705
- }.v-carousel {
18706
- overflow: hidden;
18707
- position: relative;
18708
- width: 100%;
18756
+ .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
18757
+ background: transparent;
18758
+ color: inherit;
18709
18759
  }
18710
- .v-carousel__controls {
18711
- align-items: center;
18712
- bottom: 0;
18713
- display: flex;
18714
- height: 50px;
18715
- justify-content: center;
18716
- list-style-type: none;
18717
- position: absolute;
18718
- width: 100%;
18719
- z-index: 1;
18720
- background: rgba(var(--v-theme-surface-variant), 0.3);
18721
- color: rgb(var(--v-theme-on-surface-variant));
18722
- }
18723
- .v-carousel__controls > .v-item-group {
18724
- flex: 0 1 auto;
18725
- }
18726
- .v-carousel__controls__item {
18727
- margin: 0 8px;
18728
- }
18729
- .v-carousel__controls__item .v-icon {
18730
- opacity: 0.5;
18731
- }
18732
- .v-carousel__controls__item--active .v-icon {
18733
- opacity: 1;
18734
- vertical-align: middle;
18735
- }
18736
- .v-carousel__controls__item:hover {
18737
- background: none;
18738
- }
18739
- .v-carousel__controls__item:hover .v-icon {
18740
- opacity: 0.8;
18741
- }
18742
-
18743
- .v-carousel__progress {
18744
- margin: 0;
18745
- position: absolute;
18746
- bottom: 0;
18747
- left: 0;
18748
- right: 0;
18749
- }
18750
-
18751
- .v-carousel-item {
18752
- display: block;
18753
- height: inherit;
18754
- text-decoration: none;
18755
- }
18756
- .v-carousel-item > .v-img {
18757
- height: inherit;
18758
- }
18759
-
18760
- .v-carousel--hide-delimiter-background .v-carousel__controls {
18761
- background: transparent;
18762
- }
18763
-
18764
- .v-carousel--vertical-delimiters .v-carousel__controls {
18765
- flex-direction: column;
18766
- height: 100% !important;
18767
- width: 50px;
18768
- }.v-card {
18769
- display: block;
18770
- overflow: hidden;
18771
- overflow-wrap: break-word;
18772
- position: relative;
18773
- padding: 0;
18774
- text-decoration: none;
18775
- transition-duration: 0.28s;
18776
- transition-property: box-shadow, opacity, background;
18777
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18778
- z-index: 0;
18779
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18780
- border-style: solid;
18781
- border-width: 0;
18782
- border-radius: 4px;
18783
- }
18784
- .v-card--border {
18785
- border-width: thin;
18786
- box-shadow: none;
18787
- }
18788
- .v-card--absolute {
18789
- position: absolute;
18790
- }
18791
- .v-card--fixed {
18792
- position: fixed;
18793
- }
18794
- .v-card:hover > .v-card__overlay {
18795
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
18796
- }
18797
- .v-card:focus-visible > .v-card__overlay {
18798
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
18799
- }
18800
- @supports not selector(:focus-visible) {
18801
- .v-card:focus > .v-card__overlay {
18802
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
18803
- }
18804
- }
18805
- .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
18806
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18807
- }
18808
- .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
18809
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18810
- }
18811
- .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
18812
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18813
- }
18814
- @supports not selector(:focus-visible) {
18815
- .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
18816
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18817
- }
18818
- }
18819
- .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
18820
- background: transparent;
18821
- color: inherit;
18822
- }
18823
- .v-card--variant-plain {
18824
- opacity: 0.62;
18760
+ .v-card--variant-plain {
18761
+ opacity: 0.62;
18825
18762
  }
18826
18763
  .v-card--variant-plain:focus, .v-card--variant-plain:hover {
18827
18764
  opacity: 1;
@@ -19061,8 +18998,69 @@ html.overflow-y-hidden {
19061
18998
  pointer-events: none;
19062
18999
  opacity: 0;
19063
19000
  transition: opacity 0.2s ease-in-out;
19064
- }.v-checkbox .v-selection-control {
19065
- min-height: var(--v-input-control-height);
19001
+ }.v-carousel {
19002
+ overflow: hidden;
19003
+ position: relative;
19004
+ width: 100%;
19005
+ }
19006
+ .v-carousel__controls {
19007
+ align-items: center;
19008
+ bottom: 0;
19009
+ display: flex;
19010
+ height: 50px;
19011
+ justify-content: center;
19012
+ list-style-type: none;
19013
+ position: absolute;
19014
+ width: 100%;
19015
+ z-index: 1;
19016
+ background: rgba(var(--v-theme-surface-variant), 0.3);
19017
+ color: rgb(var(--v-theme-on-surface-variant));
19018
+ }
19019
+ .v-carousel__controls > .v-item-group {
19020
+ flex: 0 1 auto;
19021
+ }
19022
+ .v-carousel__controls__item {
19023
+ margin: 0 8px;
19024
+ }
19025
+ .v-carousel__controls__item .v-icon {
19026
+ opacity: 0.5;
19027
+ }
19028
+ .v-carousel__controls__item--active .v-icon {
19029
+ opacity: 1;
19030
+ vertical-align: middle;
19031
+ }
19032
+ .v-carousel__controls__item:hover {
19033
+ background: none;
19034
+ }
19035
+ .v-carousel__controls__item:hover .v-icon {
19036
+ opacity: 0.8;
19037
+ }
19038
+
19039
+ .v-carousel__progress {
19040
+ margin: 0;
19041
+ position: absolute;
19042
+ bottom: 0;
19043
+ left: 0;
19044
+ right: 0;
19045
+ }
19046
+
19047
+ .v-carousel-item {
19048
+ display: block;
19049
+ height: inherit;
19050
+ text-decoration: none;
19051
+ }
19052
+ .v-carousel-item > .v-img {
19053
+ height: inherit;
19054
+ }
19055
+
19056
+ .v-carousel--hide-delimiter-background .v-carousel__controls {
19057
+ background: transparent;
19058
+ }
19059
+
19060
+ .v-carousel--vertical-delimiters .v-carousel__controls {
19061
+ flex-direction: column;
19062
+ height: 100% !important;
19063
+ width: 50px;
19066
19064
  }.v-chip-group {
19067
19065
  display: flex;
19068
19066
  max-width: 100%;
@@ -19081,9 +19079,13 @@ html.overflow-y-hidden {
19081
19079
  white-space: normal;
19082
19080
  flex-wrap: wrap;
19083
19081
  max-width: 100%;
19082
+ }.v-checkbox.v-input {
19083
+ flex: 0 1 auto;
19084
+ }
19085
+ .v-checkbox .v-selection-control {
19086
+ min-height: var(--v-input-control-height);
19084
19087
  }.v-chip {
19085
19088
  align-items: center;
19086
- cursor: default;
19087
19089
  display: inline-flex;
19088
19090
  font-weight: 400;
19089
19091
  max-width: 100%;
@@ -19489,115 +19491,54 @@ html.overflow-y-hidden {
19489
19491
 
19490
19492
  .v-chip--label {
19491
19493
  border-radius: 4px;
19492
- }.v-combobox .v-field .v-text-field__prefix,
19493
- .v-combobox .v-field .v-text-field__suffix,
19494
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
19495
- cursor: text;
19496
- }
19497
- .v-combobox .v-field .v-field__input > input {
19498
- flex: 1 1;
19499
- }
19500
- .v-combobox .v-field input {
19501
- min-width: 64px;
19502
- }
19503
- .v-combobox .v-field:not(.v-field--focused) input {
19504
- min-width: 0;
19505
- }
19506
- .v-combobox .v-field--dirty .v-combobox__selection {
19507
- margin-inline-end: 2px;
19494
+ }.v-color-picker {
19495
+ align-self: flex-start;
19496
+ contain: content;
19508
19497
  }
19509
- .v-combobox .v-combobox__selection-text {
19510
- overflow: hidden;
19511
- text-overflow: ellipsis;
19512
- white-space: nowrap;
19498
+ .v-color-picker.v-sheet {
19499
+ 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));
19500
+ border-radius: 4px;
19513
19501
  }
19514
19502
 
19515
- .v-combobox__content {
19516
- overflow: hidden;
19517
- 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));
19518
- border-radius: 4px;
19503
+ .v-color-picker__controls {
19504
+ display: flex;
19505
+ flex-direction: column;
19506
+ padding: 16px;
19519
19507
  }
19520
- .v-combobox__mask {
19521
- background: rgb(var(--v-theme-surface-light));
19508
+
19509
+ .v-color-picker--flat {
19510
+ 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));
19522
19511
  }
19523
- .v-combobox__selection {
19524
- display: inline-flex;
19525
- align-items: center;
19526
- height: 1.5rem;
19527
- letter-spacing: inherit;
19528
- line-height: inherit;
19529
- max-width: calc(100% - 2px - 2px);
19512
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19513
+ 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));
19514
+ }.v-container {
19515
+ width: 100%;
19516
+ padding: 16px;
19517
+ margin-right: auto;
19518
+ margin-left: auto;
19530
19519
  }
19531
- .v-combobox__selection:first-child {
19532
- margin-inline-start: 0;
19520
+ @media (min-width: 960px) {
19521
+ .v-container {
19522
+ max-width: 900px;
19523
+ }
19533
19524
  }
19534
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
19535
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
19536
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
19537
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
19538
- top: 0px;
19525
+ @media (min-width: 1280px) {
19526
+ .v-container {
19527
+ max-width: 1200px;
19528
+ }
19539
19529
  }
19540
- .v-combobox--selecting-index .v-combobox__selection {
19541
- opacity: var(--v-medium-emphasis-opacity);
19530
+ @media (min-width: 1920px) {
19531
+ .v-container {
19532
+ max-width: 1800px;
19533
+ }
19542
19534
  }
19543
- .v-combobox--selecting-index .v-combobox__selection--selected {
19544
- opacity: 1;
19535
+ @media (min-width: 2560px) {
19536
+ .v-container {
19537
+ max-width: 2400px;
19538
+ }
19545
19539
  }
19546
- .v-combobox--selecting-index .v-field__input > input {
19547
- caret-color: transparent;
19548
- }
19549
- .v-combobox--single.v-text-field .v-field--focused input {
19550
- flex: 1 1;
19551
- position: absolute;
19552
- left: 0;
19553
- right: 0;
19554
- width: 100%;
19555
- padding-inline: inherit;
19556
- }
19557
- .v-combobox--single .v-field--active input {
19558
- transition: none;
19559
- }
19560
- .v-combobox--single .v-field--dirty:not(.v-field--focused) input {
19561
- opacity: 0;
19562
- }
19563
- .v-combobox--single .v-field--focused .v-combobox__selection {
19564
- opacity: 0;
19565
- }
19566
- .v-combobox__menu-icon {
19567
- margin-inline-start: 4px;
19568
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
19569
- }
19570
- .v-combobox--active-menu .v-combobox__menu-icon {
19571
- opacity: var(--v-high-emphasis-opacity);
19572
- transform: rotate(180deg);
19573
- }.v-container {
19574
- width: 100%;
19575
- padding: 16px;
19576
- margin-right: auto;
19577
- margin-left: auto;
19578
- }
19579
- @media (min-width: 960px) {
19580
- .v-container {
19581
- max-width: 900px;
19582
- }
19583
- }
19584
- @media (min-width: 1280px) {
19585
- .v-container {
19586
- max-width: 1200px;
19587
- }
19588
- }
19589
- @media (min-width: 1920px) {
19590
- .v-container {
19591
- max-width: 1800px;
19592
- }
19593
- }
19594
- @media (min-width: 2560px) {
19595
- .v-container {
19596
- max-width: 2400px;
19597
- }
19598
- }
19599
- .v-container--fluid {
19600
- max-width: 100%;
19540
+ .v-container--fluid {
19541
+ max-width: 100%;
19601
19542
  }
19602
19543
  .v-container.fill-height {
19603
19544
  align-items: center;
@@ -20242,31 +20183,87 @@ html.overflow-y-hidden {
20242
20183
  .offset-xxl-11 {
20243
20184
  margin-inline-start: 91.6666666667%;
20244
20185
  }
20245
- }.v-color-picker {
20246
- align-self: flex-start;
20247
- contain: content;
20186
+ }.v-combobox .v-field .v-text-field__prefix,
20187
+ .v-combobox .v-field .v-text-field__suffix,
20188
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20189
+ cursor: text;
20248
20190
  }
20249
- .v-color-picker.v-sheet {
20250
- 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));
20251
- border-radius: 4px;
20191
+ .v-combobox .v-field .v-field__input > input {
20192
+ flex: 1 1;
20252
20193
  }
20253
-
20254
- .v-color-picker__controls {
20255
- display: flex;
20256
- flex-direction: column;
20257
- padding: 16px;
20194
+ .v-combobox .v-field input {
20195
+ min-width: 64px;
20196
+ }
20197
+ .v-combobox .v-field:not(.v-field--focused) input {
20198
+ min-width: 0;
20199
+ }
20200
+ .v-combobox .v-field--dirty .v-combobox__selection {
20201
+ margin-inline-end: 2px;
20202
+ }
20203
+ .v-combobox .v-combobox__selection-text {
20204
+ overflow: hidden;
20205
+ text-overflow: ellipsis;
20206
+ white-space: nowrap;
20258
20207
  }
20259
20208
 
20260
- .v-color-picker--flat {
20261
- 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));
20209
+ .v-combobox__content {
20210
+ overflow: hidden;
20211
+ 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));
20212
+ border-radius: 4px;
20262
20213
  }
20263
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20264
- 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));
20265
- }.v-counter {
20266
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20267
- flex: 0 1 auto;
20268
- font-size: 12px;
20269
- transition-duration: 150ms;
20214
+ .v-combobox__mask {
20215
+ background: rgb(var(--v-theme-surface-light));
20216
+ }
20217
+ .v-combobox__selection {
20218
+ display: inline-flex;
20219
+ align-items: center;
20220
+ height: 1.5rem;
20221
+ letter-spacing: inherit;
20222
+ line-height: inherit;
20223
+ max-width: calc(100% - 2px - 2px);
20224
+ }
20225
+ .v-combobox__selection:first-child {
20226
+ margin-inline-start: 0;
20227
+ }
20228
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20229
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20230
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20231
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20232
+ top: 0px;
20233
+ }
20234
+ .v-combobox--selecting-index .v-combobox__selection {
20235
+ opacity: var(--v-medium-emphasis-opacity);
20236
+ }
20237
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20238
+ opacity: 1;
20239
+ }
20240
+ .v-combobox--selecting-index .v-field__input > input {
20241
+ caret-color: transparent;
20242
+ }
20243
+ .v-combobox--single.v-text-field .v-field--focused input {
20244
+ flex: 1 1;
20245
+ position: absolute;
20246
+ left: 0;
20247
+ right: 0;
20248
+ width: 100%;
20249
+ padding-inline: inherit;
20250
+ }
20251
+ .v-combobox--single .v-field--active input {
20252
+ transition: none;
20253
+ }
20254
+ .v-combobox--single .v-field--dirty:not(.v-field--focused) input {
20255
+ opacity: 0;
20256
+ }
20257
+ .v-combobox--single .v-field--focused .v-combobox__selection {
20258
+ opacity: 0;
20259
+ }
20260
+ .v-combobox__menu-icon {
20261
+ margin-inline-start: 4px;
20262
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20263
+ }
20264
+ .v-combobox--active-menu .v-combobox__menu-icon {
20265
+ opacity: var(--v-high-emphasis-opacity);
20266
+ transform: rotate(180deg);
20270
20267
  }.v-data-table {
20271
20268
  width: 100%;
20272
20269
  }
@@ -20516,26 +20513,55 @@ html.overflow-y-hidden {
20516
20513
 
20517
20514
  .v-date-picker__title {
20518
20515
  display: inline-block;
20519
- }.v-date-picker-months {
20520
- height: 320px;
20521
- overflow-y: scroll;
20516
+ }.v-date-picker-month {
20517
+ display: flex;
20518
+ justify-content: center;
20519
+ min-width: 328px;
20520
+ --v-date-picker-month-day-diff: 4px;
20522
20521
  }
20523
20522
 
20524
- .v-date-picker-months__content {
20525
- align-items: center;
20523
+ .v-date-picker-month__weeks {
20524
+ display: grid;
20525
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20526
+ row-gap: 4px;
20527
+ font-size: 0.875rem;
20528
+ }
20529
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
20530
+ grid-row-gap: 0;
20531
+ }
20532
+
20533
+ .v-date-picker-month__weekday {
20534
+ font-size: 0.875rem;
20535
+ }
20536
+
20537
+ .v-date-picker-month__days {
20526
20538
  display: grid;
20539
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20540
+ row-gap: 4px;
20527
20541
  flex: 1 1;
20528
- height: inherit;
20529
20542
  justify-content: space-around;
20530
- grid-template-columns: repeat(2, 1fr);
20531
- grid-gap: 4px 24px;
20532
- padding-inline-start: 36px;
20533
- padding-inline-end: 36px;
20534
20543
  }
20535
- .v-date-picker-months__content .v-btn {
20536
- text-transform: none;
20537
- padding-inline-start: 8px;
20538
- padding-inline-end: 8px;
20544
+
20545
+ .v-date-picker-month__day {
20546
+ align-items: center;
20547
+ display: flex;
20548
+ justify-content: center;
20549
+ position: relative;
20550
+ }
20551
+ .v-date-picker-month__day--selected .v-btn {
20552
+ background-color: rgb(var(--v-theme-surface-variant));
20553
+ color: rgb(var(--v-theme-on-surface-variant));
20554
+ }
20555
+ .v-date-picker-month__day--week {
20556
+ font-size: var(--v-btn-size);
20557
+ }
20558
+
20559
+ .v-date-picker-month__day--adjacent {
20560
+ opacity: 0.5;
20561
+ }
20562
+
20563
+ .v-date-picker-month__day--hide-adjacent {
20564
+ opacity: 0;
20539
20565
  }.v-date-picker-header {
20540
20566
  display: grid;
20541
20567
  grid-template-areas: "prepend content append";
@@ -20594,70 +20620,46 @@ html.overflow-y-hidden {
20594
20620
  .date-picker-header-reverse-transition-leave-to {
20595
20621
  opacity: 0;
20596
20622
  transform: translate(0, 100%);
20597
- }.v-date-picker-month {
20598
- display: flex;
20599
- justify-content: center;
20600
- min-width: 328px;
20601
- --v-date-picker-month-day-diff: 4px;
20623
+ }.v-date-picker-months {
20624
+ height: 320px;
20625
+ overflow-y: scroll;
20602
20626
  }
20603
20627
 
20604
- .v-date-picker-month__weeks {
20628
+ .v-date-picker-months__content {
20629
+ align-items: center;
20605
20630
  display: grid;
20606
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20607
- row-gap: 4px;
20608
- font-size: 0.875rem;
20609
- }
20610
- .v-date-picker-month__weeks + .v-date-picker-month__days {
20611
- grid-row-gap: 0;
20631
+ flex: 1 1;
20632
+ height: inherit;
20633
+ justify-content: space-around;
20634
+ grid-template-columns: repeat(2, 1fr);
20635
+ grid-gap: 4px 24px;
20636
+ padding-inline-start: 36px;
20637
+ padding-inline-end: 36px;
20612
20638
  }
20613
-
20614
- .v-date-picker-month__weekday {
20615
- font-size: 0.875rem;
20639
+ .v-date-picker-months__content .v-btn {
20640
+ text-transform: none;
20641
+ padding-inline-start: 8px;
20642
+ padding-inline-end: 8px;
20643
+ }.v-date-picker-years {
20644
+ height: 320px;
20645
+ overflow-y: scroll;
20616
20646
  }
20617
20647
 
20618
- .v-date-picker-month__days {
20648
+ .v-date-picker-years__content {
20619
20649
  display: grid;
20620
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20621
- row-gap: 4px;
20622
20650
  flex: 1 1;
20623
20651
  justify-content: space-around;
20624
- }
20625
-
20626
- .v-date-picker-month__day {
20627
- align-items: center;
20628
- display: flex;
20629
- justify-content: center;
20630
- position: relative;
20631
- }
20632
- .v-date-picker-month__day--selected .v-btn {
20633
- background-color: rgb(var(--v-theme-surface-variant));
20634
- color: rgb(var(--v-theme-on-surface-variant));
20635
- }
20636
- .v-date-picker-month__day--week {
20637
- font-size: var(--v-btn-size);
20638
- }
20639
-
20640
- .v-date-picker-month__day--adjacent {
20641
- opacity: 0.5;
20642
- }
20643
-
20644
- .v-date-picker-month__day--hide-adjacent {
20645
- opacity: 0;
20646
- }.v-date-picker-years {
20647
- height: 320px;
20648
- overflow-y: scroll;
20649
- }
20650
-
20651
- .v-date-picker-years__content {
20652
- display: grid;
20653
- flex: 1 1;
20654
- justify-content: space-around;
20655
- grid-template-columns: repeat(3, 1fr);
20656
- gap: 8px 24px;
20657
- padding-inline: 36px;
20652
+ grid-template-columns: repeat(3, 1fr);
20653
+ gap: 8px 24px;
20654
+ padding-inline: 36px;
20658
20655
  }
20659
20656
  .v-date-picker-years__content .v-btn {
20660
20657
  padding-inline: 8px;
20658
+ }.v-counter {
20659
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20660
+ flex: 0 1 auto;
20661
+ font-size: 12px;
20662
+ transition-duration: 150ms;
20661
20663
  }.v-divider {
20662
20664
  display: block;
20663
20665
  flex: 1 1 100%;
@@ -20687,6 +20689,26 @@ html.overflow-y-hidden {
20687
20689
  margin-bottom: 8px;
20688
20690
  margin-top: 8px;
20689
20691
  max-height: calc(100% - 16px);
20692
+ }.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20693
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20694
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20695
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20696
+ top: 0px;
20697
+ }
20698
+ .v-file-input input[type=file] {
20699
+ height: 100%;
20700
+ left: 0;
20701
+ opacity: 0;
20702
+ position: absolute;
20703
+ top: 0;
20704
+ width: 100%;
20705
+ z-index: 1;
20706
+ }
20707
+ .v-file-input .v-input__details {
20708
+ padding-inline: 16px;
20709
+ }
20710
+ .v-input--plain-underlined.v-file-input .v-input__details {
20711
+ padding-inline: 0;
20690
20712
  }.v-dialog {
20691
20713
  align-items: center;
20692
20714
  justify-content: center;
@@ -20974,26 +20996,6 @@ html.overflow-y-hidden {
20974
20996
  }
20975
20997
  .v-expansion-panels--variant-inset > .v-expansion-panel--active {
20976
20998
  max-width: calc(100% - 32px);
20977
- }.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20978
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20979
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20980
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20981
- top: 0px;
20982
- }
20983
- .v-file-input input[type=file] {
20984
- height: 100%;
20985
- left: 0;
20986
- opacity: 0;
20987
- position: absolute;
20988
- top: 0;
20989
- width: 100%;
20990
- z-index: 1;
20991
- }
20992
- .v-file-input .v-input__details {
20993
- padding-inline: 16px;
20994
- }
20995
- .v-input--plain-underlined.v-file-input .v-input__details {
20996
- padding-inline: 0;
20997
20999
  }/* region INPUT */
20998
21000
  .v-field {
20999
21001
  display: grid;
@@ -21620,6 +21622,31 @@ textarea.v-field__input::placeholder {
21620
21622
 
21621
21623
  .v-icon--end {
21622
21624
  margin-inline-start: 8px;
21625
+ }.v-infinite-scroll--horizontal {
21626
+ display: flex;
21627
+ flex-direction: row;
21628
+ overflow-x: auto;
21629
+ }
21630
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21631
+ height: 100%;
21632
+ width: 1px;
21633
+ }
21634
+
21635
+ .v-infinite-scroll--vertical {
21636
+ display: flex;
21637
+ flex-direction: column;
21638
+ overflow-y: auto;
21639
+ }
21640
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21641
+ height: 1px;
21642
+ width: 100%;
21643
+ }
21644
+
21645
+ .v-infinite-scroll__side {
21646
+ align-items: center;
21647
+ display: flex;
21648
+ justify-content: center;
21649
+ padding: 8px;
21623
21650
  }.v-img {
21624
21651
  --v-theme-overlay-multiplier: 3;
21625
21652
  z-index: 0;
@@ -21656,51 +21683,6 @@ textarea.v-field__input::placeholder {
21656
21683
 
21657
21684
  .v-img__gradient {
21658
21685
  background-repeat: no-repeat;
21659
- }.v-item-group {
21660
- flex: 0 1 auto;
21661
- max-width: 100%;
21662
- position: relative;
21663
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21664
- }.v-infinite-scroll--horizontal {
21665
- display: flex;
21666
- flex-direction: row;
21667
- overflow-x: auto;
21668
- }
21669
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21670
- height: 100%;
21671
- width: 1px;
21672
- }
21673
-
21674
- .v-infinite-scroll--vertical {
21675
- display: flex;
21676
- flex-direction: column;
21677
- overflow-y: auto;
21678
- }
21679
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21680
- height: 1px;
21681
- width: 100%;
21682
- }
21683
-
21684
- .v-infinite-scroll__side {
21685
- align-items: center;
21686
- display: flex;
21687
- justify-content: center;
21688
- padding: 8px;
21689
- }.v-layout {
21690
- --v-scrollbar-offset: 0px;
21691
- display: flex;
21692
- flex: 1 1 auto;
21693
- }
21694
- .v-layout--full-height {
21695
- --v-scrollbar-offset: inherit;
21696
- height: 100%;
21697
- }.v-layout-item {
21698
- position: absolute;
21699
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21700
- }
21701
-
21702
- .v-layout-item--absolute {
21703
- position: absolute;
21704
21686
  }.v-input {
21705
21687
  display: grid;
21706
21688
  flex: 1 1 auto;
@@ -21843,6 +21825,11 @@ textarea.v-field__input::placeholder {
21843
21825
 
21844
21826
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
21845
21827
  padding-top: calc(var(--v-input-padding-top) + 0px);
21828
+ }.v-item-group {
21829
+ flex: 0 1 auto;
21830
+ max-width: 100%;
21831
+ position: relative;
21832
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21846
21833
  }.v-label {
21847
21834
  align-items: center;
21848
21835
  color: inherit;
@@ -21858,6 +21845,21 @@ textarea.v-field__input::placeholder {
21858
21845
 
21859
21846
  .v-label--clickable {
21860
21847
  cursor: pointer;
21848
+ }.v-layout {
21849
+ --v-scrollbar-offset: 0px;
21850
+ display: flex;
21851
+ flex: 1 1 auto;
21852
+ }
21853
+ .v-layout--full-height {
21854
+ --v-scrollbar-offset: inherit;
21855
+ height: 100%;
21856
+ }.v-layout-item {
21857
+ position: absolute;
21858
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21859
+ }
21860
+
21861
+ .v-layout-item--absolute {
21862
+ position: absolute;
21861
21863
  }.v-list {
21862
21864
  overflow: auto;
21863
21865
  padding: 8px 0;
@@ -22103,14 +22105,20 @@ textarea.v-field__input::placeholder {
22103
22105
  .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
22104
22106
  width: 16px;
22105
22107
  }
22108
+ .v-list-item__prepend > .v-list-item-action ~ .v-list-item__spacer {
22109
+ width: 16px;
22110
+ }
22106
22111
  .v-list-item--slim .v-list-item__prepend > .v-badge ~ .v-list-item__spacer,
22107
22112
  .v-list-item--slim .v-list-item__prepend > .v-icon ~ .v-list-item__spacer,
22108
22113
  .v-list-item--slim .v-list-item__prepend > .v-tooltip ~ .v-list-item__spacer {
22109
- width: 8px;
22114
+ width: 20px;
22110
22115
  }
22111
22116
  .v-list-item--slim .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
22112
22117
  width: 4px;
22113
22118
  }
22119
+ .v-list-item--slim .v-list-item__prepend > .v-list-item-action ~ .v-list-item__spacer {
22120
+ width: 4px;
22121
+ }
22114
22122
  .v-list-item--three-line .v-list-item__prepend {
22115
22123
  align-self: start;
22116
22124
  }
@@ -22133,14 +22141,20 @@ textarea.v-field__input::placeholder {
22133
22141
  .v-list-item__append > .v-avatar ~ .v-list-item__spacer {
22134
22142
  width: 16px;
22135
22143
  }
22144
+ .v-list-item__append > .v-list-item-action ~ .v-list-item__spacer {
22145
+ width: 16px;
22146
+ }
22136
22147
  .v-list-item--slim .v-list-item__append > .v-badge ~ .v-list-item__spacer,
22137
22148
  .v-list-item--slim .v-list-item__append > .v-icon ~ .v-list-item__spacer,
22138
22149
  .v-list-item--slim .v-list-item__append > .v-tooltip ~ .v-list-item__spacer {
22139
- width: 8px;
22150
+ width: 20px;
22140
22151
  }
22141
22152
  .v-list-item--slim .v-list-item__append > .v-avatar ~ .v-list-item__spacer {
22142
22153
  width: 4px;
22143
22154
  }
22155
+ .v-list-item--slim .v-list-item__append > .v-list-item-action ~ .v-list-item__spacer {
22156
+ width: 4px;
22157
+ }
22144
22158
  .v-list-item--three-line .v-list-item__append {
22145
22159
  align-self: start;
22146
22160
  }
@@ -22155,16 +22169,17 @@ textarea.v-field__input::placeholder {
22155
22169
  align-self: center;
22156
22170
  display: flex;
22157
22171
  align-items: center;
22158
- grid-area: prepend;
22159
22172
  flex: none;
22160
22173
  transition: inherit;
22161
22174
  transition-property: height, width;
22162
22175
  }
22163
22176
  .v-list-item-action--start {
22164
- margin-inline-end: 12px;
22177
+ margin-inline-end: 8px;
22178
+ margin-inline-start: -8px;
22165
22179
  }
22166
22180
  .v-list-item-action--end {
22167
- margin-inline-start: 12px;
22181
+ margin-inline-start: 8px;
22182
+ margin-inline-end: -8px;
22168
22183
  }
22169
22184
 
22170
22185
  .v-list-item-media {
@@ -22371,7 +22386,7 @@ textarea.v-field__input::placeholder {
22371
22386
  --prepend-width: 40px;
22372
22387
  }
22373
22388
  .v-list--slim .v-list-group {
22374
- --prepend-width: 16px;
22389
+ --prepend-width: 28px;
22375
22390
  }
22376
22391
  .v-list-group--fluid {
22377
22392
  --list-indent-size: 0px;
@@ -22411,22 +22426,6 @@ textarea.v-field__input::placeholder {
22411
22426
  overflow: auto;
22412
22427
  height: 100%;
22413
22428
  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));
22414
- }.v-messages {
22415
- flex: 1 1 auto;
22416
- font-size: 12px;
22417
- min-height: 14px;
22418
- min-width: 1px;
22419
- opacity: var(--v-medium-emphasis-opacity);
22420
- position: relative;
22421
- }
22422
- .v-messages__message {
22423
- line-height: 12px;
22424
- word-break: break-word;
22425
- overflow-wrap: break-word;
22426
- word-wrap: break-word;
22427
- -webkit-hyphens: auto;
22428
- hyphens: auto;
22429
- transition-duration: 150ms;
22430
22429
  }.v-main {
22431
22430
  flex: 1 0 auto;
22432
22431
  max-width: 100%;
@@ -22455,45 +22454,117 @@ textarea.v-field__input::placeholder {
22455
22454
  --v-layout-right: 0px;
22456
22455
  --v-layout-top: 0px;
22457
22456
  --v-layout-bottom: 0px;
22458
- }.v-navigation-drawer {
22459
- -webkit-overflow-scrolling: touch;
22460
- background: rgb(var(--v-theme-surface));
22457
+ }.v-otp-input {
22458
+ border-radius: 4px;
22459
+ align-items: center;
22461
22460
  display: flex;
22462
- flex-direction: column;
22461
+ justify-content: center;
22462
+ padding: 0.5rem 0;
22463
+ position: relative;
22464
+ }
22465
+ .v-otp-input .v-field {
22463
22466
  height: 100%;
22464
- max-width: 100%;
22465
- pointer-events: auto;
22466
- transition-duration: 0.2s;
22467
- transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22468
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22469
- position: absolute;
22470
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22471
- border-style: solid;
22472
- border-width: 0;
22473
- 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));
22474
- background: rgb(var(--v-theme-surface));
22475
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22476
22467
  }
22477
- .v-navigation-drawer--border {
22478
- border-width: thin;
22479
- box-shadow: none;
22468
+
22469
+ .v-otp-input__divider {
22470
+ margin: 0 8px;
22480
22471
  }
22481
- .v-navigation-drawer--rounded {
22482
- border-radius: 4px;
22472
+
22473
+ .v-otp-input__content {
22474
+ align-items: center;
22475
+ display: flex;
22476
+ gap: 0.5rem;
22477
+ height: 64px;
22478
+ padding: 0.5rem;
22479
+ justify-content: center;
22480
+ max-width: 320px;
22481
+ position: relative;
22482
+ border-radius: inherit;
22483
22483
  }
22484
- .v-navigation-drawer--top {
22485
- top: 0;
22486
- border-bottom-width: thin;
22484
+ .v-otp-input--divided .v-otp-input__content {
22485
+ max-width: 360px;
22487
22486
  }
22488
- .v-navigation-drawer--bottom {
22489
- left: 0;
22490
- border-top-width: thin;
22487
+
22488
+ .v-otp-input__field {
22489
+ color: inherit;
22490
+ font-size: 1.25rem;
22491
+ height: 100%;
22492
+ outline: none;
22493
+ text-align: center;
22494
+ width: 100%;
22491
22495
  }
22492
- .v-navigation-drawer--left {
22493
- top: 0;
22494
- left: 0;
22495
- right: auto;
22496
- border-right-width: thin;
22496
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
22497
+ -webkit-appearance: none;
22498
+ margin: 0;
22499
+ }
22500
+ .v-otp-input__field[type=number] {
22501
+ -moz-appearance: textfield;
22502
+ }
22503
+
22504
+ .v-otp-input__loader {
22505
+ align-items: center;
22506
+ display: flex;
22507
+ height: 100%;
22508
+ justify-content: center;
22509
+ width: 100%;
22510
+ }
22511
+ .v-otp-input__loader .v-progress-linear {
22512
+ position: absolute;
22513
+ }.v-messages {
22514
+ flex: 1 1 auto;
22515
+ font-size: 12px;
22516
+ min-height: 14px;
22517
+ min-width: 1px;
22518
+ opacity: var(--v-medium-emphasis-opacity);
22519
+ position: relative;
22520
+ }
22521
+ .v-messages__message {
22522
+ line-height: 12px;
22523
+ word-break: break-word;
22524
+ overflow-wrap: break-word;
22525
+ word-wrap: break-word;
22526
+ -webkit-hyphens: auto;
22527
+ hyphens: auto;
22528
+ transition-duration: 150ms;
22529
+ }.v-navigation-drawer {
22530
+ -webkit-overflow-scrolling: touch;
22531
+ background: rgb(var(--v-theme-surface));
22532
+ display: flex;
22533
+ flex-direction: column;
22534
+ height: 100%;
22535
+ max-width: 100%;
22536
+ pointer-events: auto;
22537
+ transition-duration: 0.2s;
22538
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22539
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22540
+ position: absolute;
22541
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22542
+ border-style: solid;
22543
+ border-width: 0;
22544
+ 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));
22545
+ background: rgb(var(--v-theme-surface));
22546
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22547
+ }
22548
+ .v-navigation-drawer--border {
22549
+ border-width: thin;
22550
+ box-shadow: none;
22551
+ }
22552
+ .v-navigation-drawer--rounded {
22553
+ border-radius: 4px;
22554
+ }
22555
+ .v-navigation-drawer--top {
22556
+ top: 0;
22557
+ border-bottom-width: thin;
22558
+ }
22559
+ .v-navigation-drawer--bottom {
22560
+ left: 0;
22561
+ border-top-width: thin;
22562
+ }
22563
+ .v-navigation-drawer--left {
22564
+ top: 0;
22565
+ left: 0;
22566
+ right: auto;
22567
+ border-right-width: thin;
22497
22568
  }
22498
22569
  .v-navigation-drawer--right {
22499
22570
  top: 0;
@@ -22553,62 +22624,14 @@ textarea.v-field__input::placeholder {
22553
22624
  .v-navigation-drawer__append {
22554
22625
  flex: none;
22555
22626
  overflow: hidden;
22556
- }.v-otp-input {
22557
- border-radius: 4px;
22558
- align-items: center;
22559
- display: flex;
22560
- justify-content: center;
22561
- padding: 0.5rem 0;
22562
- position: relative;
22563
- }
22564
- .v-otp-input .v-field {
22565
- height: 100%;
22566
- }
22567
-
22568
- .v-otp-input__divider {
22569
- margin: 0 8px;
22570
- }
22571
-
22572
- .v-otp-input__content {
22573
- align-items: center;
22574
- display: flex;
22575
- gap: 0.5rem;
22576
- height: 64px;
22577
- padding: 0.5rem;
22578
- justify-content: center;
22579
- max-width: 320px;
22580
- position: relative;
22581
- border-radius: inherit;
22582
- }
22583
- .v-otp-input--divided .v-otp-input__content {
22584
- max-width: 360px;
22585
- }
22586
-
22587
- .v-otp-input__field {
22588
- color: inherit;
22589
- font-size: 1.25rem;
22590
- height: 100%;
22591
- outline: none;
22592
- text-align: center;
22593
- width: 100%;
22594
- }
22595
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
22596
- -webkit-appearance: none;
22597
- margin: 0;
22598
- }
22599
- .v-otp-input__field[type=number] {
22600
- -moz-appearance: textfield;
22601
- }
22602
-
22603
- .v-otp-input__loader {
22604
- align-items: center;
22605
- display: flex;
22606
- height: 100%;
22627
+ }.v-pagination__list {
22628
+ display: inline-flex;
22629
+ list-style-type: none;
22607
22630
  justify-content: center;
22608
22631
  width: 100%;
22609
22632
  }
22610
- .v-otp-input__loader .v-progress-linear {
22611
- position: absolute;
22633
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22634
+ margin: 0.3rem;
22612
22635
  }.v-overlay-container {
22613
22636
  contain: layout;
22614
22637
  left: 0;
@@ -22656,7 +22679,7 @@ html.v-overlay-scroll-blocked {
22656
22679
  border-radius: inherit;
22657
22680
  bottom: 0;
22658
22681
  left: 0;
22659
- opacity: 0.32;
22682
+ opacity: var(--v-overlay-opacity, 0.32);
22660
22683
  position: fixed;
22661
22684
  right: 0;
22662
22685
  top: 0;
@@ -22672,122 +22695,6 @@ html.v-overlay-scroll-blocked {
22672
22695
 
22673
22696
  .v-overlay--scroll-blocked {
22674
22697
  padding-inline-end: var(--v-scrollbar-offset);
22675
- }.v-pagination__list {
22676
- display: inline-flex;
22677
- list-style-type: none;
22678
- justify-content: center;
22679
- width: 100%;
22680
- }
22681
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22682
- margin: 0.3rem;
22683
- }.v-progress-circular {
22684
- align-items: center;
22685
- display: inline-flex;
22686
- justify-content: center;
22687
- position: relative;
22688
- vertical-align: middle;
22689
- }
22690
- .v-progress-circular > svg {
22691
- width: 100%;
22692
- height: 100%;
22693
- margin: auto;
22694
- position: absolute;
22695
- top: 0;
22696
- bottom: 0;
22697
- left: 0;
22698
- right: 0;
22699
- z-index: 0;
22700
- }
22701
-
22702
- .v-progress-circular__content {
22703
- align-items: center;
22704
- display: flex;
22705
- justify-content: center;
22706
- }
22707
-
22708
- .v-progress-circular__underlay {
22709
- color: rgba(var(--v-border-color), var(--v-border-opacity));
22710
- stroke: currentColor;
22711
- z-index: 1;
22712
- }
22713
-
22714
- .v-progress-circular__overlay {
22715
- stroke: currentColor;
22716
- transition: all 0.2s ease-in-out, stroke-width 0s;
22717
- z-index: 2;
22718
- }
22719
-
22720
- .v-progress-circular--size-x-small {
22721
- height: 16px;
22722
- width: 16px;
22723
- }
22724
- .v-progress-circular--size-small {
22725
- height: 24px;
22726
- width: 24px;
22727
- }
22728
- .v-progress-circular--size-default {
22729
- height: 32px;
22730
- width: 32px;
22731
- }
22732
- .v-progress-circular--size-large {
22733
- height: 48px;
22734
- width: 48px;
22735
- }
22736
- .v-progress-circular--size-x-large {
22737
- height: 64px;
22738
- width: 64px;
22739
- }
22740
-
22741
- .v-progress-circular--indeterminate > svg {
22742
- animation: progress-circular-rotate 1.4s linear infinite;
22743
- transform-origin: center center;
22744
- transition: all 0.2s ease-in-out;
22745
- }
22746
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
22747
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
22748
- stroke-dasharray: 25, 200;
22749
- stroke-dashoffset: 0;
22750
- stroke-linecap: round;
22751
- transform-origin: center center;
22752
- transform: rotate(-90deg);
22753
- }
22754
-
22755
- .v-progress-circular--disable-shrink > svg {
22756
- animation-duration: 0.7s;
22757
- }
22758
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
22759
- animation: none;
22760
- }
22761
-
22762
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
22763
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
22764
- animation-play-state: paused !important;
22765
- }
22766
-
22767
- @keyframes progress-circular-dash {
22768
- 0% {
22769
- stroke-dasharray: 1, 200;
22770
- stroke-dashoffset: 0px;
22771
- }
22772
- 50% {
22773
- stroke-dasharray: 100, 200;
22774
- stroke-dashoffset: -15px;
22775
- }
22776
- 100% {
22777
- stroke-dasharray: 100, 200;
22778
- stroke-dashoffset: -124px;
22779
- }
22780
- }
22781
- @keyframes progress-circular-rotate {
22782
- 100% {
22783
- transform: rotate(270deg);
22784
- }
22785
- }.v-parallax {
22786
- position: relative;
22787
- overflow: hidden;
22788
- }
22789
- .v-parallax--active > .v-img__img {
22790
- will-change: transform;
22791
22698
  }.v-progress-linear {
22792
22699
  background: transparent;
22793
22700
  overflow: hidden;
@@ -22998,18 +22905,114 @@ html.v-overlay-scroll-blocked {
22998
22905
  0% {
22999
22906
  background-position-x: var(--v-progress-linear-height);
23000
22907
  }
23001
- }.v-radio-group > .v-input__control {
23002
- flex-direction: column;
23003
- }
23004
- .v-radio-group > .v-input__control > .v-label {
23005
- margin-inline-start: 16px;
22908
+ }.v-parallax {
22909
+ position: relative;
22910
+ overflow: hidden;
23006
22911
  }
23007
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23008
- padding-inline-start: 6px;
23009
- margin-top: 8px;
22912
+ .v-parallax--active > .v-img__img {
22913
+ will-change: transform;
22914
+ }.v-progress-circular {
22915
+ align-items: center;
22916
+ display: inline-flex;
22917
+ justify-content: center;
22918
+ position: relative;
22919
+ vertical-align: middle;
23010
22920
  }
23011
- .v-radio-group .v-input__details {
23012
- padding-inline: 16px;
22921
+ .v-progress-circular > svg {
22922
+ width: 100%;
22923
+ height: 100%;
22924
+ margin: auto;
22925
+ position: absolute;
22926
+ top: 0;
22927
+ bottom: 0;
22928
+ left: 0;
22929
+ right: 0;
22930
+ z-index: 0;
22931
+ }
22932
+
22933
+ .v-progress-circular__content {
22934
+ align-items: center;
22935
+ display: flex;
22936
+ justify-content: center;
22937
+ }
22938
+
22939
+ .v-progress-circular__underlay {
22940
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
22941
+ stroke: currentColor;
22942
+ z-index: 1;
22943
+ }
22944
+
22945
+ .v-progress-circular__overlay {
22946
+ stroke: currentColor;
22947
+ transition: all 0.2s ease-in-out, stroke-width 0s;
22948
+ z-index: 2;
22949
+ }
22950
+
22951
+ .v-progress-circular--size-x-small {
22952
+ height: 16px;
22953
+ width: 16px;
22954
+ }
22955
+ .v-progress-circular--size-small {
22956
+ height: 24px;
22957
+ width: 24px;
22958
+ }
22959
+ .v-progress-circular--size-default {
22960
+ height: 32px;
22961
+ width: 32px;
22962
+ }
22963
+ .v-progress-circular--size-large {
22964
+ height: 48px;
22965
+ width: 48px;
22966
+ }
22967
+ .v-progress-circular--size-x-large {
22968
+ height: 64px;
22969
+ width: 64px;
22970
+ }
22971
+
22972
+ .v-progress-circular--indeterminate > svg {
22973
+ animation: progress-circular-rotate 1.4s linear infinite;
22974
+ transform-origin: center center;
22975
+ transition: all 0.2s ease-in-out;
22976
+ }
22977
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
22978
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
22979
+ stroke-dasharray: 25, 200;
22980
+ stroke-dashoffset: 0;
22981
+ stroke-linecap: round;
22982
+ transform-origin: center center;
22983
+ transform: rotate(-90deg);
22984
+ }
22985
+
22986
+ .v-progress-circular--disable-shrink > svg {
22987
+ animation-duration: 0.7s;
22988
+ }
22989
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
22990
+ animation: none;
22991
+ }
22992
+
22993
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
22994
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
22995
+ animation-play-state: paused !important;
22996
+ }
22997
+
22998
+ @keyframes progress-circular-dash {
22999
+ 0% {
23000
+ stroke-dasharray: 1, 200;
23001
+ stroke-dashoffset: 0px;
23002
+ }
23003
+ 50% {
23004
+ stroke-dasharray: 100, 200;
23005
+ stroke-dashoffset: -15px;
23006
+ }
23007
+ 100% {
23008
+ stroke-dasharray: 100, 200;
23009
+ stroke-dashoffset: -124px;
23010
+ }
23011
+ }
23012
+ @keyframes progress-circular-rotate {
23013
+ 100% {
23014
+ transform: rotate(270deg);
23015
+ }
23013
23016
  }.v-slider .v-slider__container input {
23014
23017
  cursor: default;
23015
23018
  padding: 0;
@@ -23121,6 +23124,44 @@ html.v-overlay-scroll-blocked {
23121
23124
  opacity: 0;
23122
23125
  position: absolute;
23123
23126
  width: 0;
23127
+ }.v-radio-group > .v-input__control {
23128
+ flex-direction: column;
23129
+ }
23130
+ .v-radio-group > .v-input__control > .v-label {
23131
+ margin-inline-start: 16px;
23132
+ }
23133
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23134
+ padding-inline-start: 6px;
23135
+ margin-top: 8px;
23136
+ }
23137
+ .v-radio-group .v-input__details {
23138
+ padding-inline: 16px;
23139
+ }.v-responsive {
23140
+ display: flex;
23141
+ flex: 1 0 auto;
23142
+ max-height: 100%;
23143
+ max-width: 100%;
23144
+ overflow: hidden;
23145
+ position: relative;
23146
+ }
23147
+ .v-responsive--inline {
23148
+ display: inline-flex;
23149
+ flex: 0 0 auto;
23150
+ }
23151
+
23152
+ .v-responsive__content {
23153
+ flex: 1 0 0px;
23154
+ max-width: 100%;
23155
+ }
23156
+
23157
+ .v-responsive__sizer ~ .v-responsive__content {
23158
+ margin-inline-start: -100%;
23159
+ }
23160
+
23161
+ .v-responsive__sizer {
23162
+ flex: 1 0 0px;
23163
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23164
+ pointer-events: none;
23124
23165
  }.v-select .v-field .v-text-field__prefix,
23125
23166
  .v-select .v-field .v-text-field__suffix,
23126
23167
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -23169,32 +23210,6 @@ html.v-overlay-scroll-blocked {
23169
23210
  .v-select--active-menu .v-select__menu-icon {
23170
23211
  opacity: var(--v-high-emphasis-opacity);
23171
23212
  transform: rotate(180deg);
23172
- }.v-responsive {
23173
- display: flex;
23174
- flex: 1 0 auto;
23175
- max-height: 100%;
23176
- max-width: 100%;
23177
- overflow: hidden;
23178
- position: relative;
23179
- }
23180
- .v-responsive--inline {
23181
- display: inline-flex;
23182
- flex: 0 0 auto;
23183
- }
23184
-
23185
- .v-responsive__content {
23186
- flex: 1 0 0px;
23187
- max-width: 100%;
23188
- }
23189
-
23190
- .v-responsive__sizer ~ .v-responsive__content {
23191
- margin-inline-start: -100%;
23192
- }
23193
-
23194
- .v-responsive__sizer {
23195
- flex: 1 0 0px;
23196
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23197
- pointer-events: none;
23198
23213
  }.v-selection-control {
23199
23214
  align-items: center;
23200
23215
  contain: layout;
@@ -23296,6 +23311,84 @@ html.v-overlay-scroll-blocked {
23296
23311
  }
23297
23312
  .v-selection-control--focus-visible .v-selection-control__input::before {
23298
23313
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23314
+ }.v-selection-control-group {
23315
+ grid-area: control;
23316
+ display: flex;
23317
+ flex-direction: column;
23318
+ }
23319
+ .v-selection-control-group--inline {
23320
+ flex-direction: row;
23321
+ flex-wrap: wrap;
23322
+ }.v-sheet {
23323
+ display: block;
23324
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23325
+ border-style: solid;
23326
+ border-width: 0;
23327
+ 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));
23328
+ border-radius: 0;
23329
+ background: rgb(var(--v-theme-surface));
23330
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
23331
+ }
23332
+ .v-sheet--border {
23333
+ border-width: thin;
23334
+ box-shadow: none;
23335
+ }
23336
+ .v-sheet--absolute {
23337
+ position: absolute;
23338
+ }
23339
+ .v-sheet--fixed {
23340
+ position: fixed;
23341
+ }
23342
+ .v-sheet--relative {
23343
+ position: relative;
23344
+ }
23345
+ .v-sheet--sticky {
23346
+ position: sticky;
23347
+ }
23348
+ .v-sheet--rounded {
23349
+ border-radius: 4px;
23350
+ }.v-slide-group {
23351
+ display: flex;
23352
+ overflow: hidden;
23353
+ }
23354
+
23355
+ .v-slide-group__next,
23356
+ .v-slide-group__prev {
23357
+ align-items: center;
23358
+ display: flex;
23359
+ flex: 0 1 52px;
23360
+ justify-content: center;
23361
+ min-width: 52px;
23362
+ cursor: pointer;
23363
+ }
23364
+ .v-slide-group__next--disabled,
23365
+ .v-slide-group__prev--disabled {
23366
+ pointer-events: none;
23367
+ opacity: var(--v-disabled-opacity);
23368
+ }
23369
+
23370
+ .v-slide-group__content {
23371
+ display: flex;
23372
+ flex: 1 0 auto;
23373
+ position: relative;
23374
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
23375
+ white-space: nowrap;
23376
+ }
23377
+ .v-slide-group__content > * {
23378
+ white-space: initial;
23379
+ }
23380
+
23381
+ .v-slide-group__container {
23382
+ contain: content;
23383
+ display: flex;
23384
+ flex: 1 1 auto;
23385
+ overflow: hidden;
23386
+ }
23387
+
23388
+ .v-slide-group--vertical,
23389
+ .v-slide-group--vertical .v-slide-group__container,
23390
+ .v-slide-group--vertical .v-slide-group__content {
23391
+ flex-direction: column;
23299
23392
  }.v-skeleton-loader {
23300
23393
  align-items: center;
23301
23394
  background: rgb(var(--v-theme-surface));
@@ -23519,84 +23612,125 @@ html.v-overlay-scroll-blocked {
23519
23612
  100% {
23520
23613
  transform: translateX(100%);
23521
23614
  }
23522
- }.v-selection-control-group {
23523
- grid-area: control;
23524
- display: flex;
23525
- flex-direction: column;
23526
- }
23527
- .v-selection-control-group--inline {
23528
- flex-direction: row;
23529
- flex-wrap: wrap;
23530
- }.v-sheet {
23531
- display: block;
23532
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23533
- border-style: solid;
23534
- border-width: 0;
23535
- 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));
23536
- border-radius: 0;
23537
- background: rgb(var(--v-theme-surface));
23538
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
23615
+ }.v-snackbar {
23616
+ justify-content: center;
23617
+ z-index: 10000;
23618
+ margin: 8px;
23619
+ margin-inline-end: calc(8px + var(--v-scrollbar-offset));
23539
23620
  }
23540
- .v-sheet--border {
23541
- border-width: thin;
23542
- box-shadow: none;
23621
+ .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
23622
+ align-items: flex-end;
23543
23623
  }
23544
- .v-sheet--absolute {
23545
- position: absolute;
23624
+ .v-snackbar__wrapper {
23625
+ align-items: center;
23626
+ display: flex;
23627
+ max-width: 672px;
23628
+ min-height: 48px;
23629
+ min-width: 344px;
23630
+ overflow: hidden;
23631
+ padding: 0;
23632
+ border-radius: 4px;
23546
23633
  }
23547
- .v-sheet--fixed {
23548
- position: fixed;
23634
+ .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
23635
+ background: transparent;
23636
+ color: inherit;
23549
23637
  }
23550
- .v-sheet--relative {
23551
- position: relative;
23638
+ .v-snackbar--variant-plain {
23639
+ opacity: 0.62;
23552
23640
  }
23553
- .v-sheet--sticky {
23554
- position: sticky;
23641
+ .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
23642
+ opacity: 1;
23555
23643
  }
23556
- .v-sheet--rounded {
23557
- border-radius: 4px;
23558
- }.v-slide-group {
23559
- display: flex;
23560
- overflow: hidden;
23644
+ .v-snackbar--variant-plain .v-snackbar__overlay {
23645
+ display: none;
23561
23646
  }
23562
-
23563
- .v-slide-group__next,
23564
- .v-slide-group__prev {
23565
- align-items: center;
23566
- display: flex;
23567
- flex: 0 1 52px;
23568
- justify-content: center;
23569
- min-width: 52px;
23570
- cursor: pointer;
23647
+ .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
23648
+ background: rgb(var(--v-theme-surface-variant));
23649
+ color: rgb(var(--v-theme-on-surface-variant));
23571
23650
  }
23572
- .v-slide-group__next--disabled,
23573
- .v-slide-group__prev--disabled {
23651
+ .v-snackbar--variant-elevated {
23652
+ 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));
23653
+ }
23654
+ .v-snackbar--variant-flat {
23655
+ 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));
23656
+ }
23657
+ .v-snackbar--variant-outlined {
23658
+ border: thin solid currentColor;
23659
+ }
23660
+ .v-snackbar--variant-text .v-snackbar__overlay {
23661
+ background: currentColor;
23662
+ }
23663
+ .v-snackbar--variant-tonal .v-snackbar__underlay {
23664
+ background: currentColor;
23665
+ opacity: var(--v-activated-opacity);
23666
+ border-radius: inherit;
23667
+ position: absolute;
23668
+ top: 0;
23669
+ right: 0;
23670
+ bottom: 0;
23671
+ left: 0;
23574
23672
  pointer-events: none;
23575
- opacity: var(--v-disabled-opacity);
23576
23673
  }
23577
23674
 
23578
- .v-slide-group__content {
23675
+ .v-snackbar__content {
23676
+ flex-grow: 1;
23677
+ font-size: 0.875rem;
23678
+ font-weight: 400;
23679
+ letter-spacing: 0.0178571429em;
23680
+ line-height: 1.25rem;
23681
+ margin-right: auto;
23682
+ padding: 14px 16px;
23683
+ text-align: initial;
23684
+ }
23685
+ .v-snackbar__actions {
23686
+ align-items: center;
23687
+ align-self: center;
23579
23688
  display: flex;
23580
- flex: 1 0 auto;
23581
- position: relative;
23582
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
23583
- white-space: nowrap;
23689
+ margin-inline-end: 8px;
23584
23690
  }
23585
- .v-slide-group__content > * {
23586
- white-space: initial;
23691
+ .v-snackbar__actions > .v-btn {
23692
+ padding: 0 8px;
23693
+ min-width: auto;
23587
23694
  }
23588
-
23589
- .v-slide-group__container {
23590
- contain: content;
23591
- display: flex;
23592
- flex: 1 1 auto;
23593
- overflow: hidden;
23695
+ .v-snackbar__timer {
23696
+ width: 100%;
23697
+ position: absolute;
23698
+ top: 0;
23594
23699
  }
23595
-
23596
- .v-slide-group--vertical,
23597
- .v-slide-group--vertical .v-slide-group__container,
23598
- .v-slide-group--vertical .v-slide-group__content {
23700
+ .v-snackbar__timer .v-progress-linear {
23701
+ transition: 0.2s linear;
23702
+ }
23703
+ .v-snackbar--absolute {
23704
+ position: absolute;
23705
+ z-index: 1;
23706
+ }
23707
+ .v-snackbar--multi-line .v-snackbar__wrapper {
23708
+ min-height: 68px;
23709
+ }
23710
+ .v-snackbar--vertical .v-snackbar__wrapper {
23599
23711
  flex-direction: column;
23712
+ }
23713
+ .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
23714
+ align-self: flex-end;
23715
+ margin-bottom: 8px;
23716
+ }
23717
+
23718
+ .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
23719
+ transition-duration: 0.15s;
23720
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23721
+ }
23722
+ .v-snackbar-transition-enter-active {
23723
+ transition-property: opacity, transform;
23724
+ }
23725
+ .v-snackbar-transition-enter-from {
23726
+ opacity: 0;
23727
+ transform: scale(0.8);
23728
+ }
23729
+ .v-snackbar-transition-leave-active {
23730
+ transition-property: opacity;
23731
+ }
23732
+ .v-snackbar-transition-leave-to {
23733
+ opacity: 0;
23600
23734
  }.v-switch .v-label {
23601
23735
  padding-inline-start: 10px;
23602
23736
  }
@@ -23684,6 +23818,9 @@ html.v-overlay-scroll-blocked {
23684
23818
  transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
23685
23819
  }
23686
23820
 
23821
+ .v-switch.v-input {
23822
+ flex: 0 1 auto;
23823
+ }
23687
23824
  .v-switch .v-selection-control {
23688
23825
  min-height: var(--v-input-control-height);
23689
23826
  }
@@ -23708,188 +23845,69 @@ html.v-overlay-scroll-blocked {
23708
23845
  }
23709
23846
  .v-switch.v-switch--inset .v-selection-control__wrapper {
23710
23847
  width: auto;
23711
- }.v-snackbar {
23712
- justify-content: center;
23713
- z-index: 10000;
23714
- margin: 8px;
23715
- margin-inline-end: calc(8px + var(--v-scrollbar-offset));
23848
+ }.v-stepper.v-sheet {
23849
+ 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));
23850
+ border-radius: 4px;
23851
+ overflow: hidden;
23716
23852
  }
23717
- .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
23718
- align-items: flex-end;
23853
+ .v-stepper.v-sheet.v-stepper--flat {
23854
+ 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));
23719
23855
  }
23720
- .v-snackbar__wrapper {
23856
+
23857
+ .v-stepper-header {
23858
+ 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));
23721
23859
  align-items: center;
23722
23860
  display: flex;
23723
- max-width: 672px;
23724
- min-height: 48px;
23725
- min-width: 344px;
23726
- overflow: hidden;
23727
- padding: 0;
23728
- border-radius: 4px;
23861
+ position: relative;
23862
+ overflow-x: auto;
23863
+ justify-content: space-between;
23864
+ z-index: 1;
23729
23865
  }
23730
- .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
23731
- background: transparent;
23732
- color: inherit;
23866
+ .v-stepper-header .v-divider {
23867
+ margin: 0 -16px;
23733
23868
  }
23734
- .v-snackbar--variant-plain {
23735
- opacity: 0.62;
23869
+ .v-stepper-header .v-divider:last-child {
23870
+ margin-inline-end: 0;
23736
23871
  }
23737
- .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
23738
- opacity: 1;
23872
+ .v-stepper-header .v-divider:first-child {
23873
+ margin-inline-start: 0;
23739
23874
  }
23740
- .v-snackbar--variant-plain .v-snackbar__overlay {
23741
- display: none;
23875
+ .v-stepper--alt-labels .v-stepper-header {
23876
+ height: auto;
23742
23877
  }
23743
- .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
23744
- background: rgb(var(--v-theme-surface-variant));
23745
- color: rgb(var(--v-theme-on-surface-variant));
23878
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
23879
+ align-self: flex-start;
23880
+ margin: 35px -67px 0;
23746
23881
  }
23747
- .v-snackbar--variant-elevated {
23748
- 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));
23882
+
23883
+ .v-stepper-window {
23884
+ margin: 1.5rem;
23749
23885
  }
23750
- .v-snackbar--variant-flat {
23751
- 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));
23886
+
23887
+ .v-stepper-actions {
23888
+ display: flex;
23889
+ align-items: center;
23890
+ justify-content: space-between;
23891
+ padding: 1rem;
23752
23892
  }
23753
- .v-snackbar--variant-outlined {
23754
- border: thin solid currentColor;
23893
+ .v-stepper .v-stepper-actions {
23894
+ padding: 0 1.5rem 1rem;
23755
23895
  }
23756
- .v-snackbar--variant-text .v-snackbar__overlay {
23757
- background: currentColor;
23896
+ .v-stepper-window-item .v-stepper-actions {
23897
+ padding: 1.5rem 0 0;
23898
+ }.v-stepper-item {
23899
+ align-items: center;
23900
+ align-self: stretch;
23901
+ display: inline-flex;
23902
+ flex: none;
23903
+ opacity: var(--v-medium-emphasis-opacity);
23904
+ padding: 1.5rem;
23905
+ transition-duration: 0.2s;
23906
+ transition-property: opacity;
23907
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23758
23908
  }
23759
- .v-snackbar--variant-tonal .v-snackbar__underlay {
23760
- background: currentColor;
23761
- opacity: var(--v-activated-opacity);
23762
- border-radius: inherit;
23763
- position: absolute;
23764
- top: 0;
23765
- right: 0;
23766
- bottom: 0;
23767
- left: 0;
23768
- pointer-events: none;
23769
- }
23770
-
23771
- .v-snackbar__content {
23772
- flex-grow: 1;
23773
- font-size: 0.875rem;
23774
- font-weight: 400;
23775
- letter-spacing: 0.0178571429em;
23776
- line-height: 1.25rem;
23777
- margin-right: auto;
23778
- padding: 14px 16px;
23779
- text-align: initial;
23780
- }
23781
- .v-snackbar__actions {
23782
- align-items: center;
23783
- align-self: center;
23784
- display: flex;
23785
- margin-inline-end: 8px;
23786
- }
23787
- .v-snackbar__actions > .v-btn {
23788
- padding: 0 8px;
23789
- min-width: auto;
23790
- }
23791
- .v-snackbar__timer {
23792
- width: 100%;
23793
- position: absolute;
23794
- top: 0;
23795
- }
23796
- .v-snackbar__timer .v-progress-linear {
23797
- transition: 0.2s linear;
23798
- }
23799
- .v-snackbar--absolute {
23800
- position: absolute;
23801
- z-index: 1;
23802
- }
23803
- .v-snackbar--multi-line .v-snackbar__wrapper {
23804
- min-height: 68px;
23805
- }
23806
- .v-snackbar--vertical .v-snackbar__wrapper {
23807
- flex-direction: column;
23808
- }
23809
- .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
23810
- align-self: flex-end;
23811
- margin-bottom: 8px;
23812
- }
23813
-
23814
- .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
23815
- transition-duration: 0.15s;
23816
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23817
- }
23818
- .v-snackbar-transition-enter-active {
23819
- transition-property: opacity, transform;
23820
- }
23821
- .v-snackbar-transition-enter-from {
23822
- opacity: 0;
23823
- transform: scale(0.8);
23824
- }
23825
- .v-snackbar-transition-leave-active {
23826
- transition-property: opacity;
23827
- }
23828
- .v-snackbar-transition-leave-to {
23829
- opacity: 0;
23830
- }.v-stepper.v-sheet {
23831
- 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));
23832
- border-radius: 4px;
23833
- overflow: hidden;
23834
- }
23835
- .v-stepper.v-sheet.v-stepper--flat {
23836
- 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));
23837
- }
23838
-
23839
- .v-stepper-header {
23840
- 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));
23841
- align-items: center;
23842
- display: flex;
23843
- position: relative;
23844
- overflow-x: auto;
23845
- justify-content: space-between;
23846
- z-index: 1;
23847
- }
23848
- .v-stepper-header .v-divider {
23849
- margin: 0 -16px;
23850
- }
23851
- .v-stepper-header .v-divider:last-child {
23852
- margin-inline-end: 0;
23853
- }
23854
- .v-stepper-header .v-divider:first-child {
23855
- margin-inline-start: 0;
23856
- }
23857
- .v-stepper--alt-labels .v-stepper-header {
23858
- height: auto;
23859
- }
23860
- .v-stepper--alt-labels .v-stepper-header .v-divider {
23861
- align-self: flex-start;
23862
- margin: 35px -67px 0;
23863
- }
23864
-
23865
- .v-stepper-window {
23866
- margin: 1.5rem;
23867
- }
23868
-
23869
- .v-stepper-actions {
23870
- display: flex;
23871
- align-items: center;
23872
- justify-content: space-between;
23873
- padding: 1rem;
23874
- }
23875
- .v-stepper .v-stepper-actions {
23876
- padding: 0 1.5rem 1rem;
23877
- }
23878
- .v-stepper-window-item .v-stepper-actions {
23879
- padding: 1.5rem 0 0;
23880
- }.v-stepper-item {
23881
- align-items: center;
23882
- align-self: stretch;
23883
- display: inline-flex;
23884
- flex: none;
23885
- opacity: var(--v-medium-emphasis-opacity);
23886
- padding: 1.5rem;
23887
- transition-duration: 0.2s;
23888
- transition-property: opacity;
23889
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23890
- }
23891
- .v-stepper-item--selected {
23892
- opacity: 1;
23909
+ .v-stepper-item--selected {
23910
+ opacity: 1;
23893
23911
  }
23894
23912
  .v-stepper-item--error {
23895
23913
  color: rgb(var(--v-theme-error));
@@ -23906,281 +23924,43 @@ html.v-overlay-scroll-blocked {
23906
23924
  }
23907
23925
 
23908
23926
  .v-stepper-item__avatar.v-avatar {
23909
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
23910
- color: rgb(var(--v-theme-on-surface-variant));
23911
- font-size: 0.75rem;
23912
- margin-inline-end: 8px;
23913
- }
23914
- .v-stepper-item__avatar.v-avatar .v-icon {
23915
- font-size: 0.875rem;
23916
- }
23917
- .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
23918
- background: rgb(var(--v-theme-surface-variant));
23919
- }
23920
- .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
23921
- background: rgb(var(--v-theme-error));
23922
- }
23923
- .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
23924
- margin-bottom: 16px;
23925
- margin-inline-end: 0;
23926
- }
23927
-
23928
- .v-stepper-item__title {
23929
- line-height: 1;
23930
- }
23931
- .v-stepper--mobile .v-stepper-item__title {
23932
- display: none;
23933
- }
23934
-
23935
- .v-stepper-item__subtitle {
23936
- font-size: 0.75rem;
23937
- text-align: left;
23938
- line-height: 1;
23939
- opacity: var(--v-medium-emphasis-opacity);
23940
- }
23941
- .v-stepper--alt-labels .v-stepper-item__subtitle {
23942
- text-align: center;
23943
- }
23944
- .v-stepper--mobile .v-stepper-item__subtitle {
23945
- display: none;
23946
- }.v-tabs {
23947
- display: flex;
23948
- height: var(--v-tabs-height);
23949
- }
23950
- .v-tabs--density-default {
23951
- --v-tabs-height: 48px;
23952
- }
23953
- .v-tabs--density-default.v-tabs--stacked {
23954
- --v-tabs-height: 72px;
23955
- }
23956
-
23957
- .v-tabs--density-comfortable {
23958
- --v-tabs-height: 44px;
23959
- }
23960
- .v-tabs--density-comfortable.v-tabs--stacked {
23961
- --v-tabs-height: 68px;
23962
- }
23963
-
23964
- .v-tabs--density-compact {
23965
- --v-tabs-height: 36px;
23966
- }
23967
- .v-tabs--density-compact.v-tabs--stacked {
23968
- --v-tabs-height: 60px;
23969
- }
23970
-
23971
- .v-tabs.v-slide-group--vertical {
23972
- height: auto;
23973
- flex: none;
23974
- --v-tabs-height: 48px;
23975
- }
23976
-
23977
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
23978
- margin-inline-start: 42px;
23979
- }
23980
-
23981
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
23982
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
23983
- margin-inline-end: auto;
23984
- }
23985
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
23986
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
23987
- margin-inline-start: auto;
23988
- }
23989
-
23990
- .v-tabs--grow {
23991
- flex-grow: 1;
23992
- }
23993
- .v-tabs--grow .v-tab {
23994
- flex: 1 0 auto;
23995
- max-width: none;
23996
- }
23997
-
23998
- .v-tabs--align-tabs-end .v-tab:first-child {
23999
- margin-inline-start: auto;
24000
- }
24001
- .v-tabs--align-tabs-end .v-tab:last-child {
24002
- margin-inline-end: 0;
24003
- }
24004
-
24005
- @media (max-width: 1279.98px) {
24006
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24007
- margin-inline-start: 52px;
24008
- }
24009
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24010
- margin-inline-end: 52px;
24011
- }
24012
- }.v-tab.v-tab.v-btn {
24013
- height: var(--v-tabs-height);
24014
- border-radius: 0;
24015
- min-width: 90px;
24016
- }
24017
- .v-slide-group--horizontal .v-tab {
24018
- max-width: 360px;
24019
- }
24020
- .v-slide-group--vertical .v-tab {
24021
- justify-content: start;
24022
- }
24023
-
24024
- .v-tab__slider {
24025
- position: absolute;
24026
- bottom: 0;
24027
- left: 0;
24028
- height: 2px;
24029
- width: 100%;
24030
- background: currentColor;
24031
- pointer-events: none;
24032
- opacity: 0;
24033
- }
24034
- .v-tab--selected .v-tab__slider {
24035
- opacity: 1;
24036
- }
24037
- .v-slide-group--vertical .v-tab__slider {
24038
- top: 0;
24039
- height: 100%;
24040
- width: 2px;
24041
- }.v-system-bar {
24042
- align-items: center;
24043
- display: flex;
24044
- flex: 1 1 auto;
24045
- height: 24px;
24046
- justify-content: flex-end;
24047
- max-width: 100%;
24048
- padding-inline: 8px;
24049
- position: relative;
24050
- text-align: end;
24051
- width: 100%;
24052
- 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));
24053
- background: rgba(var(--v-theme-surface-light));
24054
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24055
- font-size: 0.75rem;
24056
- font-weight: 400;
24057
- letter-spacing: 0.0333333333em;
24058
- line-height: 1.25rem;
24059
- text-transform: none;
24060
- }
24061
- .v-system-bar .v-icon {
24062
- opacity: var(--v-medium-emphasis-opacity);
24063
- }
24064
- .v-system-bar--absolute {
24065
- position: absolute;
24066
- }
24067
- .v-system-bar--fixed {
24068
- position: fixed;
24069
- }
24070
- .v-system-bar--rounded {
24071
- border-radius: 0;
24072
- }
24073
- .v-system-bar--window {
24074
- height: 32px;
24075
- }
24076
- .v-system-bar:not(.v-system-bar--absolute) {
24077
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24078
- }/* region BLOCK */
24079
- .v-text-field input {
24080
- color: inherit;
24081
- opacity: 0;
24082
- flex: 1;
24083
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24084
- min-width: 0;
24085
- }
24086
- .v-text-field input:focus, .v-text-field input:active {
24087
- outline: none;
24088
- }
24089
- .v-text-field input:invalid {
24090
- box-shadow: none;
24091
- }
24092
- .v-text-field .v-field {
24093
- cursor: text;
24094
- }
24095
- .v-text-field--prefixed.v-text-field .v-field__input {
24096
- --v-field-padding-start: 6px;
24097
- }
24098
-
24099
- .v-text-field--suffixed.v-text-field .v-field__input {
24100
- --v-field-padding-end: 0;
24101
- }
24102
-
24103
- .v-text-field .v-input__details {
24104
- padding-inline: 16px;
24105
- }
24106
- .v-input--plain-underlined.v-text-field .v-input__details {
24107
- padding-inline: 0;
24108
- }
24109
-
24110
- .v-text-field .v-field--no-label input,
24111
- .v-text-field .v-field--active input {
24112
- opacity: 1;
24113
- }
24114
- .v-text-field .v-field--single-line input {
24115
- transition: none;
24116
- }
24117
-
24118
- /* endregion */
24119
- /* region ELEMENTS */
24120
- .v-text-field__prefix, .v-text-field__suffix {
24121
- align-items: center;
24122
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
24123
- cursor: default;
24124
- display: flex;
24125
- opacity: 0;
24126
- transition: inherit;
24127
- white-space: nowrap;
24128
- min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
24129
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
24130
- padding-bottom: var(--v-field-padding-bottom, 6px);
24131
- }
24132
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
24133
- opacity: 1;
24134
- }
24135
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
24136
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
24137
- }
24138
- .v-text-field__prefix {
24139
- padding-inline-start: var(--v-field-padding-start);
24140
- }
24141
- .v-text-field__suffix {
24142
- padding-inline-end: var(--v-field-padding-end);
23927
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
23928
+ color: rgb(var(--v-theme-on-surface-variant));
23929
+ font-size: 0.75rem;
23930
+ margin-inline-end: 8px;
24143
23931
  }
24144
-
24145
- /* endregion */.v-textarea .v-field {
24146
- --v-textarea-control-height: var(--v-input-control-height);
23932
+ .v-stepper-item__avatar.v-avatar .v-icon {
23933
+ font-size: 0.875rem;
24147
23934
  }
24148
- .v-textarea .v-field__field {
24149
- --v-input-control-height: var(--v-textarea-control-height);
23935
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
23936
+ background: rgb(var(--v-theme-surface-variant));
24150
23937
  }
24151
- .v-textarea .v-field__input {
24152
- flex: 1 1 auto;
24153
- outline: none;
24154
- -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));
24155
- 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));
23938
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
23939
+ background: rgb(var(--v-theme-error));
24156
23940
  }
24157
- .v-textarea .v-field__input.v-textarea__sizer {
24158
- visibility: hidden;
24159
- position: absolute;
24160
- top: 0;
24161
- left: 0;
24162
- height: 0 !important;
24163
- min-height: 0 !important;
24164
- pointer-events: none;
23941
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
23942
+ margin-bottom: 16px;
23943
+ margin-inline-end: 0;
24165
23944
  }
24166
- .v-textarea--no-resize .v-field__input {
24167
- resize: none;
23945
+
23946
+ .v-stepper-item__title {
23947
+ line-height: 1;
24168
23948
  }
24169
- .v-textarea .v-field--no-label textarea,
24170
- .v-textarea .v-field--active textarea {
24171
- opacity: 1;
23949
+ .v-stepper--mobile .v-stepper-item__title {
23950
+ display: none;
24172
23951
  }
24173
- .v-textarea textarea {
24174
- opacity: 0;
24175
- flex: 1;
24176
- min-width: 0;
24177
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
23952
+
23953
+ .v-stepper-item__subtitle {
23954
+ font-size: 0.75rem;
23955
+ text-align: left;
23956
+ line-height: 1;
23957
+ opacity: var(--v-medium-emphasis-opacity);
24178
23958
  }
24179
- .v-textarea textarea:focus, .v-textarea textarea:active {
24180
- outline: none;
23959
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
23960
+ text-align: center;
24181
23961
  }
24182
- .v-textarea textarea:invalid {
24183
- box-shadow: none;
23962
+ .v-stepper--mobile .v-stepper-item__subtitle {
23963
+ display: none;
24184
23964
  }.v-table {
24185
23965
  background: rgb(var(--v-theme-surface));
24186
23966
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -24284,42 +24064,241 @@ html.v-overlay-scroll-blocked {
24284
24064
  flex: 1 1 auto;
24285
24065
  }
24286
24066
 
24287
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
24288
- border-top-left-radius: 0;
24067
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
24068
+ border-top-left-radius: 0;
24069
+ }
24070
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
24071
+ border-top-right-radius: 0;
24072
+ }
24073
+
24074
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
24075
+ border-bottom-left-radius: 0;
24076
+ }
24077
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
24078
+ border-bottom-right-radius: 0;
24079
+ }
24080
+
24081
+ .v-table--fixed-height > .v-table__wrapper {
24082
+ overflow-y: auto;
24083
+ }
24084
+
24085
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
24086
+ position: sticky;
24087
+ top: 0;
24088
+ z-index: 2;
24089
+ }
24090
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
24091
+ border-bottom: 0px !important;
24092
+ }
24093
+
24094
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
24095
+ position: sticky;
24096
+ bottom: 0;
24097
+ z-index: 1;
24098
+ }
24099
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24100
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24101
+ border-top: 0px !important;
24102
+ }.v-system-bar {
24103
+ align-items: center;
24104
+ display: flex;
24105
+ flex: 1 1 auto;
24106
+ height: 24px;
24107
+ justify-content: flex-end;
24108
+ max-width: 100%;
24109
+ padding-inline: 8px;
24110
+ position: relative;
24111
+ text-align: end;
24112
+ width: 100%;
24113
+ 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));
24114
+ background: rgba(var(--v-theme-surface-light));
24115
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24116
+ font-size: 0.75rem;
24117
+ font-weight: 400;
24118
+ letter-spacing: 0.0333333333em;
24119
+ line-height: 1.25rem;
24120
+ text-transform: none;
24121
+ }
24122
+ .v-system-bar .v-icon {
24123
+ opacity: var(--v-medium-emphasis-opacity);
24124
+ }
24125
+ .v-system-bar--absolute {
24126
+ position: absolute;
24127
+ }
24128
+ .v-system-bar--fixed {
24129
+ position: fixed;
24130
+ }
24131
+ .v-system-bar--rounded {
24132
+ border-radius: 0;
24133
+ }
24134
+ .v-system-bar--window {
24135
+ height: 32px;
24136
+ }
24137
+ .v-system-bar:not(.v-system-bar--absolute) {
24138
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24139
+ }.v-tab.v-tab.v-btn {
24140
+ height: var(--v-tabs-height);
24141
+ border-radius: 0;
24142
+ min-width: 90px;
24143
+ }
24144
+ .v-slide-group--horizontal .v-tab {
24145
+ max-width: 360px;
24146
+ }
24147
+ .v-slide-group--vertical .v-tab {
24148
+ justify-content: start;
24149
+ }
24150
+
24151
+ .v-tab__slider {
24152
+ position: absolute;
24153
+ bottom: 0;
24154
+ left: 0;
24155
+ height: 2px;
24156
+ width: 100%;
24157
+ background: currentColor;
24158
+ pointer-events: none;
24159
+ opacity: 0;
24160
+ }
24161
+ .v-tab--selected .v-tab__slider {
24162
+ opacity: 1;
24163
+ }
24164
+ .v-slide-group--vertical .v-tab__slider {
24165
+ top: 0;
24166
+ height: 100%;
24167
+ width: 2px;
24168
+ }.v-tabs {
24169
+ display: flex;
24170
+ height: var(--v-tabs-height);
24171
+ }
24172
+ .v-tabs--density-default {
24173
+ --v-tabs-height: 48px;
24174
+ }
24175
+ .v-tabs--density-default.v-tabs--stacked {
24176
+ --v-tabs-height: 72px;
24177
+ }
24178
+
24179
+ .v-tabs--density-comfortable {
24180
+ --v-tabs-height: 44px;
24181
+ }
24182
+ .v-tabs--density-comfortable.v-tabs--stacked {
24183
+ --v-tabs-height: 68px;
24184
+ }
24185
+
24186
+ .v-tabs--density-compact {
24187
+ --v-tabs-height: 36px;
24188
+ }
24189
+ .v-tabs--density-compact.v-tabs--stacked {
24190
+ --v-tabs-height: 60px;
24191
+ }
24192
+
24193
+ .v-tabs.v-slide-group--vertical {
24194
+ height: auto;
24195
+ flex: none;
24196
+ --v-tabs-height: 48px;
24197
+ }
24198
+
24199
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24200
+ margin-inline-start: 42px;
24201
+ }
24202
+
24203
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24204
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24205
+ margin-inline-end: auto;
24206
+ }
24207
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24208
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24209
+ margin-inline-start: auto;
24210
+ }
24211
+
24212
+ .v-tabs--grow {
24213
+ flex-grow: 1;
24214
+ }
24215
+ .v-tabs--grow .v-tab {
24216
+ flex: 1 0 auto;
24217
+ max-width: none;
24218
+ }
24219
+
24220
+ .v-tabs--align-tabs-end .v-tab:first-child {
24221
+ margin-inline-start: auto;
24222
+ }
24223
+ .v-tabs--align-tabs-end .v-tab:last-child {
24224
+ margin-inline-end: 0;
24225
+ }
24226
+
24227
+ @media (max-width: 1279.98px) {
24228
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24229
+ margin-inline-start: 52px;
24230
+ }
24231
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24232
+ margin-inline-end: 52px;
24233
+ }
24234
+ }/* region BLOCK */
24235
+ .v-text-field input {
24236
+ color: inherit;
24237
+ opacity: 0;
24238
+ flex: 1;
24239
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24240
+ min-width: 0;
24241
+ }
24242
+ .v-text-field input:focus, .v-text-field input:active {
24243
+ outline: none;
24244
+ }
24245
+ .v-text-field input:invalid {
24246
+ box-shadow: none;
24247
+ }
24248
+ .v-text-field .v-field {
24249
+ cursor: text;
24250
+ }
24251
+ .v-text-field--prefixed.v-text-field .v-field__input {
24252
+ --v-field-padding-start: 6px;
24253
+ }
24254
+
24255
+ .v-text-field--suffixed.v-text-field .v-field__input {
24256
+ --v-field-padding-end: 0;
24257
+ }
24258
+
24259
+ .v-text-field .v-input__details {
24260
+ padding-inline: 16px;
24261
+ }
24262
+ .v-input--plain-underlined.v-text-field .v-input__details {
24263
+ padding-inline: 0;
24264
+ }
24265
+
24266
+ .v-text-field .v-field--no-label input,
24267
+ .v-text-field .v-field--active input {
24268
+ opacity: 1;
24289
24269
  }
24290
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
24291
- border-top-right-radius: 0;
24270
+ .v-text-field .v-field--single-line input {
24271
+ transition: none;
24292
24272
  }
24293
24273
 
24294
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
24295
- border-bottom-left-radius: 0;
24274
+ /* endregion */
24275
+ /* region ELEMENTS */
24276
+ .v-text-field__prefix, .v-text-field__suffix {
24277
+ align-items: center;
24278
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
24279
+ cursor: default;
24280
+ display: flex;
24281
+ opacity: 0;
24282
+ transition: inherit;
24283
+ white-space: nowrap;
24284
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
24285
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
24286
+ padding-bottom: var(--v-field-padding-bottom, 6px);
24296
24287
  }
24297
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
24298
- border-bottom-right-radius: 0;
24288
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
24289
+ opacity: 1;
24299
24290
  }
24300
-
24301
- .v-table--fixed-height > .v-table__wrapper {
24302
- overflow-y: auto;
24291
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
24292
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
24303
24293
  }
24304
-
24305
- .v-table--fixed-header > .v-table__wrapper > table > thead {
24306
- position: sticky;
24307
- top: 0;
24308
- z-index: 2;
24294
+ .v-text-field__prefix {
24295
+ padding-inline-start: var(--v-field-padding-start);
24309
24296
  }
24310
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
24311
- border-bottom: 0px !important;
24297
+ .v-text-field__suffix {
24298
+ padding-inline-end: var(--v-field-padding-end);
24312
24299
  }
24313
24300
 
24314
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
24315
- position: sticky;
24316
- bottom: 0;
24317
- z-index: 1;
24318
- }
24319
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24320
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24321
- border-top: 0px !important;
24322
- }.v-theme-provider {
24301
+ /* endregion */.v-theme-provider {
24323
24302
  background: rgb(var(--v-theme-background));
24324
24303
  color: rgb(var(--v-theme-on-background));
24325
24304
  }.v-timeline .v-timeline-divider__dot {
@@ -24738,6 +24717,66 @@ html.v-overlay-scroll-blocked {
24738
24717
 
24739
24718
  .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 {
24740
24719
  padding-inline-end: 0;
24720
+ }.v-textarea .v-field {
24721
+ --v-textarea-control-height: var(--v-input-control-height);
24722
+ }
24723
+ .v-textarea .v-field__field {
24724
+ --v-input-control-height: var(--v-textarea-control-height);
24725
+ }
24726
+ .v-textarea .v-field__input {
24727
+ flex: 1 1 auto;
24728
+ outline: none;
24729
+ -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));
24730
+ 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));
24731
+ }
24732
+ .v-textarea .v-field__input.v-textarea__sizer {
24733
+ visibility: hidden;
24734
+ position: absolute;
24735
+ top: 0;
24736
+ left: 0;
24737
+ height: 0 !important;
24738
+ min-height: 0 !important;
24739
+ pointer-events: none;
24740
+ }
24741
+ .v-textarea--no-resize .v-field__input {
24742
+ resize: none;
24743
+ }
24744
+ .v-textarea .v-field--no-label textarea,
24745
+ .v-textarea .v-field--active textarea {
24746
+ opacity: 1;
24747
+ }
24748
+ .v-textarea textarea {
24749
+ opacity: 0;
24750
+ flex: 1;
24751
+ min-width: 0;
24752
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24753
+ }
24754
+ .v-textarea textarea:focus, .v-textarea textarea:active {
24755
+ outline: none;
24756
+ }
24757
+ .v-textarea textarea:invalid {
24758
+ box-shadow: none;
24759
+ }.v-tooltip > .v-overlay__content {
24760
+ background: rgb(var(--v-theme-surface-variant));
24761
+ color: rgb(var(--v-theme-on-surface-variant));
24762
+ border-radius: 4px;
24763
+ font-size: 0.875rem;
24764
+ line-height: 1.6;
24765
+ display: inline-block;
24766
+ padding: 5px 16px;
24767
+ text-transform: initial;
24768
+ width: auto;
24769
+ opacity: 1;
24770
+ pointer-events: none;
24771
+ transition-property: opacity, transform;
24772
+ }
24773
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
24774
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24775
+ transition-duration: 150ms;
24776
+ }
24777
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
24778
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24779
+ transition-duration: 75ms;
24741
24780
  }.v-toolbar {
24742
24781
  align-items: flex-start;
24743
24782
  display: flex;
@@ -24865,27 +24904,15 @@ html.v-overlay-scroll-blocked {
24865
24904
  }
24866
24905
  .v-toolbar-items > .v-btn {
24867
24906
  border-radius: 0;
24868
- }.v-tooltip > .v-overlay__content {
24869
- background: rgb(var(--v-theme-surface-variant));
24870
- color: rgb(var(--v-theme-on-surface-variant));
24871
- border-radius: 4px;
24872
- font-size: 0.875rem;
24873
- line-height: 1.6;
24874
- display: inline-block;
24875
- padding: 5px 16px;
24876
- text-transform: initial;
24877
- width: auto;
24878
- opacity: 1;
24879
- pointer-events: none;
24880
- transition-property: opacity, transform;
24881
- }
24882
- .v-tooltip > .v-overlay__content[class*=enter-active] {
24883
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24884
- transition-duration: 150ms;
24907
+ }.v-virtual-scroll {
24908
+ display: block;
24909
+ flex: 1 1 auto;
24910
+ max-width: 100%;
24911
+ overflow: auto;
24912
+ position: relative;
24885
24913
  }
24886
- .v-tooltip > .v-overlay__content[class*=leave-active] {
24887
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24888
- transition-duration: 75ms;
24914
+ .v-virtual-scroll__container {
24915
+ display: block;
24889
24916
  }.v-window {
24890
24917
  overflow: hidden;
24891
24918
  }
@@ -24955,37 +24982,6 @@ html.v-overlay-scroll-blocked {
24955
24982
  }
24956
24983
  .v-window-y-reverse-transition-leave-to {
24957
24984
  transform: translateY(100%);
24958
- }.v-virtual-scroll {
24959
- display: block;
24960
- flex: 1 1 auto;
24961
- max-width: 100%;
24962
- overflow: auto;
24963
- position: relative;
24964
- }
24965
- .v-virtual-scroll__container {
24966
- display: block;
24967
- }.v-color-picker-canvas {
24968
- display: flex;
24969
- position: relative;
24970
- overflow: hidden;
24971
- contain: content;
24972
- touch-action: none;
24973
- }
24974
- .v-color-picker-canvas__dot {
24975
- position: absolute;
24976
- top: 0;
24977
- left: 0;
24978
- width: 15px;
24979
- height: 15px;
24980
- background: transparent;
24981
- border-radius: 50%;
24982
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
24983
- }
24984
- .v-color-picker-canvas__dot--disabled {
24985
- 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);
24986
- }
24987
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
24988
- will-change: transform;
24989
24985
  }.v-color-picker-edit {
24990
24986
  display: flex;
24991
24987
  margin-top: 24px;
@@ -25014,6 +25010,41 @@ html.v-overlay-scroll-blocked {
25014
25010
  }
25015
25011
  .v-color-picker-edit__input span {
25016
25012
  font-size: 0.75rem;
25013
+ }.v-color-picker-swatches {
25014
+ overflow-y: auto;
25015
+ }
25016
+ .v-color-picker-swatches > div {
25017
+ display: flex;
25018
+ flex-wrap: wrap;
25019
+ justify-content: center;
25020
+ padding: 8px;
25021
+ }
25022
+
25023
+ .v-color-picker-swatches__swatch {
25024
+ display: flex;
25025
+ flex-direction: column;
25026
+ margin-bottom: 10px;
25027
+ }
25028
+
25029
+ .v-color-picker-swatches__color {
25030
+ position: relative;
25031
+ height: 18px;
25032
+ max-height: 18px;
25033
+ width: 45px;
25034
+ margin: 2px 4px;
25035
+ border-radius: 2px;
25036
+ -webkit-user-select: none;
25037
+ user-select: none;
25038
+ overflow: hidden;
25039
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25040
+ cursor: pointer;
25041
+ }
25042
+ .v-color-picker-swatches__color > div {
25043
+ display: flex;
25044
+ align-items: center;
25045
+ justify-content: center;
25046
+ width: 100%;
25047
+ height: 100%;
25017
25048
  }.v-color-picker-preview__alpha .v-slider-track__background {
25018
25049
  background-color: transparent !important;
25019
25050
  }
@@ -25083,41 +25114,28 @@ html.v-overlay-scroll-blocked {
25083
25114
  .v-color-picker-preview__eye-dropper {
25084
25115
  position: relative;
25085
25116
  margin-right: 12px;
25086
- }.v-color-picker-swatches {
25087
- overflow-y: auto;
25088
- }
25089
- .v-color-picker-swatches > div {
25090
- display: flex;
25091
- flex-wrap: wrap;
25092
- justify-content: center;
25093
- padding: 8px;
25094
- }
25095
-
25096
- .v-color-picker-swatches__swatch {
25117
+ }.v-color-picker-canvas {
25097
25118
  display: flex;
25098
- flex-direction: column;
25099
- margin-bottom: 10px;
25100
- }
25101
-
25102
- .v-color-picker-swatches__color {
25103
25119
  position: relative;
25104
- height: 18px;
25105
- max-height: 18px;
25106
- width: 45px;
25107
- margin: 2px 4px;
25108
- border-radius: 2px;
25109
- -webkit-user-select: none;
25110
- user-select: none;
25111
25120
  overflow: hidden;
25112
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25113
- cursor: pointer;
25121
+ contain: content;
25122
+ touch-action: none;
25114
25123
  }
25115
- .v-color-picker-swatches__color > div {
25116
- display: flex;
25117
- align-items: center;
25118
- justify-content: center;
25119
- width: 100%;
25120
- height: 100%;
25124
+ .v-color-picker-canvas__dot {
25125
+ position: absolute;
25126
+ top: 0;
25127
+ left: 0;
25128
+ width: 15px;
25129
+ height: 15px;
25130
+ background: transparent;
25131
+ border-radius: 50%;
25132
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25133
+ }
25134
+ .v-color-picker-canvas__dot--disabled {
25135
+ 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);
25136
+ }
25137
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25138
+ will-change: transform;
25121
25139
  }.v-slider-thumb {
25122
25140
  touch-action: none;
25123
25141
  color: rgb(var(--v-theme-surface-variant));