@vuetify/nightly 3.8.7-master.2025-06-02 → 3.8.7-master.2025-06-03

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/CHANGELOG.md +11 -3
  2. package/dist/json/attributes.json +3248 -3248
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +172 -172
  5. package/dist/json/web-types.json +6002 -6002
  6. package/dist/vuetify-labs.cjs +20 -10
  7. package/dist/vuetify-labs.css +3724 -3718
  8. package/dist/vuetify-labs.d.ts +62 -62
  9. package/dist/vuetify-labs.esm.js +20 -10
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +20 -10
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +20 -10
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +1784 -1778
  16. package/dist/vuetify.d.ts +62 -62
  17. package/dist/vuetify.esm.js +20 -10
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +20 -10
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +13 -13
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.css +6 -6
  25. package/lib/components/VAutocomplete/VAutocomplete.sass +3 -9
  26. package/lib/components/VChip/VChip.js +1 -0
  27. package/lib/components/VChip/VChip.js.map +1 -1
  28. package/lib/components/VCombobox/VCombobox.css +6 -6
  29. package/lib/components/VCombobox/VCombobox.sass +3 -9
  30. package/lib/components/VSelect/VSelect.css +6 -0
  31. package/lib/components/VSelect/VSelect.sass +3 -0
  32. package/lib/components/VSelect/_mixins.scss +14 -0
  33. package/lib/components/VSlider/VSliderThumb.js +12 -6
  34. package/lib/components/VSlider/VSliderThumb.js.map +1 -1
  35. package/lib/components/VSlider/slider.js +4 -1
  36. package/lib/components/VSlider/slider.js.map +1 -1
  37. package/lib/entry-bundler.js +1 -1
  38. package/lib/framework.d.ts +62 -62
  39. package/lib/framework.js +1 -1
  40. package/package.json +1 -1
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.7-master.2025-06-02
2
+ * Vuetify v3.8.7-master.2025-06-03
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17985,6 +17985,22 @@ html.overflow-y-hidden {
17985
17985
  .v-ripple__animation--out {
17986
17986
  transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
17987
17987
  opacity: 0;
17988
+ }.v-application {
17989
+ display: flex;
17990
+ background: rgb(var(--v-theme-background));
17991
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
17992
+ }
17993
+
17994
+ .v-application__wrap {
17995
+ -webkit-backface-visibility: hidden;
17996
+ backface-visibility: hidden;
17997
+ display: flex;
17998
+ flex-direction: column;
17999
+ flex: 1 1 auto;
18000
+ max-width: 100%;
18001
+ min-height: 100vh;
18002
+ min-height: 100dvh;
18003
+ position: relative;
17988
18004
  }.v-app-bar {
17989
18005
  display: flex;
17990
18006
  }
@@ -18213,106 +18229,6 @@ html.overflow-y-hidden {
18213
18229
  text-transform: none;
18214
18230
  word-break: normal;
18215
18231
  word-wrap: break-word;
18216
- }.v-application {
18217
- display: flex;
18218
- background: rgb(var(--v-theme-background));
18219
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18220
- }
18221
-
18222
- .v-application__wrap {
18223
- -webkit-backface-visibility: hidden;
18224
- backface-visibility: hidden;
18225
- display: flex;
18226
- flex-direction: column;
18227
- flex: 1 1 auto;
18228
- max-width: 100%;
18229
- min-height: 100vh;
18230
- min-height: 100dvh;
18231
- position: relative;
18232
- }.v-autocomplete .v-field .v-text-field__prefix,
18233
- .v-autocomplete .v-field .v-text-field__suffix,
18234
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18235
- cursor: text;
18236
- }
18237
- .v-autocomplete .v-field .v-field__input > input {
18238
- flex: 1 1;
18239
- }
18240
- .v-autocomplete .v-field input {
18241
- min-width: 64px;
18242
- }
18243
- .v-autocomplete .v-field:not(.v-field--focused) input {
18244
- min-width: 0;
18245
- }
18246
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18247
- margin-inline-end: 2px;
18248
- }
18249
- .v-autocomplete .v-autocomplete__selection-text {
18250
- overflow: hidden;
18251
- text-overflow: ellipsis;
18252
- white-space: nowrap;
18253
- }
18254
-
18255
- .v-autocomplete__content {
18256
- overflow: hidden;
18257
- }
18258
- .v-autocomplete__content {
18259
- 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));
18260
- }
18261
- .v-autocomplete__content {
18262
- border-radius: 4px;
18263
- }
18264
- .v-autocomplete__mask {
18265
- background: rgb(var(--v-theme-surface-light));
18266
- }
18267
- .v-autocomplete__selection {
18268
- display: inline-flex;
18269
- align-items: center;
18270
- height: 1.5rem;
18271
- letter-spacing: inherit;
18272
- line-height: inherit;
18273
- max-width: calc(100% - 2px - 2px);
18274
- }
18275
- .v-autocomplete__selection:first-child {
18276
- margin-inline-start: 0;
18277
- }
18278
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18279
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18280
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18281
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18282
- top: 0px;
18283
- }
18284
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18285
- opacity: var(--v-medium-emphasis-opacity);
18286
- }
18287
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18288
- opacity: 1;
18289
- }
18290
- .v-autocomplete--selecting-index .v-field__input > input {
18291
- caret-color: transparent;
18292
- }
18293
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18294
- flex: 1 1;
18295
- position: absolute;
18296
- left: 0;
18297
- right: 0;
18298
- width: 100%;
18299
- padding-inline: inherit;
18300
- }
18301
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18302
- transition: none;
18303
- }
18304
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18305
- opacity: 0;
18306
- }
18307
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18308
- opacity: 0;
18309
- }
18310
- .v-autocomplete__menu-icon {
18311
- margin-inline-start: 4px;
18312
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18313
- }
18314
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18315
- transform: rotate(180deg);
18316
18232
  }.v-avatar {
18317
18233
  flex: none;
18318
18234
  align-items: center;
@@ -18419,6 +18335,90 @@ html.overflow-y-hidden {
18419
18335
  .v-avatar .v-img {
18420
18336
  height: 100%;
18421
18337
  width: 100%;
18338
+ }.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18339
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18340
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18341
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18342
+ top: 0px;
18343
+ }
18344
+ .v-autocomplete .v-field .v-text-field__prefix,
18345
+ .v-autocomplete .v-field .v-text-field__suffix,
18346
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18347
+ cursor: text;
18348
+ }
18349
+ .v-autocomplete .v-field .v-field__input > input {
18350
+ flex: 1 1;
18351
+ }
18352
+ .v-autocomplete .v-field input {
18353
+ min-width: 64px;
18354
+ }
18355
+ .v-autocomplete .v-field:not(.v-field--focused) input {
18356
+ min-width: 0;
18357
+ }
18358
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18359
+ margin-inline-end: 2px;
18360
+ }
18361
+ .v-autocomplete .v-autocomplete__selection-text {
18362
+ overflow: hidden;
18363
+ text-overflow: ellipsis;
18364
+ white-space: nowrap;
18365
+ }
18366
+
18367
+ .v-autocomplete__content {
18368
+ overflow: hidden;
18369
+ }
18370
+ .v-autocomplete__content {
18371
+ 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));
18372
+ }
18373
+ .v-autocomplete__content {
18374
+ border-radius: 4px;
18375
+ }
18376
+ .v-autocomplete__mask {
18377
+ background: rgb(var(--v-theme-surface-light));
18378
+ }
18379
+ .v-autocomplete__selection {
18380
+ display: inline-flex;
18381
+ align-items: center;
18382
+ height: 1.5rem;
18383
+ letter-spacing: inherit;
18384
+ line-height: inherit;
18385
+ max-width: calc(100% - 2px - 2px);
18386
+ }
18387
+ .v-autocomplete__selection:first-child {
18388
+ margin-inline-start: 0;
18389
+ }
18390
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
18391
+ opacity: var(--v-medium-emphasis-opacity);
18392
+ }
18393
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18394
+ opacity: 1;
18395
+ }
18396
+ .v-autocomplete--selecting-index .v-field__input > input {
18397
+ caret-color: transparent;
18398
+ }
18399
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18400
+ flex: 1 1;
18401
+ position: absolute;
18402
+ left: 0;
18403
+ right: 0;
18404
+ width: 100%;
18405
+ padding-inline: inherit;
18406
+ }
18407
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18408
+ transition: none;
18409
+ }
18410
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18411
+ opacity: 0;
18412
+ }
18413
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18414
+ opacity: 0;
18415
+ }
18416
+ .v-autocomplete__menu-icon {
18417
+ margin-inline-start: 4px;
18418
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18419
+ }
18420
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18421
+ transform: rotate(180deg);
18422
18422
  }.v-badge {
18423
18423
  display: inline-block;
18424
18424
  line-height: 1;
@@ -18496,118 +18496,54 @@ html.overflow-y-hidden {
18496
18496
  display: inline-flex;
18497
18497
  justify-content: center;
18498
18498
  margin: 0 4px;
18499
- }.v-bottom-navigation {
18500
- display: flex;
18501
- max-width: 100%;
18499
+ }.v-banner {
18500
+ display: grid;
18501
+ flex: 1 1;
18502
+ font-size: 0.875rem;
18503
+ grid-template-areas: "prepend content actions";
18504
+ grid-template-columns: max-content auto max-content;
18505
+ grid-template-rows: max-content max-content;
18506
+ line-height: 1.6;
18502
18507
  overflow: hidden;
18503
- position: absolute;
18504
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18508
+ padding-inline: 16px 8px;
18509
+ padding-top: 16px;
18510
+ padding-bottom: 16px;
18511
+ position: relative;
18512
+ width: 100%;
18505
18513
  }
18506
- .v-bottom-navigation {
18514
+ .v-banner {
18507
18515
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18508
18516
  border-style: solid;
18509
- border-width: 0;
18517
+ border-width: 0 0 thin 0;
18510
18518
  }
18511
- .v-bottom-navigation--border {
18519
+ .v-banner--border {
18512
18520
  border-width: thin;
18513
18521
  box-shadow: none;
18514
18522
  }
18515
- .v-bottom-navigation {
18523
+ .v-banner {
18524
+ 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));
18525
+ }
18526
+ .v-banner--absolute {
18527
+ position: absolute;
18528
+ }
18529
+ .v-banner--fixed {
18530
+ position: fixed;
18531
+ }
18532
+ .v-banner--sticky {
18533
+ position: sticky;
18534
+ }
18535
+ .v-banner {
18516
18536
  border-radius: 0;
18517
18537
  }
18518
- .v-bottom-navigation {
18538
+ .v-banner {
18519
18539
  background: rgb(var(--v-theme-surface));
18520
18540
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18521
18541
  }
18522
- .v-bottom-navigation--active {
18523
- 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));
18542
+ .v-banner--rounded {
18543
+ border-radius: 4px;
18524
18544
  }
18525
-
18526
- .v-bottom-navigation__content {
18527
- display: flex;
18528
- flex: none;
18529
- font-size: 0.75rem;
18530
- justify-content: center;
18531
- transition: inherit;
18532
- width: 100%;
18533
- }
18534
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18535
- font-size: inherit;
18536
- height: 100%;
18537
- max-width: 168px;
18538
- min-width: 80px;
18539
- text-transform: none;
18540
- transition: inherit;
18541
- width: auto;
18542
- }
18543
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18544
- border-radius: 0;
18545
- }
18546
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18547
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18548
- transition: inherit;
18549
- }
18550
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18551
- font-size: 1.5rem;
18552
- }
18553
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18554
- flex-basis: 0;
18555
- flex-grow: 1;
18556
- }
18557
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18558
- transition: inherit;
18559
- opacity: 0;
18560
- }
18561
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18562
- transform: translateY(0.5rem);
18563
- }.v-banner {
18564
- display: grid;
18565
- flex: 1 1;
18566
- font-size: 0.875rem;
18567
- grid-template-areas: "prepend content actions";
18568
- grid-template-columns: max-content auto max-content;
18569
- grid-template-rows: max-content max-content;
18570
- line-height: 1.6;
18571
- overflow: hidden;
18572
- padding-inline: 16px 8px;
18573
- padding-top: 16px;
18574
- padding-bottom: 16px;
18575
- position: relative;
18576
- width: 100%;
18577
- }
18578
- .v-banner {
18579
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18580
- border-style: solid;
18581
- border-width: 0 0 thin 0;
18582
- }
18583
- .v-banner--border {
18584
- border-width: thin;
18585
- box-shadow: none;
18586
- }
18587
- .v-banner {
18588
- 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));
18589
- }
18590
- .v-banner--absolute {
18591
- position: absolute;
18592
- }
18593
- .v-banner--fixed {
18594
- position: fixed;
18595
- }
18596
- .v-banner--sticky {
18597
- position: sticky;
18598
- }
18599
- .v-banner {
18600
- border-radius: 0;
18601
- }
18602
- .v-banner {
18603
- background: rgb(var(--v-theme-surface));
18604
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18605
- }
18606
- .v-banner--rounded {
18607
- border-radius: 4px;
18608
- }
18609
- .v-banner--stacked:not(.v-banner--one-line) {
18610
- grid-template-areas: "prepend content" ". actions";
18545
+ .v-banner--stacked:not(.v-banner--one-line) {
18546
+ grid-template-areas: "prepend content" ". actions";
18611
18547
  }
18612
18548
  .v-banner--stacked .v-banner-text {
18613
18549
  padding-inline-end: 36px;
@@ -18726,6 +18662,127 @@ html.overflow-y-hidden {
18726
18662
  }
18727
18663
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18728
18664
  align-self: flex-start;
18665
+ }.v-bottom-navigation {
18666
+ display: flex;
18667
+ max-width: 100%;
18668
+ overflow: hidden;
18669
+ position: absolute;
18670
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18671
+ }
18672
+ .v-bottom-navigation {
18673
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18674
+ border-style: solid;
18675
+ border-width: 0;
18676
+ }
18677
+ .v-bottom-navigation--border {
18678
+ border-width: thin;
18679
+ box-shadow: none;
18680
+ }
18681
+ .v-bottom-navigation {
18682
+ border-radius: 0;
18683
+ }
18684
+ .v-bottom-navigation {
18685
+ background: rgb(var(--v-theme-surface));
18686
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18687
+ }
18688
+ .v-bottom-navigation--active {
18689
+ 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));
18690
+ }
18691
+
18692
+ .v-bottom-navigation__content {
18693
+ display: flex;
18694
+ flex: none;
18695
+ font-size: 0.75rem;
18696
+ justify-content: center;
18697
+ transition: inherit;
18698
+ width: 100%;
18699
+ }
18700
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18701
+ font-size: inherit;
18702
+ height: 100%;
18703
+ max-width: 168px;
18704
+ min-width: 80px;
18705
+ text-transform: none;
18706
+ transition: inherit;
18707
+ width: auto;
18708
+ }
18709
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18710
+ border-radius: 0;
18711
+ }
18712
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18713
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18714
+ transition: inherit;
18715
+ }
18716
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18717
+ font-size: 1.5rem;
18718
+ }
18719
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18720
+ flex-basis: 0;
18721
+ flex-grow: 1;
18722
+ }
18723
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18724
+ transition: inherit;
18725
+ opacity: 0;
18726
+ }
18727
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18728
+ transform: translateY(0.5rem);
18729
+ }.v-breadcrumbs {
18730
+ display: flex;
18731
+ align-items: center;
18732
+ line-height: 1.6;
18733
+ padding: 16px 12px;
18734
+ }
18735
+ .v-breadcrumbs--rounded {
18736
+ border-radius: 4px;
18737
+ }
18738
+ .v-breadcrumbs--density-default {
18739
+ padding-top: 16px;
18740
+ padding-bottom: 16px;
18741
+ }
18742
+
18743
+ .v-breadcrumbs--density-comfortable {
18744
+ padding-top: 12px;
18745
+ padding-bottom: 12px;
18746
+ }
18747
+
18748
+ .v-breadcrumbs--density-compact {
18749
+ padding-top: 8px;
18750
+ padding-bottom: 8px;
18751
+ }
18752
+
18753
+ .v-breadcrumbs__prepend {
18754
+ align-items: center;
18755
+ display: inline-flex;
18756
+ }
18757
+
18758
+ .v-breadcrumbs-item {
18759
+ align-items: center;
18760
+ color: inherit;
18761
+ display: inline-flex;
18762
+ padding: 0 4px;
18763
+ text-decoration: none;
18764
+ vertical-align: middle;
18765
+ }
18766
+ .v-breadcrumbs-item--disabled {
18767
+ opacity: var(--v-disabled-opacity);
18768
+ pointer-events: none;
18769
+ }
18770
+ .v-breadcrumbs-item--link {
18771
+ color: inherit;
18772
+ text-decoration: none;
18773
+ }
18774
+ .v-breadcrumbs-item--link:hover {
18775
+ text-decoration: underline;
18776
+ }
18777
+ .v-breadcrumbs-item .v-icon {
18778
+ font-size: 1rem;
18779
+ margin-inline: -4px 2px;
18780
+ }
18781
+
18782
+ .v-breadcrumbs-divider {
18783
+ display: inline-block;
18784
+ padding: 0 8px;
18785
+ vertical-align: middle;
18729
18786
  }.bottom-sheet-transition-enter-from {
18730
18787
  transform: translateY(100%);
18731
18788
  }
@@ -18760,48 +18817,112 @@ html.overflow-y-hidden {
18760
18817
  .v-bottom-sheet.v-bottom-sheet--inset {
18761
18818
  max-width: 70%;
18762
18819
  }
18763
- }.v-btn {
18764
- align-items: center;
18765
- border-radius: 4px;
18766
- display: inline-grid;
18767
- grid-template-areas: "prepend content append";
18768
- grid-template-columns: max-content auto max-content;
18769
- font-weight: 500;
18770
- justify-content: center;
18771
- letter-spacing: 0.0892857143em;
18772
- line-height: normal;
18820
+ }.v-btn-group {
18821
+ display: inline-flex;
18822
+ flex-wrap: nowrap;
18773
18823
  max-width: 100%;
18774
- outline: none;
18775
- position: relative;
18776
- text-decoration: none;
18777
- text-indent: 0.0892857143em;
18778
- text-transform: uppercase;
18779
- transition-property: box-shadow, transform, opacity, background;
18780
- transition-duration: 0.28s;
18781
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18782
- -webkit-user-select: none;
18783
- user-select: none;
18824
+ min-width: 0;
18825
+ overflow: hidden;
18784
18826
  vertical-align: middle;
18785
- flex-shrink: 0;
18786
18827
  }
18787
- .v-btn--size-x-small {
18788
- --v-btn-size: 0.625rem;
18789
- --v-btn-height: 20px;
18790
- font-size: var(--v-btn-size);
18791
- min-width: 36px;
18792
- padding: 0 8px;
18828
+ .v-btn-group {
18829
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18830
+ border-style: solid;
18831
+ border-width: 0;
18832
+ }
18833
+ .v-btn-group--border {
18834
+ border-width: thin;
18835
+ box-shadow: none;
18836
+ }
18837
+ .v-btn-group {
18838
+ 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));
18839
+ }
18840
+ .v-btn-group {
18841
+ border-radius: 4px;
18842
+ }
18843
+ .v-btn-group {
18844
+ background: transparent;
18845
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18846
+ }
18847
+ .v-btn-group--density-default.v-btn-group {
18848
+ height: 48px;
18793
18849
  }
18794
18850
 
18795
- .v-btn--size-small {
18796
- --v-btn-size: 0.75rem;
18797
- --v-btn-height: 28px;
18798
- font-size: var(--v-btn-size);
18799
- min-width: 50px;
18800
- padding: 0 12px;
18851
+ .v-btn-group--density-comfortable.v-btn-group {
18852
+ height: 40px;
18801
18853
  }
18802
18854
 
18803
- .v-btn--size-default {
18804
- --v-btn-size: 0.875rem;
18855
+ .v-btn-group--density-compact.v-btn-group {
18856
+ height: 36px;
18857
+ }
18858
+
18859
+ .v-btn-group .v-btn {
18860
+ border-radius: 0;
18861
+ border-color: inherit;
18862
+ }
18863
+ .v-btn-group .v-btn:not(:last-child) {
18864
+ border-inline-end: none;
18865
+ }
18866
+ .v-btn-group .v-btn:not(:first-child) {
18867
+ border-inline-start: none;
18868
+ }
18869
+ .v-btn-group .v-btn:first-child {
18870
+ border-start-start-radius: inherit;
18871
+ border-end-start-radius: inherit;
18872
+ }
18873
+ .v-btn-group .v-btn:last-child {
18874
+ border-start-end-radius: inherit;
18875
+ border-end-end-radius: inherit;
18876
+ }
18877
+ .v-btn-group--divided .v-btn:not(:last-child) {
18878
+ border-inline-end-width: thin;
18879
+ border-inline-end-style: solid;
18880
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
18881
+ }
18882
+ .v-btn-group--tile {
18883
+ border-radius: 0;
18884
+ }.v-btn {
18885
+ align-items: center;
18886
+ border-radius: 4px;
18887
+ display: inline-grid;
18888
+ grid-template-areas: "prepend content append";
18889
+ grid-template-columns: max-content auto max-content;
18890
+ font-weight: 500;
18891
+ justify-content: center;
18892
+ letter-spacing: 0.0892857143em;
18893
+ line-height: normal;
18894
+ max-width: 100%;
18895
+ outline: none;
18896
+ position: relative;
18897
+ text-decoration: none;
18898
+ text-indent: 0.0892857143em;
18899
+ text-transform: uppercase;
18900
+ transition-property: box-shadow, transform, opacity, background;
18901
+ transition-duration: 0.28s;
18902
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18903
+ -webkit-user-select: none;
18904
+ user-select: none;
18905
+ vertical-align: middle;
18906
+ flex-shrink: 0;
18907
+ }
18908
+ .v-btn--size-x-small {
18909
+ --v-btn-size: 0.625rem;
18910
+ --v-btn-height: 20px;
18911
+ font-size: var(--v-btn-size);
18912
+ min-width: 36px;
18913
+ padding: 0 8px;
18914
+ }
18915
+
18916
+ .v-btn--size-small {
18917
+ --v-btn-size: 0.75rem;
18918
+ --v-btn-height: 28px;
18919
+ font-size: var(--v-btn-size);
18920
+ min-width: 50px;
18921
+ padding: 0 12px;
18922
+ }
18923
+
18924
+ .v-btn--size-default {
18925
+ --v-btn-size: 0.875rem;
18805
18926
  --v-btn-height: 36px;
18806
18927
  font-size: var(--v-btn-size);
18807
18928
  min-width: 64px;
@@ -19209,63 +19330,6 @@ html.overflow-y-hidden {
19209
19330
  }
19210
19331
  .v-pagination .v-pagination__item--is-active .v-btn__overlay {
19211
19332
  opacity: var(--v-border-opacity);
19212
- }.v-breadcrumbs {
19213
- display: flex;
19214
- align-items: center;
19215
- line-height: 1.6;
19216
- padding: 16px 12px;
19217
- }
19218
- .v-breadcrumbs--rounded {
19219
- border-radius: 4px;
19220
- }
19221
- .v-breadcrumbs--density-default {
19222
- padding-top: 16px;
19223
- padding-bottom: 16px;
19224
- }
19225
-
19226
- .v-breadcrumbs--density-comfortable {
19227
- padding-top: 12px;
19228
- padding-bottom: 12px;
19229
- }
19230
-
19231
- .v-breadcrumbs--density-compact {
19232
- padding-top: 8px;
19233
- padding-bottom: 8px;
19234
- }
19235
-
19236
- .v-breadcrumbs__prepend {
19237
- align-items: center;
19238
- display: inline-flex;
19239
- }
19240
-
19241
- .v-breadcrumbs-item {
19242
- align-items: center;
19243
- color: inherit;
19244
- display: inline-flex;
19245
- padding: 0 4px;
19246
- text-decoration: none;
19247
- vertical-align: middle;
19248
- }
19249
- .v-breadcrumbs-item--disabled {
19250
- opacity: var(--v-disabled-opacity);
19251
- pointer-events: none;
19252
- }
19253
- .v-breadcrumbs-item--link {
19254
- color: inherit;
19255
- text-decoration: none;
19256
- }
19257
- .v-breadcrumbs-item--link:hover {
19258
- text-decoration: underline;
19259
- }
19260
- .v-breadcrumbs-item .v-icon {
19261
- font-size: 1rem;
19262
- margin-inline: -4px 2px;
19263
- }
19264
-
19265
- .v-breadcrumbs-divider {
19266
- display: inline-block;
19267
- padding: 0 8px;
19268
- vertical-align: middle;
19269
19333
  }.v-card {
19270
19334
  display: block;
19271
19335
  overflow: hidden;
@@ -19574,70 +19638,6 @@ html.overflow-y-hidden {
19574
19638
  pointer-events: none;
19575
19639
  opacity: 0;
19576
19640
  transition: opacity 0.2s ease-in-out;
19577
- }.v-btn-group {
19578
- display: inline-flex;
19579
- flex-wrap: nowrap;
19580
- max-width: 100%;
19581
- min-width: 0;
19582
- overflow: hidden;
19583
- vertical-align: middle;
19584
- }
19585
- .v-btn-group {
19586
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19587
- border-style: solid;
19588
- border-width: 0;
19589
- }
19590
- .v-btn-group--border {
19591
- border-width: thin;
19592
- box-shadow: none;
19593
- }
19594
- .v-btn-group {
19595
- 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));
19596
- }
19597
- .v-btn-group {
19598
- border-radius: 4px;
19599
- }
19600
- .v-btn-group {
19601
- background: transparent;
19602
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19603
- }
19604
- .v-btn-group--density-default.v-btn-group {
19605
- height: 48px;
19606
- }
19607
-
19608
- .v-btn-group--density-comfortable.v-btn-group {
19609
- height: 40px;
19610
- }
19611
-
19612
- .v-btn-group--density-compact.v-btn-group {
19613
- height: 36px;
19614
- }
19615
-
19616
- .v-btn-group .v-btn {
19617
- border-radius: 0;
19618
- border-color: inherit;
19619
- }
19620
- .v-btn-group .v-btn:not(:last-child) {
19621
- border-inline-end: none;
19622
- }
19623
- .v-btn-group .v-btn:not(:first-child) {
19624
- border-inline-start: none;
19625
- }
19626
- .v-btn-group .v-btn:first-child {
19627
- border-start-start-radius: inherit;
19628
- border-end-start-radius: inherit;
19629
- }
19630
- .v-btn-group .v-btn:last-child {
19631
- border-start-end-radius: inherit;
19632
- border-end-end-radius: inherit;
19633
- }
19634
- .v-btn-group--divided .v-btn:not(:last-child) {
19635
- border-inline-end-width: thin;
19636
- border-inline-end-style: solid;
19637
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19638
- }
19639
- .v-btn-group--tile {
19640
- border-radius: 0;
19641
19641
  }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19642
19642
  opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19643
19643
  }
@@ -19719,11 +19719,6 @@ html.overflow-y-hidden {
19719
19719
  flex-direction: column;
19720
19720
  height: 100% !important;
19721
19721
  width: 50px;
19722
- }.v-checkbox.v-input {
19723
- flex: 0 1 auto;
19724
- }
19725
- .v-checkbox .v-selection-control {
19726
- min-height: var(--v-input-control-height);
19727
19722
  }.v-chip {
19728
19723
  align-items: center;
19729
19724
  display: inline-flex;
@@ -20142,46 +20137,140 @@ html.overflow-y-hidden {
20142
20137
 
20143
20138
  .v-chip--label {
20144
20139
  border-radius: 4px;
20145
- }.v-chip-group {
20146
- display: flex;
20147
- max-width: 100%;
20148
- min-width: 0;
20149
- overflow-x: auto;
20150
- padding: 4px 0;
20140
+ }.v-checkbox.v-input {
20141
+ flex: 0 1 auto;
20151
20142
  }
20152
- .v-chip-group .v-chip {
20153
- margin: 4px 8px 4px 0;
20143
+ .v-checkbox .v-selection-control {
20144
+ min-height: var(--v-input-control-height);
20145
+ }.v-color-picker {
20146
+ align-self: flex-start;
20147
+ contain: content;
20148
+ width: 300px;
20154
20149
  }
20155
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20156
- opacity: var(--v-activated-opacity);
20150
+ .v-color-picker.v-sheet.v-picker {
20151
+ 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));
20152
+ }
20153
+ .v-color-picker.v-sheet.v-picker {
20154
+ border-radius: 4px;
20157
20155
  }
20158
20156
 
20159
- .v-chip-group--column .v-slide-group__content {
20160
- white-space: normal;
20161
- flex-wrap: wrap;
20162
- max-width: 100%;
20163
- }.v-container {
20164
- width: 100%;
20157
+ .v-color-picker__controls {
20158
+ display: flex;
20159
+ flex-direction: column;
20165
20160
  padding: 16px;
20166
- margin-right: auto;
20167
- margin-left: auto;
20168
20161
  }
20169
- @media (min-width: 960px) {
20170
- .v-container {
20171
- max-width: 900px;
20172
- }
20162
+
20163
+ .v-color-picker--flat {
20164
+ 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));
20173
20165
  }
20174
- @media (min-width: 1280px) {
20175
- .v-container {
20176
- max-width: 1200px;
20177
- }
20166
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20167
+ 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));
20168
+ }.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20169
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20170
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20171
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20172
+ top: 0px;
20178
20173
  }
20179
- @media (min-width: 1920px) {
20180
- .v-container {
20181
- max-width: 1800px;
20182
- }
20174
+ .v-combobox .v-field .v-text-field__prefix,
20175
+ .v-combobox .v-field .v-text-field__suffix,
20176
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20177
+ cursor: text;
20183
20178
  }
20184
- @media (min-width: 2560px) {
20179
+ .v-combobox .v-field .v-field__input > input {
20180
+ flex: 1 1;
20181
+ }
20182
+ .v-combobox .v-field input {
20183
+ min-width: 64px;
20184
+ }
20185
+ .v-combobox .v-field:not(.v-field--focused) input {
20186
+ min-width: 0;
20187
+ }
20188
+ .v-combobox .v-field--dirty .v-combobox__selection {
20189
+ margin-inline-end: 2px;
20190
+ }
20191
+ .v-combobox .v-combobox__selection-text {
20192
+ overflow: hidden;
20193
+ text-overflow: ellipsis;
20194
+ white-space: nowrap;
20195
+ }
20196
+
20197
+ .v-combobox__content {
20198
+ overflow: hidden;
20199
+ }
20200
+ .v-combobox__content {
20201
+ 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));
20202
+ }
20203
+ .v-combobox__content {
20204
+ border-radius: 4px;
20205
+ }
20206
+ .v-combobox__mask {
20207
+ background: rgb(var(--v-theme-surface-light));
20208
+ }
20209
+ .v-combobox__selection {
20210
+ display: inline-flex;
20211
+ align-items: center;
20212
+ height: 1.5rem;
20213
+ letter-spacing: inherit;
20214
+ line-height: inherit;
20215
+ max-width: calc(100% - 2px - 2px);
20216
+ }
20217
+ .v-combobox__selection:first-child {
20218
+ margin-inline-start: 0;
20219
+ }
20220
+ .v-combobox--selecting-index .v-combobox__selection {
20221
+ opacity: var(--v-medium-emphasis-opacity);
20222
+ }
20223
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20224
+ opacity: 1;
20225
+ }
20226
+ .v-combobox--selecting-index .v-field__input > input {
20227
+ caret-color: transparent;
20228
+ }
20229
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20230
+ flex: 1 1;
20231
+ position: absolute;
20232
+ left: 0;
20233
+ right: 0;
20234
+ width: 100%;
20235
+ padding-inline: inherit;
20236
+ }
20237
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20238
+ transition: none;
20239
+ }
20240
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20241
+ opacity: 0;
20242
+ }
20243
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20244
+ opacity: 0;
20245
+ }
20246
+ .v-combobox__menu-icon {
20247
+ margin-inline-start: 4px;
20248
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20249
+ }
20250
+ .v-combobox--active-menu .v-combobox__menu-icon {
20251
+ transform: rotate(180deg);
20252
+ }.v-container {
20253
+ width: 100%;
20254
+ padding: 16px;
20255
+ margin-right: auto;
20256
+ margin-left: auto;
20257
+ }
20258
+ @media (min-width: 960px) {
20259
+ .v-container {
20260
+ max-width: 900px;
20261
+ }
20262
+ }
20263
+ @media (min-width: 1280px) {
20264
+ .v-container {
20265
+ max-width: 1200px;
20266
+ }
20267
+ }
20268
+ @media (min-width: 1920px) {
20269
+ .v-container {
20270
+ max-width: 1800px;
20271
+ }
20272
+ }
20273
+ @media (min-width: 2560px) {
20185
20274
  .v-container {
20186
20275
  max-width: 2400px;
20187
20276
  }
@@ -20832,118 +20921,223 @@ html.overflow-y-hidden {
20832
20921
  .offset-xxl-11 {
20833
20922
  margin-inline-start: 91.6666666667%;
20834
20923
  }
20835
- }.v-color-picker {
20836
- align-self: flex-start;
20837
- contain: content;
20838
- width: 300px;
20839
- }
20840
- .v-color-picker.v-sheet.v-picker {
20841
- 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));
20924
+ }.v-counter {
20925
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20926
+ flex: 0 1 auto;
20927
+ font-size: 12px;
20928
+ transition-duration: 150ms;
20929
+ }.v-date-picker-controls {
20930
+ display: flex;
20931
+ align-items: center;
20932
+ justify-content: space-between;
20933
+ font-size: 0.875rem;
20934
+ height: var(--v-date-picker-controls-height, 56px);
20935
+ padding-top: 4px;
20936
+ padding-bottom: 4px;
20937
+ padding-inline-start: 6px;
20938
+ padding-inline-end: 12px;
20842
20939
  }
20843
- .v-color-picker.v-sheet.v-picker {
20844
- border-radius: 4px;
20940
+ .v-date-picker-controls > .v-btn:first-child {
20941
+ text-transform: none;
20942
+ font-weight: 400;
20943
+ line-height: initial;
20944
+ letter-spacing: initial;
20845
20945
  }
20846
-
20847
- .v-color-picker__controls {
20848
- display: flex;
20849
- flex-direction: column;
20850
- padding: 16px;
20946
+ .v-date-picker-controls--variant-classic {
20947
+ padding-inline-start: 12px;
20851
20948
  }
20852
-
20853
- .v-color-picker--flat {
20854
- 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));
20949
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20950
+ opacity: 0.7;
20855
20951
  }
20856
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20857
- 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));
20858
- }.v-combobox .v-field .v-text-field__prefix,
20859
- .v-combobox .v-field .v-text-field__suffix,
20860
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20861
- cursor: text;
20952
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20953
+ cursor: pointer;
20862
20954
  }
20863
- .v-combobox .v-field .v-field__input > input {
20864
- flex: 1 1;
20955
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20956
+ opacity: 1;
20865
20957
  }
20866
- .v-combobox .v-field input {
20867
- min-width: 64px;
20958
+ .v-date-picker-controls .v-btn:last-child {
20959
+ margin-inline-start: 4px;
20868
20960
  }
20869
- .v-combobox .v-field:not(.v-field--focused) input {
20870
- min-width: 0;
20961
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20962
+ transform: rotate(180deg);
20871
20963
  }
20872
- .v-combobox .v-field--dirty .v-combobox__selection {
20873
- margin-inline-end: 2px;
20964
+
20965
+ .v-date-picker-controls__date {
20966
+ margin-inline-end: 4px;
20874
20967
  }
20875
- .v-combobox .v-combobox__selection-text {
20876
- overflow: hidden;
20877
- text-overflow: ellipsis;
20878
- white-space: nowrap;
20968
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20969
+ margin: auto;
20970
+ text-align: center;
20879
20971
  }
20880
20972
 
20881
- .v-combobox__content {
20882
- overflow: hidden;
20973
+ .v-date-picker-controls__month {
20974
+ display: flex;
20883
20975
  }
20884
- .v-combobox__content {
20885
- 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));
20976
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20977
+ flex-direction: row-reverse;
20886
20978
  }
20887
- .v-combobox__content {
20888
- border-radius: 4px;
20979
+
20980
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20981
+ flex: 1 0 auto;
20889
20982
  }
20890
- .v-combobox__mask {
20891
- background: rgb(var(--v-theme-surface-light));
20983
+
20984
+ .v-date-picker__title {
20985
+ display: inline-block;
20986
+ }.v-date-picker-header {
20987
+ align-items: flex-end;
20988
+ height: 70px;
20989
+ display: grid;
20990
+ grid-template-areas: "prepend content append";
20991
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
20992
+ overflow: hidden;
20993
+ padding-inline: 24px 12px;
20994
+ padding-bottom: 12px;
20892
20995
  }
20893
- .v-combobox__selection {
20894
- display: inline-flex;
20895
- align-items: center;
20896
- height: 1.5rem;
20897
- letter-spacing: inherit;
20898
- line-height: inherit;
20899
- max-width: calc(100% - 2px - 2px);
20996
+
20997
+ .v-date-picker-header__append {
20998
+ grid-area: append;
20900
20999
  }
20901
- .v-combobox__selection:first-child {
20902
- margin-inline-start: 0;
21000
+
21001
+ .v-date-picker-header__prepend {
21002
+ grid-area: prepend;
21003
+ padding-inline-start: 8px;
20903
21004
  }
20904
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20905
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20906
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20907
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20908
- top: 0px;
21005
+
21006
+ .v-date-picker-header__content {
21007
+ align-items: center;
21008
+ display: inline-flex;
21009
+ font-size: 32px;
21010
+ line-height: 40px;
21011
+ grid-area: content;
21012
+ justify-content: space-between;
20909
21013
  }
20910
- .v-combobox--selecting-index .v-combobox__selection {
20911
- opacity: var(--v-medium-emphasis-opacity);
21014
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21015
+ cursor: pointer;
20912
21016
  }
20913
- .v-combobox--selecting-index .v-combobox__selection--selected {
20914
- opacity: 1;
21017
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21018
+ opacity: 0.7;
20915
21019
  }
20916
- .v-combobox--selecting-index .v-field__input > input {
20917
- caret-color: transparent;
21020
+
21021
+ .date-picker-header-transition-enter-active,
21022
+ .date-picker-header-reverse-transition-enter-active {
21023
+ transition-duration: 0.3s;
21024
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20918
21025
  }
20919
- .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20920
- flex: 1 1;
20921
- position: absolute;
20922
- left: 0;
20923
- right: 0;
20924
- width: 100%;
20925
- padding-inline: inherit;
21026
+ .date-picker-header-transition-leave-active,
21027
+ .date-picker-header-reverse-transition-leave-active {
21028
+ transition-duration: 0.3s;
21029
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20926
21030
  }
20927
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20928
- transition: none;
21031
+
21032
+ .date-picker-header-transition-enter-from {
21033
+ transform: translate(0, 100%);
20929
21034
  }
20930
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
21035
+ .date-picker-header-transition-leave-to {
20931
21036
  opacity: 0;
21037
+ transform: translate(0, -100%);
20932
21038
  }
20933
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
21039
+
21040
+ .date-picker-header-reverse-transition-enter-from {
21041
+ transform: translate(0, -100%);
21042
+ }
21043
+ .date-picker-header-reverse-transition-leave-to {
20934
21044
  opacity: 0;
21045
+ transform: translate(0, 100%);
21046
+ }.v-date-picker {
21047
+ overflow: hidden;
21048
+ width: 328px;
20935
21049
  }
20936
- .v-combobox__menu-icon {
20937
- margin-inline-start: 4px;
20938
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21050
+ .v-date-picker--show-week {
21051
+ width: 368px;
21052
+ }.v-date-picker-month {
21053
+ display: flex;
21054
+ justify-content: center;
21055
+ padding: 0 12px 8px;
21056
+ --v-date-picker-month-day-diff: 4px;
20939
21057
  }
20940
- .v-combobox--active-menu .v-combobox__menu-icon {
20941
- transform: rotate(180deg);
20942
- }.v-counter {
20943
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20944
- flex: 0 1 auto;
20945
- font-size: 12px;
20946
- transition-duration: 150ms;
21058
+
21059
+ .v-date-picker-month__weeks {
21060
+ display: grid;
21061
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21062
+ column-gap: 4px;
21063
+ font-size: 0.85rem;
21064
+ }
21065
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
21066
+ grid-row-gap: 0;
21067
+ }
21068
+
21069
+ .v-date-picker-month__weekday {
21070
+ font-size: 0.85rem;
21071
+ }
21072
+
21073
+ .v-date-picker-month__days {
21074
+ display: grid;
21075
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21076
+ column-gap: 4px;
21077
+ flex: 1 1;
21078
+ justify-content: space-around;
21079
+ }
21080
+
21081
+ .v-date-picker-month__day {
21082
+ align-items: center;
21083
+ display: flex;
21084
+ justify-content: center;
21085
+ position: relative;
21086
+ height: 40px;
21087
+ width: 40px;
21088
+ }
21089
+ .v-date-picker-month__day--selected .v-btn {
21090
+ background-color: rgb(var(--v-theme-surface-variant));
21091
+ color: rgb(var(--v-theme-on-surface-variant));
21092
+ }
21093
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21094
+ --v-btn-height: 24px;
21095
+ --v-btn-size: 0.85rem;
21096
+ }
21097
+ .v-date-picker-month__day--week {
21098
+ font-size: var(--v-btn-size);
21099
+ }
21100
+
21101
+ .v-date-picker-month__day--adjacent {
21102
+ opacity: 0.5;
21103
+ }
21104
+
21105
+ .v-date-picker-month__day--hide-adjacent {
21106
+ opacity: 0;
21107
+ }.v-date-picker-months {
21108
+ height: 288px;
21109
+ }
21110
+
21111
+ .v-date-picker-months__content {
21112
+ align-items: center;
21113
+ display: grid;
21114
+ flex: 1 1;
21115
+ height: inherit;
21116
+ justify-content: space-around;
21117
+ grid-template-columns: repeat(2, 1fr);
21118
+ grid-gap: 0px 24px;
21119
+ padding-inline-start: 36px;
21120
+ padding-inline-end: 36px;
21121
+ }
21122
+ .v-date-picker-months__content .v-btn {
21123
+ text-transform: none;
21124
+ padding-inline-start: 8px;
21125
+ padding-inline-end: 8px;
21126
+ }.v-date-picker-years {
21127
+ height: 288px;
21128
+ overflow-y: scroll;
21129
+ }
21130
+
21131
+ .v-date-picker-years__content {
21132
+ display: grid;
21133
+ flex: 1 1;
21134
+ justify-content: space-around;
21135
+ grid-template-columns: repeat(3, 1fr);
21136
+ gap: 8px 24px;
21137
+ padding-inline: 32px;
21138
+ }
21139
+ .v-date-picker-years__content .v-btn {
21140
+ padding-inline: 8px;
20947
21141
  }.v-data-table {
20948
21142
  width: 100%;
20949
21143
  }
@@ -21162,369 +21356,321 @@ html.overflow-y-hidden {
21162
21356
  }
21163
21357
  .v-data-table-footer__page {
21164
21358
  padding: 0 8px;
21165
- }.v-date-picker-controls {
21166
- display: flex;
21359
+ }.v-dialog {
21167
21360
  align-items: center;
21168
- justify-content: space-between;
21169
- font-size: 0.875rem;
21170
- height: var(--v-date-picker-controls-height, 56px);
21171
- padding-top: 4px;
21172
- padding-bottom: 4px;
21173
- padding-inline-start: 6px;
21174
- padding-inline-end: 12px;
21361
+ justify-content: center;
21362
+ margin: auto;
21175
21363
  }
21176
- .v-date-picker-controls > .v-btn:first-child {
21177
- text-transform: none;
21178
- font-weight: 400;
21179
- line-height: initial;
21180
- letter-spacing: initial;
21364
+ .v-dialog > .v-overlay__content {
21365
+ max-height: calc(100% - 48px);
21366
+ width: calc(100% - 48px);
21367
+ max-width: calc(100% - 48px);
21368
+ margin: 24px;
21181
21369
  }
21182
- .v-date-picker-controls--variant-classic {
21183
- padding-inline-start: 12px;
21370
+ .v-dialog > .v-overlay__content,
21371
+ .v-dialog > .v-overlay__content > form {
21372
+ display: flex;
21373
+ flex-direction: column;
21374
+ min-height: 0;
21184
21375
  }
21185
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21186
- opacity: 0.7;
21376
+ .v-dialog > .v-overlay__content > .v-card,
21377
+ .v-dialog > .v-overlay__content > .v-sheet,
21378
+ .v-dialog > .v-overlay__content > form > .v-card,
21379
+ .v-dialog > .v-overlay__content > form > .v-sheet {
21380
+ --v-scrollbar-offset: 0px;
21381
+ border-radius: 4px;
21382
+ overflow-y: auto;
21383
+ flex: 1 1 100%;
21187
21384
  }
21188
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21189
- cursor: pointer;
21385
+ .v-dialog > .v-overlay__content > .v-card,
21386
+ .v-dialog > .v-overlay__content > .v-sheet,
21387
+ .v-dialog > .v-overlay__content > form > .v-card,
21388
+ .v-dialog > .v-overlay__content > form > .v-sheet {
21389
+ box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21190
21390
  }
21191
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21192
- opacity: 1;
21391
+ .v-dialog > .v-overlay__content > .v-card,
21392
+ .v-dialog > .v-overlay__content > form > .v-card {
21393
+ display: flex;
21394
+ flex-direction: column;
21193
21395
  }
21194
- .v-date-picker-controls .v-btn:last-child {
21195
- margin-inline-start: 4px;
21396
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item,
21397
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
21398
+ padding: 16px 24px;
21196
21399
  }
21197
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21198
- transform: rotate(180deg);
21400
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
21401
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
21402
+ padding-top: 0;
21403
+ }
21404
+ .v-dialog > .v-overlay__content > .v-card > .v-card-text,
21405
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
21406
+ font-size: inherit;
21407
+ letter-spacing: 0.03125em;
21408
+ line-height: inherit;
21409
+ padding: 16px 24px 24px;
21410
+ }
21411
+ .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
21412
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
21413
+ justify-content: flex-end;
21199
21414
  }
21200
21415
 
21201
- .v-date-picker-controls__date {
21202
- margin-inline-end: 4px;
21416
+ .v-dialog--fullscreen {
21417
+ --v-scrollbar-offset: 0px;
21203
21418
  }
21204
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21205
- margin: auto;
21206
- text-align: center;
21419
+ .v-dialog--fullscreen > .v-overlay__content {
21420
+ border-radius: 0;
21421
+ margin: 0;
21422
+ padding: 0;
21423
+ width: 100%;
21424
+ height: 100%;
21425
+ max-width: 100%;
21426
+ max-height: 100%;
21427
+ overflow-y: auto;
21428
+ top: 0;
21429
+ left: 0;
21430
+ }
21431
+ .v-dialog--fullscreen > .v-overlay__content > .v-card,
21432
+ .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
21433
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
21434
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
21435
+ min-height: 100%;
21436
+ min-width: 100%;
21437
+ border-radius: 0;
21207
21438
  }
21208
21439
 
21209
- .v-date-picker-controls__month {
21440
+ .v-dialog--scrollable > .v-overlay__content > form,
21441
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
21442
+ max-height: 100%;
21443
+ max-width: 100%;
21444
+ }
21445
+ .v-dialog--scrollable > .v-overlay__content,
21446
+ .v-dialog--scrollable > .v-overlay__content > .v-card,
21447
+ .v-dialog--scrollable > .v-overlay__content > form,
21448
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
21210
21449
  display: flex;
21450
+ flex: 1 1 100%;
21451
+ flex-direction: column;
21211
21452
  }
21212
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21213
- flex-direction: row-reverse;
21453
+ .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
21454
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
21455
+ -webkit-backface-visibility: hidden;
21456
+ backface-visibility: hidden;
21457
+ overflow-y: auto;
21458
+ }.v-expansion-panel {
21459
+ background-color: rgb(var(--v-theme-surface));
21460
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21214
21461
  }
21215
-
21216
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21217
- flex: 1 0 auto;
21462
+ .v-expansion-panel:not(:first-child)::after {
21463
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21218
21464
  }
21219
-
21220
- .v-date-picker__title {
21221
- display: inline-block;
21222
- }.v-date-picker-header {
21223
- align-items: flex-end;
21224
- height: 70px;
21225
- display: grid;
21226
- grid-template-areas: "prepend content append";
21227
- grid-template-columns: min-content minmax(0, 1fr) min-content;
21228
- overflow: hidden;
21229
- padding-inline: 24px 12px;
21230
- padding-bottom: 12px;
21465
+ .v-expansion-panel--disabled .v-expansion-panel-title {
21466
+ color: rgba(var(--v-theme-on-surface), 0.26);
21231
21467
  }
21232
-
21233
- .v-date-picker-header__append {
21234
- grid-area: append;
21468
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
21469
+ opacity: 0.4615384615;
21235
21470
  }
21236
21471
 
21237
- .v-date-picker-header__prepend {
21238
- grid-area: prepend;
21239
- padding-inline-start: 8px;
21240
- }
21241
-
21242
- .v-date-picker-header__content {
21243
- align-items: center;
21244
- display: inline-flex;
21245
- font-size: 32px;
21246
- line-height: 40px;
21247
- grid-area: content;
21248
- justify-content: space-between;
21249
- }
21250
- .v-date-picker-header--clickable .v-date-picker-header__content {
21251
- cursor: pointer;
21252
- }
21253
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21254
- opacity: 0.7;
21255
- }
21256
-
21257
- .date-picker-header-transition-enter-active,
21258
- .date-picker-header-reverse-transition-enter-active {
21259
- transition-duration: 0.3s;
21260
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21472
+ .v-expansion-panels {
21473
+ display: flex;
21474
+ flex-wrap: wrap;
21475
+ justify-content: center;
21476
+ list-style-type: none;
21477
+ padding: 0;
21478
+ width: 100%;
21479
+ position: relative;
21480
+ z-index: 1;
21261
21481
  }
21262
- .date-picker-header-transition-leave-active,
21263
- .date-picker-header-reverse-transition-leave-active {
21264
- transition-duration: 0.3s;
21265
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21482
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21483
+ border-bottom-left-radius: 0 !important;
21484
+ border-bottom-right-radius: 0 !important;
21266
21485
  }
21267
-
21268
- .date-picker-header-transition-enter-from {
21269
- transform: translate(0, 100%);
21486
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21487
+ border-top-left-radius: 0 !important;
21488
+ border-top-right-radius: 0 !important;
21270
21489
  }
21271
- .date-picker-header-transition-leave-to {
21272
- opacity: 0;
21273
- transform: translate(0, -100%);
21490
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21491
+ border-bottom-left-radius: 0 !important;
21492
+ border-bottom-right-radius: 0 !important;
21274
21493
  }
21275
-
21276
- .date-picker-header-reverse-transition-enter-from {
21277
- transform: translate(0, -100%);
21494
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21495
+ border-top-left-radius: 0 !important;
21496
+ border-top-right-radius: 0 !important;
21278
21497
  }
21279
- .date-picker-header-reverse-transition-leave-to {
21280
- opacity: 0;
21281
- transform: translate(0, 100%);
21282
- }.v-date-picker-month {
21283
- display: flex;
21284
- justify-content: center;
21285
- padding: 0 12px 8px;
21286
- --v-date-picker-month-day-diff: 4px;
21498
+ .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
21499
+ border-bottom-left-radius: 0 !important;
21500
+ border-bottom-right-radius: 0 !important;
21287
21501
  }
21288
-
21289
- .v-date-picker-month__weeks {
21290
- display: grid;
21291
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21292
- column-gap: 4px;
21293
- font-size: 0.85rem;
21502
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
21503
+ border-top-left-radius: 0 !important;
21504
+ border-top-right-radius: 0 !important;
21294
21505
  }
21295
- .v-date-picker-month__weeks + .v-date-picker-month__days {
21296
- grid-row-gap: 0;
21506
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
21507
+ border-bottom-left-radius: initial;
21508
+ border-bottom-right-radius: initial;
21297
21509
  }
21298
-
21299
- .v-date-picker-month__weekday {
21300
- font-size: 0.85rem;
21510
+ .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
21511
+ border-radius: 0 !important;
21301
21512
  }
21302
-
21303
- .v-date-picker-month__days {
21304
- display: grid;
21305
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21306
- column-gap: 4px;
21307
- flex: 1 1;
21308
- justify-content: space-around;
21513
+ .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
21514
+ transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
21309
21515
  }
21310
21516
 
21311
- .v-date-picker-month__day {
21312
- align-items: center;
21313
- display: flex;
21314
- justify-content: center;
21517
+ .v-expansion-panel {
21518
+ flex: 1 0 100%;
21519
+ max-width: 100%;
21315
21520
  position: relative;
21316
- height: 40px;
21317
- width: 40px;
21318
- }
21319
- .v-date-picker-month__day--selected .v-btn {
21320
- background-color: rgb(var(--v-theme-surface-variant));
21321
- color: rgb(var(--v-theme-on-surface-variant));
21521
+ transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
21522
+ transition-property: margin-top, border-radius, border, max-width;
21523
+ border-radius: 4px;
21322
21524
  }
21323
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21324
- --v-btn-height: 24px;
21325
- --v-btn-size: 0.85rem;
21525
+ .v-expansion-panel:not(:first-child)::after {
21526
+ border-top-style: solid;
21527
+ border-top-width: thin;
21528
+ content: "";
21529
+ left: 0;
21530
+ position: absolute;
21531
+ right: 0;
21532
+ top: 0;
21533
+ transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
21326
21534
  }
21327
- .v-date-picker-month__day--week {
21328
- font-size: var(--v-btn-size);
21535
+ .v-expansion-panel--disabled .v-expansion-panel-title {
21536
+ pointer-events: none;
21329
21537
  }
21330
-
21331
- .v-date-picker-month__day--adjacent {
21332
- opacity: 0.5;
21538
+ .v-expansion-panel--active:not(:first-child),
21539
+ .v-expansion-panel--active + .v-expansion-panel {
21540
+ margin-top: 16px;
21333
21541
  }
21334
-
21335
- .v-date-picker-month__day--hide-adjacent {
21542
+ .v-expansion-panel--active:not(:first-child)::after,
21543
+ .v-expansion-panel--active + .v-expansion-panel::after {
21336
21544
  opacity: 0;
21337
- }.v-date-picker-years {
21338
- height: 288px;
21339
- overflow-y: scroll;
21340
- }
21341
-
21342
- .v-date-picker-years__content {
21343
- display: grid;
21344
- flex: 1 1;
21345
- justify-content: space-around;
21346
- grid-template-columns: repeat(3, 1fr);
21347
- gap: 8px 24px;
21348
- padding-inline: 32px;
21349
21545
  }
21350
- .v-date-picker-years__content .v-btn {
21351
- padding-inline: 8px;
21352
- }.v-date-picker {
21353
- overflow: hidden;
21354
- width: 328px;
21546
+ .v-expansion-panel--active > .v-expansion-panel-title {
21547
+ border-bottom-left-radius: 0;
21548
+ border-bottom-right-radius: 0;
21355
21549
  }
21356
- .v-date-picker--show-week {
21357
- width: 368px;
21358
- }.v-date-picker-months {
21359
- height: 288px;
21550
+ .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
21551
+ min-height: 64px;
21360
21552
  }
21361
21553
 
21362
- .v-date-picker-months__content {
21363
- align-items: center;
21364
- display: grid;
21365
- flex: 1 1;
21366
- height: inherit;
21367
- justify-content: space-around;
21368
- grid-template-columns: repeat(2, 1fr);
21369
- grid-gap: 0px 24px;
21370
- padding-inline-start: 36px;
21371
- padding-inline-end: 36px;
21554
+ .v-expansion-panel__shadow {
21555
+ border-radius: inherit;
21556
+ z-index: -1;
21372
21557
  }
21373
- .v-date-picker-months__content .v-btn {
21374
- text-transform: none;
21375
- padding-inline-start: 8px;
21376
- padding-inline-end: 8px;
21377
- }.v-dialog {
21378
- align-items: center;
21379
- justify-content: center;
21380
- margin: auto;
21558
+ .v-expansion-panel__shadow {
21559
+ position: absolute;
21560
+ top: 0;
21561
+ left: 0;
21562
+ width: 100%;
21563
+ height: 100%;
21381
21564
  }
21382
- .v-dialog > .v-overlay__content {
21383
- max-height: calc(100% - 48px);
21384
- width: calc(100% - 48px);
21385
- max-width: calc(100% - 48px);
21386
- margin: 24px;
21565
+ .v-expansion-panel__shadow {
21566
+ 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));
21387
21567
  }
21388
- .v-dialog > .v-overlay__content,
21389
- .v-dialog > .v-overlay__content > form {
21568
+
21569
+ .v-expansion-panel-title {
21570
+ align-items: center;
21571
+ text-align: start;
21572
+ border-radius: inherit;
21390
21573
  display: flex;
21391
- flex-direction: column;
21392
- min-height: 0;
21574
+ font-size: 0.9375rem;
21575
+ line-height: 1;
21576
+ min-height: 48px;
21577
+ outline: none;
21578
+ padding: 16px 24px;
21579
+ position: relative;
21580
+ transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
21581
+ width: 100%;
21582
+ justify-content: space-between;
21393
21583
  }
21394
- .v-dialog > .v-overlay__content > .v-card,
21395
- .v-dialog > .v-overlay__content > .v-sheet,
21396
- .v-dialog > .v-overlay__content > form > .v-card,
21397
- .v-dialog > .v-overlay__content > form > .v-sheet {
21398
- --v-scrollbar-offset: 0px;
21399
- border-radius: 4px;
21400
- overflow-y: auto;
21401
- flex: 1 1 100%;
21584
+ .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
21585
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21402
21586
  }
21403
- .v-dialog > .v-overlay__content > .v-card,
21404
- .v-dialog > .v-overlay__content > .v-sheet,
21405
- .v-dialog > .v-overlay__content > form > .v-card,
21406
- .v-dialog > .v-overlay__content > form > .v-sheet {
21407
- box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21587
+ .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
21588
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21408
21589
  }
21409
- .v-dialog > .v-overlay__content > .v-card,
21410
- .v-dialog > .v-overlay__content > form > .v-card {
21411
- display: flex;
21412
- flex-direction: column;
21590
+ @supports not selector(:focus-visible) {
21591
+ .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
21592
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21593
+ }
21413
21594
  }
21414
- .v-dialog > .v-overlay__content > .v-card > .v-card-item,
21415
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
21416
- padding: 16px 24px;
21595
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
21596
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
21417
21597
  }
21418
- .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
21419
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
21420
- padding-top: 0;
21598
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
21599
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
21421
21600
  }
21422
- .v-dialog > .v-overlay__content > .v-card > .v-card-text,
21423
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
21424
- font-size: inherit;
21425
- letter-spacing: 0.03125em;
21426
- line-height: inherit;
21427
- padding: 16px 24px 24px;
21601
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
21602
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21428
21603
  }
21429
- .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
21430
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
21431
- justify-content: flex-end;
21604
+ @supports not selector(:focus-visible) {
21605
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
21606
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21607
+ }
21432
21608
  }
21433
21609
 
21434
- .v-dialog--fullscreen {
21435
- --v-scrollbar-offset: 0px;
21610
+ .v-expansion-panel-title__overlay {
21611
+ background-color: currentColor;
21612
+ border-radius: inherit;
21613
+ opacity: 0;
21436
21614
  }
21437
- .v-dialog--fullscreen > .v-overlay__content {
21438
- border-radius: 0;
21439
- margin: 0;
21440
- padding: 0;
21441
- width: 100%;
21442
- height: 100%;
21443
- max-width: 100%;
21444
- max-height: 100%;
21445
- overflow-y: auto;
21615
+ .v-expansion-panel-title__overlay {
21616
+ position: absolute;
21446
21617
  top: 0;
21447
21618
  left: 0;
21448
- }
21449
- .v-dialog--fullscreen > .v-overlay__content > .v-card,
21450
- .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
21451
- .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
21452
- .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
21453
- min-height: 100%;
21454
- min-width: 100%;
21455
- border-radius: 0;
21619
+ width: 100%;
21620
+ height: 100%;
21456
21621
  }
21457
21622
 
21458
- .v-dialog--scrollable > .v-overlay__content > form,
21459
- .v-dialog--scrollable > .v-overlay__content > form > .v-card {
21460
- max-height: 100%;
21461
- max-width: 100%;
21623
+ .v-expansion-panel-title__icon {
21624
+ display: inline-flex;
21625
+ margin-bottom: -4px;
21626
+ margin-top: -4px;
21627
+ -webkit-user-select: none;
21628
+ user-select: none;
21629
+ margin-inline-start: auto;
21462
21630
  }
21463
- .v-dialog--scrollable > .v-overlay__content,
21464
- .v-dialog--scrollable > .v-overlay__content > .v-card,
21465
- .v-dialog--scrollable > .v-overlay__content > form,
21466
- .v-dialog--scrollable > .v-overlay__content > form > .v-card {
21631
+
21632
+ .v-expansion-panel-text {
21467
21633
  display: flex;
21468
- flex: 1 1 100%;
21469
- flex-direction: column;
21470
21634
  }
21471
- .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
21472
- .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
21473
- -webkit-backface-visibility: hidden;
21474
- backface-visibility: hidden;
21475
- overflow-y: auto;
21476
- }.v-divider {
21477
- display: block;
21478
- flex: 1 1 100%;
21479
- height: 0px;
21480
- max-height: 0px;
21481
- opacity: var(--v-border-opacity);
21482
- transition: inherit;
21635
+ .v-expansion-panel-text__wrapper {
21636
+ padding: 8px 24px 16px;
21637
+ flex: 1 1 auto;
21638
+ max-width: 100%;
21483
21639
  }
21484
- .v-divider {
21485
- border-style: solid;
21486
- border-width: thin 0 0 0;
21640
+
21641
+ .v-expansion-panels--variant-accordion > .v-expansion-panel {
21642
+ margin-top: 0;
21487
21643
  }
21488
- .v-divider--vertical {
21489
- align-self: stretch;
21490
- border-width: 0 thin 0 0;
21491
- display: inline-flex;
21492
- height: auto;
21493
- margin-left: -1px;
21494
- max-height: 100%;
21495
- max-width: 0px;
21496
- vertical-align: text-bottom;
21497
- width: 0px;
21644
+ .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
21645
+ opacity: 1;
21498
21646
  }
21499
- .v-divider--inset:not(.v-divider--vertical) {
21500
- max-width: calc(100% - 72px);
21501
- margin-inline-start: 72px;
21647
+
21648
+ .v-expansion-panels--variant-popout > .v-expansion-panel {
21649
+ max-width: calc(100% - 32px);
21502
21650
  }
21503
- .v-divider--inset.v-divider--vertical {
21504
- margin-bottom: 8px;
21505
- margin-top: 8px;
21506
- max-height: calc(100% - 16px);
21651
+ .v-expansion-panels--variant-popout > .v-expansion-panel--active {
21652
+ max-width: calc(100% + 16px);
21507
21653
  }
21508
21654
 
21509
- .v-divider__content {
21510
- padding: 0 16px;
21511
- text-wrap: nowrap;
21655
+ .v-expansion-panels--variant-inset > .v-expansion-panel {
21656
+ max-width: 100%;
21512
21657
  }
21513
- .v-divider__wrapper--vertical .v-divider__content {
21514
- padding: 4px 0;
21658
+ .v-expansion-panels--variant-inset > .v-expansion-panel--active {
21659
+ max-width: calc(100% - 32px);
21515
21660
  }
21516
21661
 
21517
- .v-divider__wrapper {
21518
- display: flex;
21519
- align-items: center;
21520
- justify-content: center;
21662
+ .v-expansion-panels--flat > .v-expansion-panel::after {
21663
+ border-top: none;
21521
21664
  }
21522
- .v-divider__wrapper--vertical {
21523
- flex-direction: column;
21524
- height: 100%;
21665
+ .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
21666
+ display: none;
21525
21667
  }
21526
- .v-divider__wrapper--vertical .v-divider {
21527
- margin: 0 auto;
21668
+
21669
+ .v-expansion-panels--tile {
21670
+ border-radius: 0;
21671
+ }
21672
+ .v-expansion-panels--tile > .v-expansion-panel {
21673
+ border-radius: 0;
21528
21674
  }.v-empty-state {
21529
21675
  align-items: center;
21530
21676
  display: flex;
@@ -21578,93 +21724,20 @@ html.overflow-y-hidden {
21578
21724
  padding: 0 16px;
21579
21725
  text-align: center;
21580
21726
  }
21581
-
21582
- .v-empty-state__content {
21583
- padding: 24px 0;
21584
- }
21585
-
21586
- .v-empty-state__actions {
21587
- display: flex;
21588
- gap: 8px;
21589
- padding: 16px;
21590
- }
21591
-
21592
- .v-empty-state__action-btn.v-btn {
21593
- background-color: initial;
21594
- color: initial;
21595
- }.v-fab {
21596
- align-items: center;
21597
- display: inline-flex;
21598
- flex: 1 1 auto;
21599
- pointer-events: none;
21600
- position: relative;
21601
- transition-duration: 0.2s;
21602
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21603
- vertical-align: middle;
21604
- }
21605
- .v-fab .v-btn {
21606
- pointer-events: auto;
21607
- }
21608
- .v-fab .v-btn--variant-elevated {
21609
- box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21610
- }
21611
- .v-fab--app, .v-fab--absolute {
21612
- display: flex;
21613
- }
21614
- .v-fab--absolute {
21615
- position: absolute;
21616
- inset: 0;
21617
- }
21618
- .v-fab--start, .v-fab--left {
21619
- justify-content: flex-start;
21620
- }
21621
- .v-fab--center {
21622
- align-items: center;
21623
- justify-content: center;
21624
- }
21625
- .v-fab--end, .v-fab--right {
21626
- justify-content: flex-end;
21627
- }
21628
- .v-fab--bottom {
21629
- align-items: flex-end;
21630
- }
21631
- .v-fab--top {
21632
- align-items: flex-start;
21633
- }
21634
- .v-fab--extended .v-btn {
21635
- border-radius: 9999px !important;
21636
- }
21637
-
21638
- .v-fab__container {
21639
- align-self: center;
21640
- display: inline-flex;
21641
- vertical-align: middle;
21642
- }
21643
- .v-fab--app .v-fab__container {
21644
- margin: 12px;
21645
- position: fixed;
21646
- }
21647
- .v-fab--absolute .v-fab__container {
21648
- position: absolute;
21649
- z-index: 4;
21650
- }
21651
- .v-fab--offset.v-fab--top .v-fab__container {
21652
- transform: translateY(-50%);
21653
- }
21654
- .v-fab--offset.v-fab--bottom .v-fab__container {
21655
- transform: translateY(50%);
21656
- }
21657
- .v-fab--top .v-fab__container {
21658
- top: 0;
21659
- }
21660
- .v-fab--bottom .v-fab__container {
21661
- bottom: 0;
21727
+
21728
+ .v-empty-state__content {
21729
+ padding: 24px 0;
21662
21730
  }
21663
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21664
- left: 0;
21731
+
21732
+ .v-empty-state__actions {
21733
+ display: flex;
21734
+ gap: 8px;
21735
+ padding: 16px;
21665
21736
  }
21666
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21667
- right: 0;
21737
+
21738
+ .v-empty-state__action-btn.v-btn {
21739
+ background-color: initial;
21740
+ color: initial;
21668
21741
  }/* region INPUT */
21669
21742
  .v-field {
21670
21743
  display: grid;
@@ -22258,7 +22331,80 @@ textarea.v-field__input::placeholder {
22258
22331
  opacity: 0;
22259
22332
  }
22260
22333
 
22261
- /* endregion */.v-file-input--hide.v-input .v-field,
22334
+ /* endregion */.v-fab {
22335
+ align-items: center;
22336
+ display: inline-flex;
22337
+ flex: 1 1 auto;
22338
+ pointer-events: none;
22339
+ position: relative;
22340
+ transition-duration: 0.2s;
22341
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22342
+ vertical-align: middle;
22343
+ }
22344
+ .v-fab .v-btn {
22345
+ pointer-events: auto;
22346
+ }
22347
+ .v-fab .v-btn--variant-elevated {
22348
+ box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22349
+ }
22350
+ .v-fab--app, .v-fab--absolute {
22351
+ display: flex;
22352
+ }
22353
+ .v-fab--absolute {
22354
+ position: absolute;
22355
+ inset: 0;
22356
+ }
22357
+ .v-fab--start, .v-fab--left {
22358
+ justify-content: flex-start;
22359
+ }
22360
+ .v-fab--center {
22361
+ align-items: center;
22362
+ justify-content: center;
22363
+ }
22364
+ .v-fab--end, .v-fab--right {
22365
+ justify-content: flex-end;
22366
+ }
22367
+ .v-fab--bottom {
22368
+ align-items: flex-end;
22369
+ }
22370
+ .v-fab--top {
22371
+ align-items: flex-start;
22372
+ }
22373
+ .v-fab--extended .v-btn {
22374
+ border-radius: 9999px !important;
22375
+ }
22376
+
22377
+ .v-fab__container {
22378
+ align-self: center;
22379
+ display: inline-flex;
22380
+ vertical-align: middle;
22381
+ }
22382
+ .v-fab--app .v-fab__container {
22383
+ margin: 12px;
22384
+ position: fixed;
22385
+ }
22386
+ .v-fab--absolute .v-fab__container {
22387
+ position: absolute;
22388
+ z-index: 4;
22389
+ }
22390
+ .v-fab--offset.v-fab--top .v-fab__container {
22391
+ transform: translateY(-50%);
22392
+ }
22393
+ .v-fab--offset.v-fab--bottom .v-fab__container {
22394
+ transform: translateY(50%);
22395
+ }
22396
+ .v-fab--top .v-fab__container {
22397
+ top: 0;
22398
+ }
22399
+ .v-fab--bottom .v-fab__container {
22400
+ bottom: 0;
22401
+ }
22402
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
22403
+ left: 0;
22404
+ }
22405
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
22406
+ right: 0;
22407
+ }.v-file-input--hide.v-input .v-field,
22262
22408
  .v-file-input--hide.v-input .v-input__control,
22263
22409
  .v-file-input--hide.v-input .v-input__details {
22264
22410
  display: none;
@@ -22431,6 +22577,63 @@ textarea.v-field__input::placeholder {
22431
22577
 
22432
22578
  .v-img__gradient {
22433
22579
  background-repeat: no-repeat;
22580
+ }.v-divider {
22581
+ display: block;
22582
+ flex: 1 1 100%;
22583
+ height: 0px;
22584
+ max-height: 0px;
22585
+ opacity: var(--v-border-opacity);
22586
+ transition: inherit;
22587
+ }
22588
+ .v-divider {
22589
+ border-style: solid;
22590
+ border-width: thin 0 0 0;
22591
+ }
22592
+ .v-divider--vertical {
22593
+ align-self: stretch;
22594
+ border-width: 0 thin 0 0;
22595
+ display: inline-flex;
22596
+ height: auto;
22597
+ margin-left: -1px;
22598
+ max-height: 100%;
22599
+ max-width: 0px;
22600
+ vertical-align: text-bottom;
22601
+ width: 0px;
22602
+ }
22603
+ .v-divider--inset:not(.v-divider--vertical) {
22604
+ max-width: calc(100% - 72px);
22605
+ margin-inline-start: 72px;
22606
+ }
22607
+ .v-divider--inset.v-divider--vertical {
22608
+ margin-bottom: 8px;
22609
+ margin-top: 8px;
22610
+ max-height: calc(100% - 16px);
22611
+ }
22612
+
22613
+ .v-divider__content {
22614
+ padding: 0 16px;
22615
+ text-wrap: nowrap;
22616
+ }
22617
+ .v-divider__wrapper--vertical .v-divider__content {
22618
+ padding: 4px 0;
22619
+ }
22620
+
22621
+ .v-divider__wrapper {
22622
+ display: flex;
22623
+ align-items: center;
22624
+ justify-content: center;
22625
+ }
22626
+ .v-divider__wrapper--vertical {
22627
+ flex-direction: column;
22628
+ height: 100%;
22629
+ }
22630
+ .v-divider__wrapper--vertical .v-divider {
22631
+ margin: 0 auto;
22632
+ }.v-item-group {
22633
+ flex: 0 1 auto;
22634
+ max-width: 100%;
22635
+ position: relative;
22636
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22434
22637
  }.v-infinite-scroll--horizontal {
22435
22638
  display: flex;
22436
22639
  flex-direction: row;
@@ -22615,26 +22818,6 @@ textarea.v-field__input::placeholder {
22615
22818
 
22616
22819
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22617
22820
  padding-top: calc(var(--v-input-padding-top) + 0px);
22618
- }.v-item-group {
22619
- flex: 0 1 auto;
22620
- max-width: 100%;
22621
- position: relative;
22622
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22623
- }.v-layout {
22624
- --v-scrollbar-offset: 0px;
22625
- display: flex;
22626
- flex: 1 1 auto;
22627
- }
22628
- .v-layout--full-height {
22629
- --v-scrollbar-offset: inherit;
22630
- height: 100%;
22631
- }.v-layout-item {
22632
- position: absolute;
22633
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22634
- }
22635
-
22636
- .v-layout-item--absolute {
22637
- position: absolute;
22638
22821
  }.v-label {
22639
22822
  align-items: center;
22640
22823
  color: inherit;
@@ -22650,115 +22833,21 @@ textarea.v-field__input::placeholder {
22650
22833
 
22651
22834
  .v-label--clickable {
22652
22835
  cursor: pointer;
22653
- }.v-list {
22654
- overflow: auto;
22655
- padding: 8px 0;
22656
- position: relative;
22657
- outline: none;
22658
- }
22659
- .v-list {
22660
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22661
- border-style: solid;
22662
- border-width: 0;
22663
- }
22664
- .v-list--border {
22665
- border-width: thin;
22666
- box-shadow: none;
22667
- }
22668
- .v-list {
22669
- 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));
22670
- }
22671
- .v-list {
22672
- border-radius: 0;
22673
- }
22674
- .v-list {
22675
- background: rgba(var(--v-theme-surface));
22676
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22677
- }
22678
- .v-list--disabled {
22679
- pointer-events: none;
22680
- -webkit-user-select: none;
22681
- user-select: none;
22682
- }
22683
- .v-list--nav {
22684
- padding-inline: 8px;
22685
- }
22686
- .v-list--rounded {
22687
- border-radius: 4px;
22688
- }
22689
- .v-list--subheader {
22690
- padding-top: 0;
22691
- }
22692
-
22693
- .v-list-img {
22694
- border-radius: inherit;
22695
- display: flex;
22696
- height: 100%;
22697
- left: 0;
22698
- overflow: hidden;
22699
- position: absolute;
22700
- top: 0;
22701
- width: 100%;
22702
- z-index: -1;
22703
- }
22704
-
22705
- .v-list-subheader {
22706
- align-items: center;
22707
- background: inherit;
22708
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22709
- display: flex;
22710
- font-size: 0.875rem;
22711
- font-weight: 400;
22712
- line-height: 1.375rem;
22713
- padding-inline-end: 16px;
22714
- min-height: 40px;
22715
- transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
22716
- }
22717
- .v-list-subheader__text {
22718
- overflow: hidden;
22719
- text-overflow: ellipsis;
22720
- white-space: nowrap;
22721
- }
22722
- .v-list--density-default .v-list-subheader {
22723
- min-height: 40px;
22724
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22725
- }
22726
-
22727
- .v-list--density-comfortable .v-list-subheader {
22728
- min-height: 36px;
22729
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22730
- }
22731
-
22732
- .v-list--density-compact .v-list-subheader {
22733
- min-height: 32px;
22734
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22735
- }
22736
-
22737
- .v-list-subheader--inset {
22738
- --indent-padding: 56px;
22739
- }
22740
- .v-list--nav .v-list-subheader {
22741
- font-size: 0.75rem;
22836
+ }.v-layout {
22837
+ --v-scrollbar-offset: 0px;
22838
+ display: flex;
22839
+ flex: 1 1 auto;
22742
22840
  }
22743
- .v-list-subheader--sticky {
22744
- background: inherit;
22745
- left: 0;
22746
- position: sticky;
22747
- top: 0;
22748
- z-index: 1;
22841
+ .v-layout--full-height {
22842
+ --v-scrollbar-offset: inherit;
22843
+ height: 100%;
22844
+ }.v-layout-item {
22845
+ position: absolute;
22846
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22749
22847
  }
22750
22848
 
22751
- .v-list__overlay {
22752
- background-color: currentColor;
22753
- border-radius: inherit;
22754
- bottom: 0;
22755
- left: 0;
22756
- opacity: 0;
22757
- pointer-events: none;
22849
+ .v-layout-item--absolute {
22758
22850
  position: absolute;
22759
- right: 0;
22760
- top: 0;
22761
- transition: opacity 0.2s ease-in-out;
22762
22851
  }.v-list-item {
22763
22852
  align-items: center;
22764
22853
  display: grid;
@@ -23226,8 +23315,136 @@ textarea.v-field__input::placeholder {
23226
23315
  }
23227
23316
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23228
23317
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23318
+ }.v-list {
23319
+ overflow: auto;
23320
+ padding: 8px 0;
23321
+ position: relative;
23322
+ outline: none;
23323
+ }
23324
+ .v-list {
23325
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23326
+ border-style: solid;
23327
+ border-width: 0;
23328
+ }
23329
+ .v-list--border {
23330
+ border-width: thin;
23331
+ box-shadow: none;
23332
+ }
23333
+ .v-list {
23334
+ 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));
23335
+ }
23336
+ .v-list {
23337
+ border-radius: 0;
23338
+ }
23339
+ .v-list {
23340
+ background: rgba(var(--v-theme-surface));
23341
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23342
+ }
23343
+ .v-list--disabled {
23344
+ pointer-events: none;
23345
+ -webkit-user-select: none;
23346
+ user-select: none;
23347
+ }
23348
+ .v-list--nav {
23349
+ padding-inline: 8px;
23350
+ }
23351
+ .v-list--rounded {
23352
+ border-radius: 4px;
23353
+ }
23354
+ .v-list--subheader {
23355
+ padding-top: 0;
23356
+ }
23357
+
23358
+ .v-list-img {
23359
+ border-radius: inherit;
23360
+ display: flex;
23361
+ height: 100%;
23362
+ left: 0;
23363
+ overflow: hidden;
23364
+ position: absolute;
23365
+ top: 0;
23366
+ width: 100%;
23367
+ z-index: -1;
23368
+ }
23369
+
23370
+ .v-list-subheader {
23371
+ align-items: center;
23372
+ background: inherit;
23373
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23374
+ display: flex;
23375
+ font-size: 0.875rem;
23376
+ font-weight: 400;
23377
+ line-height: 1.375rem;
23378
+ padding-inline-end: 16px;
23379
+ min-height: 40px;
23380
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
23381
+ }
23382
+ .v-list-subheader__text {
23383
+ overflow: hidden;
23384
+ text-overflow: ellipsis;
23385
+ white-space: nowrap;
23386
+ }
23387
+ .v-list--density-default .v-list-subheader {
23388
+ min-height: 40px;
23389
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23390
+ }
23391
+
23392
+ .v-list--density-comfortable .v-list-subheader {
23393
+ min-height: 36px;
23394
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23395
+ }
23396
+
23397
+ .v-list--density-compact .v-list-subheader {
23398
+ min-height: 32px;
23399
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23400
+ }
23401
+
23402
+ .v-list-subheader--inset {
23403
+ --indent-padding: 56px;
23404
+ }
23405
+ .v-list--nav .v-list-subheader {
23406
+ font-size: 0.75rem;
23407
+ }
23408
+ .v-list-subheader--sticky {
23409
+ background: inherit;
23410
+ left: 0;
23411
+ position: sticky;
23412
+ top: 0;
23413
+ z-index: 1;
23414
+ }
23415
+
23416
+ .v-list__overlay {
23417
+ background-color: currentColor;
23418
+ border-radius: inherit;
23419
+ bottom: 0;
23420
+ left: 0;
23421
+ opacity: 0;
23422
+ pointer-events: none;
23423
+ position: absolute;
23424
+ right: 0;
23425
+ top: 0;
23426
+ transition: opacity 0.2s ease-in-out;
23229
23427
  }.v-locale-provider {
23230
23428
  display: contents;
23429
+ }.v-menu > .v-overlay__content {
23430
+ display: flex;
23431
+ flex-direction: column;
23432
+ }
23433
+ .v-menu > .v-overlay__content {
23434
+ border-radius: 4px;
23435
+ }
23436
+ .v-menu > .v-overlay__content > .v-card,
23437
+ .v-menu > .v-overlay__content > .v-sheet,
23438
+ .v-menu > .v-overlay__content > .v-list {
23439
+ background: rgb(var(--v-theme-surface));
23440
+ border-radius: inherit;
23441
+ overflow: auto;
23442
+ height: 100%;
23443
+ }
23444
+ .v-menu > .v-overlay__content > .v-card,
23445
+ .v-menu > .v-overlay__content > .v-sheet,
23446
+ .v-menu > .v-overlay__content > .v-list {
23447
+ 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));
23231
23448
  }.v-main {
23232
23449
  flex: 1 0 auto;
23233
23450
  max-width: 100%;
@@ -23435,25 +23652,64 @@ textarea.v-field__input::placeholder {
23435
23652
  .v-number-input__control .v-btn {
23436
23653
  background-color: transparent;
23437
23654
  border-radius: 0;
23438
- }.v-menu > .v-overlay__content {
23655
+ }.v-otp-input {
23656
+ align-items: center;
23439
23657
  display: flex;
23440
- flex-direction: column;
23658
+ justify-content: center;
23659
+ padding: 0.5rem 0;
23660
+ position: relative;
23441
23661
  }
23442
- .v-menu > .v-overlay__content {
23662
+ .v-otp-input {
23443
23663
  border-radius: 4px;
23444
23664
  }
23445
- .v-menu > .v-overlay__content > .v-card,
23446
- .v-menu > .v-overlay__content > .v-sheet,
23447
- .v-menu > .v-overlay__content > .v-list {
23448
- background: rgb(var(--v-theme-surface));
23665
+ .v-otp-input .v-field {
23666
+ height: 100%;
23667
+ }
23668
+
23669
+ .v-otp-input__divider {
23670
+ margin: 0 8px;
23671
+ }
23672
+
23673
+ .v-otp-input__content {
23674
+ align-items: center;
23675
+ display: flex;
23676
+ gap: 0.5rem;
23677
+ height: 64px;
23678
+ padding: 0.5rem;
23679
+ justify-content: center;
23680
+ max-width: 320px;
23681
+ position: relative;
23449
23682
  border-radius: inherit;
23450
- overflow: auto;
23683
+ }
23684
+ .v-otp-input--divided .v-otp-input__content {
23685
+ max-width: 360px;
23686
+ }
23687
+
23688
+ .v-otp-input__field {
23689
+ color: inherit;
23690
+ font-size: 1.25rem;
23451
23691
  height: 100%;
23692
+ outline: none;
23693
+ text-align: center;
23694
+ width: 100%;
23452
23695
  }
23453
- .v-menu > .v-overlay__content > .v-card,
23454
- .v-menu > .v-overlay__content > .v-sheet,
23455
- .v-menu > .v-overlay__content > .v-list {
23456
- 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));
23696
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23697
+ -webkit-appearance: none;
23698
+ margin: 0;
23699
+ }
23700
+ .v-otp-input__field[type=number] {
23701
+ -moz-appearance: textfield;
23702
+ }
23703
+
23704
+ .v-otp-input__loader {
23705
+ align-items: center;
23706
+ display: flex;
23707
+ height: 100%;
23708
+ justify-content: center;
23709
+ width: 100%;
23710
+ }
23711
+ .v-otp-input__loader .v-progress-linear {
23712
+ position: absolute;
23457
23713
  }.v-overlay-container {
23458
23714
  contain: layout;
23459
23715
  left: 0;
@@ -23508,88 +23764,126 @@ html.v-overlay-scroll-blocked {
23508
23764
  top: 0;
23509
23765
  }
23510
23766
 
23511
- .v-overlay--absolute {
23512
- position: absolute;
23767
+ .v-overlay--absolute {
23768
+ position: absolute;
23769
+ }
23770
+
23771
+ .v-overlay--contained .v-overlay__scrim {
23772
+ position: absolute;
23773
+ }
23774
+
23775
+ .v-overlay--scroll-blocked {
23776
+ padding-inline-end: var(--v-scrollbar-offset);
23777
+ }.v-pagination__list {
23778
+ display: inline-flex;
23779
+ list-style-type: none;
23780
+ justify-content: center;
23781
+ width: 100%;
23782
+ }
23783
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23784
+ margin: 0.3rem;
23785
+ }.v-progress-circular {
23786
+ align-items: center;
23787
+ display: inline-flex;
23788
+ justify-content: center;
23789
+ position: relative;
23790
+ vertical-align: middle;
23791
+ }
23792
+ .v-progress-circular > svg {
23793
+ width: 100%;
23794
+ height: 100%;
23795
+ margin: auto;
23796
+ position: absolute;
23797
+ top: 0;
23798
+ bottom: 0;
23799
+ left: 0;
23800
+ right: 0;
23801
+ z-index: 0;
23802
+ }
23803
+
23804
+ .v-progress-circular__content {
23805
+ align-items: center;
23806
+ display: flex;
23807
+ justify-content: center;
23808
+ }
23809
+
23810
+ .v-progress-circular__underlay {
23811
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
23812
+ stroke: currentColor;
23813
+ z-index: 1;
23513
23814
  }
23514
23815
 
23515
- .v-overlay--contained .v-overlay__scrim {
23516
- position: absolute;
23816
+ .v-progress-circular__overlay {
23817
+ stroke: currentColor;
23818
+ transition: all 0.2s ease-in-out, stroke-width 0s;
23819
+ z-index: 2;
23517
23820
  }
23518
23821
 
23519
- .v-overlay--scroll-blocked {
23520
- padding-inline-end: var(--v-scrollbar-offset);
23521
- }.v-pagination__list {
23522
- display: inline-flex;
23523
- list-style-type: none;
23524
- justify-content: center;
23525
- width: 100%;
23822
+ .v-progress-circular--size-x-small {
23823
+ height: 16px;
23824
+ width: 16px;
23526
23825
  }
23527
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23528
- margin: 0.3rem;
23529
- }.v-otp-input {
23530
- align-items: center;
23531
- display: flex;
23532
- justify-content: center;
23533
- padding: 0.5rem 0;
23534
- position: relative;
23826
+ .v-progress-circular--size-small {
23827
+ height: 24px;
23828
+ width: 24px;
23535
23829
  }
23536
- .v-otp-input {
23537
- border-radius: 4px;
23830
+ .v-progress-circular--size-default {
23831
+ height: 32px;
23832
+ width: 32px;
23538
23833
  }
23539
- .v-otp-input .v-field {
23540
- height: 100%;
23834
+ .v-progress-circular--size-large {
23835
+ height: 48px;
23836
+ width: 48px;
23541
23837
  }
23542
-
23543
- .v-otp-input__divider {
23544
- margin: 0 8px;
23838
+ .v-progress-circular--size-x-large {
23839
+ height: 64px;
23840
+ width: 64px;
23545
23841
  }
23546
23842
 
23547
- .v-otp-input__content {
23548
- align-items: center;
23549
- display: flex;
23550
- gap: 0.5rem;
23551
- height: 64px;
23552
- padding: 0.5rem;
23553
- justify-content: center;
23554
- max-width: 320px;
23555
- position: relative;
23556
- border-radius: inherit;
23843
+ .v-progress-circular--indeterminate > svg {
23844
+ animation: progress-circular-rotate 1.4s linear infinite;
23845
+ transform-origin: center center;
23846
+ transition: all 0.2s ease-in-out;
23557
23847
  }
23558
- .v-otp-input--divided .v-otp-input__content {
23559
- max-width: 360px;
23848
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
23849
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
23850
+ stroke-dasharray: 25, 200;
23851
+ stroke-dashoffset: 0;
23852
+ stroke-linecap: round;
23853
+ transform-origin: center center;
23854
+ transform: rotate(-90deg);
23560
23855
  }
23561
23856
 
23562
- .v-otp-input__field {
23563
- color: inherit;
23564
- font-size: 1.25rem;
23565
- height: 100%;
23566
- outline: none;
23567
- text-align: center;
23568
- width: 100%;
23569
- }
23570
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23571
- -webkit-appearance: none;
23572
- margin: 0;
23857
+ .v-progress-circular--disable-shrink > svg {
23858
+ animation-duration: 0.7s;
23573
23859
  }
23574
- .v-otp-input__field[type=number] {
23575
- -moz-appearance: textfield;
23860
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
23861
+ animation: none;
23576
23862
  }
23577
23863
 
23578
- .v-otp-input__loader {
23579
- align-items: center;
23580
- display: flex;
23581
- height: 100%;
23582
- justify-content: center;
23583
- width: 100%;
23864
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
23865
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
23866
+ animation-play-state: paused !important;
23584
23867
  }
23585
- .v-otp-input__loader .v-progress-linear {
23586
- position: absolute;
23587
- }.v-parallax {
23588
- position: relative;
23589
- overflow: hidden;
23868
+
23869
+ @keyframes progress-circular-dash {
23870
+ 0% {
23871
+ stroke-dasharray: 1, 200;
23872
+ stroke-dashoffset: 0px;
23873
+ }
23874
+ 50% {
23875
+ stroke-dasharray: 100, 200;
23876
+ stroke-dashoffset: -15px;
23877
+ }
23878
+ 100% {
23879
+ stroke-dasharray: 100, 200;
23880
+ stroke-dashoffset: -124px;
23881
+ }
23590
23882
  }
23591
- .v-parallax--active > .v-img__img {
23592
- will-change: transform;
23883
+ @keyframes progress-circular-rotate {
23884
+ 100% {
23885
+ transform: rotate(270deg);
23886
+ }
23593
23887
  }.v-progress-linear {
23594
23888
  background: transparent;
23595
23889
  overflow: hidden;
@@ -23818,6 +24112,18 @@ html.v-overlay-scroll-blocked {
23818
24112
  0% {
23819
24113
  background-position-x: var(--v-progress-linear-height);
23820
24114
  }
24115
+ }.v-radio-group > .v-input__control {
24116
+ flex-direction: column;
24117
+ }
24118
+ .v-radio-group > .v-input__control > .v-label {
24119
+ margin-inline-start: 16px;
24120
+ }
24121
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24122
+ padding-inline-start: 6px;
24123
+ margin-top: 8px;
24124
+ }
24125
+ .v-radio-group .v-input__details {
24126
+ padding-inline: 16px;
23821
24127
  }.v-slider .v-slider__container input {
23822
24128
  cursor: default;
23823
24129
  padding: 0;
@@ -23928,18 +24234,6 @@ html.v-overlay-scroll-blocked {
23928
24234
  opacity: 0;
23929
24235
  position: absolute;
23930
24236
  width: 0;
23931
- }.v-radio-group > .v-input__control {
23932
- flex-direction: column;
23933
- }
23934
- .v-radio-group > .v-input__control > .v-label {
23935
- margin-inline-start: 16px;
23936
- }
23937
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23938
- padding-inline-start: 6px;
23939
- margin-top: 8px;
23940
- }
23941
- .v-radio-group .v-input__details {
23942
- padding-inline: 16px;
23943
24237
  }.v-responsive {
23944
24238
  display: flex;
23945
24239
  flex: 1 0 auto;
@@ -23966,7 +24260,13 @@ html.v-overlay-scroll-blocked {
23966
24260
  flex: 1 0 0px;
23967
24261
  transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23968
24262
  pointer-events: none;
23969
- }.v-select .v-field .v-text-field__prefix,
24263
+ }.v-select--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
24264
+ .v-select--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
24265
+ .v-select--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
24266
+ .v-select--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
24267
+ top: 0px;
24268
+ }
24269
+ .v-select .v-field .v-text-field__prefix,
23970
24270
  .v-select .v-field .v-text-field__suffix,
23971
24271
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23972
24272
  cursor: pointer;
@@ -24005,18 +24305,127 @@ html.v-overlay-scroll-blocked {
24005
24305
  line-height: inherit;
24006
24306
  max-width: 100%;
24007
24307
  }
24008
- .v-select .v-select__selection:first-child {
24009
- margin-inline-start: 0;
24308
+ .v-select .v-select__selection:first-child {
24309
+ margin-inline-start: 0;
24310
+ }
24311
+ .v-select--selected .v-field .v-field__input > input {
24312
+ opacity: 0;
24313
+ }
24314
+ .v-select__menu-icon {
24315
+ margin-inline-start: 4px;
24316
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24317
+ }
24318
+ .v-select--active-menu .v-select__menu-icon {
24319
+ transform: rotate(180deg);
24320
+ }.v-selection-control {
24321
+ align-items: center;
24322
+ contain: layout;
24323
+ display: flex;
24324
+ flex: 1 0;
24325
+ grid-area: control;
24326
+ position: relative;
24327
+ -webkit-user-select: none;
24328
+ user-select: none;
24329
+ }
24330
+ .v-selection-control .v-label {
24331
+ white-space: normal;
24332
+ word-break: break-word;
24333
+ height: 100%;
24334
+ opacity: 1;
24335
+ }
24336
+ .v-selection-control--disabled {
24337
+ opacity: var(--v-disabled-opacity);
24338
+ pointer-events: none;
24339
+ }
24340
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
24341
+ color: rgb(var(--v-theme-error));
24342
+ }
24343
+ .v-selection-control--inline {
24344
+ display: inline-flex;
24345
+ flex: 0 0 auto;
24346
+ min-width: 0;
24347
+ max-width: 100%;
24348
+ }
24349
+ .v-selection-control--inline .v-label {
24350
+ width: auto;
24351
+ }
24352
+ .v-selection-control--density-default {
24353
+ --v-selection-control-size: 40px;
24354
+ }
24355
+
24356
+ .v-selection-control--density-comfortable {
24357
+ --v-selection-control-size: 36px;
24358
+ }
24359
+
24360
+ .v-selection-control--density-compact {
24361
+ --v-selection-control-size: 28px;
24362
+ }
24363
+
24364
+ .v-selection-control__wrapper {
24365
+ width: var(--v-selection-control-size);
24366
+ height: var(--v-selection-control-size);
24367
+ display: inline-flex;
24368
+ align-items: center;
24369
+ position: relative;
24370
+ justify-content: center;
24371
+ flex: none;
24372
+ }
24373
+
24374
+ .v-selection-control__input {
24375
+ width: var(--v-selection-control-size);
24376
+ height: var(--v-selection-control-size);
24377
+ align-items: center;
24378
+ display: flex;
24379
+ flex: none;
24380
+ justify-content: center;
24381
+ position: relative;
24382
+ border-radius: 50%;
24383
+ }
24384
+ .v-selection-control__input input {
24385
+ cursor: pointer;
24386
+ position: absolute;
24387
+ left: 0;
24388
+ top: 0;
24389
+ width: 100%;
24390
+ height: 100%;
24391
+ opacity: 0;
24392
+ }
24393
+ .v-selection-control__input::before {
24394
+ border-radius: 100%;
24395
+ background-color: currentColor;
24396
+ opacity: 0;
24397
+ pointer-events: none;
24398
+ }
24399
+ .v-selection-control__input::before {
24400
+ content: "";
24401
+ position: absolute;
24402
+ top: 0;
24403
+ left: 0;
24404
+ width: 100%;
24405
+ height: 100%;
24406
+ }
24407
+ .v-selection-control__input:hover::before {
24408
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24409
+ }
24410
+ .v-selection-control__input > .v-icon {
24411
+ opacity: var(--v-medium-emphasis-opacity);
24412
+ }
24413
+ .v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
24414
+ opacity: 1;
24010
24415
  }
24011
- .v-select--selected .v-field .v-field__input > input {
24012
- opacity: 0;
24416
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
24417
+ color: rgb(var(--v-theme-error));
24013
24418
  }
24014
- .v-select__menu-icon {
24015
- margin-inline-start: 4px;
24016
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24419
+ .v-selection-control--focus-visible .v-selection-control__input::before {
24420
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24421
+ }.v-selection-control-group {
24422
+ grid-area: control;
24423
+ display: flex;
24424
+ flex-direction: column;
24017
24425
  }
24018
- .v-select--active-menu .v-select__menu-icon {
24019
- transform: rotate(180deg);
24426
+ .v-selection-control-group--inline {
24427
+ flex-direction: row;
24428
+ flex-wrap: wrap;
24020
24429
  }.v-sheet {
24021
24430
  display: block;
24022
24431
  }
@@ -24053,14 +24462,6 @@ html.v-overlay-scroll-blocked {
24053
24462
  }
24054
24463
  .v-sheet--rounded {
24055
24464
  border-radius: 4px;
24056
- }.v-selection-control-group {
24057
- grid-area: control;
24058
- display: flex;
24059
- flex-direction: column;
24060
- }
24061
- .v-selection-control-group--inline {
24062
- flex-direction: row;
24063
- flex-wrap: wrap;
24064
24465
  }.v-skeleton-loader {
24065
24466
  align-items: center;
24066
24467
  background: rgb(var(--v-theme-surface));
@@ -24286,61 +24687,6 @@ html.v-overlay-scroll-blocked {
24286
24687
  100% {
24287
24688
  transform: translateX(100%);
24288
24689
  }
24289
- }.v-slide-group {
24290
- display: flex;
24291
- overflow: hidden;
24292
- }
24293
-
24294
- .v-slide-group__next,
24295
- .v-slide-group__prev {
24296
- align-items: center;
24297
- display: flex;
24298
- flex: 0 1 52px;
24299
- justify-content: center;
24300
- min-width: 52px;
24301
- cursor: pointer;
24302
- }
24303
- .v-slide-group__next--disabled,
24304
- .v-slide-group__prev--disabled {
24305
- pointer-events: none;
24306
- opacity: var(--v-disabled-opacity);
24307
- }
24308
-
24309
- .v-slide-group__content {
24310
- display: flex;
24311
- flex: 1 0 auto;
24312
- position: relative;
24313
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24314
- white-space: nowrap;
24315
- }
24316
- .v-slide-group__content > * {
24317
- white-space: initial;
24318
- }
24319
-
24320
- .v-slide-group__container {
24321
- contain: content;
24322
- display: flex;
24323
- flex: 1 1 auto;
24324
- overflow-x: auto;
24325
- overflow-y: hidden;
24326
- scrollbar-width: none;
24327
- scrollbar-color: rgba(0, 0, 0, 0);
24328
- }
24329
- .v-slide-group__container::-webkit-scrollbar {
24330
- display: none;
24331
- }
24332
-
24333
- .v-slide-group--vertical {
24334
- max-height: inherit;
24335
- }
24336
- .v-slide-group--vertical,
24337
- .v-slide-group--vertical .v-slide-group__container,
24338
- .v-slide-group--vertical .v-slide-group__content {
24339
- flex-direction: column;
24340
- }
24341
- .v-slide-group--vertical .v-slide-group__container {
24342
- overflow-x: hidden;
24343
- overflow-y: auto;
24344
24690
  }.v-snackbar {
24345
24691
  justify-content: center;
24346
24692
  z-index: 10000;
@@ -24481,47 +24827,6 @@ html.v-overlay-scroll-blocked {
24481
24827
  }
24482
24828
  .v-snackbar-transition-leave-to {
24483
24829
  opacity: 0;
24484
- }.v-speed-dial__content {
24485
- gap: 8px;
24486
- }
24487
- .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 {
24488
- flex-direction: row;
24489
- }
24490
- .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 {
24491
- flex-direction: row-reverse;
24492
- }
24493
- .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 {
24494
- flex-direction: column-reverse;
24495
- }
24496
- .v-speed-dial__content > *:nth-child(1) {
24497
- transition-delay: 0s;
24498
- }
24499
- .v-speed-dial__content > *:nth-child(2) {
24500
- transition-delay: 0.05s;
24501
- }
24502
- .v-speed-dial__content > *:nth-child(3) {
24503
- transition-delay: 0.1s;
24504
- }
24505
- .v-speed-dial__content > *:nth-child(4) {
24506
- transition-delay: 0.15s;
24507
- }
24508
- .v-speed-dial__content > *:nth-child(5) {
24509
- transition-delay: 0.2s;
24510
- }
24511
- .v-speed-dial__content > *:nth-child(6) {
24512
- transition-delay: 0.25s;
24513
- }
24514
- .v-speed-dial__content > *:nth-child(7) {
24515
- transition-delay: 0.3s;
24516
- }
24517
- .v-speed-dial__content > *:nth-child(8) {
24518
- transition-delay: 0.35s;
24519
- }
24520
- .v-speed-dial__content > *:nth-child(9) {
24521
- transition-delay: 0.4s;
24522
- }
24523
- .v-speed-dial__content > *:nth-child(10) {
24524
- transition-delay: 0.45s;
24525
24830
  }.v-stepper.v-sheet {
24526
24831
  overflow: hidden;
24527
24832
  }
@@ -24697,6 +25002,102 @@ html.v-overlay-scroll-blocked {
24697
25002
  left: 0;
24698
25003
  width: 100%;
24699
25004
  height: 100%;
25005
+ }.v-speed-dial__content {
25006
+ gap: 8px;
25007
+ }
25008
+ .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 {
25009
+ flex-direction: row;
25010
+ }
25011
+ .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 {
25012
+ flex-direction: row-reverse;
25013
+ }
25014
+ .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 {
25015
+ flex-direction: column-reverse;
25016
+ }
25017
+ .v-speed-dial__content > *:nth-child(1) {
25018
+ transition-delay: 0s;
25019
+ }
25020
+ .v-speed-dial__content > *:nth-child(2) {
25021
+ transition-delay: 0.05s;
25022
+ }
25023
+ .v-speed-dial__content > *:nth-child(3) {
25024
+ transition-delay: 0.1s;
25025
+ }
25026
+ .v-speed-dial__content > *:nth-child(4) {
25027
+ transition-delay: 0.15s;
25028
+ }
25029
+ .v-speed-dial__content > *:nth-child(5) {
25030
+ transition-delay: 0.2s;
25031
+ }
25032
+ .v-speed-dial__content > *:nth-child(6) {
25033
+ transition-delay: 0.25s;
25034
+ }
25035
+ .v-speed-dial__content > *:nth-child(7) {
25036
+ transition-delay: 0.3s;
25037
+ }
25038
+ .v-speed-dial__content > *:nth-child(8) {
25039
+ transition-delay: 0.35s;
25040
+ }
25041
+ .v-speed-dial__content > *:nth-child(9) {
25042
+ transition-delay: 0.4s;
25043
+ }
25044
+ .v-speed-dial__content > *:nth-child(10) {
25045
+ transition-delay: 0.45s;
25046
+ }.v-slide-group {
25047
+ display: flex;
25048
+ overflow: hidden;
25049
+ }
25050
+
25051
+ .v-slide-group__next,
25052
+ .v-slide-group__prev {
25053
+ align-items: center;
25054
+ display: flex;
25055
+ flex: 0 1 52px;
25056
+ justify-content: center;
25057
+ min-width: 52px;
25058
+ cursor: pointer;
25059
+ }
25060
+ .v-slide-group__next--disabled,
25061
+ .v-slide-group__prev--disabled {
25062
+ pointer-events: none;
25063
+ opacity: var(--v-disabled-opacity);
25064
+ }
25065
+
25066
+ .v-slide-group__content {
25067
+ display: flex;
25068
+ flex: 1 0 auto;
25069
+ position: relative;
25070
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
25071
+ white-space: nowrap;
25072
+ }
25073
+ .v-slide-group__content > * {
25074
+ white-space: initial;
25075
+ }
25076
+
25077
+ .v-slide-group__container {
25078
+ contain: content;
25079
+ display: flex;
25080
+ flex: 1 1 auto;
25081
+ overflow-x: auto;
25082
+ overflow-y: hidden;
25083
+ scrollbar-width: none;
25084
+ scrollbar-color: rgba(0, 0, 0, 0);
25085
+ }
25086
+ .v-slide-group__container::-webkit-scrollbar {
25087
+ display: none;
25088
+ }
25089
+
25090
+ .v-slide-group--vertical {
25091
+ max-height: inherit;
25092
+ }
25093
+ .v-slide-group--vertical,
25094
+ .v-slide-group--vertical .v-slide-group__container,
25095
+ .v-slide-group--vertical .v-slide-group__content {
25096
+ flex-direction: column;
25097
+ }
25098
+ .v-slide-group--vertical .v-slide-group__container {
25099
+ overflow-x: hidden;
25100
+ overflow-y: auto;
24700
25101
  }.v-switch .v-label {
24701
25102
  padding-inline-start: 10px;
24702
25103
  }
@@ -24879,35 +25280,49 @@ html.v-overlay-scroll-blocked {
24879
25280
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
24880
25281
  border-width: 0;
24881
25282
  }
24882
- }.v-tab.v-tab.v-btn {
24883
- height: var(--v-tabs-height);
24884
- border-radius: 0;
24885
- min-width: 90px;
25283
+ }.v-system-bar {
25284
+ align-items: center;
25285
+ display: flex;
25286
+ flex: 1 1 auto;
25287
+ height: 24px;
25288
+ justify-content: flex-end;
25289
+ max-width: 100%;
25290
+ padding-inline: 8px;
25291
+ position: relative;
25292
+ text-align: end;
25293
+ width: 100%;
24886
25294
  }
24887
- .v-slide-group--horizontal .v-tab {
24888
- max-width: 360px;
25295
+ .v-system-bar .v-icon {
25296
+ opacity: var(--v-medium-emphasis-opacity);
24889
25297
  }
24890
- .v-slide-group--vertical .v-tab {
24891
- justify-content: start;
25298
+ .v-system-bar {
25299
+ 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));
25300
+ }
25301
+ .v-system-bar--absolute {
25302
+ position: absolute;
25303
+ }
25304
+ .v-system-bar--fixed {
25305
+ position: fixed;
25306
+ }
25307
+ .v-system-bar {
25308
+ background: rgba(var(--v-theme-surface-light));
25309
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24892
25310
  }
24893
-
24894
- .v-tab__slider {
24895
- position: absolute;
24896
- bottom: 0;
24897
- left: 0;
24898
- height: 2px;
24899
- width: 100%;
24900
- background: currentColor;
24901
- pointer-events: none;
24902
- opacity: 0;
25311
+ .v-system-bar {
25312
+ font-size: 0.75rem;
25313
+ font-weight: 400;
25314
+ letter-spacing: 0.0333333333em;
25315
+ line-height: 1.667;
25316
+ text-transform: none;
24903
25317
  }
24904
- .v-tab--selected .v-tab__slider {
24905
- opacity: 1;
25318
+ .v-system-bar--rounded {
25319
+ border-radius: 0;
24906
25320
  }
24907
- .v-slide-group--vertical .v-tab__slider {
24908
- top: 0;
24909
- height: 100%;
24910
- width: 2px;
25321
+ .v-system-bar--window {
25322
+ height: 32px;
25323
+ }
25324
+ .v-system-bar:not(.v-system-bar--absolute) {
25325
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24911
25326
  }.v-tabs {
24912
25327
  display: flex;
24913
25328
  height: var(--v-tabs-height);
@@ -24974,150 +25389,35 @@ html.v-overlay-scroll-blocked {
24974
25389
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24975
25390
  margin-inline-end: 52px;
24976
25391
  }
24977
- }.v-system-bar {
24978
- align-items: center;
24979
- display: flex;
24980
- flex: 1 1 auto;
24981
- height: 24px;
24982
- justify-content: flex-end;
24983
- max-width: 100%;
24984
- padding-inline: 8px;
24985
- position: relative;
24986
- text-align: end;
24987
- width: 100%;
24988
- }
24989
- .v-system-bar .v-icon {
24990
- opacity: var(--v-medium-emphasis-opacity);
24991
- }
24992
- .v-system-bar {
24993
- 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));
24994
- }
24995
- .v-system-bar--absolute {
24996
- position: absolute;
24997
- }
24998
- .v-system-bar--fixed {
24999
- position: fixed;
25000
- }
25001
- .v-system-bar {
25002
- background: rgba(var(--v-theme-surface-light));
25003
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25004
- }
25005
- .v-system-bar {
25006
- font-size: 0.75rem;
25007
- font-weight: 400;
25008
- letter-spacing: 0.0333333333em;
25009
- line-height: 1.667;
25010
- text-transform: none;
25011
- }
25012
- .v-system-bar--rounded {
25392
+ }.v-tab.v-tab.v-btn {
25393
+ height: var(--v-tabs-height);
25013
25394
  border-radius: 0;
25395
+ min-width: 90px;
25014
25396
  }
25015
- .v-system-bar--window {
25016
- height: 32px;
25017
- }
25018
- .v-system-bar:not(.v-system-bar--absolute) {
25019
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25020
- }.v-selection-control {
25021
- align-items: center;
25022
- contain: layout;
25023
- display: flex;
25024
- flex: 1 0;
25025
- grid-area: control;
25026
- position: relative;
25027
- -webkit-user-select: none;
25028
- user-select: none;
25029
- }
25030
- .v-selection-control .v-label {
25031
- white-space: normal;
25032
- word-break: break-word;
25033
- height: 100%;
25034
- opacity: 1;
25035
- }
25036
- .v-selection-control--disabled {
25037
- opacity: var(--v-disabled-opacity);
25038
- pointer-events: none;
25039
- }
25040
- .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
25041
- color: rgb(var(--v-theme-error));
25042
- }
25043
- .v-selection-control--inline {
25044
- display: inline-flex;
25045
- flex: 0 0 auto;
25046
- min-width: 0;
25047
- max-width: 100%;
25048
- }
25049
- .v-selection-control--inline .v-label {
25050
- width: auto;
25051
- }
25052
- .v-selection-control--density-default {
25053
- --v-selection-control-size: 40px;
25054
- }
25055
-
25056
- .v-selection-control--density-comfortable {
25057
- --v-selection-control-size: 36px;
25058
- }
25059
-
25060
- .v-selection-control--density-compact {
25061
- --v-selection-control-size: 28px;
25397
+ .v-slide-group--horizontal .v-tab {
25398
+ max-width: 360px;
25062
25399
  }
25063
-
25064
- .v-selection-control__wrapper {
25065
- width: var(--v-selection-control-size);
25066
- height: var(--v-selection-control-size);
25067
- display: inline-flex;
25068
- align-items: center;
25069
- position: relative;
25070
- justify-content: center;
25071
- flex: none;
25400
+ .v-slide-group--vertical .v-tab {
25401
+ justify-content: start;
25072
25402
  }
25073
25403
 
25074
- .v-selection-control__input {
25075
- width: var(--v-selection-control-size);
25076
- height: var(--v-selection-control-size);
25077
- align-items: center;
25078
- display: flex;
25079
- flex: none;
25080
- justify-content: center;
25081
- position: relative;
25082
- border-radius: 50%;
25083
- }
25084
- .v-selection-control__input input {
25085
- cursor: pointer;
25404
+ .v-tab__slider {
25086
25405
  position: absolute;
25406
+ bottom: 0;
25087
25407
  left: 0;
25088
- top: 0;
25408
+ height: 2px;
25089
25409
  width: 100%;
25090
- height: 100%;
25410
+ background: currentColor;
25411
+ pointer-events: none;
25091
25412
  opacity: 0;
25092
25413
  }
25093
- .v-selection-control__input::before {
25094
- border-radius: 100%;
25095
- background-color: currentColor;
25096
- opacity: 0;
25097
- pointer-events: none;
25414
+ .v-tab--selected .v-tab__slider {
25415
+ opacity: 1;
25098
25416
  }
25099
- .v-selection-control__input::before {
25100
- content: "";
25101
- position: absolute;
25417
+ .v-slide-group--vertical .v-tab__slider {
25102
25418
  top: 0;
25103
- left: 0;
25104
- width: 100%;
25105
25419
  height: 100%;
25106
- }
25107
- .v-selection-control__input:hover::before {
25108
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
25109
- }
25110
- .v-selection-control__input > .v-icon {
25111
- opacity: var(--v-medium-emphasis-opacity);
25112
- }
25113
- .v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
25114
- opacity: 1;
25115
- }
25116
- .v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
25117
- color: rgb(var(--v-theme-error));
25118
- }
25119
- .v-selection-control--focus-visible .v-selection-control__input::before {
25120
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25420
+ width: 2px;
25121
25421
  }.v-table {
25122
25422
  font-size: 0.875rem;
25123
25423
  transition-duration: 0.28s;
@@ -25256,49 +25556,6 @@ html.v-overlay-scroll-blocked {
25256
25556
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25257
25557
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25258
25558
  border-top: 0px !important;
25259
- }.v-theme-provider {
25260
- background: rgb(var(--v-theme-background));
25261
- color: rgb(var(--v-theme-on-background));
25262
- }.v-textarea .v-field {
25263
- --v-textarea-control-height: var(--v-input-control-height);
25264
- }
25265
- .v-textarea .v-field__field {
25266
- --v-input-control-height: var(--v-textarea-control-height);
25267
- }
25268
- .v-textarea .v-field__input {
25269
- flex: 1 1 auto;
25270
- outline: none;
25271
- -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));
25272
- 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));
25273
- }
25274
- .v-textarea .v-field__input.v-textarea__sizer {
25275
- visibility: hidden;
25276
- position: absolute;
25277
- top: 0;
25278
- left: 0;
25279
- height: 0 !important;
25280
- min-height: 0 !important;
25281
- pointer-events: none;
25282
- }
25283
- .v-textarea--no-resize .v-field__input {
25284
- resize: none;
25285
- }
25286
- .v-textarea .v-field--no-label textarea,
25287
- .v-textarea .v-field--active textarea {
25288
- opacity: 1;
25289
- }
25290
- .v-textarea textarea {
25291
- opacity: 0;
25292
- flex: 1;
25293
- min-width: 0;
25294
- height: 100%;
25295
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25296
- }
25297
- .v-textarea textarea:focus, .v-textarea textarea:active {
25298
- outline: none;
25299
- }
25300
- .v-textarea textarea:invalid {
25301
- box-shadow: none;
25302
25559
  }/* region BLOCK */
25303
25560
  .v-text-field input {
25304
25561
  color: inherit;
@@ -25378,12 +25635,55 @@ html.v-overlay-scroll-blocked {
25378
25635
  .v-field:not(.v-field--reverse) .v-text-field__suffix {
25379
25636
  padding-inline-end: var(--v-field-padding-end);
25380
25637
  }
25381
-
25382
- .v-field.v-field--reverse .v-text-field__suffix {
25383
- padding-inline-start: var(--v-field-padding-start);
25638
+
25639
+ .v-field.v-field--reverse .v-text-field__suffix {
25640
+ padding-inline-start: var(--v-field-padding-start);
25641
+ }
25642
+
25643
+ /* endregion */.v-textarea .v-field {
25644
+ --v-textarea-control-height: var(--v-input-control-height);
25645
+ }
25646
+ .v-textarea .v-field__field {
25647
+ --v-input-control-height: var(--v-textarea-control-height);
25648
+ }
25649
+ .v-textarea .v-field__input {
25650
+ flex: 1 1 auto;
25651
+ outline: none;
25652
+ -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));
25653
+ 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));
25654
+ }
25655
+ .v-textarea .v-field__input.v-textarea__sizer {
25656
+ visibility: hidden;
25657
+ position: absolute;
25658
+ top: 0;
25659
+ left: 0;
25660
+ height: 0 !important;
25661
+ min-height: 0 !important;
25662
+ pointer-events: none;
25663
+ }
25664
+ .v-textarea--no-resize .v-field__input {
25665
+ resize: none;
25666
+ }
25667
+ .v-textarea .v-field--no-label textarea,
25668
+ .v-textarea .v-field--active textarea {
25669
+ opacity: 1;
25670
+ }
25671
+ .v-textarea textarea {
25672
+ opacity: 0;
25673
+ flex: 1;
25674
+ min-width: 0;
25675
+ height: 100%;
25676
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25677
+ }
25678
+ .v-textarea textarea:focus, .v-textarea textarea:active {
25679
+ outline: none;
25384
25680
  }
25385
-
25386
- /* endregion */.v-timeline .v-timeline-divider__dot {
25681
+ .v-textarea textarea:invalid {
25682
+ box-shadow: none;
25683
+ }.v-theme-provider {
25684
+ background: rgb(var(--v-theme-background));
25685
+ color: rgb(var(--v-theme-on-background));
25686
+ }.v-timeline .v-timeline-divider__dot {
25387
25687
  background: rgb(var(--v-theme-surface-light));
25388
25688
  }
25389
25689
  .v-timeline .v-timeline-divider__inner-dot {
@@ -26012,369 +26312,97 @@ html.v-overlay-scroll-blocked {
26012
26312
  .v-window__controls > * {
26013
26313
  pointer-events: auto;
26014
26314
  }
26015
- .v-window--show-arrows-on-hover {
26016
- overflow: hidden;
26017
- }
26018
- .v-window--show-arrows-on-hover .v-window__left {
26019
- transform: translateX(-200%);
26020
- }
26021
- .v-window--show-arrows-on-hover .v-window__right {
26022
- transform: translateX(200%);
26023
- }
26024
- .v-window--show-arrows-on-hover:hover .v-window__left,
26025
- .v-window--show-arrows-on-hover:hover .v-window__right {
26026
- transform: translateX(0);
26027
- }
26028
-
26029
- .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
26030
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
26031
- }
26032
- .v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
26033
- position: absolute !important;
26034
- top: 0;
26035
- width: 100%;
26036
- }
26037
- .v-window-x-transition-enter-from {
26038
- transform: translateX(100%);
26039
- }
26040
- .v-window-x-transition-leave-to {
26041
- transform: translateX(-100%);
26042
- }
26043
- .v-window-x-reverse-transition-enter-from {
26044
- transform: translateX(-100%);
26045
- }
26046
- .v-window-x-reverse-transition-leave-to {
26047
- transform: translateX(100%);
26048
- }
26049
- .v-window-y-transition-enter-from {
26050
- transform: translateY(100%);
26051
- }
26052
- .v-window-y-transition-leave-to {
26053
- transform: translateY(-100%);
26054
- }
26055
- .v-window-y-reverse-transition-enter-from {
26056
- transform: translateY(-100%);
26057
- }
26058
- .v-window-y-reverse-transition-leave-to {
26059
- transform: translateY(100%);
26060
- }.v-expansion-panel {
26061
- background-color: rgb(var(--v-theme-surface));
26062
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
26063
- }
26064
- .v-expansion-panel:not(:first-child)::after {
26065
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26066
- }
26067
- .v-expansion-panel--disabled .v-expansion-panel-title {
26068
- color: rgba(var(--v-theme-on-surface), 0.26);
26069
- }
26070
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
26071
- opacity: 0.4615384615;
26072
- }
26073
-
26074
- .v-expansion-panels {
26075
- display: flex;
26076
- flex-wrap: wrap;
26077
- justify-content: center;
26078
- list-style-type: none;
26079
- padding: 0;
26080
- width: 100%;
26081
- position: relative;
26082
- z-index: 1;
26083
- }
26084
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
26085
- border-bottom-left-radius: 0 !important;
26086
- border-bottom-right-radius: 0 !important;
26087
- }
26088
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
26089
- border-top-left-radius: 0 !important;
26090
- border-top-right-radius: 0 !important;
26091
- }
26092
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
26093
- border-bottom-left-radius: 0 !important;
26094
- border-bottom-right-radius: 0 !important;
26095
- }
26096
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
26097
- border-top-left-radius: 0 !important;
26098
- border-top-right-radius: 0 !important;
26099
- }
26100
- .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
26101
- border-bottom-left-radius: 0 !important;
26102
- border-bottom-right-radius: 0 !important;
26103
- }
26104
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
26105
- border-top-left-radius: 0 !important;
26106
- border-top-right-radius: 0 !important;
26107
- }
26108
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
26109
- border-bottom-left-radius: initial;
26110
- border-bottom-right-radius: initial;
26111
- }
26112
- .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
26113
- border-radius: 0 !important;
26114
- }
26115
- .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
26116
- transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
26117
- }
26118
-
26119
- .v-expansion-panel {
26120
- flex: 1 0 100%;
26121
- max-width: 100%;
26122
- position: relative;
26123
- transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
26124
- transition-property: margin-top, border-radius, border, max-width;
26125
- border-radius: 4px;
26126
- }
26127
- .v-expansion-panel:not(:first-child)::after {
26128
- border-top-style: solid;
26129
- border-top-width: thin;
26130
- content: "";
26131
- left: 0;
26132
- position: absolute;
26133
- right: 0;
26134
- top: 0;
26135
- transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
26136
- }
26137
- .v-expansion-panel--disabled .v-expansion-panel-title {
26138
- pointer-events: none;
26139
- }
26140
- .v-expansion-panel--active:not(:first-child),
26141
- .v-expansion-panel--active + .v-expansion-panel {
26142
- margin-top: 16px;
26143
- }
26144
- .v-expansion-panel--active:not(:first-child)::after,
26145
- .v-expansion-panel--active + .v-expansion-panel::after {
26146
- opacity: 0;
26147
- }
26148
- .v-expansion-panel--active > .v-expansion-panel-title {
26149
- border-bottom-left-radius: 0;
26150
- border-bottom-right-radius: 0;
26151
- }
26152
- .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
26153
- min-height: 64px;
26154
- }
26155
-
26156
- .v-expansion-panel__shadow {
26157
- border-radius: inherit;
26158
- z-index: -1;
26159
- }
26160
- .v-expansion-panel__shadow {
26161
- position: absolute;
26162
- top: 0;
26163
- left: 0;
26164
- width: 100%;
26165
- height: 100%;
26166
- }
26167
- .v-expansion-panel__shadow {
26168
- 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));
26169
- }
26170
-
26171
- .v-expansion-panel-title {
26172
- align-items: center;
26173
- text-align: start;
26174
- border-radius: inherit;
26175
- display: flex;
26176
- font-size: 0.9375rem;
26177
- line-height: 1;
26178
- min-height: 48px;
26179
- outline: none;
26180
- padding: 16px 24px;
26181
- position: relative;
26182
- transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
26183
- width: 100%;
26184
- justify-content: space-between;
26185
- }
26186
- .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
26187
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
26188
- }
26189
- .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
26190
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
26191
- }
26192
- @supports not selector(:focus-visible) {
26193
- .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
26194
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
26195
- }
26196
- }
26197
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
26198
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
26199
- }
26200
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
26201
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
26202
- }
26203
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
26204
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
26205
- }
26206
- @supports not selector(:focus-visible) {
26207
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
26208
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
26209
- }
26210
- }
26211
-
26212
- .v-expansion-panel-title__overlay {
26213
- background-color: currentColor;
26214
- border-radius: inherit;
26215
- opacity: 0;
26216
- }
26217
- .v-expansion-panel-title__overlay {
26218
- position: absolute;
26219
- top: 0;
26220
- left: 0;
26221
- width: 100%;
26222
- height: 100%;
26223
- }
26224
-
26225
- .v-expansion-panel-title__icon {
26226
- display: inline-flex;
26227
- margin-bottom: -4px;
26228
- margin-top: -4px;
26229
- -webkit-user-select: none;
26230
- user-select: none;
26231
- margin-inline-start: auto;
26232
- }
26233
-
26234
- .v-expansion-panel-text {
26235
- display: flex;
26236
- }
26237
- .v-expansion-panel-text__wrapper {
26238
- padding: 8px 24px 16px;
26239
- flex: 1 1 auto;
26240
- max-width: 100%;
26241
- }
26242
-
26243
- .v-expansion-panels--variant-accordion > .v-expansion-panel {
26244
- margin-top: 0;
26245
- }
26246
- .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
26247
- opacity: 1;
26248
- }
26249
-
26250
- .v-expansion-panels--variant-popout > .v-expansion-panel {
26251
- max-width: calc(100% - 32px);
26252
- }
26253
- .v-expansion-panels--variant-popout > .v-expansion-panel--active {
26254
- max-width: calc(100% + 16px);
26255
- }
26256
-
26257
- .v-expansion-panels--variant-inset > .v-expansion-panel {
26258
- max-width: 100%;
26315
+ .v-window--show-arrows-on-hover {
26316
+ overflow: hidden;
26259
26317
  }
26260
- .v-expansion-panels--variant-inset > .v-expansion-panel--active {
26261
- max-width: calc(100% - 32px);
26318
+ .v-window--show-arrows-on-hover .v-window__left {
26319
+ transform: translateX(-200%);
26262
26320
  }
26263
-
26264
- .v-expansion-panels--flat > .v-expansion-panel::after {
26265
- border-top: none;
26321
+ .v-window--show-arrows-on-hover .v-window__right {
26322
+ transform: translateX(200%);
26266
26323
  }
26267
- .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
26268
- display: none;
26324
+ .v-window--show-arrows-on-hover:hover .v-window__left,
26325
+ .v-window--show-arrows-on-hover:hover .v-window__right {
26326
+ transform: translateX(0);
26269
26327
  }
26270
26328
 
26271
- .v-expansion-panels--tile {
26272
- border-radius: 0;
26273
- }
26274
- .v-expansion-panels--tile > .v-expansion-panel {
26275
- border-radius: 0;
26276
- }.v-progress-circular {
26277
- align-items: center;
26278
- display: inline-flex;
26279
- justify-content: center;
26280
- position: relative;
26281
- vertical-align: middle;
26329
+ .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
26330
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
26282
26331
  }
26283
- .v-progress-circular > svg {
26284
- width: 100%;
26285
- height: 100%;
26286
- margin: auto;
26287
- position: absolute;
26332
+ .v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
26333
+ position: absolute !important;
26288
26334
  top: 0;
26289
- bottom: 0;
26290
- left: 0;
26291
- right: 0;
26292
- z-index: 0;
26335
+ width: 100%;
26293
26336
  }
26294
-
26295
- .v-progress-circular__content {
26296
- align-items: center;
26297
- display: flex;
26298
- justify-content: center;
26337
+ .v-window-x-transition-enter-from {
26338
+ transform: translateX(100%);
26299
26339
  }
26300
-
26301
- .v-progress-circular__underlay {
26302
- color: rgba(var(--v-border-color), var(--v-border-opacity));
26303
- stroke: currentColor;
26304
- z-index: 1;
26340
+ .v-window-x-transition-leave-to {
26341
+ transform: translateX(-100%);
26305
26342
  }
26306
-
26307
- .v-progress-circular__overlay {
26308
- stroke: currentColor;
26309
- transition: all 0.2s ease-in-out, stroke-width 0s;
26310
- z-index: 2;
26343
+ .v-window-x-reverse-transition-enter-from {
26344
+ transform: translateX(-100%);
26311
26345
  }
26312
-
26313
- .v-progress-circular--size-x-small {
26314
- height: 16px;
26315
- width: 16px;
26346
+ .v-window-x-reverse-transition-leave-to {
26347
+ transform: translateX(100%);
26316
26348
  }
26317
- .v-progress-circular--size-small {
26318
- height: 24px;
26319
- width: 24px;
26349
+ .v-window-y-transition-enter-from {
26350
+ transform: translateY(100%);
26320
26351
  }
26321
- .v-progress-circular--size-default {
26322
- height: 32px;
26323
- width: 32px;
26352
+ .v-window-y-transition-leave-to {
26353
+ transform: translateY(-100%);
26324
26354
  }
26325
- .v-progress-circular--size-large {
26326
- height: 48px;
26327
- width: 48px;
26355
+ .v-window-y-reverse-transition-enter-from {
26356
+ transform: translateY(-100%);
26328
26357
  }
26329
- .v-progress-circular--size-x-large {
26330
- height: 64px;
26331
- width: 64px;
26358
+ .v-window-y-reverse-transition-leave-to {
26359
+ transform: translateY(100%);
26360
+ }.v-chip-group {
26361
+ display: flex;
26362
+ max-width: 100%;
26363
+ min-width: 0;
26364
+ overflow-x: auto;
26365
+ padding: 4px 0;
26332
26366
  }
26333
-
26334
- .v-progress-circular--indeterminate > svg {
26335
- animation: progress-circular-rotate 1.4s linear infinite;
26336
- transform-origin: center center;
26337
- transition: all 0.2s ease-in-out;
26367
+ .v-chip-group .v-chip {
26368
+ margin: 4px 8px 4px 0;
26338
26369
  }
26339
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
26340
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
26341
- stroke-dasharray: 25, 200;
26342
- stroke-dashoffset: 0;
26343
- stroke-linecap: round;
26344
- transform-origin: center center;
26345
- transform: rotate(-90deg);
26370
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
26371
+ opacity: var(--v-activated-opacity);
26346
26372
  }
26347
26373
 
26348
- .v-progress-circular--disable-shrink > svg {
26349
- animation-duration: 0.7s;
26374
+ .v-chip-group--column .v-slide-group__content {
26375
+ white-space: normal;
26376
+ flex-wrap: wrap;
26377
+ max-width: 100%;
26378
+ }.v-parallax {
26379
+ position: relative;
26380
+ overflow: hidden;
26350
26381
  }
26351
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
26352
- animation: none;
26382
+ .v-parallax--active > .v-img__img {
26383
+ will-change: transform;
26384
+ }.v-color-picker-canvas {
26385
+ display: flex;
26386
+ position: relative;
26387
+ overflow: hidden;
26388
+ contain: content;
26389
+ touch-action: none;
26353
26390
  }
26354
-
26355
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
26356
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
26357
- animation-play-state: paused !important;
26391
+ .v-color-picker-canvas__dot {
26392
+ position: absolute;
26393
+ top: 0;
26394
+ left: 0;
26395
+ width: 15px;
26396
+ height: 15px;
26397
+ background: transparent;
26398
+ border-radius: 50%;
26399
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26358
26400
  }
26359
-
26360
- @keyframes progress-circular-dash {
26361
- 0% {
26362
- stroke-dasharray: 1, 200;
26363
- stroke-dashoffset: 0px;
26364
- }
26365
- 50% {
26366
- stroke-dasharray: 100, 200;
26367
- stroke-dashoffset: -15px;
26368
- }
26369
- 100% {
26370
- stroke-dasharray: 100, 200;
26371
- stroke-dashoffset: -124px;
26372
- }
26401
+ .v-color-picker-canvas__dot--disabled {
26402
+ 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);
26373
26403
  }
26374
- @keyframes progress-circular-rotate {
26375
- 100% {
26376
- transform: rotate(270deg);
26377
- }
26404
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26405
+ will-change: transform;
26378
26406
  }.v-color-picker-edit {
26379
26407
  display: flex;
26380
26408
  margin-top: 24px;
@@ -26403,6 +26431,41 @@ html.v-overlay-scroll-blocked {
26403
26431
  }
26404
26432
  .v-color-picker-edit__input span {
26405
26433
  font-size: 0.75rem;
26434
+ }.v-color-picker-swatches {
26435
+ overflow-y: auto;
26436
+ }
26437
+ .v-color-picker-swatches > div {
26438
+ display: flex;
26439
+ flex-wrap: wrap;
26440
+ justify-content: center;
26441
+ padding: 8px;
26442
+ }
26443
+
26444
+ .v-color-picker-swatches__swatch {
26445
+ display: flex;
26446
+ flex-direction: column;
26447
+ margin-bottom: 10px;
26448
+ }
26449
+
26450
+ .v-color-picker-swatches__color {
26451
+ position: relative;
26452
+ height: 18px;
26453
+ max-height: 18px;
26454
+ width: 45px;
26455
+ margin: 2px 4px;
26456
+ border-radius: 2px;
26457
+ -webkit-user-select: none;
26458
+ user-select: none;
26459
+ overflow: hidden;
26460
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26461
+ cursor: pointer;
26462
+ }
26463
+ .v-color-picker-swatches__color > div {
26464
+ display: flex;
26465
+ align-items: center;
26466
+ justify-content: center;
26467
+ width: 100%;
26468
+ height: 100%;
26406
26469
  }.v-color-picker-preview__alpha .v-slider-track__background {
26407
26470
  background-color: transparent !important;
26408
26471
  }
@@ -26473,63 +26536,6 @@ html.v-overlay-scroll-blocked {
26473
26536
  .v-color-picker-preview__eye-dropper {
26474
26537
  position: relative;
26475
26538
  margin-right: 12px;
26476
- }.v-color-picker-canvas {
26477
- display: flex;
26478
- position: relative;
26479
- overflow: hidden;
26480
- contain: content;
26481
- touch-action: none;
26482
- }
26483
- .v-color-picker-canvas__dot {
26484
- position: absolute;
26485
- top: 0;
26486
- left: 0;
26487
- width: 15px;
26488
- height: 15px;
26489
- background: transparent;
26490
- border-radius: 50%;
26491
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26492
- }
26493
- .v-color-picker-canvas__dot--disabled {
26494
- 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);
26495
- }
26496
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26497
- will-change: transform;
26498
- }.v-color-picker-swatches {
26499
- overflow-y: auto;
26500
- }
26501
- .v-color-picker-swatches > div {
26502
- display: flex;
26503
- flex-wrap: wrap;
26504
- justify-content: center;
26505
- padding: 8px;
26506
- }
26507
-
26508
- .v-color-picker-swatches__swatch {
26509
- display: flex;
26510
- flex-direction: column;
26511
- margin-bottom: 10px;
26512
- }
26513
-
26514
- .v-color-picker-swatches__color {
26515
- position: relative;
26516
- height: 18px;
26517
- max-height: 18px;
26518
- width: 45px;
26519
- margin: 2px 4px;
26520
- border-radius: 2px;
26521
- -webkit-user-select: none;
26522
- user-select: none;
26523
- overflow: hidden;
26524
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26525
- cursor: pointer;
26526
- }
26527
- .v-color-picker-swatches__color > div {
26528
- display: flex;
26529
- align-items: center;
26530
- justify-content: center;
26531
- width: 100%;
26532
- height: 100%;
26533
26539
  }.v-picker.v-sheet {
26534
26540
  display: grid;
26535
26541
  grid-auto-rows: min-content;