@vuetify/nightly 3.6.7-master.2024-05-24 → 3.6.7-master.2024-05-25

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.7-master.2024-05-24
2
+ * Vuetify v3.6.7-master.2024-05-25
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17620,6 +17620,87 @@ html.overflow-y-hidden {
17620
17620
  text-transform: none;
17621
17621
  word-break: normal;
17622
17622
  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);
17623
17704
  }.v-avatar {
17624
17705
  flex: none;
17625
17706
  align-items: center;
@@ -17715,87 +17796,6 @@ html.overflow-y-hidden {
17715
17796
  .v-avatar .v-img {
17716
17797
  height: 100%;
17717
17798
  width: 100%;
17718
- }.v-autocomplete .v-field .v-text-field__prefix,
17719
- .v-autocomplete .v-field .v-text-field__suffix,
17720
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17721
- cursor: text;
17722
- }
17723
- .v-autocomplete .v-field .v-field__input > input {
17724
- flex: 1 1;
17725
- }
17726
- .v-autocomplete .v-field input {
17727
- min-width: 64px;
17728
- }
17729
- .v-autocomplete .v-field:not(.v-field--focused) input {
17730
- min-width: 0;
17731
- }
17732
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17733
- margin-inline-end: 2px;
17734
- }
17735
- .v-autocomplete .v-autocomplete__selection-text {
17736
- overflow: hidden;
17737
- text-overflow: ellipsis;
17738
- white-space: nowrap;
17739
- }
17740
-
17741
- .v-autocomplete__content {
17742
- overflow: hidden;
17743
- 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));
17744
- border-radius: 4px;
17745
- }
17746
- .v-autocomplete__mask {
17747
- background: rgb(var(--v-theme-surface-light));
17748
- }
17749
- .v-autocomplete__selection {
17750
- display: inline-flex;
17751
- align-items: center;
17752
- height: 1.5rem;
17753
- letter-spacing: inherit;
17754
- line-height: inherit;
17755
- max-width: calc(100% - 2px - 2px);
17756
- }
17757
- .v-autocomplete__selection:first-child {
17758
- margin-inline-start: 0;
17759
- }
17760
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17761
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17762
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17763
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17764
- top: 0px;
17765
- }
17766
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17767
- opacity: var(--v-medium-emphasis-opacity);
17768
- }
17769
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17770
- opacity: 1;
17771
- }
17772
- .v-autocomplete--selecting-index .v-field__input > input {
17773
- caret-color: transparent;
17774
- }
17775
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
17776
- flex: 1 1;
17777
- position: absolute;
17778
- left: 0;
17779
- right: 0;
17780
- width: 100%;
17781
- padding-inline: inherit;
17782
- }
17783
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17784
- transition: none;
17785
- }
17786
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17787
- opacity: 0;
17788
- }
17789
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17790
- opacity: 0;
17791
- }
17792
- .v-autocomplete__menu-icon {
17793
- margin-inline-start: 4px;
17794
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17795
- }
17796
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17797
- opacity: var(--v-high-emphasis-opacity);
17798
- transform: rotate(180deg);
17799
17799
  }.v-badge {
17800
17800
  display: inline-block;
17801
17801
  line-height: 1;
@@ -19832,6 +19832,12 @@ html.overflow-y-hidden {
19832
19832
 
19833
19833
  .v-date-picker__title {
19834
19834
  display: inline-block;
19835
+ }.v-date-picker {
19836
+ overflow: hidden;
19837
+ width: 328px;
19838
+ }
19839
+ .v-date-picker--show-week {
19840
+ width: 368px;
19835
19841
  }.v-date-picker-header {
19836
19842
  align-items: flex-end;
19837
19843
  height: 70px;
@@ -19892,31 +19898,6 @@ html.overflow-y-hidden {
19892
19898
  .date-picker-header-reverse-transition-leave-to {
19893
19899
  opacity: 0;
19894
19900
  transform: translate(0, 100%);
19895
- }.v-date-picker-months {
19896
- height: 288px;
19897
- }
19898
-
19899
- .v-date-picker-months__content {
19900
- align-items: center;
19901
- display: grid;
19902
- flex: 1 1;
19903
- height: inherit;
19904
- justify-content: space-around;
19905
- grid-template-columns: repeat(2, 1fr);
19906
- grid-gap: 0px 24px;
19907
- padding-inline-start: 36px;
19908
- padding-inline-end: 36px;
19909
- }
19910
- .v-date-picker-months__content .v-btn {
19911
- text-transform: none;
19912
- padding-inline-start: 8px;
19913
- padding-inline-end: 8px;
19914
- }.v-date-picker {
19915
- overflow: hidden;
19916
- width: 328px;
19917
- }
19918
- .v-date-picker--show-week {
19919
- width: 368px;
19920
19901
  }.v-date-picker-month {
19921
19902
  display: flex;
19922
19903
  justify-content: center;
@@ -19972,6 +19953,25 @@ html.overflow-y-hidden {
19972
19953
 
19973
19954
  .v-date-picker-month__day--hide-adjacent {
19974
19955
  opacity: 0;
19956
+ }.v-date-picker-months {
19957
+ height: 288px;
19958
+ }
19959
+
19960
+ .v-date-picker-months__content {
19961
+ align-items: center;
19962
+ display: grid;
19963
+ flex: 1 1;
19964
+ height: inherit;
19965
+ justify-content: space-around;
19966
+ grid-template-columns: repeat(2, 1fr);
19967
+ grid-gap: 0px 24px;
19968
+ padding-inline-start: 36px;
19969
+ padding-inline-end: 36px;
19970
+ }
19971
+ .v-date-picker-months__content .v-btn {
19972
+ text-transform: none;
19973
+ padding-inline-start: 8px;
19974
+ padding-inline-end: 8px;
19975
19975
  }.v-date-picker-years {
19976
19976
  height: 288px;
19977
19977
  overflow-y: scroll;
@@ -21075,6 +21075,34 @@ textarea.v-field__input::placeholder {
21075
21075
  }
21076
21076
  .v-input--plain-underlined.v-file-input .v-input__details {
21077
21077
  padding-inline: 0;
21078
+ }.v-footer {
21079
+ align-items: center;
21080
+ display: flex;
21081
+ flex: 1 1 auto;
21082
+ padding: 8px 16px;
21083
+ position: relative;
21084
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21085
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
21086
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21087
+ border-style: solid;
21088
+ border-width: 0;
21089
+ 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));
21090
+ border-radius: 0;
21091
+ background: rgb(var(--v-theme-surface));
21092
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21093
+ }
21094
+ .v-footer--border {
21095
+ border-width: thin;
21096
+ box-shadow: none;
21097
+ }
21098
+ .v-footer--absolute {
21099
+ position: absolute;
21100
+ }
21101
+ .v-footer--fixed {
21102
+ position: fixed;
21103
+ }
21104
+ .v-footer--rounded {
21105
+ border-radius: 4px;
21078
21106
  }.v-container {
21079
21107
  width: 100%;
21080
21108
  padding: 16px;
@@ -21747,42 +21775,6 @@ textarea.v-field__input::placeholder {
21747
21775
  .offset-xxl-11 {
21748
21776
  margin-inline-start: 91.6666666667%;
21749
21777
  }
21750
- }.v-img {
21751
- --v-theme-overlay-multiplier: 3;
21752
- z-index: 0;
21753
- }
21754
- .v-img--booting .v-responsive__sizer {
21755
- transition: none;
21756
- }
21757
- .v-img--rounded {
21758
- border-radius: 4px;
21759
- }
21760
-
21761
- .v-img__img,
21762
- .v-img__picture,
21763
- .v-img__gradient,
21764
- .v-img__placeholder,
21765
- .v-img__error {
21766
- z-index: -1;
21767
- position: absolute;
21768
- top: 0;
21769
- left: 0;
21770
- width: 100%;
21771
- height: 100%;
21772
- }
21773
-
21774
- .v-img__img--preload {
21775
- filter: blur(4px);
21776
- }
21777
- .v-img__img--contain {
21778
- object-fit: contain;
21779
- }
21780
- .v-img__img--cover {
21781
- object-fit: cover;
21782
- }
21783
-
21784
- .v-img__gradient {
21785
- background-repeat: no-repeat;
21786
21778
  }.v-icon {
21787
21779
  --v-icon-size-multiplier: 1;
21788
21780
  align-items: center;
@@ -21836,6 +21828,42 @@ textarea.v-field__input::placeholder {
21836
21828
 
21837
21829
  .v-icon--end {
21838
21830
  margin-inline-start: 8px;
21831
+ }.v-img {
21832
+ --v-theme-overlay-multiplier: 3;
21833
+ z-index: 0;
21834
+ }
21835
+ .v-img--booting .v-responsive__sizer {
21836
+ transition: none;
21837
+ }
21838
+ .v-img--rounded {
21839
+ border-radius: 4px;
21840
+ }
21841
+
21842
+ .v-img__img,
21843
+ .v-img__picture,
21844
+ .v-img__gradient,
21845
+ .v-img__placeholder,
21846
+ .v-img__error {
21847
+ z-index: -1;
21848
+ position: absolute;
21849
+ top: 0;
21850
+ left: 0;
21851
+ width: 100%;
21852
+ height: 100%;
21853
+ }
21854
+
21855
+ .v-img__img--preload {
21856
+ filter: blur(4px);
21857
+ }
21858
+ .v-img__img--contain {
21859
+ object-fit: contain;
21860
+ }
21861
+ .v-img__img--cover {
21862
+ object-fit: cover;
21863
+ }
21864
+
21865
+ .v-img__gradient {
21866
+ background-repeat: no-repeat;
21839
21867
  }.v-infinite-scroll--horizontal {
21840
21868
  display: flex;
21841
21869
  flex-direction: row;
@@ -22038,34 +22066,6 @@ textarea.v-field__input::placeholder {
22038
22066
 
22039
22067
  .v-layout-item--absolute {
22040
22068
  position: absolute;
22041
- }.v-footer {
22042
- align-items: center;
22043
- display: flex;
22044
- flex: 1 1 auto;
22045
- padding: 8px 16px;
22046
- position: relative;
22047
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22048
- transition-property: height, width, transform, max-width, left, right, top, bottom;
22049
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22050
- border-style: solid;
22051
- border-width: 0;
22052
- 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));
22053
- border-radius: 0;
22054
- background: rgb(var(--v-theme-surface));
22055
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22056
- }
22057
- .v-footer--border {
22058
- border-width: thin;
22059
- box-shadow: none;
22060
- }
22061
- .v-footer--absolute {
22062
- position: absolute;
22063
- }
22064
- .v-footer--fixed {
22065
- position: fixed;
22066
- }
22067
- .v-footer--rounded {
22068
- border-radius: 4px;
22069
22069
  }.v-list {
22070
22070
  overflow: auto;
22071
22071
  padding: 8px 0;
@@ -22625,35 +22625,6 @@ textarea.v-field__input::placeholder {
22625
22625
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22626
22626
  }.v-locale-provider {
22627
22627
  display: contents;
22628
- }.v-messages {
22629
- flex: 1 1 auto;
22630
- font-size: 12px;
22631
- min-height: 14px;
22632
- min-width: 1px;
22633
- opacity: var(--v-medium-emphasis-opacity);
22634
- position: relative;
22635
- }
22636
- .v-messages__message {
22637
- line-height: 12px;
22638
- word-break: break-word;
22639
- overflow-wrap: break-word;
22640
- word-wrap: break-word;
22641
- -webkit-hyphens: auto;
22642
- hyphens: auto;
22643
- transition-duration: 150ms;
22644
- }.v-menu > .v-overlay__content {
22645
- display: flex;
22646
- flex-direction: column;
22647
- border-radius: 4px;
22648
- }
22649
- .v-menu > .v-overlay__content > .v-card,
22650
- .v-menu > .v-overlay__content > .v-sheet,
22651
- .v-menu > .v-overlay__content > .v-list {
22652
- background: rgb(var(--v-theme-surface));
22653
- border-radius: inherit;
22654
- overflow: auto;
22655
- height: 100%;
22656
- 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));
22657
22628
  }.v-main {
22658
22629
  flex: 1 0 auto;
22659
22630
  max-width: 100%;
@@ -22682,6 +22653,35 @@ textarea.v-field__input::placeholder {
22682
22653
  --v-layout-right: 0px;
22683
22654
  --v-layout-top: 0px;
22684
22655
  --v-layout-bottom: 0px;
22656
+ }.v-menu > .v-overlay__content {
22657
+ display: flex;
22658
+ flex-direction: column;
22659
+ border-radius: 4px;
22660
+ }
22661
+ .v-menu > .v-overlay__content > .v-card,
22662
+ .v-menu > .v-overlay__content > .v-sheet,
22663
+ .v-menu > .v-overlay__content > .v-list {
22664
+ background: rgb(var(--v-theme-surface));
22665
+ border-radius: inherit;
22666
+ overflow: auto;
22667
+ height: 100%;
22668
+ 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));
22669
+ }.v-messages {
22670
+ flex: 1 1 auto;
22671
+ font-size: 12px;
22672
+ min-height: 14px;
22673
+ min-width: 1px;
22674
+ opacity: var(--v-medium-emphasis-opacity);
22675
+ position: relative;
22676
+ }
22677
+ .v-messages__message {
22678
+ line-height: 12px;
22679
+ word-break: break-word;
22680
+ overflow-wrap: break-word;
22681
+ word-wrap: break-word;
22682
+ -webkit-hyphens: auto;
22683
+ hyphens: auto;
22684
+ transition-duration: 150ms;
22685
22685
  }.v-navigation-drawer {
22686
22686
  -webkit-overflow-scrolling: touch;
22687
22687
  background: rgb(var(--v-theme-surface));
@@ -23299,32 +23299,6 @@ html.v-overlay-scroll-blocked {
23299
23299
 
23300
23300
  .v-slider__label {
23301
23301
  margin-inline-end: 12px;
23302
- }.v-responsive {
23303
- display: flex;
23304
- flex: 1 0 auto;
23305
- max-height: 100%;
23306
- max-width: 100%;
23307
- overflow: hidden;
23308
- position: relative;
23309
- }
23310
- .v-responsive--inline {
23311
- display: inline-flex;
23312
- flex: 0 0 auto;
23313
- }
23314
-
23315
- .v-responsive__content {
23316
- flex: 1 0 0px;
23317
- max-width: 100%;
23318
- }
23319
-
23320
- .v-responsive__sizer ~ .v-responsive__content {
23321
- margin-inline-start: -100%;
23322
- }
23323
-
23324
- .v-responsive__sizer {
23325
- flex: 1 0 0px;
23326
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23327
- pointer-events: none;
23328
23302
  }.v-rating {
23329
23303
  max-width: 100%;
23330
23304
  display: inline-flex;
@@ -23379,6 +23353,80 @@ html.v-overlay-scroll-blocked {
23379
23353
  opacity: 0;
23380
23354
  position: absolute;
23381
23355
  width: 0;
23356
+ }.v-responsive {
23357
+ display: flex;
23358
+ flex: 1 0 auto;
23359
+ max-height: 100%;
23360
+ max-width: 100%;
23361
+ overflow: hidden;
23362
+ position: relative;
23363
+ }
23364
+ .v-responsive--inline {
23365
+ display: inline-flex;
23366
+ flex: 0 0 auto;
23367
+ }
23368
+
23369
+ .v-responsive__content {
23370
+ flex: 1 0 0px;
23371
+ max-width: 100%;
23372
+ }
23373
+
23374
+ .v-responsive__sizer ~ .v-responsive__content {
23375
+ margin-inline-start: -100%;
23376
+ }
23377
+
23378
+ .v-responsive__sizer {
23379
+ flex: 1 0 0px;
23380
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23381
+ pointer-events: none;
23382
+ }.v-select .v-field .v-text-field__prefix,
23383
+ .v-select .v-field .v-text-field__suffix,
23384
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23385
+ cursor: pointer;
23386
+ }
23387
+ .v-select .v-field .v-field__input > input {
23388
+ align-self: flex-start;
23389
+ opacity: 1;
23390
+ flex: 0 0;
23391
+ position: absolute;
23392
+ width: 100%;
23393
+ transition: none;
23394
+ pointer-events: none;
23395
+ caret-color: transparent;
23396
+ }
23397
+ .v-select .v-field--dirty .v-select__selection {
23398
+ margin-inline-end: 2px;
23399
+ }
23400
+ .v-select .v-select__selection-text {
23401
+ overflow: hidden;
23402
+ text-overflow: ellipsis;
23403
+ white-space: nowrap;
23404
+ }
23405
+ .v-select__content {
23406
+ overflow: hidden;
23407
+ 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));
23408
+ border-radius: 4px;
23409
+ }
23410
+ .v-select__selection {
23411
+ display: inline-flex;
23412
+ align-items: center;
23413
+ letter-spacing: inherit;
23414
+ line-height: inherit;
23415
+ max-width: 100%;
23416
+ }
23417
+ .v-select .v-select__selection:first-child {
23418
+ margin-inline-start: 0;
23419
+ }
23420
+ .v-select--selected .v-field .v-field__input > input {
23421
+ opacity: 0;
23422
+ }
23423
+ .v-select__menu-icon {
23424
+ margin-inline-start: 4px;
23425
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23426
+ }
23427
+ .v-select--active-menu .v-select__menu-icon {
23428
+ opacity: var(--v-high-emphasis-opacity);
23429
+ transform: rotate(180deg);
23382
23430
  }.v-selection-control {
23383
23431
  align-items: center;
23384
23432
  contain: layout;
@@ -23480,54 +23528,14 @@ html.v-overlay-scroll-blocked {
23480
23528
  }
23481
23529
  .v-selection-control--focus-visible .v-selection-control__input::before {
23482
23530
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23483
- }.v-select .v-field .v-text-field__prefix,
23484
- .v-select .v-field .v-text-field__suffix,
23485
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23486
- cursor: pointer;
23531
+ }.v-selection-control-group {
23532
+ grid-area: control;
23533
+ display: flex;
23534
+ flex-direction: column;
23487
23535
  }
23488
- .v-select .v-field .v-field__input > input {
23489
- align-self: flex-start;
23490
- opacity: 1;
23491
- flex: 0 0;
23492
- position: absolute;
23493
- width: 100%;
23494
- transition: none;
23495
- pointer-events: none;
23496
- caret-color: transparent;
23497
- }
23498
- .v-select .v-field--dirty .v-select__selection {
23499
- margin-inline-end: 2px;
23500
- }
23501
- .v-select .v-select__selection-text {
23502
- overflow: hidden;
23503
- text-overflow: ellipsis;
23504
- white-space: nowrap;
23505
- }
23506
- .v-select__content {
23507
- overflow: hidden;
23508
- 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));
23509
- border-radius: 4px;
23510
- }
23511
- .v-select__selection {
23512
- display: inline-flex;
23513
- align-items: center;
23514
- letter-spacing: inherit;
23515
- line-height: inherit;
23516
- max-width: 100%;
23517
- }
23518
- .v-select .v-select__selection:first-child {
23519
- margin-inline-start: 0;
23520
- }
23521
- .v-select--selected .v-field .v-field__input > input {
23522
- opacity: 0;
23523
- }
23524
- .v-select__menu-icon {
23525
- margin-inline-start: 4px;
23526
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23527
- }
23528
- .v-select--active-menu .v-select__menu-icon {
23529
- opacity: var(--v-high-emphasis-opacity);
23530
- transform: rotate(180deg);
23536
+ .v-selection-control-group--inline {
23537
+ flex-direction: row;
23538
+ flex-wrap: wrap;
23531
23539
  }.v-sheet {
23532
23540
  display: block;
23533
23541
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -23779,14 +23787,6 @@ html.v-overlay-scroll-blocked {
23779
23787
  100% {
23780
23788
  transform: translateX(100%);
23781
23789
  }
23782
- }.v-selection-control-group {
23783
- grid-area: control;
23784
- display: flex;
23785
- flex-direction: column;
23786
- }
23787
- .v-selection-control-group--inline {
23788
- flex-direction: row;
23789
- flex-wrap: wrap;
23790
23790
  }.v-slide-group {
23791
23791
  display: flex;
23792
23792
  overflow: hidden;
@@ -23980,6 +23980,47 @@ html.v-overlay-scroll-blocked {
23980
23980
  }
23981
23981
  .v-snackbar-transition-leave-to {
23982
23982
  opacity: 0;
23983
+ }.v-speed-dial__content {
23984
+ gap: 8px;
23985
+ }
23986
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
23987
+ flex-direction: row;
23988
+ }
23989
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
23990
+ flex-direction: row-reverse;
23991
+ }
23992
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
23993
+ flex-direction: column-reverse;
23994
+ }
23995
+ .v-speed-dial__content > *:nth-child(1) {
23996
+ transition-delay: 0s;
23997
+ }
23998
+ .v-speed-dial__content > *:nth-child(2) {
23999
+ transition-delay: 0.05s;
24000
+ }
24001
+ .v-speed-dial__content > *:nth-child(3) {
24002
+ transition-delay: 0.1s;
24003
+ }
24004
+ .v-speed-dial__content > *:nth-child(4) {
24005
+ transition-delay: 0.15s;
24006
+ }
24007
+ .v-speed-dial__content > *:nth-child(5) {
24008
+ transition-delay: 0.2s;
24009
+ }
24010
+ .v-speed-dial__content > *:nth-child(6) {
24011
+ transition-delay: 0.25s;
24012
+ }
24013
+ .v-speed-dial__content > *:nth-child(7) {
24014
+ transition-delay: 0.3s;
24015
+ }
24016
+ .v-speed-dial__content > *:nth-child(8) {
24017
+ transition-delay: 0.35s;
24018
+ }
24019
+ .v-speed-dial__content > *:nth-child(9) {
24020
+ transition-delay: 0.4s;
24021
+ }
24022
+ .v-speed-dial__content > *:nth-child(10) {
24023
+ transition-delay: 0.45s;
23983
24024
  }.v-stepper.v-sheet {
23984
24025
  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));
23985
24026
  border-radius: 4px;
@@ -24143,84 +24184,6 @@ html.v-overlay-scroll-blocked {
24143
24184
  width: 100%;
24144
24185
  height: 100%;
24145
24186
  pointer-events: none;
24146
- }.v-speed-dial__content {
24147
- gap: 8px;
24148
- }
24149
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24150
- flex-direction: row;
24151
- }
24152
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24153
- flex-direction: row-reverse;
24154
- }
24155
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24156
- flex-direction: column-reverse;
24157
- }
24158
- .v-speed-dial__content > *:nth-child(1) {
24159
- transition-delay: 0s;
24160
- }
24161
- .v-speed-dial__content > *:nth-child(2) {
24162
- transition-delay: 0.05s;
24163
- }
24164
- .v-speed-dial__content > *:nth-child(3) {
24165
- transition-delay: 0.1s;
24166
- }
24167
- .v-speed-dial__content > *:nth-child(4) {
24168
- transition-delay: 0.15s;
24169
- }
24170
- .v-speed-dial__content > *:nth-child(5) {
24171
- transition-delay: 0.2s;
24172
- }
24173
- .v-speed-dial__content > *:nth-child(6) {
24174
- transition-delay: 0.25s;
24175
- }
24176
- .v-speed-dial__content > *:nth-child(7) {
24177
- transition-delay: 0.3s;
24178
- }
24179
- .v-speed-dial__content > *:nth-child(8) {
24180
- transition-delay: 0.35s;
24181
- }
24182
- .v-speed-dial__content > *:nth-child(9) {
24183
- transition-delay: 0.4s;
24184
- }
24185
- .v-speed-dial__content > *:nth-child(10) {
24186
- transition-delay: 0.45s;
24187
- }.v-system-bar {
24188
- align-items: center;
24189
- display: flex;
24190
- flex: 1 1 auto;
24191
- height: 24px;
24192
- justify-content: flex-end;
24193
- max-width: 100%;
24194
- padding-inline: 8px;
24195
- position: relative;
24196
- text-align: end;
24197
- width: 100%;
24198
- 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));
24199
- background: rgba(var(--v-theme-surface-light));
24200
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24201
- font-size: 0.75rem;
24202
- font-weight: 400;
24203
- letter-spacing: 0.0333333333em;
24204
- line-height: 1.667;
24205
- text-transform: none;
24206
- }
24207
- .v-system-bar .v-icon {
24208
- opacity: var(--v-medium-emphasis-opacity);
24209
- }
24210
- .v-system-bar--absolute {
24211
- position: absolute;
24212
- }
24213
- .v-system-bar--fixed {
24214
- position: fixed;
24215
- }
24216
- .v-system-bar--rounded {
24217
- border-radius: 0;
24218
- }
24219
- .v-system-bar--window {
24220
- height: 32px;
24221
- }
24222
- .v-system-bar:not(.v-system-bar--absolute) {
24223
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24224
24187
  }.v-switch .v-label {
24225
24188
  padding-inline-start: 10px;
24226
24189
  }
@@ -24401,101 +24364,43 @@ html.v-overlay-scroll-blocked {
24401
24364
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
24402
24365
  border-width: 0;
24403
24366
  }
24404
- }.v-tab.v-tab.v-btn {
24405
- height: var(--v-tabs-height);
24406
- border-radius: 0;
24407
- min-width: 90px;
24408
- }
24409
- .v-slide-group--horizontal .v-tab {
24410
- max-width: 360px;
24411
- }
24412
- .v-slide-group--vertical .v-tab {
24413
- justify-content: start;
24414
- }
24415
-
24416
- .v-tab__slider {
24417
- position: absolute;
24418
- bottom: 0;
24419
- left: 0;
24420
- height: 2px;
24421
- width: 100%;
24422
- background: currentColor;
24423
- pointer-events: none;
24424
- opacity: 0;
24425
- }
24426
- .v-tab--selected .v-tab__slider {
24427
- opacity: 1;
24428
- }
24429
- .v-slide-group--vertical .v-tab__slider {
24430
- top: 0;
24431
- height: 100%;
24432
- width: 2px;
24433
- }.v-tabs {
24367
+ }.v-system-bar {
24368
+ align-items: center;
24434
24369
  display: flex;
24435
- height: var(--v-tabs-height);
24436
- }
24437
- .v-tabs--density-default {
24438
- --v-tabs-height: 48px;
24439
- }
24440
- .v-tabs--density-default.v-tabs--stacked {
24441
- --v-tabs-height: 72px;
24442
- }
24443
-
24444
- .v-tabs--density-comfortable {
24445
- --v-tabs-height: 44px;
24446
- }
24447
- .v-tabs--density-comfortable.v-tabs--stacked {
24448
- --v-tabs-height: 68px;
24449
- }
24450
-
24451
- .v-tabs--density-compact {
24452
- --v-tabs-height: 36px;
24453
- }
24454
- .v-tabs--density-compact.v-tabs--stacked {
24455
- --v-tabs-height: 60px;
24456
- }
24457
-
24458
- .v-tabs.v-slide-group--vertical {
24459
- height: auto;
24460
- flex: none;
24461
- --v-tabs-height: 48px;
24462
- }
24463
-
24464
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24465
- margin-inline-start: 42px;
24466
- }
24467
-
24468
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24469
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24470
- margin-inline-end: auto;
24370
+ flex: 1 1 auto;
24371
+ height: 24px;
24372
+ justify-content: flex-end;
24373
+ max-width: 100%;
24374
+ padding-inline: 8px;
24375
+ position: relative;
24376
+ text-align: end;
24377
+ width: 100%;
24378
+ 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));
24379
+ background: rgba(var(--v-theme-surface-light));
24380
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24381
+ font-size: 0.75rem;
24382
+ font-weight: 400;
24383
+ letter-spacing: 0.0333333333em;
24384
+ line-height: 1.667;
24385
+ text-transform: none;
24471
24386
  }
24472
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24473
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24474
- margin-inline-start: auto;
24387
+ .v-system-bar .v-icon {
24388
+ opacity: var(--v-medium-emphasis-opacity);
24475
24389
  }
24476
-
24477
- .v-tabs--grow {
24478
- flex-grow: 1;
24390
+ .v-system-bar--absolute {
24391
+ position: absolute;
24479
24392
  }
24480
- .v-tabs--grow .v-tab {
24481
- flex: 1 0 auto;
24482
- max-width: none;
24393
+ .v-system-bar--fixed {
24394
+ position: fixed;
24483
24395
  }
24484
-
24485
- .v-tabs--align-tabs-end .v-tab:first-child {
24486
- margin-inline-start: auto;
24396
+ .v-system-bar--rounded {
24397
+ border-radius: 0;
24487
24398
  }
24488
- .v-tabs--align-tabs-end .v-tab:last-child {
24489
- margin-inline-end: 0;
24399
+ .v-system-bar--window {
24400
+ height: 32px;
24490
24401
  }
24491
-
24492
- @media (max-width: 1279.98px) {
24493
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24494
- margin-inline-start: 52px;
24495
- }
24496
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24497
- margin-inline-end: 52px;
24498
- }
24402
+ .v-system-bar:not(.v-system-bar--absolute) {
24403
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24499
24404
  }.v-table {
24500
24405
  background: rgb(var(--v-theme-surface));
24501
24406
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -24634,6 +24539,101 @@ html.v-overlay-scroll-blocked {
24634
24539
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24635
24540
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24636
24541
  border-top: 0px !important;
24542
+ }.v-tab.v-tab.v-btn {
24543
+ height: var(--v-tabs-height);
24544
+ border-radius: 0;
24545
+ min-width: 90px;
24546
+ }
24547
+ .v-slide-group--horizontal .v-tab {
24548
+ max-width: 360px;
24549
+ }
24550
+ .v-slide-group--vertical .v-tab {
24551
+ justify-content: start;
24552
+ }
24553
+
24554
+ .v-tab__slider {
24555
+ position: absolute;
24556
+ bottom: 0;
24557
+ left: 0;
24558
+ height: 2px;
24559
+ width: 100%;
24560
+ background: currentColor;
24561
+ pointer-events: none;
24562
+ opacity: 0;
24563
+ }
24564
+ .v-tab--selected .v-tab__slider {
24565
+ opacity: 1;
24566
+ }
24567
+ .v-slide-group--vertical .v-tab__slider {
24568
+ top: 0;
24569
+ height: 100%;
24570
+ width: 2px;
24571
+ }.v-tabs {
24572
+ display: flex;
24573
+ height: var(--v-tabs-height);
24574
+ }
24575
+ .v-tabs--density-default {
24576
+ --v-tabs-height: 48px;
24577
+ }
24578
+ .v-tabs--density-default.v-tabs--stacked {
24579
+ --v-tabs-height: 72px;
24580
+ }
24581
+
24582
+ .v-tabs--density-comfortable {
24583
+ --v-tabs-height: 44px;
24584
+ }
24585
+ .v-tabs--density-comfortable.v-tabs--stacked {
24586
+ --v-tabs-height: 68px;
24587
+ }
24588
+
24589
+ .v-tabs--density-compact {
24590
+ --v-tabs-height: 36px;
24591
+ }
24592
+ .v-tabs--density-compact.v-tabs--stacked {
24593
+ --v-tabs-height: 60px;
24594
+ }
24595
+
24596
+ .v-tabs.v-slide-group--vertical {
24597
+ height: auto;
24598
+ flex: none;
24599
+ --v-tabs-height: 48px;
24600
+ }
24601
+
24602
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24603
+ margin-inline-start: 42px;
24604
+ }
24605
+
24606
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24607
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24608
+ margin-inline-end: auto;
24609
+ }
24610
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24611
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24612
+ margin-inline-start: auto;
24613
+ }
24614
+
24615
+ .v-tabs--grow {
24616
+ flex-grow: 1;
24617
+ }
24618
+ .v-tabs--grow .v-tab {
24619
+ flex: 1 0 auto;
24620
+ max-width: none;
24621
+ }
24622
+
24623
+ .v-tabs--align-tabs-end .v-tab:first-child {
24624
+ margin-inline-start: auto;
24625
+ }
24626
+ .v-tabs--align-tabs-end .v-tab:last-child {
24627
+ margin-inline-end: 0;
24628
+ }
24629
+
24630
+ @media (max-width: 1279.98px) {
24631
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24632
+ margin-inline-start: 52px;
24633
+ }
24634
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24635
+ margin-inline-end: 52px;
24636
+ }
24637
24637
  }.v-textarea .v-field {
24638
24638
  --v-textarea-control-height: var(--v-input-control-height);
24639
24639
  }
@@ -25310,6 +25310,15 @@ html.v-overlay-scroll-blocked {
25310
25310
  .v-tooltip > .v-overlay__content[class*=leave-active] {
25311
25311
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
25312
25312
  transition-duration: 75ms;
25313
+ }.v-virtual-scroll {
25314
+ display: block;
25315
+ flex: 1 1 auto;
25316
+ max-width: 100%;
25317
+ overflow: auto;
25318
+ position: relative;
25319
+ }
25320
+ .v-virtual-scroll__container {
25321
+ display: block;
25313
25322
  }.v-window {
25314
25323
  overflow: hidden;
25315
25324
  }
@@ -25380,15 +25389,6 @@ html.v-overlay-scroll-blocked {
25380
25389
  }
25381
25390
  .v-window-y-reverse-transition-leave-to {
25382
25391
  transform: translateY(100%);
25383
- }.v-virtual-scroll {
25384
- display: block;
25385
- flex: 1 1 auto;
25386
- max-width: 100%;
25387
- overflow: auto;
25388
- position: relative;
25389
- }
25390
- .v-virtual-scroll__container {
25391
- display: block;
25392
25392
  }.v-color-picker-edit {
25393
25393
  display: flex;
25394
25394
  margin-top: 24px;
@@ -25439,6 +25439,41 @@ html.v-overlay-scroll-blocked {
25439
25439
  }
25440
25440
  .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25441
25441
  will-change: transform;
25442
+ }.v-color-picker-swatches {
25443
+ overflow-y: auto;
25444
+ }
25445
+ .v-color-picker-swatches > div {
25446
+ display: flex;
25447
+ flex-wrap: wrap;
25448
+ justify-content: center;
25449
+ padding: 8px;
25450
+ }
25451
+
25452
+ .v-color-picker-swatches__swatch {
25453
+ display: flex;
25454
+ flex-direction: column;
25455
+ margin-bottom: 10px;
25456
+ }
25457
+
25458
+ .v-color-picker-swatches__color {
25459
+ position: relative;
25460
+ height: 18px;
25461
+ max-height: 18px;
25462
+ width: 45px;
25463
+ margin: 2px 4px;
25464
+ border-radius: 2px;
25465
+ -webkit-user-select: none;
25466
+ user-select: none;
25467
+ overflow: hidden;
25468
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25469
+ cursor: pointer;
25470
+ }
25471
+ .v-color-picker-swatches__color > div {
25472
+ display: flex;
25473
+ align-items: center;
25474
+ justify-content: center;
25475
+ width: 100%;
25476
+ height: 100%;
25442
25477
  }.v-color-picker-preview__alpha .v-slider-track__background {
25443
25478
  background-color: transparent !important;
25444
25479
  }
@@ -25509,41 +25544,6 @@ html.v-overlay-scroll-blocked {
25509
25544
  .v-color-picker-preview__eye-dropper {
25510
25545
  position: relative;
25511
25546
  margin-right: 12px;
25512
- }.v-color-picker-swatches {
25513
- overflow-y: auto;
25514
- }
25515
- .v-color-picker-swatches > div {
25516
- display: flex;
25517
- flex-wrap: wrap;
25518
- justify-content: center;
25519
- padding: 8px;
25520
- }
25521
-
25522
- .v-color-picker-swatches__swatch {
25523
- display: flex;
25524
- flex-direction: column;
25525
- margin-bottom: 10px;
25526
- }
25527
-
25528
- .v-color-picker-swatches__color {
25529
- position: relative;
25530
- height: 18px;
25531
- max-height: 18px;
25532
- width: 45px;
25533
- margin: 2px 4px;
25534
- border-radius: 2px;
25535
- -webkit-user-select: none;
25536
- user-select: none;
25537
- overflow: hidden;
25538
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25539
- cursor: pointer;
25540
- }
25541
- .v-color-picker-swatches__color > div {
25542
- display: flex;
25543
- align-items: center;
25544
- justify-content: center;
25545
- width: 100%;
25546
- height: 100%;
25547
25547
  }.v-picker.v-sheet {
25548
25548
  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));
25549
25549
  border-radius: 4px;