@vuetify/nightly 3.5.8-dev.2024-03-09 → 3.5.8-dev.2024-03-13

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.5.8-dev.2024-03-09
2
+ * Vuetify v3.5.8-dev.2024-03-13
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17073,6 +17073,216 @@ html.overflow-y-hidden {
17073
17073
  }
17074
17074
  .v-app-bar:not(.v-toolbar--absolute) {
17075
17075
  padding-inline-end: var(--v-scrollbar-offset);
17076
+ }.v-alert {
17077
+ display: grid;
17078
+ flex: 1 1;
17079
+ grid-template-areas: "prepend content append close" ". content . .";
17080
+ grid-template-columns: max-content auto max-content max-content;
17081
+ position: relative;
17082
+ padding: 16px;
17083
+ overflow: hidden;
17084
+ --v-border-color: currentColor;
17085
+ border-radius: 4px;
17086
+ }
17087
+ .v-alert--absolute {
17088
+ position: absolute;
17089
+ }
17090
+ .v-alert--fixed {
17091
+ position: fixed;
17092
+ }
17093
+ .v-alert--sticky {
17094
+ position: sticky;
17095
+ }
17096
+ .v-alert--variant-plain, .v-alert--variant-outlined, .v-alert--variant-text, .v-alert--variant-tonal {
17097
+ background: transparent;
17098
+ color: inherit;
17099
+ }
17100
+ .v-alert--variant-plain {
17101
+ opacity: 0.62;
17102
+ }
17103
+ .v-alert--variant-plain:focus, .v-alert--variant-plain:hover {
17104
+ opacity: 1;
17105
+ }
17106
+ .v-alert--variant-plain .v-alert__overlay {
17107
+ display: none;
17108
+ }
17109
+ .v-alert--variant-elevated, .v-alert--variant-flat {
17110
+ background: rgb(var(--v-theme-surface-light));
17111
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
17112
+ }
17113
+ .v-alert--variant-elevated {
17114
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17115
+ }
17116
+ .v-alert--variant-flat {
17117
+ 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));
17118
+ }
17119
+ .v-alert--variant-outlined {
17120
+ border: thin solid currentColor;
17121
+ }
17122
+ .v-alert--variant-text .v-alert__overlay {
17123
+ background: currentColor;
17124
+ }
17125
+ .v-alert--variant-tonal .v-alert__underlay {
17126
+ background: currentColor;
17127
+ opacity: var(--v-activated-opacity);
17128
+ border-radius: inherit;
17129
+ position: absolute;
17130
+ top: 0;
17131
+ right: 0;
17132
+ bottom: 0;
17133
+ left: 0;
17134
+ pointer-events: none;
17135
+ }
17136
+ .v-alert--prominent {
17137
+ grid-template-areas: "prepend content append close" "prepend content . .";
17138
+ }
17139
+ .v-alert.v-alert--border {
17140
+ --v-border-opacity: 0.38;
17141
+ }
17142
+ .v-alert.v-alert--border.v-alert--border-start {
17143
+ padding-inline-start: 24px;
17144
+ }
17145
+ .v-alert.v-alert--border.v-alert--border-end {
17146
+ padding-inline-end: 24px;
17147
+ }
17148
+ .v-alert--variant-plain {
17149
+ transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);
17150
+ }
17151
+ .v-alert--density-default {
17152
+ padding-bottom: 16px;
17153
+ padding-top: 16px;
17154
+ }
17155
+ .v-alert--density-default.v-alert--border-top {
17156
+ padding-top: 24px;
17157
+ }
17158
+ .v-alert--density-default.v-alert--border-bottom {
17159
+ padding-bottom: 24px;
17160
+ }
17161
+
17162
+ .v-alert--density-comfortable {
17163
+ padding-bottom: 12px;
17164
+ padding-top: 12px;
17165
+ }
17166
+ .v-alert--density-comfortable.v-alert--border-top {
17167
+ padding-top: 20px;
17168
+ }
17169
+ .v-alert--density-comfortable.v-alert--border-bottom {
17170
+ padding-bottom: 20px;
17171
+ }
17172
+
17173
+ .v-alert--density-compact {
17174
+ padding-bottom: 8px;
17175
+ padding-top: 8px;
17176
+ }
17177
+ .v-alert--density-compact.v-alert--border-top {
17178
+ padding-top: 16px;
17179
+ }
17180
+ .v-alert--density-compact.v-alert--border-bottom {
17181
+ padding-bottom: 16px;
17182
+ }
17183
+
17184
+ .v-alert__border {
17185
+ border-radius: inherit;
17186
+ bottom: 0;
17187
+ left: 0;
17188
+ opacity: var(--v-border-opacity);
17189
+ position: absolute;
17190
+ pointer-events: none;
17191
+ right: 0;
17192
+ top: 0;
17193
+ width: 100%;
17194
+ border-color: currentColor;
17195
+ border-style: solid;
17196
+ border-width: 0;
17197
+ }
17198
+ .v-alert__border--border {
17199
+ border-width: 8px;
17200
+ box-shadow: none;
17201
+ }
17202
+ .v-alert--border-start .v-alert__border {
17203
+ border-inline-start-width: 8px;
17204
+ }
17205
+ .v-alert--border-end .v-alert__border {
17206
+ border-inline-end-width: 8px;
17207
+ }
17208
+ .v-alert--border-top .v-alert__border {
17209
+ border-top-width: 8px;
17210
+ }
17211
+ .v-alert--border-bottom .v-alert__border {
17212
+ border-bottom-width: 8px;
17213
+ }
17214
+
17215
+ .v-alert__close {
17216
+ flex: 0 1 auto;
17217
+ grid-area: close;
17218
+ }
17219
+
17220
+ .v-alert__content {
17221
+ align-self: center;
17222
+ grid-area: content;
17223
+ overflow: hidden;
17224
+ }
17225
+
17226
+ .v-alert__append,
17227
+ .v-alert__close {
17228
+ align-self: flex-start;
17229
+ margin-inline-start: 16px;
17230
+ }
17231
+
17232
+ .v-alert__append {
17233
+ align-self: flex-start;
17234
+ grid-area: append;
17235
+ }
17236
+ .v-alert__append + .v-alert__close {
17237
+ margin-inline-start: 16px;
17238
+ }
17239
+
17240
+ .v-alert__prepend {
17241
+ align-self: flex-start;
17242
+ display: flex;
17243
+ align-items: center;
17244
+ grid-area: prepend;
17245
+ margin-inline-end: 16px;
17246
+ }
17247
+ .v-alert--prominent .v-alert__prepend {
17248
+ align-self: center;
17249
+ }
17250
+
17251
+ .v-alert__underlay {
17252
+ grid-area: none;
17253
+ position: absolute;
17254
+ }
17255
+ .v-alert--border-start .v-alert__underlay {
17256
+ border-top-left-radius: 0;
17257
+ border-bottom-left-radius: 0;
17258
+ }
17259
+ .v-alert--border-end .v-alert__underlay {
17260
+ border-top-right-radius: 0;
17261
+ border-bottom-right-radius: 0;
17262
+ }
17263
+ .v-alert--border-top .v-alert__underlay {
17264
+ border-top-left-radius: 0;
17265
+ border-top-right-radius: 0;
17266
+ }
17267
+ .v-alert--border-bottom .v-alert__underlay {
17268
+ border-bottom-left-radius: 0;
17269
+ border-bottom-right-radius: 0;
17270
+ }
17271
+
17272
+ .v-alert-title {
17273
+ align-items: center;
17274
+ align-self: center;
17275
+ display: flex;
17276
+ font-size: 1.25rem;
17277
+ font-weight: 500;
17278
+ -webkit-hyphens: auto;
17279
+ hyphens: auto;
17280
+ letter-spacing: 0.0125em;
17281
+ line-height: 1.75rem;
17282
+ overflow-wrap: normal;
17283
+ text-transform: none;
17284
+ word-break: normal;
17285
+ word-wrap: break-word;
17076
17286
  }.v-autocomplete .v-field .v-text-field__prefix,
17077
17287
  .v-autocomplete .v-field .v-text-field__suffix,
17078
17288
  .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
@@ -17524,38 +17734,6 @@ html.overflow-y-hidden {
17524
17734
  }
17525
17735
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
17526
17736
  transform: translateY(0.5rem);
17527
- }.bottom-sheet-transition-enter-from {
17528
- transform: translateY(100%);
17529
- }
17530
- .bottom-sheet-transition-leave-to {
17531
- transform: translateY(100%);
17532
- }
17533
-
17534
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17535
- align-self: flex-end;
17536
- border-radius: 0;
17537
- flex: 0 1 auto;
17538
- left: 0;
17539
- right: 0;
17540
- margin-inline: 0;
17541
- margin-bottom: 0;
17542
- transition-duration: 0.2s;
17543
- width: 100%;
17544
- max-width: 100%;
17545
- overflow: visible;
17546
- 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));
17547
- }
17548
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17549
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17550
- border-radius: 0;
17551
- }
17552
- .v-bottom-sheet.v-bottom-sheet--inset {
17553
- max-width: none;
17554
- }
17555
- @media (min-width: 600px) {
17556
- .v-bottom-sheet.v-bottom-sheet--inset {
17557
- max-width: 70%;
17558
- }
17559
17737
  }.v-breadcrumbs {
17560
17738
  display: flex;
17561
17739
  align-items: center;
@@ -17613,20 +17791,52 @@ html.overflow-y-hidden {
17613
17791
  display: inline-block;
17614
17792
  padding: 0 8px;
17615
17793
  vertical-align: middle;
17616
- }.v-btn {
17617
- align-items: center;
17618
- border-radius: 4px;
17619
- display: inline-grid;
17620
- grid-template-areas: "prepend content append";
17621
- grid-template-columns: max-content auto max-content;
17622
- font-weight: 500;
17623
- justify-content: center;
17624
- letter-spacing: 0.0892857143em;
17625
- line-height: normal;
17626
- max-width: 100%;
17627
- outline: none;
17628
- position: relative;
17629
- text-decoration: none;
17794
+ }.bottom-sheet-transition-enter-from {
17795
+ transform: translateY(100%);
17796
+ }
17797
+ .bottom-sheet-transition-leave-to {
17798
+ transform: translateY(100%);
17799
+ }
17800
+
17801
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
17802
+ align-self: flex-end;
17803
+ border-radius: 0;
17804
+ flex: 0 1 auto;
17805
+ left: 0;
17806
+ right: 0;
17807
+ margin-inline: 0;
17808
+ margin-bottom: 0;
17809
+ transition-duration: 0.2s;
17810
+ width: 100%;
17811
+ max-width: 100%;
17812
+ overflow: visible;
17813
+ 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));
17814
+ }
17815
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
17816
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
17817
+ border-radius: 0;
17818
+ }
17819
+ .v-bottom-sheet.v-bottom-sheet--inset {
17820
+ max-width: none;
17821
+ }
17822
+ @media (min-width: 600px) {
17823
+ .v-bottom-sheet.v-bottom-sheet--inset {
17824
+ max-width: 70%;
17825
+ }
17826
+ }.v-btn {
17827
+ align-items: center;
17828
+ border-radius: 4px;
17829
+ display: inline-grid;
17830
+ grid-template-areas: "prepend content append";
17831
+ grid-template-columns: max-content auto max-content;
17832
+ font-weight: 500;
17833
+ justify-content: center;
17834
+ letter-spacing: 0.0892857143em;
17835
+ line-height: normal;
17836
+ max-width: 100%;
17837
+ outline: none;
17838
+ position: relative;
17839
+ text-decoration: none;
17630
17840
  text-indent: 0.0892857143em;
17631
17841
  text-transform: uppercase;
17632
17842
  transition-property: box-shadow, transform, opacity, background;
@@ -18085,11 +18295,6 @@ html.overflow-y-hidden {
18085
18295
  .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18086
18296
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18087
18297
  }
18088
- }.v-checkbox.v-input {
18089
- flex: 0 1 auto;
18090
- }
18091
- .v-checkbox .v-selection-control {
18092
- min-height: var(--v-input-control-height);
18093
18298
  }.v-card {
18094
18299
  display: block;
18095
18300
  overflow: hidden;
@@ -18449,6 +18654,11 @@ html.overflow-y-hidden {
18449
18654
  flex-direction: column;
18450
18655
  height: 100% !important;
18451
18656
  width: 50px;
18657
+ }.v-checkbox.v-input {
18658
+ flex: 0 1 auto;
18659
+ }
18660
+ .v-checkbox .v-selection-control {
18661
+ min-height: var(--v-input-control-height);
18452
18662
  }.v-chip {
18453
18663
  align-items: center;
18454
18664
  display: inline-flex;
@@ -19647,68 +19857,185 @@ html.overflow-y-hidden {
19647
19857
  }
19648
19858
  .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19649
19859
  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));
19650
- }.v-date-picker {
19651
- overflow: hidden;
19652
- width: 328px;
19860
+ }.v-counter {
19861
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
19862
+ flex: 0 1 auto;
19863
+ font-size: 12px;
19864
+ transition-duration: 150ms;
19865
+ }.v-data-table {
19866
+ width: 100%;
19653
19867
  }
19654
- .v-date-picker--show-week {
19655
- width: 368px;
19656
- }.v-date-picker-controls {
19657
- display: flex;
19658
- align-items: center;
19659
- justify-content: space-between;
19660
- font-size: 0.875rem;
19661
- padding-top: 4px;
19662
- padding-bottom: 4px;
19663
- padding-inline-start: 6px;
19664
- padding-inline-end: 12px;
19868
+
19869
+ .v-data-table__table {
19870
+ width: 100%;
19871
+ border-collapse: separate;
19872
+ border-spacing: 0;
19665
19873
  }
19666
- .v-date-picker-controls > .v-btn:first-child {
19667
- text-transform: none;
19668
- font-weight: 400;
19669
- line-height: initial;
19670
- letter-spacing: initial;
19874
+
19875
+ .v-data-table__tr--focus {
19876
+ border: 1px dotted black;
19671
19877
  }
19672
- .v-date-picker-controls--variant-classic {
19673
- padding-inline-start: 12px;
19878
+ .v-data-table__tr--clickable {
19879
+ cursor: pointer;
19674
19880
  }
19675
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
19676
- opacity: 0.7;
19881
+
19882
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
19883
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
19884
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
19885
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
19886
+ text-align: end;
19677
19887
  }
19678
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
19888
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
19889
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
19890
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
19891
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
19892
+ flex-direction: row-reverse;
19893
+ }
19894
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
19895
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
19896
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
19897
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
19898
+ text-align: center;
19899
+ }
19900
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
19901
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
19902
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
19903
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
19904
+ justify-content: center;
19905
+ }
19906
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
19907
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
19908
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
19909
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
19910
+ padding: 0 8px;
19911
+ }
19912
+ .v-data-table .v-table__wrapper > table > thead > tr > th,
19913
+ .v-data-table .v-table__wrapper > table tbody > tr > th {
19914
+ align-items: center;
19915
+ }
19916
+ .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
19917
+ .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
19918
+ position: sticky;
19919
+ }
19920
+ .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
19921
+ .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
19679
19922
  cursor: pointer;
19923
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19680
19924
  }
19681
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
19682
- opacity: 1;
19925
+ .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
19926
+ .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
19927
+ opacity: 0;
19683
19928
  }
19684
- .v-date-picker-controls .v-btn:last-child {
19685
- margin-inline-start: 4px;
19929
+ .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
19930
+ .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
19931
+ opacity: 0.5;
19686
19932
  }
19687
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
19688
- transform: rotate(180deg);
19933
+
19934
+ .v-data-table-column--fixed,
19935
+ .v-data-table__th--sticky {
19936
+ background: rgb(var(--v-theme-surface));
19937
+ position: sticky !important;
19938
+ left: 0;
19939
+ z-index: 1;
19689
19940
  }
19690
19941
 
19691
- .v-date-picker-controls__date {
19692
- margin-inline-end: 4px;
19942
+ .v-data-table-column--last-fixed {
19943
+ border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
19693
19944
  }
19694
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
19695
- margin: auto;
19945
+
19946
+ .v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
19947
+ z-index: 2;
19948
+ }
19949
+
19950
+ .v-data-table-group-header-row td {
19951
+ background: rgba(var(--v-theme-surface));
19952
+ color: rgba(var(--v-theme-on-surface));
19953
+ }
19954
+ .v-data-table-group-header-row td > span {
19955
+ padding-left: 5px;
19956
+ }
19957
+
19958
+ .v-data-table--loading .v-data-table__td {
19959
+ opacity: 0.3;
19960
+ }
19961
+
19962
+ .v-data-table-group-header-row__column {
19963
+ padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
19964
+ }
19965
+
19966
+ .v-data-table-header__content {
19967
+ display: flex;
19968
+ align-items: center;
19969
+ }
19970
+
19971
+ .v-data-table-header__sort-badge {
19972
+ display: inline-flex;
19973
+ justify-content: center;
19974
+ align-items: center;
19975
+ font-size: 0.875rem;
19976
+ padding: 4px;
19977
+ border-radius: 50%;
19978
+ background: rgba(var(--v-border-color), var(--v-border-opacity));
19979
+ min-width: 20px;
19980
+ min-height: 20px;
19981
+ width: 20px;
19982
+ height: 20px;
19983
+ }
19984
+
19985
+ .v-data-table-progress > th {
19986
+ border: none !important;
19987
+ height: auto !important;
19988
+ padding: 0 !important;
19989
+ }
19990
+
19991
+ .v-data-table-progress__loader {
19992
+ position: relative;
19993
+ }
19994
+
19995
+ .v-data-table-rows-loading,
19996
+ .v-data-table-rows-no-data {
19696
19997
  text-align: center;
19998
+ }.v-data-table-footer {
19999
+ display: flex;
20000
+ align-items: center;
20001
+ flex-wrap: wrap;
20002
+ padding: 4px;
20003
+ justify-content: flex-end;
19697
20004
  }
19698
20005
 
19699
- .v-date-picker-controls__month {
20006
+ .v-data-table-footer__items-per-page {
19700
20007
  display: flex;
20008
+ align-items: center;
20009
+ justify-content: center;
19701
20010
  }
19702
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
19703
- flex-direction: row-reverse;
20011
+ .v-data-table-footer__items-per-page > span {
20012
+ padding-inline-end: 8px;
20013
+ }
20014
+ .v-data-table-footer__items-per-page > .v-select {
20015
+ width: 90px;
19704
20016
  }
19705
20017
 
19706
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
19707
- flex: 1 0 auto;
20018
+ .v-data-table-footer__info {
20019
+ display: flex;
20020
+ justify-content: flex-end;
20021
+ min-width: 116px;
20022
+ padding: 0 16px;
19708
20023
  }
19709
20024
 
19710
- .v-date-picker__title {
19711
- display: inline-block;
20025
+ .v-data-table-footer__pagination {
20026
+ display: flex;
20027
+ align-items: center;
20028
+ margin-inline-start: 16px;
20029
+ }
20030
+
20031
+ .v-data-table-footer__page {
20032
+ padding: 0 8px;
20033
+ }.v-date-picker {
20034
+ overflow: hidden;
20035
+ width: 328px;
20036
+ }
20037
+ .v-date-picker--show-week {
20038
+ width: 368px;
19712
20039
  }.v-date-picker-header {
19713
20040
  align-items: flex-end;
19714
20041
  height: 70px;
@@ -19824,7 +20151,63 @@ html.overflow-y-hidden {
19824
20151
 
19825
20152
  .v-date-picker-month__day--hide-adjacent {
19826
20153
  opacity: 0;
19827
- }.v-date-picker-months {
20154
+ }.v-date-picker-controls {
20155
+ display: flex;
20156
+ align-items: center;
20157
+ justify-content: space-between;
20158
+ font-size: 0.875rem;
20159
+ padding-top: 4px;
20160
+ padding-bottom: 4px;
20161
+ padding-inline-start: 6px;
20162
+ padding-inline-end: 12px;
20163
+ }
20164
+ .v-date-picker-controls > .v-btn:first-child {
20165
+ text-transform: none;
20166
+ font-weight: 400;
20167
+ line-height: initial;
20168
+ letter-spacing: initial;
20169
+ }
20170
+ .v-date-picker-controls--variant-classic {
20171
+ padding-inline-start: 12px;
20172
+ }
20173
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20174
+ opacity: 0.7;
20175
+ }
20176
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20177
+ cursor: pointer;
20178
+ }
20179
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20180
+ opacity: 1;
20181
+ }
20182
+ .v-date-picker-controls .v-btn:last-child {
20183
+ margin-inline-start: 4px;
20184
+ }
20185
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20186
+ transform: rotate(180deg);
20187
+ }
20188
+
20189
+ .v-date-picker-controls__date {
20190
+ margin-inline-end: 4px;
20191
+ }
20192
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20193
+ margin: auto;
20194
+ text-align: center;
20195
+ }
20196
+
20197
+ .v-date-picker-controls__month {
20198
+ display: flex;
20199
+ }
20200
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20201
+ flex-direction: row-reverse;
20202
+ }
20203
+
20204
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20205
+ flex: 1 0 auto;
20206
+ }
20207
+
20208
+ .v-date-picker__title {
20209
+ display: inline-block;
20210
+ }.v-date-picker-months {
19828
20211
  height: 288px;
19829
20212
  }
19830
20213
 
@@ -19858,179 +20241,6 @@ html.overflow-y-hidden {
19858
20241
  }
19859
20242
  .v-date-picker-years__content .v-btn {
19860
20243
  padding-inline: 8px;
19861
- }.v-counter {
19862
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
19863
- flex: 0 1 auto;
19864
- font-size: 12px;
19865
- transition-duration: 150ms;
19866
- }.v-data-table {
19867
- width: 100%;
19868
- }
19869
-
19870
- .v-data-table__table {
19871
- width: 100%;
19872
- border-collapse: separate;
19873
- border-spacing: 0;
19874
- }
19875
-
19876
- .v-data-table__tr--focus {
19877
- border: 1px dotted black;
19878
- }
19879
- .v-data-table__tr--clickable {
19880
- cursor: pointer;
19881
- }
19882
-
19883
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
19884
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
19885
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
19886
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
19887
- text-align: end;
19888
- }
19889
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
19890
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
19891
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
19892
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
19893
- flex-direction: row-reverse;
19894
- }
19895
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
19896
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
19897
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
19898
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
19899
- text-align: center;
19900
- }
19901
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
19902
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
19903
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
19904
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
19905
- justify-content: center;
19906
- }
19907
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
19908
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
19909
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
19910
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
19911
- padding: 0 8px;
19912
- }
19913
- .v-data-table .v-table__wrapper > table > thead > tr > th,
19914
- .v-data-table .v-table__wrapper > table tbody > tr > th {
19915
- align-items: center;
19916
- }
19917
- .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
19918
- .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
19919
- position: sticky;
19920
- }
19921
- .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
19922
- .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
19923
- cursor: pointer;
19924
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19925
- }
19926
- .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
19927
- .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
19928
- opacity: 0;
19929
- }
19930
- .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
19931
- .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
19932
- opacity: 0.5;
19933
- }
19934
-
19935
- .v-data-table-column--fixed,
19936
- .v-data-table__th--sticky {
19937
- background: rgb(var(--v-theme-surface));
19938
- position: sticky !important;
19939
- left: 0;
19940
- z-index: 1;
19941
- }
19942
-
19943
- .v-data-table-column--last-fixed {
19944
- border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
19945
- }
19946
-
19947
- .v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
19948
- z-index: 2;
19949
- }
19950
-
19951
- .v-data-table-group-header-row td {
19952
- background: rgba(var(--v-theme-surface));
19953
- color: rgba(var(--v-theme-on-surface));
19954
- }
19955
- .v-data-table-group-header-row td > span {
19956
- padding-left: 5px;
19957
- }
19958
-
19959
- .v-data-table--loading .v-data-table__td {
19960
- opacity: 0.3;
19961
- }
19962
-
19963
- .v-data-table-group-header-row__column {
19964
- padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
19965
- }
19966
-
19967
- .v-data-table-header__content {
19968
- display: flex;
19969
- align-items: center;
19970
- }
19971
-
19972
- .v-data-table-header__sort-badge {
19973
- display: inline-flex;
19974
- justify-content: center;
19975
- align-items: center;
19976
- font-size: 0.875rem;
19977
- padding: 4px;
19978
- border-radius: 50%;
19979
- background: rgba(var(--v-border-color), var(--v-border-opacity));
19980
- min-width: 20px;
19981
- min-height: 20px;
19982
- width: 20px;
19983
- height: 20px;
19984
- }
19985
-
19986
- .v-data-table-progress > th {
19987
- border: none !important;
19988
- height: auto !important;
19989
- padding: 0 !important;
19990
- }
19991
-
19992
- .v-data-table-progress__loader {
19993
- position: relative;
19994
- }
19995
-
19996
- .v-data-table-rows-loading,
19997
- .v-data-table-rows-no-data {
19998
- text-align: center;
19999
- }.v-data-table-footer {
20000
- display: flex;
20001
- align-items: center;
20002
- flex-wrap: wrap;
20003
- padding: 4px;
20004
- justify-content: flex-end;
20005
- }
20006
-
20007
- .v-data-table-footer__items-per-page {
20008
- display: flex;
20009
- align-items: center;
20010
- justify-content: center;
20011
- }
20012
- .v-data-table-footer__items-per-page > span {
20013
- padding-inline-end: 8px;
20014
- }
20015
- .v-data-table-footer__items-per-page > .v-select {
20016
- width: 90px;
20017
- }
20018
-
20019
- .v-data-table-footer__info {
20020
- display: flex;
20021
- justify-content: flex-end;
20022
- min-width: 116px;
20023
- padding: 0 16px;
20024
- }
20025
-
20026
- .v-data-table-footer__pagination {
20027
- display: flex;
20028
- align-items: center;
20029
- margin-inline-start: 16px;
20030
- }
20031
-
20032
- .v-data-table-footer__page {
20033
- padding: 0 8px;
20034
20244
  }.v-dialog {
20035
20245
  align-items: center;
20036
20246
  justify-content: center;
@@ -20358,26 +20568,6 @@ html.overflow-y-hidden {
20358
20568
  }
20359
20569
  .v-expansion-panels--tile > .v-expansion-panel {
20360
20570
  border-radius: 0;
20361
- }.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20362
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20363
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20364
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20365
- top: 0px;
20366
- }
20367
- .v-file-input input[type=file] {
20368
- height: 100%;
20369
- left: 0;
20370
- opacity: 0;
20371
- position: absolute;
20372
- top: 0;
20373
- width: 100%;
20374
- z-index: 1;
20375
- }
20376
- .v-file-input .v-input__details {
20377
- padding-inline: 16px;
20378
- }
20379
- .v-input--plain-underlined.v-file-input .v-input__details {
20380
- padding-inline: 0;
20381
20571
  }/* region INPUT */
20382
20572
  .v-field {
20383
20573
  display: grid;
@@ -20946,14 +21136,34 @@ textarea.v-field__input::placeholder {
20946
21136
  opacity: 0;
20947
21137
  }
20948
21138
 
20949
- /* endregion */.v-footer {
20950
- align-items: center;
20951
- display: flex;
20952
- flex: 1 1 auto;
20953
- padding: 8px 16px;
20954
- position: relative;
20955
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20956
- transition-property: height, width, transform, max-width, left, right, top, bottom;
21139
+ /* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21140
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21141
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21142
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21143
+ top: 0px;
21144
+ }
21145
+ .v-file-input input[type=file] {
21146
+ height: 100%;
21147
+ left: 0;
21148
+ opacity: 0;
21149
+ position: absolute;
21150
+ top: 0;
21151
+ width: 100%;
21152
+ z-index: 1;
21153
+ }
21154
+ .v-file-input .v-input__details {
21155
+ padding-inline: 16px;
21156
+ }
21157
+ .v-input--plain-underlined.v-file-input .v-input__details {
21158
+ padding-inline: 0;
21159
+ }.v-footer {
21160
+ align-items: center;
21161
+ display: flex;
21162
+ flex: 1 1 auto;
21163
+ padding: 8px 16px;
21164
+ position: relative;
21165
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21166
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
20957
21167
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20958
21168
  border-style: solid;
20959
21169
  border-width: 0;
@@ -21231,21 +21441,6 @@ textarea.v-field__input::placeholder {
21231
21441
  max-width: 100%;
21232
21442
  position: relative;
21233
21443
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21234
- }.v-layout {
21235
- --v-scrollbar-offset: 0px;
21236
- display: flex;
21237
- flex: 1 1 auto;
21238
- }
21239
- .v-layout--full-height {
21240
- --v-scrollbar-offset: inherit;
21241
- height: 100%;
21242
- }.v-layout-item {
21243
- position: absolute;
21244
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21245
- }
21246
-
21247
- .v-layout-item--absolute {
21248
- position: absolute;
21249
21444
  }.v-label {
21250
21445
  align-items: center;
21251
21446
  color: inherit;
@@ -21261,6 +21456,21 @@ textarea.v-field__input::placeholder {
21261
21456
 
21262
21457
  .v-label--clickable {
21263
21458
  cursor: pointer;
21459
+ }.v-layout {
21460
+ --v-scrollbar-offset: 0px;
21461
+ display: flex;
21462
+ flex: 1 1 auto;
21463
+ }
21464
+ .v-layout--full-height {
21465
+ --v-scrollbar-offset: inherit;
21466
+ height: 100%;
21467
+ }.v-layout-item {
21468
+ position: absolute;
21469
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21470
+ }
21471
+
21472
+ .v-layout-item--absolute {
21473
+ position: absolute;
21264
21474
  }.v-list {
21265
21475
  overflow: auto;
21266
21476
  padding: 8px 0;
@@ -23499,113 +23709,7 @@ html.v-overlay-scroll-blocked {
23499
23709
  top: 0;
23500
23710
  height: 100%;
23501
23711
  width: 2px;
23502
- }.v-textarea .v-field {
23503
- --v-textarea-control-height: var(--v-input-control-height);
23504
- }
23505
- .v-textarea .v-field__field {
23506
- --v-input-control-height: var(--v-textarea-control-height);
23507
- }
23508
- .v-textarea .v-field__input {
23509
- flex: 1 1 auto;
23510
- outline: none;
23511
- -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));
23512
- 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));
23513
- }
23514
- .v-textarea .v-field__input.v-textarea__sizer {
23515
- visibility: hidden;
23516
- position: absolute;
23517
- top: 0;
23518
- left: 0;
23519
- height: 0 !important;
23520
- min-height: 0 !important;
23521
- pointer-events: none;
23522
- }
23523
- .v-textarea--no-resize .v-field__input {
23524
- resize: none;
23525
- }
23526
- .v-textarea .v-field--no-label textarea,
23527
- .v-textarea .v-field--active textarea {
23528
- opacity: 1;
23529
- }
23530
- .v-textarea textarea {
23531
- opacity: 0;
23532
- flex: 1;
23533
- min-width: 0;
23534
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
23535
- }
23536
- .v-textarea textarea:focus, .v-textarea textarea:active {
23537
- outline: none;
23538
- }
23539
- .v-textarea textarea:invalid {
23540
- box-shadow: none;
23541
- }/* region BLOCK */
23542
- .v-text-field input {
23543
- color: inherit;
23544
- opacity: 0;
23545
- flex: 1;
23546
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
23547
- min-width: 0;
23548
- }
23549
- .v-text-field input:focus, .v-text-field input:active {
23550
- outline: none;
23551
- }
23552
- .v-text-field input:invalid {
23553
- box-shadow: none;
23554
- }
23555
- .v-text-field .v-field {
23556
- cursor: text;
23557
- }
23558
- .v-text-field--prefixed.v-text-field .v-field__input {
23559
- --v-field-padding-start: 6px;
23560
- }
23561
-
23562
- .v-text-field--suffixed.v-text-field .v-field__input {
23563
- --v-field-padding-end: 0;
23564
- }
23565
-
23566
- .v-text-field .v-input__details {
23567
- padding-inline: 16px;
23568
- }
23569
- .v-input--plain-underlined.v-text-field .v-input__details {
23570
- padding-inline: 0;
23571
- }
23572
-
23573
- .v-text-field .v-field--no-label input,
23574
- .v-text-field .v-field--active input {
23575
- opacity: 1;
23576
- }
23577
- .v-text-field .v-field--single-line input {
23578
- transition: none;
23579
- }
23580
-
23581
- /* endregion */
23582
- /* region ELEMENTS */
23583
- .v-text-field__prefix, .v-text-field__suffix {
23584
- align-items: center;
23585
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23586
- cursor: default;
23587
- display: flex;
23588
- opacity: 0;
23589
- transition: inherit;
23590
- white-space: nowrap;
23591
- min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
23592
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
23593
- padding-bottom: var(--v-field-padding-bottom, 6px);
23594
- }
23595
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
23596
- opacity: 1;
23597
- }
23598
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
23599
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
23600
- }
23601
- .v-text-field__prefix {
23602
- padding-inline-start: var(--v-field-padding-start);
23603
- }
23604
- .v-text-field__suffix {
23605
- padding-inline-end: var(--v-field-padding-end);
23606
- }
23607
-
23608
- /* endregion */.v-table {
23712
+ }.v-table {
23609
23713
  background: rgb(var(--v-theme-surface));
23610
23714
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23611
23715
  font-size: 0.875rem;
@@ -23743,68 +23847,174 @@ html.v-overlay-scroll-blocked {
23743
23847
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
23744
23848
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
23745
23849
  border-top: 0px !important;
23746
- }.v-theme-provider {
23747
- background: rgb(var(--v-theme-background));
23748
- color: rgb(var(--v-theme-on-background));
23749
- }.v-timeline .v-timeline-divider__dot {
23750
- background: rgb(var(--v-theme-surface-light));
23850
+ }/* region BLOCK */
23851
+ .v-text-field input {
23852
+ color: inherit;
23853
+ opacity: 0;
23854
+ flex: 1;
23855
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
23856
+ min-width: 0;
23751
23857
  }
23752
- .v-timeline .v-timeline-divider__inner-dot {
23753
- background: rgb(var(--v-theme-on-surface));
23858
+ .v-text-field input:focus, .v-text-field input:active {
23859
+ outline: none;
23754
23860
  }
23755
-
23756
- .v-timeline {
23757
- display: grid;
23758
- grid-auto-flow: dense;
23759
- position: relative;
23861
+ .v-text-field input:invalid {
23862
+ box-shadow: none;
23760
23863
  }
23761
- .v-timeline--horizontal.v-timeline {
23762
- grid-column-gap: 24px;
23763
- width: 100%;
23864
+ .v-text-field .v-field {
23865
+ cursor: text;
23764
23866
  }
23765
- .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
23766
- grid-row: 3;
23767
- padding-block-start: 24px;
23867
+ .v-text-field--prefixed.v-text-field .v-field__input {
23868
+ --v-field-padding-start: 6px;
23768
23869
  }
23769
- .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite {
23770
- grid-row: 1;
23771
- padding-block-end: 24px;
23772
- align-self: flex-end;
23870
+
23871
+ .v-text-field--suffixed.v-text-field .v-field__input {
23872
+ --v-field-padding-end: 0;
23773
23873
  }
23774
- .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__body {
23775
- grid-row: 1;
23776
- padding-block-end: 24px;
23777
- align-self: flex-end;
23874
+
23875
+ .v-text-field .v-input__details {
23876
+ padding-inline: 16px;
23778
23877
  }
23779
- .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__opposite {
23780
- grid-row: 3;
23781
- padding-block-start: 24px;
23878
+ .v-input--plain-underlined.v-text-field .v-input__details {
23879
+ padding-inline: 0;
23782
23880
  }
23783
23881
 
23784
- .v-timeline--vertical.v-timeline {
23785
- row-gap: 24px;
23786
- height: 100%;
23882
+ .v-text-field .v-field--no-label input,
23883
+ .v-text-field .v-field--active input {
23884
+ opacity: 1;
23787
23885
  }
23788
- .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite {
23789
- padding-block-start: 24px;
23886
+ .v-text-field .v-field--single-line input {
23887
+ transition: none;
23790
23888
  }
23791
- .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite {
23792
- padding-block-end: 24px;
23889
+
23890
+ /* endregion */
23891
+ /* region ELEMENTS */
23892
+ .v-text-field__prefix, .v-text-field__suffix {
23893
+ align-items: center;
23894
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23895
+ cursor: default;
23896
+ display: flex;
23897
+ opacity: 0;
23898
+ transition: inherit;
23899
+ white-space: nowrap;
23900
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
23901
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
23902
+ padding-bottom: var(--v-field-padding-bottom, 6px);
23793
23903
  }
23794
- .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
23795
- grid-column: 1;
23796
- padding-inline-end: 24px;
23904
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
23905
+ opacity: 1;
23797
23906
  }
23798
- .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite {
23799
- grid-column: 3;
23800
- padding-inline-start: 24px;
23907
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
23908
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
23801
23909
  }
23802
- .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__body {
23803
- grid-column: 3;
23804
- padding-inline-start: 24px;
23910
+ .v-text-field__prefix {
23911
+ padding-inline-start: var(--v-field-padding-start);
23805
23912
  }
23806
- .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__opposite {
23807
- grid-column: 1;
23913
+ .v-text-field__suffix {
23914
+ padding-inline-end: var(--v-field-padding-end);
23915
+ }
23916
+
23917
+ /* endregion */.v-textarea .v-field {
23918
+ --v-textarea-control-height: var(--v-input-control-height);
23919
+ }
23920
+ .v-textarea .v-field__field {
23921
+ --v-input-control-height: var(--v-textarea-control-height);
23922
+ }
23923
+ .v-textarea .v-field__input {
23924
+ flex: 1 1 auto;
23925
+ outline: none;
23926
+ -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));
23927
+ 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));
23928
+ }
23929
+ .v-textarea .v-field__input.v-textarea__sizer {
23930
+ visibility: hidden;
23931
+ position: absolute;
23932
+ top: 0;
23933
+ left: 0;
23934
+ height: 0 !important;
23935
+ min-height: 0 !important;
23936
+ pointer-events: none;
23937
+ }
23938
+ .v-textarea--no-resize .v-field__input {
23939
+ resize: none;
23940
+ }
23941
+ .v-textarea .v-field--no-label textarea,
23942
+ .v-textarea .v-field--active textarea {
23943
+ opacity: 1;
23944
+ }
23945
+ .v-textarea textarea {
23946
+ opacity: 0;
23947
+ flex: 1;
23948
+ min-width: 0;
23949
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
23950
+ }
23951
+ .v-textarea textarea:focus, .v-textarea textarea:active {
23952
+ outline: none;
23953
+ }
23954
+ .v-textarea textarea:invalid {
23955
+ box-shadow: none;
23956
+ }.v-theme-provider {
23957
+ background: rgb(var(--v-theme-background));
23958
+ color: rgb(var(--v-theme-on-background));
23959
+ }.v-timeline .v-timeline-divider__dot {
23960
+ background: rgb(var(--v-theme-surface-light));
23961
+ }
23962
+ .v-timeline .v-timeline-divider__inner-dot {
23963
+ background: rgb(var(--v-theme-on-surface));
23964
+ }
23965
+
23966
+ .v-timeline {
23967
+ display: grid;
23968
+ grid-auto-flow: dense;
23969
+ position: relative;
23970
+ }
23971
+ .v-timeline--horizontal.v-timeline {
23972
+ grid-column-gap: 24px;
23973
+ width: 100%;
23974
+ }
23975
+ .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
23976
+ grid-row: 3;
23977
+ padding-block-start: 24px;
23978
+ }
23979
+ .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite {
23980
+ grid-row: 1;
23981
+ padding-block-end: 24px;
23982
+ align-self: flex-end;
23983
+ }
23984
+ .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__body {
23985
+ grid-row: 1;
23986
+ padding-block-end: 24px;
23987
+ align-self: flex-end;
23988
+ }
23989
+ .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__opposite {
23990
+ grid-row: 3;
23991
+ padding-block-start: 24px;
23992
+ }
23993
+
23994
+ .v-timeline--vertical.v-timeline {
23995
+ row-gap: 24px;
23996
+ height: 100%;
23997
+ }
23998
+ .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite {
23999
+ padding-block-start: 24px;
24000
+ }
24001
+ .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite {
24002
+ padding-block-end: 24px;
24003
+ }
24004
+ .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
24005
+ grid-column: 1;
24006
+ padding-inline-end: 24px;
24007
+ }
24008
+ .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__opposite {
24009
+ grid-column: 3;
24010
+ padding-inline-start: 24px;
24011
+ }
24012
+ .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__body {
24013
+ grid-column: 3;
24014
+ padding-inline-start: 24px;
24015
+ }
24016
+ .v-timeline--vertical.v-timeline .v-timeline-item:nth-child(2n+1) .v-timeline-item__opposite {
24017
+ grid-column: 1;
23808
24018
  justify-self: flex-end;
23809
24019
  padding-inline-end: 24px;
23810
24020
  }
@@ -24313,6 +24523,15 @@ html.v-overlay-scroll-blocked {
24313
24523
  .v-tooltip > .v-overlay__content[class*=leave-active] {
24314
24524
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24315
24525
  transition-duration: 75ms;
24526
+ }.v-virtual-scroll {
24527
+ display: block;
24528
+ flex: 1 1 auto;
24529
+ max-width: 100%;
24530
+ overflow: auto;
24531
+ position: relative;
24532
+ }
24533
+ .v-virtual-scroll__container {
24534
+ display: block;
24316
24535
  }.v-window {
24317
24536
  overflow: hidden;
24318
24537
  }
@@ -24382,430 +24601,365 @@ html.v-overlay-scroll-blocked {
24382
24601
  }
24383
24602
  .v-window-y-reverse-transition-leave-to {
24384
24603
  transform: translateY(100%);
24385
- }.v-virtual-scroll {
24386
- display: block;
24387
- flex: 1 1 auto;
24388
- max-width: 100%;
24389
- overflow: auto;
24390
- position: relative;
24604
+ }.v-color-picker-edit {
24605
+ display: flex;
24606
+ margin-top: 24px;
24391
24607
  }
24392
- .v-virtual-scroll__container {
24393
- display: block;
24394
- }.v-alert {
24395
- display: grid;
24396
- flex: 1 1;
24397
- grid-template-areas: "prepend content append close" ". content . .";
24398
- grid-template-columns: max-content auto max-content max-content;
24608
+
24609
+ .v-color-picker-edit__input {
24610
+ width: 100%;
24611
+ display: flex;
24612
+ flex-wrap: wrap;
24613
+ justify-content: center;
24614
+ text-align: center;
24615
+ }
24616
+ .v-color-picker-edit__input:not(:last-child) {
24617
+ margin-inline-end: 8px;
24618
+ }
24619
+ .v-color-picker-edit__input input {
24620
+ border-radius: 4px;
24621
+ margin-bottom: 8px;
24622
+ min-width: 0;
24623
+ outline: none;
24624
+ text-align: center;
24625
+ width: 100%;
24626
+ height: 32px;
24627
+ background: rgba(var(--v-theme-surface-variant), 0.2);
24628
+ color: rgba(var(--v-theme-on-surface));
24629
+ }
24630
+ .v-color-picker-edit__input span {
24631
+ font-size: 0.75rem;
24632
+ }.v-color-picker-canvas {
24633
+ display: flex;
24399
24634
  position: relative;
24400
- padding: 16px;
24401
24635
  overflow: hidden;
24402
- --v-border-color: currentColor;
24403
- border-radius: 4px;
24636
+ contain: content;
24637
+ touch-action: none;
24404
24638
  }
24405
- .v-alert--absolute {
24639
+ .v-color-picker-canvas__dot {
24406
24640
  position: absolute;
24641
+ top: 0;
24642
+ left: 0;
24643
+ width: 15px;
24644
+ height: 15px;
24645
+ background: transparent;
24646
+ border-radius: 50%;
24647
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
24407
24648
  }
24408
- .v-alert--fixed {
24409
- position: fixed;
24649
+ .v-color-picker-canvas__dot--disabled {
24650
+ 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);
24410
24651
  }
24411
- .v-alert--sticky {
24412
- position: sticky;
24652
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
24653
+ will-change: transform;
24654
+ }.v-color-picker-preview__alpha .v-slider-track__background {
24655
+ background-color: transparent !important;
24413
24656
  }
24414
- .v-alert--variant-plain, .v-alert--variant-outlined, .v-alert--variant-text, .v-alert--variant-tonal {
24415
- background: transparent;
24416
- color: inherit;
24657
+ .v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background {
24658
+ background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
24417
24659
  }
24418
- .v-alert--variant-plain {
24419
- opacity: 0.62;
24660
+
24661
+ .v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background {
24662
+ background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
24420
24663
  }
24421
- .v-alert--variant-plain:focus, .v-alert--variant-plain:hover {
24422
- opacity: 1;
24664
+
24665
+ .v-color-picker-preview__alpha .v-slider-track__background::after {
24666
+ content: "";
24667
+ z-index: -1;
24668
+ left: 0;
24669
+ top: 0;
24670
+ width: 100%;
24671
+ height: 100%;
24672
+ position: absolute;
24673
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
24674
+ border-radius: inherit;
24423
24675
  }
24424
- .v-alert--variant-plain .v-alert__overlay {
24425
- display: none;
24676
+
24677
+ .v-color-picker-preview__sliders {
24678
+ display: flex;
24679
+ flex: 1 0 auto;
24680
+ flex-direction: column;
24426
24681
  }
24427
- .v-alert--variant-elevated, .v-alert--variant-flat {
24428
- background: rgb(var(--v-theme-surface-light));
24429
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24682
+
24683
+ .v-color-picker-preview__dot {
24684
+ position: relative;
24685
+ height: 30px;
24686
+ width: 30px;
24687
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
24688
+ border-radius: 50%;
24689
+ overflow: hidden;
24690
+ margin-inline-end: 24px;
24430
24691
  }
24431
- .v-alert--variant-elevated {
24432
- box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24692
+ .v-color-picker-preview__dot > div {
24693
+ width: 100%;
24694
+ height: 100%;
24433
24695
  }
24434
- .v-alert--variant-flat {
24435
- 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));
24696
+
24697
+ .v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
24698
+ background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
24436
24699
  }
24437
- .v-alert--variant-outlined {
24438
- border: thin solid currentColor;
24700
+
24701
+ .v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
24702
+ background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
24439
24703
  }
24440
- .v-alert--variant-text .v-alert__overlay {
24441
- background: currentColor;
24704
+
24705
+ .v-color-picker-preview__track {
24706
+ position: relative;
24707
+ width: 100%;
24708
+ margin: 0 !important;
24442
24709
  }
24443
- .v-alert--variant-tonal .v-alert__underlay {
24444
- background: currentColor;
24445
- opacity: var(--v-activated-opacity);
24446
- border-radius: inherit;
24447
- position: absolute;
24448
- top: 0;
24449
- right: 0;
24450
- bottom: 0;
24451
- left: 0;
24452
- pointer-events: none;
24453
- }
24454
- .v-alert--prominent {
24455
- grid-template-areas: "prepend content append close" "prepend content . .";
24456
- }
24457
- .v-alert.v-alert--border {
24458
- --v-border-opacity: 0.38;
24459
- }
24460
- .v-alert.v-alert--border.v-alert--border-start {
24461
- padding-inline-start: 24px;
24462
- }
24463
- .v-alert.v-alert--border.v-alert--border-end {
24464
- padding-inline-end: 24px;
24465
- }
24466
- .v-alert--variant-plain {
24467
- transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);
24468
- }
24469
- .v-alert--density-default {
24470
- padding-bottom: 16px;
24471
- padding-top: 16px;
24472
- }
24473
- .v-alert--density-default.v-alert--border-top {
24474
- padding-top: 24px;
24475
- }
24476
- .v-alert--density-default.v-alert--border-bottom {
24477
- padding-bottom: 24px;
24710
+ .v-color-picker-preview__track .v-slider-track__fill {
24711
+ display: none;
24478
24712
  }
24479
24713
 
24480
- .v-alert--density-comfortable {
24481
- padding-bottom: 12px;
24482
- padding-top: 12px;
24483
- }
24484
- .v-alert--density-comfortable.v-alert--border-top {
24485
- padding-top: 20px;
24486
- }
24487
- .v-alert--density-comfortable.v-alert--border-bottom {
24488
- padding-bottom: 20px;
24714
+ .v-color-picker-preview {
24715
+ align-items: center;
24716
+ display: flex;
24717
+ margin-bottom: 0;
24489
24718
  }
24490
24719
 
24491
- .v-alert--density-compact {
24492
- padding-bottom: 8px;
24493
- padding-top: 8px;
24494
- }
24495
- .v-alert--density-compact.v-alert--border-top {
24496
- padding-top: 16px;
24720
+ .v-color-picker-preview__eye-dropper {
24721
+ position: relative;
24722
+ margin-right: 12px;
24723
+ }.v-color-picker-swatches {
24724
+ overflow-y: auto;
24497
24725
  }
24498
- .v-alert--density-compact.v-alert--border-bottom {
24499
- padding-bottom: 16px;
24726
+ .v-color-picker-swatches > div {
24727
+ display: flex;
24728
+ flex-wrap: wrap;
24729
+ justify-content: center;
24730
+ padding: 8px;
24500
24731
  }
24501
24732
 
24502
- .v-alert__border {
24503
- border-radius: inherit;
24504
- bottom: 0;
24505
- left: 0;
24506
- opacity: var(--v-border-opacity);
24507
- position: absolute;
24508
- pointer-events: none;
24509
- right: 0;
24510
- top: 0;
24511
- width: 100%;
24512
- border-color: currentColor;
24513
- border-style: solid;
24514
- border-width: 0;
24515
- }
24516
- .v-alert__border--border {
24517
- border-width: 8px;
24518
- box-shadow: none;
24519
- }
24520
- .v-alert--border-start .v-alert__border {
24521
- border-inline-start-width: 8px;
24522
- }
24523
- .v-alert--border-end .v-alert__border {
24524
- border-inline-end-width: 8px;
24525
- }
24526
- .v-alert--border-top .v-alert__border {
24527
- border-top-width: 8px;
24528
- }
24529
- .v-alert--border-bottom .v-alert__border {
24530
- border-bottom-width: 8px;
24733
+ .v-color-picker-swatches__swatch {
24734
+ display: flex;
24735
+ flex-direction: column;
24736
+ margin-bottom: 10px;
24531
24737
  }
24532
24738
 
24533
- .v-alert__close {
24534
- flex: 0 1 auto;
24535
- grid-area: close;
24739
+ .v-color-picker-swatches__color {
24740
+ position: relative;
24741
+ height: 18px;
24742
+ max-height: 18px;
24743
+ width: 45px;
24744
+ margin: 2px 4px;
24745
+ border-radius: 2px;
24746
+ -webkit-user-select: none;
24747
+ user-select: none;
24748
+ overflow: hidden;
24749
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
24750
+ cursor: pointer;
24536
24751
  }
24537
-
24538
- .v-alert__content {
24539
- align-self: center;
24540
- grid-area: content;
24752
+ .v-color-picker-swatches__color > div {
24753
+ display: flex;
24754
+ align-items: center;
24755
+ justify-content: center;
24756
+ width: 100%;
24757
+ height: 100%;
24758
+ }.v-picker.v-sheet {
24759
+ 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));
24760
+ border-radius: 4px;
24761
+ display: grid;
24762
+ grid-auto-rows: min-content;
24763
+ grid-template-areas: "title" "header" "body";
24541
24764
  overflow: hidden;
24542
24765
  }
24543
-
24544
- .v-alert__append,
24545
- .v-alert__close {
24546
- align-self: flex-start;
24547
- margin-inline-start: 16px;
24766
+ .v-picker.v-sheet.v-picker--with-actions {
24767
+ grid-template-areas: "title" "header" "body" "actions";
24548
24768
  }
24549
24769
 
24550
- .v-alert__append {
24551
- align-self: flex-start;
24552
- grid-area: append;
24770
+ .v-picker__body {
24771
+ grid-area: body;
24553
24772
  }
24554
- .v-alert__append + .v-alert__close {
24555
- margin-inline-start: 16px;
24773
+
24774
+ .v-picker__header {
24775
+ grid-area: header;
24556
24776
  }
24557
24777
 
24558
- .v-alert__prepend {
24559
- align-self: flex-start;
24778
+ .v-picker__actions {
24779
+ grid-area: actions;
24780
+ padding: 0 12px 12px;
24560
24781
  display: flex;
24561
24782
  align-items: center;
24562
- grid-area: prepend;
24563
- margin-inline-end: 16px;
24564
- }
24565
- .v-alert--prominent .v-alert__prepend {
24566
- align-self: center;
24567
- }
24568
-
24569
- .v-alert__underlay {
24570
- grid-area: none;
24571
- position: absolute;
24783
+ justify-content: flex-end;
24572
24784
  }
24573
- .v-alert--border-start .v-alert__underlay {
24574
- border-top-left-radius: 0;
24575
- border-bottom-left-radius: 0;
24785
+ .v-picker__actions .v-btn {
24786
+ min-width: 48px;
24576
24787
  }
24577
- .v-alert--border-end .v-alert__underlay {
24578
- border-top-right-radius: 0;
24579
- border-bottom-right-radius: 0;
24788
+ .v-picker__actions .v-btn:not(:last-child) {
24789
+ margin-inline-end: 8px;
24580
24790
  }
24581
- .v-alert--border-top .v-alert__underlay {
24582
- border-top-left-radius: 0;
24583
- border-top-right-radius: 0;
24791
+
24792
+ .v-picker--landscape {
24793
+ grid-template-areas: "title" "header body" "header body";
24584
24794
  }
24585
- .v-alert--border-bottom .v-alert__underlay {
24586
- border-bottom-left-radius: 0;
24587
- border-bottom-right-radius: 0;
24795
+
24796
+ .v-picker--landscape.v-picker--with-actions {
24797
+ grid-template-areas: "title" "header body" "header actions";
24588
24798
  }
24589
24799
 
24590
- .v-alert-title {
24591
- align-items: center;
24592
- align-self: center;
24593
- display: flex;
24594
- font-size: 1.25rem;
24595
- font-weight: 500;
24596
- -webkit-hyphens: auto;
24597
- hyphens: auto;
24598
- letter-spacing: 0.0125em;
24599
- line-height: 1.75rem;
24600
- overflow-wrap: normal;
24601
- text-transform: none;
24602
- word-break: normal;
24603
- word-wrap: break-word;
24604
- }.v-color-picker-canvas {
24605
- display: flex;
24606
- position: relative;
24607
- overflow: hidden;
24608
- contain: content;
24800
+ .v-picker-title {
24801
+ text-transform: uppercase;
24802
+ font-size: 0.75rem;
24803
+ grid-area: title;
24804
+ padding-inline: 24px 12px;
24805
+ padding-top: 16px;
24806
+ padding-bottom: 16px;
24807
+ font-weight: 400;
24808
+ letter-spacing: 0.1666666667em;
24809
+ }.v-slider-thumb {
24609
24810
  touch-action: none;
24811
+ color: rgb(var(--v-theme-surface-variant));
24610
24812
  }
24611
- .v-color-picker-canvas__dot {
24612
- position: absolute;
24613
- top: 0;
24614
- left: 0;
24615
- width: 15px;
24616
- height: 15px;
24617
- background: transparent;
24618
- border-radius: 50%;
24619
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
24620
- }
24621
- .v-color-picker-canvas__dot--disabled {
24622
- 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);
24623
- }
24624
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
24625
- will-change: transform;
24626
- }.v-color-picker-preview__alpha .v-slider-track__background {
24627
- background-color: transparent !important;
24628
- }
24629
- .v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background {
24630
- background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
24813
+ .v-input--error:not(.v-input--disabled) .v-slider-thumb {
24814
+ color: inherit;
24631
24815
  }
24632
24816
 
24633
- .v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background {
24634
- background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
24817
+ .v-slider-thumb__label {
24818
+ background: rgba(var(--v-theme-surface-variant), 0.7);
24819
+ color: rgb(var(--v-theme-on-surface-variant));
24635
24820
  }
24636
-
24637
- .v-color-picker-preview__alpha .v-slider-track__background::after {
24638
- content: "";
24639
- z-index: -1;
24640
- left: 0;
24641
- top: 0;
24642
- width: 100%;
24643
- height: 100%;
24644
- position: absolute;
24645
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
24646
- border-radius: inherit;
24821
+ .v-slider-thumb__label::before {
24822
+ color: rgba(var(--v-theme-surface-variant), 0.7);
24647
24823
  }
24648
24824
 
24649
- .v-color-picker-preview__sliders {
24650
- display: flex;
24651
- flex: 1 0 auto;
24652
- flex-direction: column;
24825
+ .v-slider-thumb {
24826
+ outline: none;
24827
+ position: absolute;
24828
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
24653
24829
  }
24654
24830
 
24655
- .v-color-picker-preview__dot {
24656
- position: relative;
24657
- height: 30px;
24658
- width: 30px;
24659
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
24831
+ .v-slider-thumb__surface {
24832
+ cursor: pointer;
24833
+ width: var(--v-slider-thumb-size);
24834
+ height: var(--v-slider-thumb-size);
24660
24835
  border-radius: 50%;
24661
- overflow: hidden;
24662
- margin-inline-end: 24px;
24836
+ -webkit-user-select: none;
24837
+ user-select: none;
24838
+ background-color: currentColor;
24663
24839
  }
24664
- .v-color-picker-preview__dot > div {
24840
+ .v-slider-thumb__surface::before {
24841
+ transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
24842
+ content: "";
24843
+ color: inherit;
24844
+ top: 0;
24845
+ left: 0;
24665
24846
  width: 100%;
24666
24847
  height: 100%;
24848
+ border-radius: 50%;
24849
+ background: currentColor;
24850
+ position: absolute;
24851
+ pointer-events: none;
24852
+ opacity: 0;
24667
24853
  }
24668
-
24669
- .v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
24670
- background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
24671
- }
24672
-
24673
- .v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
24674
- background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
24675
- }
24676
-
24677
- .v-color-picker-preview__track {
24678
- position: relative;
24679
- width: 100%;
24680
- margin: 0 !important;
24681
- }
24682
- .v-color-picker-preview__track .v-slider-track__fill {
24683
- display: none;
24684
- }
24685
-
24686
- .v-color-picker-preview {
24687
- align-items: center;
24688
- display: flex;
24689
- margin-bottom: 0;
24854
+ .v-slider-thumb__surface::after {
24855
+ content: "";
24856
+ width: 42px;
24857
+ height: 42px;
24858
+ position: absolute;
24859
+ top: 50%;
24860
+ left: 50%;
24861
+ transform: translate(-50%, -50%);
24690
24862
  }
24691
24863
 
24692
- .v-color-picker-preview__eye-dropper {
24693
- position: relative;
24694
- margin-right: 12px;
24695
- }.v-color-picker-edit {
24696
- display: flex;
24697
- margin-top: 24px;
24864
+ .v-slider-thumb__label-container {
24865
+ position: absolute;
24866
+ transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
24698
24867
  }
24699
24868
 
24700
- .v-color-picker-edit__input {
24701
- width: 100%;
24869
+ .v-slider-thumb__label {
24702
24870
  display: flex;
24703
- flex-wrap: wrap;
24871
+ align-items: center;
24704
24872
  justify-content: center;
24705
- text-align: center;
24706
- }
24707
- .v-color-picker-edit__input:not(:last-child) {
24708
- margin-inline-end: 8px;
24709
- }
24710
- .v-color-picker-edit__input input {
24711
- border-radius: 4px;
24712
- margin-bottom: 8px;
24713
- min-width: 0;
24714
- outline: none;
24715
- text-align: center;
24716
- width: 100%;
24717
- height: 32px;
24718
- background: rgba(var(--v-theme-surface-variant), 0.2);
24719
- color: rgba(var(--v-theme-on-surface));
24720
- }
24721
- .v-color-picker-edit__input span {
24722
24873
  font-size: 0.75rem;
24723
- }.v-color-picker-swatches {
24724
- overflow-y: auto;
24874
+ min-width: 35px;
24875
+ height: 25px;
24876
+ border-radius: 4px;
24877
+ padding: 6px;
24878
+ position: absolute;
24879
+ -webkit-user-select: none;
24880
+ user-select: none;
24881
+ transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
24725
24882
  }
24726
- .v-color-picker-swatches > div {
24727
- display: flex;
24728
- flex-wrap: wrap;
24729
- justify-content: center;
24730
- padding: 8px;
24883
+ .v-slider-thumb__label::before {
24884
+ content: "";
24885
+ width: 0;
24886
+ height: 0;
24887
+ position: absolute;
24731
24888
  }
24732
24889
 
24733
- .v-color-picker-swatches__swatch {
24734
- display: flex;
24735
- flex-direction: column;
24736
- margin-bottom: 10px;
24890
+ .v-slider-thumb__ripple {
24891
+ position: absolute;
24892
+ left: calc(var(--v-slider-thumb-size) / -2);
24893
+ top: calc(var(--v-slider-thumb-size) / -2);
24894
+ width: calc(var(--v-slider-thumb-size) * 2);
24895
+ height: calc(var(--v-slider-thumb-size) * 2);
24896
+ background: inherit;
24737
24897
  }
24738
24898
 
24739
- .v-color-picker-swatches__color {
24740
- position: relative;
24741
- height: 18px;
24742
- max-height: 18px;
24743
- width: 45px;
24744
- margin: 2px 4px;
24745
- border-radius: 2px;
24746
- -webkit-user-select: none;
24747
- user-select: none;
24748
- overflow: hidden;
24749
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
24750
- cursor: pointer;
24899
+ .v-slider.v-input--horizontal .v-slider-thumb {
24900
+ top: 50%;
24901
+ transform: translateY(-50%);
24902
+ inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
24751
24903
  }
24752
- .v-color-picker-swatches__color > div {
24753
- display: flex;
24754
- align-items: center;
24755
- justify-content: center;
24756
- width: 100%;
24757
- height: 100%;
24758
- }.v-picker.v-sheet {
24759
- 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));
24760
- border-radius: 4px;
24761
- display: grid;
24762
- grid-auto-rows: min-content;
24763
- grid-template-areas: "title" "header" "body";
24764
- overflow: hidden;
24904
+ .v-slider.v-input--horizontal .v-slider-thumb__label-container {
24905
+ left: calc(var(--v-slider-thumb-size) / 2);
24906
+ top: 0;
24765
24907
  }
24766
- .v-picker.v-sheet.v-picker--with-actions {
24767
- grid-template-areas: "title" "header" "body" "actions";
24908
+ .v-slider.v-input--horizontal .v-slider-thumb__label {
24909
+ bottom: calc(var(--v-slider-thumb-size) / 2);
24910
+ }
24911
+ .v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
24912
+ transform: translateX(-50%);
24768
24913
  }
24769
24914
 
24770
- .v-picker__body {
24771
- grid-area: body;
24915
+ .v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
24916
+ transform: translateX(50%);
24772
24917
  }
24773
24918
 
24774
- .v-picker__header {
24775
- grid-area: header;
24919
+ .v-slider.v-input--horizontal .v-slider-thumb__label::before {
24920
+ border-left: 6px solid transparent;
24921
+ border-right: 6px solid transparent;
24922
+ border-top: 6px solid currentColor;
24923
+ bottom: -6px;
24776
24924
  }
24777
24925
 
24778
- .v-picker__actions {
24779
- grid-area: actions;
24780
- padding: 0 12px 12px;
24781
- display: flex;
24782
- align-items: center;
24783
- justify-content: flex-end;
24926
+ .v-slider.v-input--vertical .v-slider-thumb {
24927
+ top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
24784
24928
  }
24785
- .v-picker__actions .v-btn {
24786
- min-width: 48px;
24929
+ .v-slider.v-input--vertical .v-slider-thumb__label-container {
24930
+ top: calc(var(--v-slider-thumb-size) / 2);
24931
+ right: 0;
24787
24932
  }
24788
- .v-picker__actions .v-btn:not(:last-child) {
24789
- margin-inline-end: 8px;
24933
+ .v-slider.v-input--vertical .v-slider-thumb__label {
24934
+ top: -12.5px;
24935
+ left: calc(var(--v-slider-thumb-size) / 2);
24936
+ }
24937
+ .v-slider.v-input--vertical .v-slider-thumb__label::before {
24938
+ border-right: 6px solid currentColor;
24939
+ border-top: 6px solid transparent;
24940
+ border-bottom: 6px solid transparent;
24941
+ left: -6px;
24790
24942
  }
24791
24943
 
24792
- .v-picker--landscape {
24793
- grid-template-areas: "title" "header body" "header body";
24944
+ .v-slider-thumb--focused .v-slider-thumb__surface::before {
24945
+ transform: scale(2);
24946
+ opacity: var(--v-focus-opacity);
24794
24947
  }
24795
24948
 
24796
- .v-picker--landscape.v-picker--with-actions {
24797
- grid-template-areas: "title" "header body" "header actions";
24949
+ .v-slider-thumb--pressed {
24950
+ transition: none;
24951
+ }
24952
+ .v-slider-thumb--pressed .v-slider-thumb__surface::before {
24953
+ opacity: var(--v-pressed-opacity);
24798
24954
  }
24799
24955
 
24800
- .v-picker-title {
24801
- text-transform: uppercase;
24802
- font-size: 0.75rem;
24803
- grid-area: title;
24804
- padding-inline: 24px 12px;
24805
- padding-top: 16px;
24806
- padding-bottom: 16px;
24807
- font-weight: 400;
24808
- letter-spacing: 0.1666666667em;
24956
+ @media (hover: hover) {
24957
+ .v-slider-thumb:hover .v-slider-thumb__surface::before {
24958
+ transform: scale(2);
24959
+ }
24960
+ .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
24961
+ opacity: var(--v-hover-opacity);
24962
+ }
24809
24963
  }.v-slider-track__background {
24810
24964
  background-color: rgb(var(--v-theme-surface-variant));
24811
24965
  }
@@ -24969,158 +25123,4 @@ html.v-overlay-scroll-blocked {
24969
25123
 
24970
25124
  .v-slider-track__background--opacity {
24971
25125
  opacity: 0.38;
24972
- }.v-slider-thumb {
24973
- touch-action: none;
24974
- color: rgb(var(--v-theme-surface-variant));
24975
- }
24976
- .v-input--error:not(.v-input--disabled) .v-slider-thumb {
24977
- color: inherit;
24978
- }
24979
-
24980
- .v-slider-thumb__label {
24981
- background: rgba(var(--v-theme-surface-variant), 0.7);
24982
- color: rgb(var(--v-theme-on-surface-variant));
24983
- }
24984
- .v-slider-thumb__label::before {
24985
- color: rgba(var(--v-theme-surface-variant), 0.7);
24986
- }
24987
-
24988
- .v-slider-thumb {
24989
- outline: none;
24990
- position: absolute;
24991
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
24992
- }
24993
-
24994
- .v-slider-thumb__surface {
24995
- cursor: pointer;
24996
- width: var(--v-slider-thumb-size);
24997
- height: var(--v-slider-thumb-size);
24998
- border-radius: 50%;
24999
- -webkit-user-select: none;
25000
- user-select: none;
25001
- background-color: currentColor;
25002
- }
25003
- .v-slider-thumb__surface::before {
25004
- transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
25005
- content: "";
25006
- color: inherit;
25007
- top: 0;
25008
- left: 0;
25009
- width: 100%;
25010
- height: 100%;
25011
- border-radius: 50%;
25012
- background: currentColor;
25013
- position: absolute;
25014
- pointer-events: none;
25015
- opacity: 0;
25016
- }
25017
- .v-slider-thumb__surface::after {
25018
- content: "";
25019
- width: 42px;
25020
- height: 42px;
25021
- position: absolute;
25022
- top: 50%;
25023
- left: 50%;
25024
- transform: translate(-50%, -50%);
25025
- }
25026
-
25027
- .v-slider-thumb__label-container {
25028
- position: absolute;
25029
- transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
25030
- }
25031
-
25032
- .v-slider-thumb__label {
25033
- display: flex;
25034
- align-items: center;
25035
- justify-content: center;
25036
- font-size: 0.75rem;
25037
- min-width: 35px;
25038
- height: 25px;
25039
- border-radius: 4px;
25040
- padding: 6px;
25041
- position: absolute;
25042
- -webkit-user-select: none;
25043
- user-select: none;
25044
- transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
25045
- }
25046
- .v-slider-thumb__label::before {
25047
- content: "";
25048
- width: 0;
25049
- height: 0;
25050
- position: absolute;
25051
- }
25052
-
25053
- .v-slider-thumb__ripple {
25054
- position: absolute;
25055
- left: calc(var(--v-slider-thumb-size) / -2);
25056
- top: calc(var(--v-slider-thumb-size) / -2);
25057
- width: calc(var(--v-slider-thumb-size) * 2);
25058
- height: calc(var(--v-slider-thumb-size) * 2);
25059
- background: inherit;
25060
- }
25061
-
25062
- .v-slider.v-input--horizontal .v-slider-thumb {
25063
- top: 50%;
25064
- transform: translateY(-50%);
25065
- inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25066
- }
25067
- .v-slider.v-input--horizontal .v-slider-thumb__label-container {
25068
- left: calc(var(--v-slider-thumb-size) / 2);
25069
- top: 0;
25070
- }
25071
- .v-slider.v-input--horizontal .v-slider-thumb__label {
25072
- bottom: calc(var(--v-slider-thumb-size) / 2);
25073
- }
25074
- .v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
25075
- transform: translateX(-50%);
25076
- }
25077
-
25078
- .v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
25079
- transform: translateX(50%);
25080
- }
25081
-
25082
- .v-slider.v-input--horizontal .v-slider-thumb__label::before {
25083
- border-left: 6px solid transparent;
25084
- border-right: 6px solid transparent;
25085
- border-top: 6px solid currentColor;
25086
- bottom: -6px;
25087
- }
25088
-
25089
- .v-slider.v-input--vertical .v-slider-thumb {
25090
- top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25091
- }
25092
- .v-slider.v-input--vertical .v-slider-thumb__label-container {
25093
- top: calc(var(--v-slider-thumb-size) / 2);
25094
- right: 0;
25095
- }
25096
- .v-slider.v-input--vertical .v-slider-thumb__label {
25097
- top: -12.5px;
25098
- left: calc(var(--v-slider-thumb-size) / 2);
25099
- }
25100
- .v-slider.v-input--vertical .v-slider-thumb__label::before {
25101
- border-right: 6px solid currentColor;
25102
- border-top: 6px solid transparent;
25103
- border-bottom: 6px solid transparent;
25104
- left: -6px;
25105
- }
25106
-
25107
- .v-slider-thumb--focused .v-slider-thumb__surface::before {
25108
- transform: scale(2);
25109
- opacity: var(--v-focus-opacity);
25110
- }
25111
-
25112
- .v-slider-thumb--pressed {
25113
- transition: none;
25114
- }
25115
- .v-slider-thumb--pressed .v-slider-thumb__surface::before {
25116
- opacity: var(--v-pressed-opacity);
25117
- }
25118
-
25119
- @media (hover: hover) {
25120
- .v-slider-thumb:hover .v-slider-thumb__surface::before {
25121
- transform: scale(2);
25122
- }
25123
- .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
25124
- opacity: var(--v-hover-opacity);
25125
- }
25126
25126
  }