@vuetify/nightly 3.6.14-master.2024-08-04 → 3.6.14-master.2024-08-12

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.14-master.2024-08-04
2
+ * Vuetify v3.6.14-master.2024-08-12
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18222,6 +18222,91 @@ html.overflow-y-hidden {
18222
18222
  text-transform: none;
18223
18223
  word-break: normal;
18224
18224
  word-wrap: break-word;
18225
+ }.v-autocomplete .v-field .v-text-field__prefix,
18226
+ .v-autocomplete .v-field .v-text-field__suffix,
18227
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18228
+ cursor: text;
18229
+ }
18230
+ .v-autocomplete .v-field .v-field__input > input {
18231
+ flex: 1 1;
18232
+ }
18233
+ .v-autocomplete .v-field input {
18234
+ min-width: 64px;
18235
+ }
18236
+ .v-autocomplete .v-field:not(.v-field--focused) input {
18237
+ min-width: 0;
18238
+ }
18239
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18240
+ margin-inline-end: 2px;
18241
+ }
18242
+ .v-autocomplete .v-autocomplete__selection-text {
18243
+ overflow: hidden;
18244
+ text-overflow: ellipsis;
18245
+ white-space: nowrap;
18246
+ }
18247
+
18248
+ .v-autocomplete__content {
18249
+ overflow: hidden;
18250
+ }
18251
+ .v-autocomplete__content {
18252
+ 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));
18253
+ }
18254
+ .v-autocomplete__content {
18255
+ border-radius: 4px;
18256
+ }
18257
+ .v-autocomplete__mask {
18258
+ background: rgb(var(--v-theme-surface-light));
18259
+ }
18260
+ .v-autocomplete__selection {
18261
+ display: inline-flex;
18262
+ align-items: center;
18263
+ height: 1.5rem;
18264
+ letter-spacing: inherit;
18265
+ line-height: inherit;
18266
+ max-width: calc(100% - 2px - 2px);
18267
+ }
18268
+ .v-autocomplete__selection:first-child {
18269
+ margin-inline-start: 0;
18270
+ }
18271
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18272
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18273
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18274
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18275
+ top: 0px;
18276
+ }
18277
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
18278
+ opacity: var(--v-medium-emphasis-opacity);
18279
+ }
18280
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18281
+ opacity: 1;
18282
+ }
18283
+ .v-autocomplete--selecting-index .v-field__input > input {
18284
+ caret-color: transparent;
18285
+ }
18286
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18287
+ flex: 1 1;
18288
+ position: absolute;
18289
+ left: 0;
18290
+ right: 0;
18291
+ width: 100%;
18292
+ padding-inline: inherit;
18293
+ }
18294
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18295
+ transition: none;
18296
+ }
18297
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18298
+ opacity: 0;
18299
+ }
18300
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18301
+ opacity: 0;
18302
+ }
18303
+ .v-autocomplete__menu-icon {
18304
+ margin-inline-start: 4px;
18305
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18306
+ }
18307
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18308
+ opacity: var(--v-high-emphasis-opacity);
18309
+ transform: rotate(180deg);
18225
18310
  }.v-avatar {
18226
18311
  flex: none;
18227
18312
  align-items: center;
@@ -18319,91 +18404,6 @@ html.overflow-y-hidden {
18319
18404
  .v-avatar .v-img {
18320
18405
  height: 100%;
18321
18406
  width: 100%;
18322
- }.v-autocomplete .v-field .v-text-field__prefix,
18323
- .v-autocomplete .v-field .v-text-field__suffix,
18324
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18325
- cursor: text;
18326
- }
18327
- .v-autocomplete .v-field .v-field__input > input {
18328
- flex: 1 1;
18329
- }
18330
- .v-autocomplete .v-field input {
18331
- min-width: 64px;
18332
- }
18333
- .v-autocomplete .v-field:not(.v-field--focused) input {
18334
- min-width: 0;
18335
- }
18336
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18337
- margin-inline-end: 2px;
18338
- }
18339
- .v-autocomplete .v-autocomplete__selection-text {
18340
- overflow: hidden;
18341
- text-overflow: ellipsis;
18342
- white-space: nowrap;
18343
- }
18344
-
18345
- .v-autocomplete__content {
18346
- overflow: hidden;
18347
- }
18348
- .v-autocomplete__content {
18349
- 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));
18350
- }
18351
- .v-autocomplete__content {
18352
- border-radius: 4px;
18353
- }
18354
- .v-autocomplete__mask {
18355
- background: rgb(var(--v-theme-surface-light));
18356
- }
18357
- .v-autocomplete__selection {
18358
- display: inline-flex;
18359
- align-items: center;
18360
- height: 1.5rem;
18361
- letter-spacing: inherit;
18362
- line-height: inherit;
18363
- max-width: calc(100% - 2px - 2px);
18364
- }
18365
- .v-autocomplete__selection:first-child {
18366
- margin-inline-start: 0;
18367
- }
18368
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18369
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18370
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18371
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18372
- top: 0px;
18373
- }
18374
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18375
- opacity: var(--v-medium-emphasis-opacity);
18376
- }
18377
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18378
- opacity: 1;
18379
- }
18380
- .v-autocomplete--selecting-index .v-field__input > input {
18381
- caret-color: transparent;
18382
- }
18383
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18384
- flex: 1 1;
18385
- position: absolute;
18386
- left: 0;
18387
- right: 0;
18388
- width: 100%;
18389
- padding-inline: inherit;
18390
- }
18391
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18392
- transition: none;
18393
- }
18394
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18395
- opacity: 0;
18396
- }
18397
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18398
- opacity: 0;
18399
- }
18400
- .v-autocomplete__menu-icon {
18401
- margin-inline-start: 4px;
18402
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18403
- }
18404
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18405
- opacity: var(--v-high-emphasis-opacity);
18406
- transform: rotate(180deg);
18407
18407
  }.v-badge {
18408
18408
  display: inline-block;
18409
18409
  line-height: 1;
@@ -18706,6 +18706,40 @@ html.overflow-y-hidden {
18706
18706
  }
18707
18707
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18708
18708
  transform: translateY(0.5rem);
18709
+ }.bottom-sheet-transition-enter-from {
18710
+ transform: translateY(100%);
18711
+ }
18712
+ .bottom-sheet-transition-leave-to {
18713
+ transform: translateY(100%);
18714
+ }
18715
+
18716
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18717
+ align-self: flex-end;
18718
+ border-radius: 0;
18719
+ flex: 0 1 auto;
18720
+ left: 0;
18721
+ right: 0;
18722
+ margin-inline: 0;
18723
+ margin-bottom: 0;
18724
+ transition-duration: 0.2s;
18725
+ width: 100%;
18726
+ max-width: 100%;
18727
+ overflow: visible;
18728
+ }
18729
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18730
+ 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));
18731
+ }
18732
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18733
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18734
+ border-radius: 0;
18735
+ }
18736
+ .v-bottom-sheet.v-bottom-sheet--inset {
18737
+ max-width: none;
18738
+ }
18739
+ @media (min-width: 600px) {
18740
+ .v-bottom-sheet.v-bottom-sheet--inset {
18741
+ max-width: 70%;
18742
+ }
18709
18743
  }.v-breadcrumbs {
18710
18744
  display: flex;
18711
18745
  align-items: center;
@@ -18763,142 +18797,44 @@ html.overflow-y-hidden {
18763
18797
  display: inline-block;
18764
18798
  padding: 0 8px;
18765
18799
  vertical-align: middle;
18766
- }.bottom-sheet-transition-enter-from {
18767
- transform: translateY(100%);
18800
+ }.v-btn {
18801
+ align-items: center;
18802
+ border-radius: 4px;
18803
+ display: inline-grid;
18804
+ grid-template-areas: "prepend content append";
18805
+ grid-template-columns: max-content auto max-content;
18806
+ font-weight: 500;
18807
+ justify-content: center;
18808
+ letter-spacing: 0.0892857143em;
18809
+ line-height: normal;
18810
+ max-width: 100%;
18811
+ outline: none;
18812
+ position: relative;
18813
+ text-decoration: none;
18814
+ text-indent: 0.0892857143em;
18815
+ text-transform: uppercase;
18816
+ transition-property: box-shadow, transform, opacity, background;
18817
+ transition-duration: 0.28s;
18818
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18819
+ -webkit-user-select: none;
18820
+ user-select: none;
18821
+ vertical-align: middle;
18822
+ flex-shrink: 0;
18768
18823
  }
18769
- .bottom-sheet-transition-leave-to {
18770
- transform: translateY(100%);
18824
+ .v-btn--size-x-small {
18825
+ --v-btn-size: 0.625rem;
18826
+ --v-btn-height: 20px;
18827
+ font-size: var(--v-btn-size);
18828
+ min-width: 36px;
18829
+ padding: 0 8px;
18771
18830
  }
18772
18831
 
18773
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18774
- align-self: flex-end;
18775
- border-radius: 0;
18776
- flex: 0 1 auto;
18777
- left: 0;
18778
- right: 0;
18779
- margin-inline: 0;
18780
- margin-bottom: 0;
18781
- transition-duration: 0.2s;
18782
- width: 100%;
18783
- max-width: 100%;
18784
- overflow: visible;
18785
- }
18786
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18787
- 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));
18788
- }
18789
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18790
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18791
- border-radius: 0;
18792
- }
18793
- .v-bottom-sheet.v-bottom-sheet--inset {
18794
- max-width: none;
18795
- }
18796
- @media (min-width: 600px) {
18797
- .v-bottom-sheet.v-bottom-sheet--inset {
18798
- max-width: 70%;
18799
- }
18800
- }.v-btn-group {
18801
- display: inline-flex;
18802
- flex-wrap: nowrap;
18803
- max-width: 100%;
18804
- min-width: 0;
18805
- overflow: hidden;
18806
- vertical-align: middle;
18807
- }
18808
- .v-btn-group {
18809
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18810
- border-style: solid;
18811
- border-width: 0;
18812
- }
18813
- .v-btn-group--border {
18814
- border-width: thin;
18815
- box-shadow: none;
18816
- }
18817
- .v-btn-group {
18818
- 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));
18819
- }
18820
- .v-btn-group {
18821
- border-radius: 4px;
18822
- }
18823
- .v-btn-group {
18824
- background: transparent;
18825
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18826
- }
18827
- .v-btn-group--density-default.v-btn-group {
18828
- height: 48px;
18829
- }
18830
-
18831
- .v-btn-group--density-comfortable.v-btn-group {
18832
- height: 40px;
18833
- }
18834
-
18835
- .v-btn-group--density-compact.v-btn-group {
18836
- height: 36px;
18837
- }
18838
-
18839
- .v-btn-group .v-btn {
18840
- border-radius: 0;
18841
- border-color: inherit;
18842
- }
18843
- .v-btn-group .v-btn:not(:last-child) {
18844
- border-inline-end: none;
18845
- }
18846
- .v-btn-group .v-btn:not(:first-child) {
18847
- border-inline-start: none;
18848
- }
18849
- .v-btn-group .v-btn:first-child {
18850
- border-start-start-radius: inherit;
18851
- border-end-start-radius: inherit;
18852
- }
18853
- .v-btn-group .v-btn:last-child {
18854
- border-start-end-radius: inherit;
18855
- border-end-end-radius: inherit;
18856
- }
18857
- .v-btn-group--divided .v-btn:not(:last-child) {
18858
- border-inline-end-width: thin;
18859
- border-inline-end-style: solid;
18860
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
18861
- }
18862
- .v-btn-group--tile {
18863
- border-radius: 0;
18864
- }.v-btn {
18865
- align-items: center;
18866
- border-radius: 4px;
18867
- display: inline-grid;
18868
- grid-template-areas: "prepend content append";
18869
- grid-template-columns: max-content auto max-content;
18870
- font-weight: 500;
18871
- justify-content: center;
18872
- letter-spacing: 0.0892857143em;
18873
- line-height: normal;
18874
- max-width: 100%;
18875
- outline: none;
18876
- position: relative;
18877
- text-decoration: none;
18878
- text-indent: 0.0892857143em;
18879
- text-transform: uppercase;
18880
- transition-property: box-shadow, transform, opacity, background;
18881
- transition-duration: 0.28s;
18882
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18883
- -webkit-user-select: none;
18884
- user-select: none;
18885
- vertical-align: middle;
18886
- flex-shrink: 0;
18887
- }
18888
- .v-btn--size-x-small {
18889
- --v-btn-size: 0.625rem;
18890
- --v-btn-height: 20px;
18891
- font-size: var(--v-btn-size);
18892
- min-width: 36px;
18893
- padding: 0 8px;
18894
- }
18895
-
18896
- .v-btn--size-small {
18897
- --v-btn-size: 0.75rem;
18898
- --v-btn-height: 28px;
18899
- font-size: var(--v-btn-size);
18900
- min-width: 50px;
18901
- padding: 0 12px;
18832
+ .v-btn--size-small {
18833
+ --v-btn-size: 0.75rem;
18834
+ --v-btn-height: 28px;
18835
+ font-size: var(--v-btn-size);
18836
+ min-width: 50px;
18837
+ padding: 0 12px;
18902
18838
  }
18903
18839
 
18904
18840
  .v-btn--size-default {
@@ -19289,6 +19225,70 @@ html.overflow-y-hidden {
19289
19225
  }
19290
19226
  .v-pagination__item--is-active .v-btn__overlay {
19291
19227
  opacity: var(--v-border-opacity);
19228
+ }.v-btn-group {
19229
+ display: inline-flex;
19230
+ flex-wrap: nowrap;
19231
+ max-width: 100%;
19232
+ min-width: 0;
19233
+ overflow: hidden;
19234
+ vertical-align: middle;
19235
+ }
19236
+ .v-btn-group {
19237
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19238
+ border-style: solid;
19239
+ border-width: 0;
19240
+ }
19241
+ .v-btn-group--border {
19242
+ border-width: thin;
19243
+ box-shadow: none;
19244
+ }
19245
+ .v-btn-group {
19246
+ 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));
19247
+ }
19248
+ .v-btn-group {
19249
+ border-radius: 4px;
19250
+ }
19251
+ .v-btn-group {
19252
+ background: transparent;
19253
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19254
+ }
19255
+ .v-btn-group--density-default.v-btn-group {
19256
+ height: 48px;
19257
+ }
19258
+
19259
+ .v-btn-group--density-comfortable.v-btn-group {
19260
+ height: 40px;
19261
+ }
19262
+
19263
+ .v-btn-group--density-compact.v-btn-group {
19264
+ height: 36px;
19265
+ }
19266
+
19267
+ .v-btn-group .v-btn {
19268
+ border-radius: 0;
19269
+ border-color: inherit;
19270
+ }
19271
+ .v-btn-group .v-btn:not(:last-child) {
19272
+ border-inline-end: none;
19273
+ }
19274
+ .v-btn-group .v-btn:not(:first-child) {
19275
+ border-inline-start: none;
19276
+ }
19277
+ .v-btn-group .v-btn:first-child {
19278
+ border-start-start-radius: inherit;
19279
+ border-end-start-radius: inherit;
19280
+ }
19281
+ .v-btn-group .v-btn:last-child {
19282
+ border-start-end-radius: inherit;
19283
+ border-end-end-radius: inherit;
19284
+ }
19285
+ .v-btn-group--divided .v-btn:not(:last-child) {
19286
+ border-inline-end-width: thin;
19287
+ border-inline-end-style: solid;
19288
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19289
+ }
19290
+ .v-btn-group--tile {
19291
+ border-radius: 0;
19292
19292
  }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19293
19293
  opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19294
19294
  }
@@ -19674,6 +19674,29 @@ html.overflow-y-hidden {
19674
19674
  flex-direction: column;
19675
19675
  height: 100% !important;
19676
19676
  width: 50px;
19677
+ }.v-checkbox.v-input {
19678
+ flex: 0 1 auto;
19679
+ }
19680
+ .v-checkbox .v-selection-control {
19681
+ min-height: var(--v-input-control-height);
19682
+ }.v-chip-group {
19683
+ display: flex;
19684
+ max-width: 100%;
19685
+ min-width: 0;
19686
+ overflow-x: auto;
19687
+ padding: 4px 0;
19688
+ }
19689
+ .v-chip-group .v-chip {
19690
+ margin: 4px 8px 4px 0;
19691
+ }
19692
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19693
+ opacity: var(--v-activated-opacity);
19694
+ }
19695
+
19696
+ .v-chip-group--column .v-slide-group__content {
19697
+ white-space: normal;
19698
+ flex-wrap: wrap;
19699
+ max-width: 100%;
19677
19700
  }.v-chip {
19678
19701
  align-items: center;
19679
19702
  display: inline-flex;
@@ -20092,29 +20115,28 @@ html.overflow-y-hidden {
20092
20115
 
20093
20116
  .v-chip--label {
20094
20117
  border-radius: 4px;
20095
- }.v-checkbox.v-input {
20096
- flex: 0 1 auto;
20118
+ }.v-color-picker {
20119
+ align-self: flex-start;
20120
+ contain: content;
20097
20121
  }
20098
- .v-checkbox .v-selection-control {
20099
- min-height: var(--v-input-control-height);
20100
- }.v-chip-group {
20101
- display: flex;
20102
- max-width: 100%;
20103
- min-width: 0;
20104
- overflow-x: auto;
20105
- padding: 4px 0;
20122
+ .v-color-picker.v-sheet {
20123
+ 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));
20106
20124
  }
20107
- .v-chip-group .v-chip {
20108
- margin: 4px 8px 4px 0;
20125
+ .v-color-picker.v-sheet {
20126
+ border-radius: 4px;
20109
20127
  }
20110
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20111
- opacity: var(--v-activated-opacity);
20128
+
20129
+ .v-color-picker__controls {
20130
+ display: flex;
20131
+ flex-direction: column;
20132
+ padding: 16px;
20112
20133
  }
20113
20134
 
20114
- .v-chip-group--column .v-slide-group__content {
20115
- white-space: normal;
20116
- flex-wrap: wrap;
20117
- max-width: 100%;
20135
+ .v-color-picker--flat {
20136
+ 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));
20137
+ }
20138
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20139
+ 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));
20118
20140
  }.v-combobox .v-field .v-text-field__prefix,
20119
20141
  .v-combobox .v-field .v-text-field__suffix,
20120
20142
  .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
@@ -20200,35 +20222,13 @@ html.overflow-y-hidden {
20200
20222
  .v-combobox--active-menu .v-combobox__menu-icon {
20201
20223
  opacity: var(--v-high-emphasis-opacity);
20202
20224
  transform: rotate(180deg);
20203
- }.v-color-picker {
20204
- align-self: flex-start;
20205
- contain: content;
20206
- }
20207
- .v-color-picker.v-sheet {
20208
- 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));
20209
- }
20210
- .v-color-picker.v-sheet {
20211
- border-radius: 4px;
20212
- }
20213
-
20214
- .v-color-picker__controls {
20215
- display: flex;
20216
- flex-direction: column;
20217
- padding: 16px;
20218
- }
20219
-
20220
- .v-color-picker--flat {
20221
- 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));
20222
- }
20223
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20224
- 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));
20225
- }.v-counter {
20226
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20227
- flex: 0 1 auto;
20228
- font-size: 12px;
20229
- transition-duration: 150ms;
20230
- }.v-data-table {
20231
- width: 100%;
20225
+ }.v-counter {
20226
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20227
+ flex: 0 1 auto;
20228
+ font-size: 12px;
20229
+ transition-duration: 150ms;
20230
+ }.v-data-table {
20231
+ width: 100%;
20232
20232
  }
20233
20233
 
20234
20234
  .v-data-table__table {
@@ -20445,66 +20445,6 @@ html.overflow-y-hidden {
20445
20445
  }
20446
20446
  .v-data-table-footer__page {
20447
20447
  padding: 0 8px;
20448
- }.v-date-picker-header {
20449
- align-items: flex-end;
20450
- height: 70px;
20451
- display: grid;
20452
- grid-template-areas: "prepend content append";
20453
- grid-template-columns: min-content minmax(0, 1fr) min-content;
20454
- overflow: hidden;
20455
- padding-inline: 24px 12px;
20456
- padding-bottom: 12px;
20457
- }
20458
-
20459
- .v-date-picker-header__append {
20460
- grid-area: append;
20461
- }
20462
-
20463
- .v-date-picker-header__prepend {
20464
- grid-area: prepend;
20465
- padding-inline-start: 8px;
20466
- }
20467
-
20468
- .v-date-picker-header__content {
20469
- align-items: center;
20470
- display: inline-flex;
20471
- font-size: 32px;
20472
- line-height: 40px;
20473
- grid-area: content;
20474
- justify-content: space-between;
20475
- }
20476
- .v-date-picker-header--clickable .v-date-picker-header__content {
20477
- cursor: pointer;
20478
- }
20479
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
20480
- opacity: 0.7;
20481
- }
20482
-
20483
- .date-picker-header-transition-enter-active,
20484
- .date-picker-header-reverse-transition-enter-active {
20485
- transition-duration: 0.3s;
20486
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20487
- }
20488
- .date-picker-header-transition-leave-active,
20489
- .date-picker-header-reverse-transition-leave-active {
20490
- transition-duration: 0.3s;
20491
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20492
- }
20493
-
20494
- .date-picker-header-transition-enter-from {
20495
- transform: translate(0, 100%);
20496
- }
20497
- .date-picker-header-transition-leave-to {
20498
- opacity: 0;
20499
- transform: translate(0, -100%);
20500
- }
20501
-
20502
- .date-picker-header-reverse-transition-enter-from {
20503
- transform: translate(0, -100%);
20504
- }
20505
- .date-picker-header-reverse-transition-leave-to {
20506
- opacity: 0;
20507
- transform: translate(0, 100%);
20508
20448
  }.v-date-picker {
20509
20449
  overflow: hidden;
20510
20450
  width: 328px;
@@ -20622,6 +20562,66 @@ html.overflow-y-hidden {
20622
20562
 
20623
20563
  .v-date-picker-month__day--hide-adjacent {
20624
20564
  opacity: 0;
20565
+ }.v-date-picker-header {
20566
+ align-items: flex-end;
20567
+ height: 70px;
20568
+ display: grid;
20569
+ grid-template-areas: "prepend content append";
20570
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
20571
+ overflow: hidden;
20572
+ padding-inline: 24px 12px;
20573
+ padding-bottom: 12px;
20574
+ }
20575
+
20576
+ .v-date-picker-header__append {
20577
+ grid-area: append;
20578
+ }
20579
+
20580
+ .v-date-picker-header__prepend {
20581
+ grid-area: prepend;
20582
+ padding-inline-start: 8px;
20583
+ }
20584
+
20585
+ .v-date-picker-header__content {
20586
+ align-items: center;
20587
+ display: inline-flex;
20588
+ font-size: 32px;
20589
+ line-height: 40px;
20590
+ grid-area: content;
20591
+ justify-content: space-between;
20592
+ }
20593
+ .v-date-picker-header--clickable .v-date-picker-header__content {
20594
+ cursor: pointer;
20595
+ }
20596
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
20597
+ opacity: 0.7;
20598
+ }
20599
+
20600
+ .date-picker-header-transition-enter-active,
20601
+ .date-picker-header-reverse-transition-enter-active {
20602
+ transition-duration: 0.3s;
20603
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20604
+ }
20605
+ .date-picker-header-transition-leave-active,
20606
+ .date-picker-header-reverse-transition-leave-active {
20607
+ transition-duration: 0.3s;
20608
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20609
+ }
20610
+
20611
+ .date-picker-header-transition-enter-from {
20612
+ transform: translate(0, 100%);
20613
+ }
20614
+ .date-picker-header-transition-leave-to {
20615
+ opacity: 0;
20616
+ transform: translate(0, -100%);
20617
+ }
20618
+
20619
+ .date-picker-header-reverse-transition-enter-from {
20620
+ transform: translate(0, -100%);
20621
+ }
20622
+ .date-picker-header-reverse-transition-leave-to {
20623
+ opacity: 0;
20624
+ transform: translate(0, 100%);
20625
20625
  }.v-date-picker-months {
20626
20626
  height: 288px;
20627
20627
  }
@@ -21157,35 +21157,6 @@ html.overflow-y-hidden {
21157
21157
  }
21158
21158
  .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21159
21159
  right: 0;
21160
- }.v-file-input--hide.v-input .v-field,
21161
- .v-file-input--hide.v-input .v-input__control,
21162
- .v-file-input--hide.v-input .v-input__details {
21163
- display: none;
21164
- }
21165
- .v-file-input--hide.v-input .v-input__prepend {
21166
- grid-area: control;
21167
- margin: 0 auto;
21168
- }
21169
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21170
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21171
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21172
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21173
- top: 0px;
21174
- }
21175
- .v-file-input input[type=file] {
21176
- height: 100%;
21177
- left: 0;
21178
- opacity: 0;
21179
- position: absolute;
21180
- top: 0;
21181
- width: 100%;
21182
- z-index: 1;
21183
- }
21184
- .v-file-input .v-input__details {
21185
- padding-inline: 16px;
21186
- }
21187
- .v-input--plain-underlined.v-file-input .v-input__details {
21188
- padding-inline: 0;
21189
21160
  }/* region INPUT */
21190
21161
  .v-field {
21191
21162
  display: grid;
@@ -21805,6 +21776,35 @@ textarea.v-field__input::placeholder {
21805
21776
  }
21806
21777
  .v-footer--rounded {
21807
21778
  border-radius: 4px;
21779
+ }.v-file-input--hide.v-input .v-field,
21780
+ .v-file-input--hide.v-input .v-input__control,
21781
+ .v-file-input--hide.v-input .v-input__details {
21782
+ display: none;
21783
+ }
21784
+ .v-file-input--hide.v-input .v-input__prepend {
21785
+ grid-area: control;
21786
+ margin: 0 auto;
21787
+ }
21788
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21789
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21790
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21791
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21792
+ top: 0px;
21793
+ }
21794
+ .v-file-input input[type=file] {
21795
+ height: 100%;
21796
+ left: 0;
21797
+ opacity: 0;
21798
+ position: absolute;
21799
+ top: 0;
21800
+ width: 100%;
21801
+ z-index: 1;
21802
+ }
21803
+ .v-file-input .v-input__details {
21804
+ padding-inline: 16px;
21805
+ }
21806
+ .v-input--plain-underlined.v-file-input .v-input__details {
21807
+ padding-inline: 0;
21808
21808
  }.v-container {
21809
21809
  width: 100%;
21810
21810
  padding: 16px;
@@ -22739,6 +22739,11 @@ textarea.v-field__input::placeholder {
22739
22739
 
22740
22740
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22741
22741
  padding-top: calc(var(--v-input-padding-top) + 0px);
22742
+ }.v-item-group {
22743
+ flex: 0 1 auto;
22744
+ max-width: 100%;
22745
+ position: relative;
22746
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22742
22747
  }.v-label {
22743
22748
  align-items: center;
22744
22749
  color: inherit;
@@ -22769,27 +22774,6 @@ textarea.v-field__input::placeholder {
22769
22774
 
22770
22775
  .v-layout-item--absolute {
22771
22776
  position: absolute;
22772
- }.v-locale-provider {
22773
- display: contents;
22774
- }.v-menu > .v-overlay__content {
22775
- display: flex;
22776
- flex-direction: column;
22777
- }
22778
- .v-menu > .v-overlay__content {
22779
- border-radius: 4px;
22780
- }
22781
- .v-menu > .v-overlay__content > .v-card,
22782
- .v-menu > .v-overlay__content > .v-sheet,
22783
- .v-menu > .v-overlay__content > .v-list {
22784
- background: rgb(var(--v-theme-surface));
22785
- border-radius: inherit;
22786
- overflow: auto;
22787
- height: 100%;
22788
- }
22789
- .v-menu > .v-overlay__content > .v-card,
22790
- .v-menu > .v-overlay__content > .v-sheet,
22791
- .v-menu > .v-overlay__content > .v-list {
22792
- 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));
22793
22777
  }.v-list {
22794
22778
  overflow: auto;
22795
22779
  padding: 8px 0;
@@ -23365,6 +23349,8 @@ textarea.v-field__input::placeholder {
23365
23349
  }
23366
23350
  .v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23367
23351
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23352
+ }.v-locale-provider {
23353
+ display: contents;
23368
23354
  }.v-main {
23369
23355
  flex: 1 0 auto;
23370
23356
  max-width: 100%;
@@ -23519,6 +23505,25 @@ textarea.v-field__input::placeholder {
23519
23505
  .v-navigation-drawer__append {
23520
23506
  flex: none;
23521
23507
  overflow: hidden;
23508
+ }.v-menu > .v-overlay__content {
23509
+ display: flex;
23510
+ flex-direction: column;
23511
+ }
23512
+ .v-menu > .v-overlay__content {
23513
+ border-radius: 4px;
23514
+ }
23515
+ .v-menu > .v-overlay__content > .v-card,
23516
+ .v-menu > .v-overlay__content > .v-sheet,
23517
+ .v-menu > .v-overlay__content > .v-list {
23518
+ background: rgb(var(--v-theme-surface));
23519
+ border-radius: inherit;
23520
+ overflow: auto;
23521
+ height: 100%;
23522
+ }
23523
+ .v-menu > .v-overlay__content > .v-card,
23524
+ .v-menu > .v-overlay__content > .v-sheet,
23525
+ .v-menu > .v-overlay__content > .v-list {
23526
+ 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));
23522
23527
  }.v-otp-input {
23523
23528
  align-items: center;
23524
23529
  display: flex;
@@ -23577,12 +23582,6 @@ textarea.v-field__input::placeholder {
23577
23582
  }
23578
23583
  .v-otp-input__loader .v-progress-linear {
23579
23584
  position: absolute;
23580
- }.v-parallax {
23581
- position: relative;
23582
- overflow: hidden;
23583
- }
23584
- .v-parallax--active > .v-img__img {
23585
- will-change: transform;
23586
23585
  }.v-overlay-container {
23587
23586
  contain: layout;
23588
23587
  left: 0;
@@ -23654,6 +23653,12 @@ html.v-overlay-scroll-blocked {
23654
23653
  }
23655
23654
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23656
23655
  margin: 0.3rem;
23656
+ }.v-parallax {
23657
+ position: relative;
23658
+ overflow: hidden;
23659
+ }
23660
+ .v-parallax--active > .v-img__img {
23661
+ will-change: transform;
23657
23662
  }.v-progress-circular {
23658
23663
  align-items: center;
23659
23664
  display: inline-flex;
@@ -24106,7 +24111,33 @@ html.v-overlay-scroll-blocked {
24106
24111
  opacity: 0;
24107
24112
  position: absolute;
24108
24113
  width: 0;
24109
- }.v-select .v-field .v-text-field__prefix,
24114
+ }.v-responsive {
24115
+ display: flex;
24116
+ flex: 1 0 auto;
24117
+ max-height: 100%;
24118
+ max-width: 100%;
24119
+ overflow: hidden;
24120
+ position: relative;
24121
+ }
24122
+ .v-responsive--inline {
24123
+ display: inline-flex;
24124
+ flex: 0 0 auto;
24125
+ }
24126
+
24127
+ .v-responsive__content {
24128
+ flex: 1 0 0px;
24129
+ max-width: 100%;
24130
+ }
24131
+
24132
+ .v-responsive__sizer ~ .v-responsive__content {
24133
+ margin-inline-start: -100%;
24134
+ }
24135
+
24136
+ .v-responsive__sizer {
24137
+ flex: 1 0 0px;
24138
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24139
+ pointer-events: none;
24140
+ }.v-select .v-field .v-text-field__prefix,
24110
24141
  .v-select .v-field .v-text-field__suffix,
24111
24142
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
24112
24143
  cursor: pointer;
@@ -24158,32 +24189,6 @@ html.v-overlay-scroll-blocked {
24158
24189
  .v-select--active-menu .v-select__menu-icon {
24159
24190
  opacity: var(--v-high-emphasis-opacity);
24160
24191
  transform: rotate(180deg);
24161
- }.v-responsive {
24162
- display: flex;
24163
- flex: 1 0 auto;
24164
- max-height: 100%;
24165
- max-width: 100%;
24166
- overflow: hidden;
24167
- position: relative;
24168
- }
24169
- .v-responsive--inline {
24170
- display: inline-flex;
24171
- flex: 0 0 auto;
24172
- }
24173
-
24174
- .v-responsive__content {
24175
- flex: 1 0 0px;
24176
- max-width: 100%;
24177
- }
24178
-
24179
- .v-responsive__sizer ~ .v-responsive__content {
24180
- margin-inline-start: -100%;
24181
- }
24182
-
24183
- .v-responsive__sizer {
24184
- flex: 1 0 0px;
24185
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24186
- pointer-events: none;
24187
24192
  }.v-selection-control {
24188
24193
  align-items: center;
24189
24194
  contain: layout;
@@ -24295,6 +24300,42 @@ html.v-overlay-scroll-blocked {
24295
24300
  .v-selection-control-group--inline {
24296
24301
  flex-direction: row;
24297
24302
  flex-wrap: wrap;
24303
+ }.v-sheet {
24304
+ display: block;
24305
+ }
24306
+ .v-sheet {
24307
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24308
+ border-style: solid;
24309
+ border-width: 0;
24310
+ }
24311
+ .v-sheet--border {
24312
+ border-width: thin;
24313
+ box-shadow: none;
24314
+ }
24315
+ .v-sheet {
24316
+ 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));
24317
+ }
24318
+ .v-sheet--absolute {
24319
+ position: absolute;
24320
+ }
24321
+ .v-sheet--fixed {
24322
+ position: fixed;
24323
+ }
24324
+ .v-sheet--relative {
24325
+ position: relative;
24326
+ }
24327
+ .v-sheet--sticky {
24328
+ position: sticky;
24329
+ }
24330
+ .v-sheet {
24331
+ border-radius: 0;
24332
+ }
24333
+ .v-sheet {
24334
+ background: rgb(var(--v-theme-surface));
24335
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24336
+ }
24337
+ .v-sheet--rounded {
24338
+ border-radius: 4px;
24298
24339
  }.v-skeleton-loader {
24299
24340
  align-items: center;
24300
24341
  background: rgb(var(--v-theme-surface));
@@ -24520,42 +24561,6 @@ html.v-overlay-scroll-blocked {
24520
24561
  100% {
24521
24562
  transform: translateX(100%);
24522
24563
  }
24523
- }.v-sheet {
24524
- display: block;
24525
- }
24526
- .v-sheet {
24527
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24528
- border-style: solid;
24529
- border-width: 0;
24530
- }
24531
- .v-sheet--border {
24532
- border-width: thin;
24533
- box-shadow: none;
24534
- }
24535
- .v-sheet {
24536
- 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));
24537
- }
24538
- .v-sheet--absolute {
24539
- position: absolute;
24540
- }
24541
- .v-sheet--fixed {
24542
- position: fixed;
24543
- }
24544
- .v-sheet--relative {
24545
- position: relative;
24546
- }
24547
- .v-sheet--sticky {
24548
- position: sticky;
24549
- }
24550
- .v-sheet {
24551
- border-radius: 0;
24552
- }
24553
- .v-sheet {
24554
- background: rgb(var(--v-theme-surface));
24555
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24556
- }
24557
- .v-sheet--rounded {
24558
- border-radius: 4px;
24559
24564
  }.v-slide-group {
24560
24565
  display: flex;
24561
24566
  overflow: hidden;
@@ -24751,94 +24756,269 @@ html.v-overlay-scroll-blocked {
24751
24756
  }
24752
24757
  .v-snackbar-transition-leave-to {
24753
24758
  opacity: 0;
24754
- }.v-speed-dial__content {
24755
- gap: 8px;
24756
- }
24757
- .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 {
24758
- flex-direction: row;
24759
- }
24760
- .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 {
24761
- flex-direction: row-reverse;
24759
+ }.v-stepper.v-sheet {
24760
+ overflow: hidden;
24762
24761
  }
24763
- .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 {
24764
- flex-direction: column-reverse;
24762
+ .v-stepper.v-sheet {
24763
+ 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));
24765
24764
  }
24766
- .v-speed-dial__content > *:nth-child(1) {
24767
- transition-delay: 0s;
24765
+ .v-stepper.v-sheet {
24766
+ border-radius: 4px;
24768
24767
  }
24769
- .v-speed-dial__content > *:nth-child(2) {
24770
- transition-delay: 0.05s;
24768
+ .v-stepper.v-sheet.v-stepper--flat {
24769
+ 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));
24771
24770
  }
24772
- .v-speed-dial__content > *:nth-child(3) {
24773
- transition-delay: 0.1s;
24771
+
24772
+ .v-stepper-header {
24773
+ align-items: center;
24774
+ display: flex;
24775
+ position: relative;
24776
+ overflow-x: auto;
24777
+ justify-content: space-between;
24778
+ z-index: 1;
24774
24779
  }
24775
- .v-speed-dial__content > *:nth-child(4) {
24776
- transition-delay: 0.15s;
24780
+ .v-stepper-header {
24781
+ 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));
24777
24782
  }
24778
- .v-speed-dial__content > *:nth-child(5) {
24779
- transition-delay: 0.2s;
24783
+ .v-stepper-header .v-divider {
24784
+ margin: 0 -16px;
24780
24785
  }
24781
- .v-speed-dial__content > *:nth-child(6) {
24782
- transition-delay: 0.25s;
24786
+ .v-stepper-header .v-divider:last-child {
24787
+ margin-inline-end: 0;
24783
24788
  }
24784
- .v-speed-dial__content > *:nth-child(7) {
24785
- transition-delay: 0.3s;
24789
+ .v-stepper-header .v-divider:first-child {
24790
+ margin-inline-start: 0;
24786
24791
  }
24787
- .v-speed-dial__content > *:nth-child(8) {
24788
- transition-delay: 0.35s;
24792
+ .v-stepper--alt-labels .v-stepper-header {
24793
+ height: auto;
24789
24794
  }
24790
- .v-speed-dial__content > *:nth-child(9) {
24791
- transition-delay: 0.4s;
24795
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
24796
+ align-self: flex-start;
24797
+ margin: 35px -67px 0;
24792
24798
  }
24793
- .v-speed-dial__content > *:nth-child(10) {
24794
- transition-delay: 0.45s;
24795
- }.v-switch .v-label {
24796
- padding-inline-start: 10px;
24799
+
24800
+ .v-stepper-window {
24801
+ margin: 1.5rem;
24797
24802
  }
24798
24803
 
24799
- .v-switch__loader {
24804
+ .v-stepper-actions {
24800
24805
  display: flex;
24806
+ align-items: center;
24807
+ justify-content: space-between;
24808
+ padding: 1rem;
24801
24809
  }
24802
- .v-switch__loader .v-progress-circular {
24803
- color: rgb(var(--v-theme-surface));
24804
- }
24805
-
24806
- .v-switch__track,
24807
- .v-switch__thumb {
24808
- transition: none;
24810
+ .v-stepper .v-stepper-actions {
24811
+ padding: 0 1.5rem 1rem;
24809
24812
  }
24810
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24811
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24812
- background-color: rgb(var(--v-theme-error));
24813
- color: rgb(var(--v-theme-on-error));
24813
+ .v-stepper-window-item .v-stepper-actions {
24814
+ padding: 1.5rem 0 0;
24815
+ }.v-stepper-item {
24816
+ align-items: center;
24817
+ align-self: stretch;
24818
+ display: inline-flex;
24819
+ flex: none;
24820
+ outline: none;
24821
+ opacity: var(--v-medium-emphasis-opacity);
24822
+ padding: 1.5rem;
24823
+ position: relative;
24824
+ transition-duration: 0.2s;
24825
+ transition-property: opacity;
24826
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
24814
24827
  }
24815
-
24816
- .v-switch__track-true {
24817
- margin-inline-end: auto;
24828
+ .v-stepper-item:hover > .v-stepper-item__overlay {
24829
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24818
24830
  }
24819
- .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
24820
- opacity: 0;
24831
+ .v-stepper-item:focus-visible > .v-stepper-item__overlay {
24832
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24821
24833
  }
24822
-
24823
- .v-switch__track-false {
24824
- margin-inline-start: auto;
24834
+ @supports not selector(:focus-visible) {
24835
+ .v-stepper-item:focus > .v-stepper-item__overlay {
24836
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24837
+ }
24825
24838
  }
24826
- .v-selection-control--dirty .v-switch__track-false {
24827
- opacity: 0;
24839
+ .v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
24840
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
24828
24841
  }
24829
-
24830
- .v-switch__track {
24831
- display: inline-flex;
24832
- align-items: center;
24833
- font-size: 0.5rem;
24834
- padding: 0 5px;
24835
- background-color: rgb(var(--v-theme-surface-variant));
24836
- border-radius: 9999px;
24837
- height: 14px;
24838
- opacity: 0.6;
24839
- min-width: 36px;
24840
- cursor: pointer;
24841
- transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24842
+ .v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
24843
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
24844
+ }
24845
+ .v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
24846
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
24847
+ }
24848
+ @supports not selector(:focus-visible) {
24849
+ .v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
24850
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
24851
+ }
24852
+ }
24853
+ .v-stepper--non-linear .v-stepper-item {
24854
+ opacity: var(--v-high-emphasis-opacity);
24855
+ }
24856
+ .v-stepper-item--selected {
24857
+ opacity: 1;
24858
+ }
24859
+ .v-stepper-item--error {
24860
+ color: rgb(var(--v-theme-error));
24861
+ }
24862
+ .v-stepper-item--disabled {
24863
+ opacity: var(--v-medium-emphasis-opacity);
24864
+ pointer-events: none;
24865
+ }
24866
+ .v-stepper--alt-labels .v-stepper-item {
24867
+ flex-direction: column;
24868
+ justify-content: flex-start;
24869
+ align-items: center;
24870
+ flex-basis: 175px;
24871
+ }
24872
+
24873
+ .v-stepper-item__avatar.v-avatar {
24874
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
24875
+ color: rgb(var(--v-theme-on-surface-variant));
24876
+ font-size: 0.75rem;
24877
+ margin-inline-end: 8px;
24878
+ }
24879
+ .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
24880
+ margin-inline-end: 0;
24881
+ }
24882
+ .v-stepper-item__avatar.v-avatar .v-icon {
24883
+ font-size: 0.875rem;
24884
+ }
24885
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
24886
+ background: rgb(var(--v-theme-surface-variant));
24887
+ }
24888
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
24889
+ background: rgb(var(--v-theme-error));
24890
+ }
24891
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
24892
+ margin-bottom: 16px;
24893
+ margin-inline-end: 0;
24894
+ }
24895
+
24896
+ .v-stepper-item__title {
24897
+ line-height: 1;
24898
+ }
24899
+ .v-stepper--mobile .v-stepper-item__title {
24900
+ display: none;
24901
+ }
24902
+
24903
+ .v-stepper-item__subtitle {
24904
+ font-size: 0.75rem;
24905
+ text-align: left;
24906
+ line-height: 1;
24907
+ opacity: var(--v-medium-emphasis-opacity);
24908
+ }
24909
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
24910
+ text-align: center;
24911
+ }
24912
+ .v-stepper--mobile .v-stepper-item__subtitle {
24913
+ display: none;
24914
+ }
24915
+
24916
+ .v-stepper-item__overlay {
24917
+ background-color: currentColor;
24918
+ border-radius: inherit;
24919
+ opacity: 0;
24920
+ transition: opacity 0.2s ease-in-out;
24921
+ }
24922
+
24923
+ .v-stepper-item__overlay,
24924
+ .v-stepper-item__underlay {
24925
+ pointer-events: none;
24926
+ }
24927
+ .v-stepper-item__overlay,
24928
+ .v-stepper-item__underlay {
24929
+ position: absolute;
24930
+ top: 0;
24931
+ left: 0;
24932
+ width: 100%;
24933
+ height: 100%;
24934
+ }.v-speed-dial__content {
24935
+ gap: 8px;
24936
+ }
24937
+ .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 {
24938
+ flex-direction: row;
24939
+ }
24940
+ .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 {
24941
+ flex-direction: row-reverse;
24942
+ }
24943
+ .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 {
24944
+ flex-direction: column-reverse;
24945
+ }
24946
+ .v-speed-dial__content > *:nth-child(1) {
24947
+ transition-delay: 0s;
24948
+ }
24949
+ .v-speed-dial__content > *:nth-child(2) {
24950
+ transition-delay: 0.05s;
24951
+ }
24952
+ .v-speed-dial__content > *:nth-child(3) {
24953
+ transition-delay: 0.1s;
24954
+ }
24955
+ .v-speed-dial__content > *:nth-child(4) {
24956
+ transition-delay: 0.15s;
24957
+ }
24958
+ .v-speed-dial__content > *:nth-child(5) {
24959
+ transition-delay: 0.2s;
24960
+ }
24961
+ .v-speed-dial__content > *:nth-child(6) {
24962
+ transition-delay: 0.25s;
24963
+ }
24964
+ .v-speed-dial__content > *:nth-child(7) {
24965
+ transition-delay: 0.3s;
24966
+ }
24967
+ .v-speed-dial__content > *:nth-child(8) {
24968
+ transition-delay: 0.35s;
24969
+ }
24970
+ .v-speed-dial__content > *:nth-child(9) {
24971
+ transition-delay: 0.4s;
24972
+ }
24973
+ .v-speed-dial__content > *:nth-child(10) {
24974
+ transition-delay: 0.45s;
24975
+ }.v-switch .v-label {
24976
+ padding-inline-start: 10px;
24977
+ }
24978
+
24979
+ .v-switch__loader {
24980
+ display: flex;
24981
+ }
24982
+ .v-switch__loader .v-progress-circular {
24983
+ color: rgb(var(--v-theme-surface));
24984
+ }
24985
+
24986
+ .v-switch__track,
24987
+ .v-switch__thumb {
24988
+ transition: none;
24989
+ }
24990
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24991
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24992
+ background-color: rgb(var(--v-theme-error));
24993
+ color: rgb(var(--v-theme-on-error));
24994
+ }
24995
+
24996
+ .v-switch__track-true {
24997
+ margin-inline-end: auto;
24998
+ }
24999
+ .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
25000
+ opacity: 0;
25001
+ }
25002
+
25003
+ .v-switch__track-false {
25004
+ margin-inline-start: auto;
25005
+ }
25006
+ .v-selection-control--dirty .v-switch__track-false {
25007
+ opacity: 0;
25008
+ }
25009
+
25010
+ .v-switch__track {
25011
+ display: inline-flex;
25012
+ align-items: center;
25013
+ font-size: 0.5rem;
25014
+ padding: 0 5px;
25015
+ background-color: rgb(var(--v-theme-surface-variant));
25016
+ border-radius: 9999px;
25017
+ height: 14px;
25018
+ opacity: 0.6;
25019
+ min-width: 36px;
25020
+ cursor: pointer;
25021
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24842
25022
  }
24843
25023
  .v-switch--inset .v-switch__track {
24844
25024
  border-radius: 9999px;
@@ -24974,181 +25154,101 @@ html.v-overlay-scroll-blocked {
24974
25154
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
24975
25155
  border-width: 0;
24976
25156
  }
24977
- }.v-stepper.v-sheet {
24978
- overflow: hidden;
24979
- }
24980
- .v-stepper.v-sheet {
24981
- 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));
25157
+ }.v-tab.v-tab.v-btn {
25158
+ height: var(--v-tabs-height);
25159
+ border-radius: 0;
25160
+ min-width: 90px;
24982
25161
  }
24983
- .v-stepper.v-sheet {
24984
- border-radius: 4px;
25162
+ .v-slide-group--horizontal .v-tab {
25163
+ max-width: 360px;
24985
25164
  }
24986
- .v-stepper.v-sheet.v-stepper--flat {
24987
- 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));
25165
+ .v-slide-group--vertical .v-tab {
25166
+ justify-content: start;
24988
25167
  }
24989
25168
 
24990
- .v-stepper-header {
24991
- align-items: center;
24992
- display: flex;
24993
- position: relative;
24994
- overflow-x: auto;
24995
- justify-content: space-between;
24996
- z-index: 1;
24997
- }
24998
- .v-stepper-header {
24999
- 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));
25000
- }
25001
- .v-stepper-header .v-divider {
25002
- margin: 0 -16px;
25169
+ .v-tab__slider {
25170
+ position: absolute;
25171
+ bottom: 0;
25172
+ left: 0;
25173
+ height: 2px;
25174
+ width: 100%;
25175
+ background: currentColor;
25176
+ pointer-events: none;
25177
+ opacity: 0;
25003
25178
  }
25004
- .v-stepper-header .v-divider:last-child {
25005
- margin-inline-end: 0;
25179
+ .v-tab--selected .v-tab__slider {
25180
+ opacity: 1;
25006
25181
  }
25007
- .v-stepper-header .v-divider:first-child {
25008
- margin-inline-start: 0;
25182
+ .v-slide-group--vertical .v-tab__slider {
25183
+ top: 0;
25184
+ height: 100%;
25185
+ width: 2px;
25186
+ }.v-tabs {
25187
+ display: flex;
25188
+ height: var(--v-tabs-height);
25009
25189
  }
25010
- .v-stepper--alt-labels .v-stepper-header {
25011
- height: auto;
25190
+ .v-tabs--density-default {
25191
+ --v-tabs-height: 48px;
25012
25192
  }
25013
- .v-stepper--alt-labels .v-stepper-header .v-divider {
25014
- align-self: flex-start;
25015
- margin: 35px -67px 0;
25193
+ .v-tabs--density-default.v-tabs--stacked {
25194
+ --v-tabs-height: 72px;
25016
25195
  }
25017
25196
 
25018
- .v-stepper-window {
25019
- margin: 1.5rem;
25197
+ .v-tabs--density-comfortable {
25198
+ --v-tabs-height: 44px;
25199
+ }
25200
+ .v-tabs--density-comfortable.v-tabs--stacked {
25201
+ --v-tabs-height: 68px;
25020
25202
  }
25021
25203
 
25022
- .v-stepper-actions {
25023
- display: flex;
25024
- align-items: center;
25025
- justify-content: space-between;
25026
- padding: 1rem;
25204
+ .v-tabs--density-compact {
25205
+ --v-tabs-height: 36px;
25027
25206
  }
25028
- .v-stepper .v-stepper-actions {
25029
- padding: 0 1.5rem 1rem;
25207
+ .v-tabs--density-compact.v-tabs--stacked {
25208
+ --v-tabs-height: 60px;
25030
25209
  }
25031
- .v-stepper-window-item .v-stepper-actions {
25032
- padding: 1.5rem 0 0;
25033
- }.v-stepper-item {
25034
- align-items: center;
25035
- align-self: stretch;
25036
- display: inline-flex;
25210
+
25211
+ .v-tabs.v-slide-group--vertical {
25212
+ height: auto;
25037
25213
  flex: none;
25038
- outline: none;
25039
- opacity: var(--v-medium-emphasis-opacity);
25040
- padding: 1.5rem;
25041
- position: relative;
25042
- transition-duration: 0.2s;
25043
- transition-property: opacity;
25044
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25045
- }
25046
- .v-stepper-item:hover > .v-stepper-item__overlay {
25047
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
25048
- }
25049
- .v-stepper-item:focus-visible > .v-stepper-item__overlay {
25050
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25051
- }
25052
- @supports not selector(:focus-visible) {
25053
- .v-stepper-item:focus > .v-stepper-item__overlay {
25054
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25055
- }
25056
- }
25057
- .v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
25058
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
25059
- }
25060
- .v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
25061
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
25062
- }
25063
- .v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
25064
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25065
- }
25066
- @supports not selector(:focus-visible) {
25067
- .v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
25068
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25069
- }
25070
- }
25071
- .v-stepper--non-linear .v-stepper-item {
25072
- opacity: var(--v-high-emphasis-opacity);
25073
- }
25074
- .v-stepper-item--selected {
25075
- opacity: 1;
25076
- }
25077
- .v-stepper-item--error {
25078
- color: rgb(var(--v-theme-error));
25079
- }
25080
- .v-stepper-item--disabled {
25081
- opacity: var(--v-medium-emphasis-opacity);
25082
- pointer-events: none;
25083
- }
25084
- .v-stepper--alt-labels .v-stepper-item {
25085
- flex-direction: column;
25086
- justify-content: flex-start;
25087
- align-items: center;
25088
- flex-basis: 175px;
25214
+ --v-tabs-height: 48px;
25089
25215
  }
25090
25216
 
25091
- .v-stepper-item__avatar.v-avatar {
25092
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
25093
- color: rgb(var(--v-theme-on-surface-variant));
25094
- font-size: 0.75rem;
25095
- margin-inline-end: 8px;
25096
- }
25097
- .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
25098
- margin-inline-end: 0;
25099
- }
25100
- .v-stepper-item__avatar.v-avatar .v-icon {
25101
- font-size: 0.875rem;
25102
- }
25103
- .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
25104
- background: rgb(var(--v-theme-surface-variant));
25105
- }
25106
- .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
25107
- background: rgb(var(--v-theme-error));
25108
- }
25109
- .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
25110
- margin-bottom: 16px;
25111
- margin-inline-end: 0;
25217
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25218
+ margin-inline-start: 42px;
25112
25219
  }
25113
25220
 
25114
- .v-stepper-item__title {
25115
- line-height: 1;
25221
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25222
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25223
+ margin-inline-end: auto;
25116
25224
  }
25117
- .v-stepper--mobile .v-stepper-item__title {
25118
- display: none;
25225
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25226
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25227
+ margin-inline-start: auto;
25119
25228
  }
25120
25229
 
25121
- .v-stepper-item__subtitle {
25122
- font-size: 0.75rem;
25123
- text-align: left;
25124
- line-height: 1;
25125
- opacity: var(--v-medium-emphasis-opacity);
25126
- }
25127
- .v-stepper--alt-labels .v-stepper-item__subtitle {
25128
- text-align: center;
25230
+ .v-tabs--grow {
25231
+ flex-grow: 1;
25129
25232
  }
25130
- .v-stepper--mobile .v-stepper-item__subtitle {
25131
- display: none;
25233
+ .v-tabs--grow .v-tab {
25234
+ flex: 1 0 auto;
25235
+ max-width: none;
25132
25236
  }
25133
25237
 
25134
- .v-stepper-item__overlay {
25135
- background-color: currentColor;
25136
- border-radius: inherit;
25137
- opacity: 0;
25138
- transition: opacity 0.2s ease-in-out;
25238
+ .v-tabs--align-tabs-end .v-tab:first-child {
25239
+ margin-inline-start: auto;
25139
25240
  }
25140
-
25141
- .v-stepper-item__overlay,
25142
- .v-stepper-item__underlay {
25143
- pointer-events: none;
25241
+ .v-tabs--align-tabs-end .v-tab:last-child {
25242
+ margin-inline-end: 0;
25144
25243
  }
25145
- .v-stepper-item__overlay,
25146
- .v-stepper-item__underlay {
25147
- position: absolute;
25148
- top: 0;
25149
- left: 0;
25150
- width: 100%;
25151
- height: 100%;
25244
+
25245
+ @media (max-width: 1279.98px) {
25246
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25247
+ margin-inline-start: 52px;
25248
+ }
25249
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25250
+ margin-inline-end: 52px;
25251
+ }
25152
25252
  }.v-system-bar {
25153
25253
  align-items: center;
25154
25254
  display: flex;
@@ -25303,132 +25403,37 @@ html.v-overlay-scroll-blocked {
25303
25403
  border-top-left-radius: 0;
25304
25404
  }
25305
25405
  .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25306
- border-top-right-radius: 0;
25307
- }
25308
-
25309
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25310
- border-bottom-left-radius: 0;
25311
- }
25312
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25313
- border-bottom-right-radius: 0;
25314
- }
25315
-
25316
- .v-table--fixed-height > .v-table__wrapper {
25317
- overflow-y: auto;
25318
- }
25319
-
25320
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25321
- position: sticky;
25322
- top: 0;
25323
- z-index: 2;
25324
- }
25325
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25326
- border-bottom: 0px !important;
25327
- }
25328
-
25329
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25330
- position: sticky;
25331
- bottom: 0;
25332
- z-index: 1;
25333
- }
25334
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25335
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25336
- border-top: 0px !important;
25337
- }.v-tab.v-tab.v-btn {
25338
- height: var(--v-tabs-height);
25339
- border-radius: 0;
25340
- min-width: 90px;
25341
- }
25342
- .v-slide-group--horizontal .v-tab {
25343
- max-width: 360px;
25344
- }
25345
- .v-slide-group--vertical .v-tab {
25346
- justify-content: start;
25347
- }
25348
-
25349
- .v-tab__slider {
25350
- position: absolute;
25351
- bottom: 0;
25352
- left: 0;
25353
- height: 2px;
25354
- width: 100%;
25355
- background: currentColor;
25356
- pointer-events: none;
25357
- opacity: 0;
25358
- }
25359
- .v-tab--selected .v-tab__slider {
25360
- opacity: 1;
25361
- }
25362
- .v-slide-group--vertical .v-tab__slider {
25363
- top: 0;
25364
- height: 100%;
25365
- width: 2px;
25366
- }.v-tabs {
25367
- display: flex;
25368
- height: var(--v-tabs-height);
25369
- }
25370
- .v-tabs--density-default {
25371
- --v-tabs-height: 48px;
25372
- }
25373
- .v-tabs--density-default.v-tabs--stacked {
25374
- --v-tabs-height: 72px;
25375
- }
25376
-
25377
- .v-tabs--density-comfortable {
25378
- --v-tabs-height: 44px;
25379
- }
25380
- .v-tabs--density-comfortable.v-tabs--stacked {
25381
- --v-tabs-height: 68px;
25382
- }
25383
-
25384
- .v-tabs--density-compact {
25385
- --v-tabs-height: 36px;
25386
- }
25387
- .v-tabs--density-compact.v-tabs--stacked {
25388
- --v-tabs-height: 60px;
25389
- }
25390
-
25391
- .v-tabs.v-slide-group--vertical {
25392
- height: auto;
25393
- flex: none;
25394
- --v-tabs-height: 48px;
25395
- }
25396
-
25397
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25398
- margin-inline-start: 42px;
25399
- }
25400
-
25401
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25402
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25403
- margin-inline-end: auto;
25404
- }
25405
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25406
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25407
- margin-inline-start: auto;
25406
+ border-top-right-radius: 0;
25408
25407
  }
25409
25408
 
25410
- .v-tabs--grow {
25411
- flex-grow: 1;
25409
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25410
+ border-bottom-left-radius: 0;
25412
25411
  }
25413
- .v-tabs--grow .v-tab {
25414
- flex: 1 0 auto;
25415
- max-width: none;
25412
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25413
+ border-bottom-right-radius: 0;
25416
25414
  }
25417
25415
 
25418
- .v-tabs--align-tabs-end .v-tab:first-child {
25419
- margin-inline-start: auto;
25416
+ .v-table--fixed-height > .v-table__wrapper {
25417
+ overflow-y: auto;
25420
25418
  }
25421
- .v-tabs--align-tabs-end .v-tab:last-child {
25422
- margin-inline-end: 0;
25419
+
25420
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25421
+ position: sticky;
25422
+ top: 0;
25423
+ z-index: 2;
25424
+ }
25425
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25426
+ border-bottom: 0px !important;
25423
25427
  }
25424
25428
 
25425
- @media (max-width: 1279.98px) {
25426
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25427
- margin-inline-start: 52px;
25428
- }
25429
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25430
- margin-inline-end: 52px;
25431
- }
25429
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25430
+ position: sticky;
25431
+ bottom: 0;
25432
+ z-index: 1;
25433
+ }
25434
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25435
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25436
+ border-top: 0px !important;
25432
25437
  }.v-textarea .v-field {
25433
25438
  --v-textarea-control-height: var(--v-input-control-height);
25434
25439
  }
@@ -25956,28 +25961,6 @@ html.v-overlay-scroll-blocked {
25956
25961
 
25957
25962
  .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
25958
25963
  padding-inline-end: 0;
25959
- }.v-tooltip > .v-overlay__content {
25960
- background: rgb(var(--v-theme-surface-variant));
25961
- color: rgb(var(--v-theme-on-surface-variant));
25962
- border-radius: 4px;
25963
- font-size: 0.875rem;
25964
- line-height: 1.6;
25965
- display: inline-block;
25966
- padding: 5px 16px;
25967
- text-transform: initial;
25968
- width: auto;
25969
- opacity: 1;
25970
- pointer-events: none;
25971
- transition-property: opacity, transform;
25972
- overflow-wrap: break-word;
25973
- }
25974
- .v-tooltip > .v-overlay__content[class*=enter-active] {
25975
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25976
- transition-duration: 150ms;
25977
- }
25978
- .v-tooltip > .v-overlay__content[class*=leave-active] {
25979
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
25980
- transition-duration: 75ms;
25981
25964
  }.v-toolbar {
25982
25965
  align-items: flex-start;
25983
25966
  display: flex;
@@ -26121,6 +26104,28 @@ html.v-overlay-scroll-blocked {
26121
26104
  }
26122
26105
  .v-toolbar-items > .v-btn {
26123
26106
  border-radius: 0;
26107
+ }.v-tooltip > .v-overlay__content {
26108
+ background: rgb(var(--v-theme-surface-variant));
26109
+ color: rgb(var(--v-theme-on-surface-variant));
26110
+ border-radius: 4px;
26111
+ font-size: 0.875rem;
26112
+ line-height: 1.6;
26113
+ display: inline-block;
26114
+ padding: 5px 16px;
26115
+ text-transform: initial;
26116
+ width: auto;
26117
+ opacity: 1;
26118
+ pointer-events: none;
26119
+ transition-property: opacity, transform;
26120
+ overflow-wrap: break-word;
26121
+ }
26122
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
26123
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
26124
+ transition-duration: 150ms;
26125
+ }
26126
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
26127
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26128
+ transition-duration: 75ms;
26124
26129
  }.v-virtual-scroll {
26125
26130
  display: block;
26126
26131
  flex: 1 1 auto;
@@ -26200,11 +26205,91 @@ html.v-overlay-scroll-blocked {
26200
26205
  }
26201
26206
  .v-window-y-reverse-transition-leave-to {
26202
26207
  transform: translateY(100%);
26203
- }.v-item-group {
26204
- flex: 0 1 auto;
26205
- max-width: 100%;
26208
+ }.v-color-picker-canvas {
26209
+ display: flex;
26206
26210
  position: relative;
26207
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26211
+ overflow: hidden;
26212
+ contain: content;
26213
+ touch-action: none;
26214
+ }
26215
+ .v-color-picker-canvas__dot {
26216
+ position: absolute;
26217
+ top: 0;
26218
+ left: 0;
26219
+ width: 15px;
26220
+ height: 15px;
26221
+ background: transparent;
26222
+ border-radius: 50%;
26223
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26224
+ }
26225
+ .v-color-picker-canvas__dot--disabled {
26226
+ 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);
26227
+ }
26228
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26229
+ will-change: transform;
26230
+ }.v-color-picker-swatches {
26231
+ overflow-y: auto;
26232
+ }
26233
+ .v-color-picker-swatches > div {
26234
+ display: flex;
26235
+ flex-wrap: wrap;
26236
+ justify-content: center;
26237
+ padding: 8px;
26238
+ }
26239
+
26240
+ .v-color-picker-swatches__swatch {
26241
+ display: flex;
26242
+ flex-direction: column;
26243
+ margin-bottom: 10px;
26244
+ }
26245
+
26246
+ .v-color-picker-swatches__color {
26247
+ position: relative;
26248
+ height: 18px;
26249
+ max-height: 18px;
26250
+ width: 45px;
26251
+ margin: 2px 4px;
26252
+ border-radius: 2px;
26253
+ -webkit-user-select: none;
26254
+ user-select: none;
26255
+ overflow: hidden;
26256
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26257
+ cursor: pointer;
26258
+ }
26259
+ .v-color-picker-swatches__color > div {
26260
+ display: flex;
26261
+ align-items: center;
26262
+ justify-content: center;
26263
+ width: 100%;
26264
+ height: 100%;
26265
+ }.v-color-picker-edit {
26266
+ display: flex;
26267
+ margin-top: 24px;
26268
+ }
26269
+
26270
+ .v-color-picker-edit__input {
26271
+ width: 100%;
26272
+ display: flex;
26273
+ flex-wrap: wrap;
26274
+ justify-content: center;
26275
+ text-align: center;
26276
+ }
26277
+ .v-color-picker-edit__input:not(:last-child) {
26278
+ margin-inline-end: 8px;
26279
+ }
26280
+ .v-color-picker-edit__input input {
26281
+ border-radius: 4px;
26282
+ margin-bottom: 8px;
26283
+ min-width: 0;
26284
+ outline: none;
26285
+ text-align: center;
26286
+ width: 100%;
26287
+ height: 32px;
26288
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26289
+ color: rgba(var(--v-theme-on-surface));
26290
+ }
26291
+ .v-color-picker-edit__input span {
26292
+ font-size: 0.75rem;
26208
26293
  }.v-color-picker-preview__alpha .v-slider-track__background {
26209
26294
  background-color: transparent !important;
26210
26295
  }
@@ -26275,91 +26360,6 @@ html.v-overlay-scroll-blocked {
26275
26360
  .v-color-picker-preview__eye-dropper {
26276
26361
  position: relative;
26277
26362
  margin-right: 12px;
26278
- }.v-color-picker-canvas {
26279
- display: flex;
26280
- position: relative;
26281
- overflow: hidden;
26282
- contain: content;
26283
- touch-action: none;
26284
- }
26285
- .v-color-picker-canvas__dot {
26286
- position: absolute;
26287
- top: 0;
26288
- left: 0;
26289
- width: 15px;
26290
- height: 15px;
26291
- background: transparent;
26292
- border-radius: 50%;
26293
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26294
- }
26295
- .v-color-picker-canvas__dot--disabled {
26296
- 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);
26297
- }
26298
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26299
- will-change: transform;
26300
- }.v-color-picker-edit {
26301
- display: flex;
26302
- margin-top: 24px;
26303
- }
26304
-
26305
- .v-color-picker-edit__input {
26306
- width: 100%;
26307
- display: flex;
26308
- flex-wrap: wrap;
26309
- justify-content: center;
26310
- text-align: center;
26311
- }
26312
- .v-color-picker-edit__input:not(:last-child) {
26313
- margin-inline-end: 8px;
26314
- }
26315
- .v-color-picker-edit__input input {
26316
- border-radius: 4px;
26317
- margin-bottom: 8px;
26318
- min-width: 0;
26319
- outline: none;
26320
- text-align: center;
26321
- width: 100%;
26322
- height: 32px;
26323
- background: rgba(var(--v-theme-surface-variant), 0.2);
26324
- color: rgba(var(--v-theme-on-surface));
26325
- }
26326
- .v-color-picker-edit__input span {
26327
- font-size: 0.75rem;
26328
- }.v-color-picker-swatches {
26329
- overflow-y: auto;
26330
- }
26331
- .v-color-picker-swatches > div {
26332
- display: flex;
26333
- flex-wrap: wrap;
26334
- justify-content: center;
26335
- padding: 8px;
26336
- }
26337
-
26338
- .v-color-picker-swatches__swatch {
26339
- display: flex;
26340
- flex-direction: column;
26341
- margin-bottom: 10px;
26342
- }
26343
-
26344
- .v-color-picker-swatches__color {
26345
- position: relative;
26346
- height: 18px;
26347
- max-height: 18px;
26348
- width: 45px;
26349
- margin: 2px 4px;
26350
- border-radius: 2px;
26351
- -webkit-user-select: none;
26352
- user-select: none;
26353
- overflow: hidden;
26354
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26355
- cursor: pointer;
26356
- }
26357
- .v-color-picker-swatches__color > div {
26358
- display: flex;
26359
- align-items: center;
26360
- justify-content: center;
26361
- width: 100%;
26362
- height: 100%;
26363
26363
  }.v-picker.v-sheet {
26364
26364
  display: grid;
26365
26365
  grid-auto-rows: min-content;