@vuetify/nightly 3.6.3-dev.2024-05-14 → 3.6.3-dev.2024-05-29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.3-dev.2024-05-14
2
+ * Vuetify v3.6.3-dev.2024-05-29
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17408,6 +17408,87 @@ html.overflow-y-hidden {
17408
17408
  }
17409
17409
  .v-app-bar:not(.v-toolbar--absolute) {
17410
17410
  padding-inline-end: var(--v-scrollbar-offset);
17411
+ }.v-autocomplete .v-field .v-text-field__prefix,
17412
+ .v-autocomplete .v-field .v-text-field__suffix,
17413
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17414
+ cursor: text;
17415
+ }
17416
+ .v-autocomplete .v-field .v-field__input > input {
17417
+ flex: 1 1;
17418
+ }
17419
+ .v-autocomplete .v-field input {
17420
+ min-width: 64px;
17421
+ }
17422
+ .v-autocomplete .v-field:not(.v-field--focused) input {
17423
+ min-width: 0;
17424
+ }
17425
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17426
+ margin-inline-end: 2px;
17427
+ }
17428
+ .v-autocomplete .v-autocomplete__selection-text {
17429
+ overflow: hidden;
17430
+ text-overflow: ellipsis;
17431
+ white-space: nowrap;
17432
+ }
17433
+
17434
+ .v-autocomplete__content {
17435
+ overflow: hidden;
17436
+ 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));
17437
+ border-radius: 4px;
17438
+ }
17439
+ .v-autocomplete__mask {
17440
+ background: rgb(var(--v-theme-surface-light));
17441
+ }
17442
+ .v-autocomplete__selection {
17443
+ display: inline-flex;
17444
+ align-items: center;
17445
+ height: 1.5rem;
17446
+ letter-spacing: inherit;
17447
+ line-height: inherit;
17448
+ max-width: calc(100% - 2px - 2px);
17449
+ }
17450
+ .v-autocomplete__selection:first-child {
17451
+ margin-inline-start: 0;
17452
+ }
17453
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17454
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17455
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17456
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17457
+ top: 0px;
17458
+ }
17459
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
17460
+ opacity: var(--v-medium-emphasis-opacity);
17461
+ }
17462
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17463
+ opacity: 1;
17464
+ }
17465
+ .v-autocomplete--selecting-index .v-field__input > input {
17466
+ caret-color: transparent;
17467
+ }
17468
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
17469
+ flex: 1 1;
17470
+ position: absolute;
17471
+ left: 0;
17472
+ right: 0;
17473
+ width: 100%;
17474
+ padding-inline: inherit;
17475
+ }
17476
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17477
+ transition: none;
17478
+ }
17479
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17480
+ opacity: 0;
17481
+ }
17482
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17483
+ opacity: 0;
17484
+ }
17485
+ .v-autocomplete__menu-icon {
17486
+ margin-inline-start: 4px;
17487
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17488
+ }
17489
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17490
+ opacity: var(--v-high-emphasis-opacity);
17491
+ transform: rotate(180deg);
17411
17492
  }.v-alert {
17412
17493
  display: grid;
17413
17494
  flex: 1 1;
@@ -17620,87 +17701,6 @@ html.overflow-y-hidden {
17620
17701
  text-transform: none;
17621
17702
  word-break: normal;
17622
17703
  word-wrap: break-word;
17623
- }.v-autocomplete .v-field .v-text-field__prefix,
17624
- .v-autocomplete .v-field .v-text-field__suffix,
17625
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17626
- cursor: text;
17627
- }
17628
- .v-autocomplete .v-field .v-field__input > input {
17629
- flex: 1 1;
17630
- }
17631
- .v-autocomplete .v-field input {
17632
- min-width: 64px;
17633
- }
17634
- .v-autocomplete .v-field:not(.v-field--focused) input {
17635
- min-width: 0;
17636
- }
17637
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17638
- margin-inline-end: 2px;
17639
- }
17640
- .v-autocomplete .v-autocomplete__selection-text {
17641
- overflow: hidden;
17642
- text-overflow: ellipsis;
17643
- white-space: nowrap;
17644
- }
17645
-
17646
- .v-autocomplete__content {
17647
- overflow: hidden;
17648
- 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));
17649
- border-radius: 4px;
17650
- }
17651
- .v-autocomplete__mask {
17652
- background: rgb(var(--v-theme-surface-light));
17653
- }
17654
- .v-autocomplete__selection {
17655
- display: inline-flex;
17656
- align-items: center;
17657
- height: 1.5rem;
17658
- letter-spacing: inherit;
17659
- line-height: inherit;
17660
- max-width: calc(100% - 2px - 2px);
17661
- }
17662
- .v-autocomplete__selection:first-child {
17663
- margin-inline-start: 0;
17664
- }
17665
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17666
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17667
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17668
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17669
- top: 0px;
17670
- }
17671
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17672
- opacity: var(--v-medium-emphasis-opacity);
17673
- }
17674
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17675
- opacity: 1;
17676
- }
17677
- .v-autocomplete--selecting-index .v-field__input > input {
17678
- caret-color: transparent;
17679
- }
17680
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
17681
- flex: 1 1;
17682
- position: absolute;
17683
- left: 0;
17684
- right: 0;
17685
- width: 100%;
17686
- padding-inline: inherit;
17687
- }
17688
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17689
- transition: none;
17690
- }
17691
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17692
- opacity: 0;
17693
- }
17694
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17695
- opacity: 0;
17696
- }
17697
- .v-autocomplete__menu-icon {
17698
- margin-inline-start: 4px;
17699
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17700
- }
17701
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17702
- opacity: var(--v-high-emphasis-opacity);
17703
- transform: rotate(180deg);
17704
17704
  }.v-avatar {
17705
17705
  flex: none;
17706
17706
  align-items: center;
@@ -17803,77 +17803,6 @@ html.overflow-y-hidden {
17803
17803
  .v-avatar .v-img {
17804
17804
  height: 100%;
17805
17805
  width: 100%;
17806
- }.v-badge {
17807
- display: inline-block;
17808
- line-height: 1;
17809
- }
17810
-
17811
- .v-badge__badge {
17812
- align-items: center;
17813
- display: inline-flex;
17814
- border-radius: 10px;
17815
- font-size: 0.75rem;
17816
- font-weight: 500;
17817
- height: 1.25rem;
17818
- justify-content: center;
17819
- min-width: 20px;
17820
- padding: 4px 6px;
17821
- pointer-events: auto;
17822
- position: absolute;
17823
- text-align: center;
17824
- text-indent: 0;
17825
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17826
- white-space: nowrap;
17827
- background: rgb(var(--v-theme-surface-variant));
17828
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17829
- }
17830
- .v-badge--bordered .v-badge__badge::after {
17831
- border-radius: inherit;
17832
- border-style: solid;
17833
- border-width: 2px;
17834
- bottom: 0;
17835
- color: rgb(var(--v-theme-background));
17836
- content: "";
17837
- left: 0;
17838
- position: absolute;
17839
- right: 0;
17840
- top: 0;
17841
- transform: scale(1.05);
17842
- }
17843
- .v-badge--dot .v-badge__badge {
17844
- border-radius: 4.5px;
17845
- height: 9px;
17846
- min-width: 0;
17847
- padding: 0;
17848
- width: 9px;
17849
- }
17850
- .v-badge--dot .v-badge__badge::after {
17851
- border-width: 1.5px;
17852
- }
17853
- .v-badge--inline .v-badge__badge {
17854
- position: relative;
17855
- vertical-align: middle;
17856
- }
17857
- .v-badge__badge .v-icon {
17858
- color: inherit;
17859
- font-size: 0.75rem;
17860
- margin: 0 -2px;
17861
- }
17862
- .v-badge__badge img,
17863
- .v-badge__badge .v-img {
17864
- height: 100%;
17865
- width: 100%;
17866
- }
17867
-
17868
- .v-badge__wrapper {
17869
- display: flex;
17870
- position: relative;
17871
- }
17872
- .v-badge--inline .v-badge__wrapper {
17873
- align-items: center;
17874
- display: inline-flex;
17875
- justify-content: center;
17876
- margin: 0 4px;
17877
17806
  }.v-banner {
17878
17807
  display: grid;
17879
17808
  flex: 1 1;
@@ -18031,6 +17960,77 @@ html.overflow-y-hidden {
18031
17960
  }
18032
17961
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18033
17962
  align-self: flex-start;
17963
+ }.v-badge {
17964
+ display: inline-block;
17965
+ line-height: 1;
17966
+ }
17967
+
17968
+ .v-badge__badge {
17969
+ align-items: center;
17970
+ display: inline-flex;
17971
+ border-radius: 10px;
17972
+ font-size: 0.75rem;
17973
+ font-weight: 500;
17974
+ height: 1.25rem;
17975
+ justify-content: center;
17976
+ min-width: 20px;
17977
+ padding: 4px 6px;
17978
+ pointer-events: auto;
17979
+ position: absolute;
17980
+ text-align: center;
17981
+ text-indent: 0;
17982
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17983
+ white-space: nowrap;
17984
+ background: rgb(var(--v-theme-surface-variant));
17985
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17986
+ }
17987
+ .v-badge--bordered .v-badge__badge::after {
17988
+ border-radius: inherit;
17989
+ border-style: solid;
17990
+ border-width: 2px;
17991
+ bottom: 0;
17992
+ color: rgb(var(--v-theme-background));
17993
+ content: "";
17994
+ left: 0;
17995
+ position: absolute;
17996
+ right: 0;
17997
+ top: 0;
17998
+ transform: scale(1.05);
17999
+ }
18000
+ .v-badge--dot .v-badge__badge {
18001
+ border-radius: 4.5px;
18002
+ height: 9px;
18003
+ min-width: 0;
18004
+ padding: 0;
18005
+ width: 9px;
18006
+ }
18007
+ .v-badge--dot .v-badge__badge::after {
18008
+ border-width: 1.5px;
18009
+ }
18010
+ .v-badge--inline .v-badge__badge {
18011
+ position: relative;
18012
+ vertical-align: middle;
18013
+ }
18014
+ .v-badge__badge .v-icon {
18015
+ color: inherit;
18016
+ font-size: 0.75rem;
18017
+ margin: 0 -2px;
18018
+ }
18019
+ .v-badge__badge img,
18020
+ .v-badge__badge .v-img {
18021
+ height: 100%;
18022
+ width: 100%;
18023
+ }
18024
+
18025
+ .v-badge__wrapper {
18026
+ display: flex;
18027
+ position: relative;
18028
+ }
18029
+ .v-badge--inline .v-badge__wrapper {
18030
+ align-items: center;
18031
+ display: inline-flex;
18032
+ justify-content: center;
18033
+ margin: 0 4px;
18034
18034
  }.v-bottom-navigation {
18035
18035
  display: flex;
18036
18036
  max-width: 100%;
@@ -18643,19 +18643,6 @@ html.overflow-y-hidden {
18643
18643
  }
18644
18644
  .v-btn-group--tile {
18645
18645
  border-radius: 0;
18646
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
18647
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18648
- }
18649
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
18650
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18651
- }
18652
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
18653
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18654
- }
18655
- @supports not selector(:focus-visible) {
18656
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18657
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18658
- }
18659
18646
  }.v-card {
18660
18647
  display: block;
18661
18648
  overflow: hidden;
@@ -18955,6 +18942,19 @@ html.overflow-y-hidden {
18955
18942
  pointer-events: none;
18956
18943
  opacity: 0;
18957
18944
  transition: opacity 0.2s ease-in-out;
18945
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
18946
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18947
+ }
18948
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
18949
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18950
+ }
18951
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
18952
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18953
+ }
18954
+ @supports not selector(:focus-visible) {
18955
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18956
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18957
+ }
18958
18958
  }.v-carousel {
18959
18959
  overflow: hidden;
18960
18960
  position: relative;
@@ -20444,12 +20444,6 @@ html.overflow-y-hidden {
20444
20444
  }
20445
20445
  .v-data-table-footer__page {
20446
20446
  padding: 0 8px;
20447
- }.v-date-picker {
20448
- overflow: hidden;
20449
- width: 328px;
20450
- }
20451
- .v-date-picker--show-week {
20452
- width: 368px;
20453
20447
  }.v-date-picker-controls {
20454
20448
  display: flex;
20455
20449
  align-items: center;
@@ -20566,6 +20560,12 @@ html.overflow-y-hidden {
20566
20560
  .date-picker-header-reverse-transition-leave-to {
20567
20561
  opacity: 0;
20568
20562
  transform: translate(0, 100%);
20563
+ }.v-date-picker {
20564
+ overflow: hidden;
20565
+ width: 328px;
20566
+ }
20567
+ .v-date-picker--show-week {
20568
+ width: 368px;
20569
20569
  }.v-date-picker-month {
20570
20570
  display: flex;
20571
20571
  justify-content: center;
@@ -22660,6 +22660,22 @@ textarea.v-field__input::placeholder {
22660
22660
  overflow: auto;
22661
22661
  height: 100%;
22662
22662
  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));
22663
+ }.v-messages {
22664
+ flex: 1 1 auto;
22665
+ font-size: 12px;
22666
+ min-height: 14px;
22667
+ min-width: 1px;
22668
+ opacity: var(--v-medium-emphasis-opacity);
22669
+ position: relative;
22670
+ }
22671
+ .v-messages__message {
22672
+ line-height: 12px;
22673
+ word-break: break-word;
22674
+ overflow-wrap: break-word;
22675
+ word-wrap: break-word;
22676
+ -webkit-hyphens: auto;
22677
+ hyphens: auto;
22678
+ transition-duration: 150ms;
22663
22679
  }.v-navigation-drawer {
22664
22680
  -webkit-overflow-scrolling: touch;
22665
22681
  background: rgb(var(--v-theme-surface));
@@ -22762,22 +22778,6 @@ textarea.v-field__input::placeholder {
22762
22778
  .v-navigation-drawer__append {
22763
22779
  flex: none;
22764
22780
  overflow: hidden;
22765
- }.v-messages {
22766
- flex: 1 1 auto;
22767
- font-size: 12px;
22768
- min-height: 14px;
22769
- min-width: 1px;
22770
- opacity: var(--v-medium-emphasis-opacity);
22771
- position: relative;
22772
- }
22773
- .v-messages__message {
22774
- line-height: 12px;
22775
- word-break: break-word;
22776
- overflow-wrap: break-word;
22777
- word-wrap: break-word;
22778
- -webkit-hyphens: auto;
22779
- hyphens: auto;
22780
- transition-duration: 150ms;
22781
22781
  }.v-otp-input {
22782
22782
  border-radius: 4px;
22783
22783
  align-items: center;
@@ -23421,6 +23421,42 @@ html.v-overlay-scroll-blocked {
23421
23421
  .v-select--active-menu .v-select__menu-icon {
23422
23422
  opacity: var(--v-high-emphasis-opacity);
23423
23423
  transform: rotate(180deg);
23424
+ }.v-selection-control-group {
23425
+ grid-area: control;
23426
+ display: flex;
23427
+ flex-direction: column;
23428
+ }
23429
+ .v-selection-control-group--inline {
23430
+ flex-direction: row;
23431
+ flex-wrap: wrap;
23432
+ }.v-sheet {
23433
+ display: block;
23434
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23435
+ border-style: solid;
23436
+ border-width: 0;
23437
+ 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));
23438
+ border-radius: 0;
23439
+ background: rgb(var(--v-theme-surface));
23440
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
23441
+ }
23442
+ .v-sheet--border {
23443
+ border-width: thin;
23444
+ box-shadow: none;
23445
+ }
23446
+ .v-sheet--absolute {
23447
+ position: absolute;
23448
+ }
23449
+ .v-sheet--fixed {
23450
+ position: fixed;
23451
+ }
23452
+ .v-sheet--relative {
23453
+ position: relative;
23454
+ }
23455
+ .v-sheet--sticky {
23456
+ position: sticky;
23457
+ }
23458
+ .v-sheet--rounded {
23459
+ border-radius: 4px;
23424
23460
  }.v-selection-control {
23425
23461
  align-items: center;
23426
23462
  contain: layout;
@@ -23522,42 +23558,6 @@ html.v-overlay-scroll-blocked {
23522
23558
  }
23523
23559
  .v-selection-control--focus-visible .v-selection-control__input::before {
23524
23560
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23525
- }.v-selection-control-group {
23526
- grid-area: control;
23527
- display: flex;
23528
- flex-direction: column;
23529
- }
23530
- .v-selection-control-group--inline {
23531
- flex-direction: row;
23532
- flex-wrap: wrap;
23533
- }.v-sheet {
23534
- display: block;
23535
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23536
- border-style: solid;
23537
- border-width: 0;
23538
- 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));
23539
- border-radius: 0;
23540
- background: rgb(var(--v-theme-surface));
23541
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
23542
- }
23543
- .v-sheet--border {
23544
- border-width: thin;
23545
- box-shadow: none;
23546
- }
23547
- .v-sheet--absolute {
23548
- position: absolute;
23549
- }
23550
- .v-sheet--fixed {
23551
- position: fixed;
23552
- }
23553
- .v-sheet--relative {
23554
- position: relative;
23555
- }
23556
- .v-sheet--sticky {
23557
- position: sticky;
23558
- }
23559
- .v-sheet--rounded {
23560
- border-radius: 4px;
23561
23561
  }.v-skeleton-loader {
23562
23562
  align-items: center;
23563
23563
  background: rgb(var(--v-theme-surface));
@@ -24304,35 +24304,6 @@ html.v-overlay-scroll-blocked {
24304
24304
  }
24305
24305
  .v-system-bar:not(.v-system-bar--absolute) {
24306
24306
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24307
- }.v-tab.v-tab.v-btn {
24308
- height: var(--v-tabs-height);
24309
- border-radius: 0;
24310
- min-width: 90px;
24311
- }
24312
- .v-slide-group--horizontal .v-tab {
24313
- max-width: 360px;
24314
- }
24315
- .v-slide-group--vertical .v-tab {
24316
- justify-content: start;
24317
- }
24318
-
24319
- .v-tab__slider {
24320
- position: absolute;
24321
- bottom: 0;
24322
- left: 0;
24323
- height: 2px;
24324
- width: 100%;
24325
- background: currentColor;
24326
- pointer-events: none;
24327
- opacity: 0;
24328
- }
24329
- .v-tab--selected .v-tab__slider {
24330
- opacity: 1;
24331
- }
24332
- .v-slide-group--vertical .v-tab__slider {
24333
- top: 0;
24334
- height: 100%;
24335
- width: 2px;
24336
24307
  }.v-tabs {
24337
24308
  display: flex;
24338
24309
  height: var(--v-tabs-height);
@@ -24399,6 +24370,35 @@ html.v-overlay-scroll-blocked {
24399
24370
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24400
24371
  margin-inline-end: 52px;
24401
24372
  }
24373
+ }.v-tab.v-tab.v-btn {
24374
+ height: var(--v-tabs-height);
24375
+ border-radius: 0;
24376
+ min-width: 90px;
24377
+ }
24378
+ .v-slide-group--horizontal .v-tab {
24379
+ max-width: 360px;
24380
+ }
24381
+ .v-slide-group--vertical .v-tab {
24382
+ justify-content: start;
24383
+ }
24384
+
24385
+ .v-tab__slider {
24386
+ position: absolute;
24387
+ bottom: 0;
24388
+ left: 0;
24389
+ height: 2px;
24390
+ width: 100%;
24391
+ background: currentColor;
24392
+ pointer-events: none;
24393
+ opacity: 0;
24394
+ }
24395
+ .v-tab--selected .v-tab__slider {
24396
+ opacity: 1;
24397
+ }
24398
+ .v-slide-group--vertical .v-tab__slider {
24399
+ top: 0;
24400
+ height: 100%;
24401
+ width: 2px;
24402
24402
  }.v-table {
24403
24403
  background: rgb(var(--v-theme-surface));
24404
24404
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -24537,45 +24537,6 @@ html.v-overlay-scroll-blocked {
24537
24537
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24538
24538
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24539
24539
  border-top: 0px !important;
24540
- }.v-textarea .v-field {
24541
- --v-textarea-control-height: var(--v-input-control-height);
24542
- }
24543
- .v-textarea .v-field__field {
24544
- --v-input-control-height: var(--v-textarea-control-height);
24545
- }
24546
- .v-textarea .v-field__input {
24547
- flex: 1 1 auto;
24548
- outline: none;
24549
- -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));
24550
- 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));
24551
- }
24552
- .v-textarea .v-field__input.v-textarea__sizer {
24553
- visibility: hidden;
24554
- position: absolute;
24555
- top: 0;
24556
- left: 0;
24557
- height: 0 !important;
24558
- min-height: 0 !important;
24559
- pointer-events: none;
24560
- }
24561
- .v-textarea--no-resize .v-field__input {
24562
- resize: none;
24563
- }
24564
- .v-textarea .v-field--no-label textarea,
24565
- .v-textarea .v-field--active textarea {
24566
- opacity: 1;
24567
- }
24568
- .v-textarea textarea {
24569
- opacity: 0;
24570
- flex: 1;
24571
- min-width: 0;
24572
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24573
- }
24574
- .v-textarea textarea:focus, .v-textarea textarea:active {
24575
- outline: none;
24576
- }
24577
- .v-textarea textarea:invalid {
24578
- box-shadow: none;
24579
24540
  }/* region BLOCK */
24580
24541
  .v-text-field input {
24581
24542
  color: inherit;
@@ -24643,7 +24604,46 @@ html.v-overlay-scroll-blocked {
24643
24604
  padding-inline-end: var(--v-field-padding-end);
24644
24605
  }
24645
24606
 
24646
- /* endregion */.v-theme-provider {
24607
+ /* endregion */.v-textarea .v-field {
24608
+ --v-textarea-control-height: var(--v-input-control-height);
24609
+ }
24610
+ .v-textarea .v-field__field {
24611
+ --v-input-control-height: var(--v-textarea-control-height);
24612
+ }
24613
+ .v-textarea .v-field__input {
24614
+ flex: 1 1 auto;
24615
+ outline: none;
24616
+ -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));
24617
+ 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));
24618
+ }
24619
+ .v-textarea .v-field__input.v-textarea__sizer {
24620
+ visibility: hidden;
24621
+ position: absolute;
24622
+ top: 0;
24623
+ left: 0;
24624
+ height: 0 !important;
24625
+ min-height: 0 !important;
24626
+ pointer-events: none;
24627
+ }
24628
+ .v-textarea--no-resize .v-field__input {
24629
+ resize: none;
24630
+ }
24631
+ .v-textarea .v-field--no-label textarea,
24632
+ .v-textarea .v-field--active textarea {
24633
+ opacity: 1;
24634
+ }
24635
+ .v-textarea textarea {
24636
+ opacity: 0;
24637
+ flex: 1;
24638
+ min-width: 0;
24639
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24640
+ }
24641
+ .v-textarea textarea:focus, .v-textarea textarea:active {
24642
+ outline: none;
24643
+ }
24644
+ .v-textarea textarea:invalid {
24645
+ box-shadow: none;
24646
+ }.v-theme-provider {
24647
24647
  background: rgb(var(--v-theme-background));
24648
24648
  color: rgb(var(--v-theme-on-background));
24649
24649
  }.v-timeline .v-timeline-divider__dot {