@vuetify/nightly 3.7.0-master.2024-08-27 → 3.7.1-dev.2024-08-28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-master.2024-08-27
2
+ * Vuetify v3.7.1-dev.2024-08-28
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17994,6 +17994,18 @@ html.overflow-y-hidden {
17994
17994
  min-height: 100vh;
17995
17995
  min-height: 100dvh;
17996
17996
  position: relative;
17997
+ }.v-app-bar {
17998
+ display: flex;
17999
+ }
18000
+ .v-app-bar.v-toolbar {
18001
+ background: rgb(var(--v-theme-surface));
18002
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18003
+ }
18004
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
18005
+ 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));
18006
+ }
18007
+ .v-app-bar:not(.v-toolbar--absolute) {
18008
+ padding-inline-end: var(--v-scrollbar-offset);
17997
18009
  }.v-autocomplete .v-field .v-text-field__prefix,
17998
18010
  .v-autocomplete .v-field .v-text-field__suffix,
17999
18011
  .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
@@ -18079,18 +18091,6 @@ html.overflow-y-hidden {
18079
18091
  .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18080
18092
  opacity: var(--v-high-emphasis-opacity);
18081
18093
  transform: rotate(180deg);
18082
- }.v-app-bar {
18083
- display: flex;
18084
- }
18085
- .v-app-bar.v-toolbar {
18086
- background: rgb(var(--v-theme-surface));
18087
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18088
- }
18089
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
18090
- 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));
18091
- }
18092
- .v-app-bar:not(.v-toolbar--absolute) {
18093
- padding-inline-end: var(--v-scrollbar-offset);
18094
18094
  }.v-alert {
18095
18095
  display: grid;
18096
18096
  flex: 1 1;
@@ -18413,6 +18413,79 @@ html.overflow-y-hidden {
18413
18413
  .v-avatar .v-img {
18414
18414
  height: 100%;
18415
18415
  width: 100%;
18416
+ }.v-badge {
18417
+ display: inline-block;
18418
+ line-height: 1;
18419
+ }
18420
+
18421
+ .v-badge__badge {
18422
+ align-items: center;
18423
+ display: inline-flex;
18424
+ border-radius: 10px;
18425
+ font-size: 0.75rem;
18426
+ font-weight: 500;
18427
+ height: 1.25rem;
18428
+ justify-content: center;
18429
+ min-width: 20px;
18430
+ padding: 4px 6px;
18431
+ pointer-events: auto;
18432
+ position: absolute;
18433
+ text-align: center;
18434
+ text-indent: 0;
18435
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18436
+ white-space: nowrap;
18437
+ }
18438
+ .v-badge__badge {
18439
+ background: rgb(var(--v-theme-surface-variant));
18440
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18441
+ }
18442
+ .v-badge--bordered .v-badge__badge::after {
18443
+ border-radius: inherit;
18444
+ border-style: solid;
18445
+ border-width: 2px;
18446
+ bottom: 0;
18447
+ color: rgb(var(--v-theme-background));
18448
+ content: "";
18449
+ left: 0;
18450
+ position: absolute;
18451
+ right: 0;
18452
+ top: 0;
18453
+ transform: scale(1.05);
18454
+ }
18455
+ .v-badge--dot .v-badge__badge {
18456
+ border-radius: 4.5px;
18457
+ height: 9px;
18458
+ min-width: 0;
18459
+ padding: 0;
18460
+ width: 9px;
18461
+ }
18462
+ .v-badge--dot .v-badge__badge::after {
18463
+ border-width: 1.5px;
18464
+ }
18465
+ .v-badge--inline .v-badge__badge {
18466
+ position: relative;
18467
+ vertical-align: middle;
18468
+ }
18469
+ .v-badge__badge .v-icon {
18470
+ color: inherit;
18471
+ font-size: 0.75rem;
18472
+ margin: 0 -2px;
18473
+ }
18474
+ .v-badge__badge img,
18475
+ .v-badge__badge .v-img {
18476
+ height: 100%;
18477
+ width: 100%;
18478
+ }
18479
+
18480
+ .v-badge__wrapper {
18481
+ display: flex;
18482
+ position: relative;
18483
+ }
18484
+ .v-badge--inline .v-badge__wrapper {
18485
+ align-items: center;
18486
+ display: inline-flex;
18487
+ justify-content: center;
18488
+ margin: 0 4px;
18416
18489
  }.v-banner {
18417
18490
  display: grid;
18418
18491
  flex: 1 1;
@@ -18642,79 +18715,40 @@ html.overflow-y-hidden {
18642
18715
  }
18643
18716
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18644
18717
  transform: translateY(0.5rem);
18645
- }.v-badge {
18646
- display: inline-block;
18647
- line-height: 1;
18648
- }
18649
-
18650
- .v-badge__badge {
18651
- align-items: center;
18652
- display: inline-flex;
18653
- border-radius: 10px;
18654
- font-size: 0.75rem;
18655
- font-weight: 500;
18656
- height: 1.25rem;
18657
- justify-content: center;
18658
- min-width: 20px;
18659
- padding: 4px 6px;
18660
- pointer-events: auto;
18661
- position: absolute;
18662
- text-align: center;
18663
- text-indent: 0;
18664
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18665
- white-space: nowrap;
18718
+ }.bottom-sheet-transition-enter-from {
18719
+ transform: translateY(100%);
18666
18720
  }
18667
- .v-badge__badge {
18668
- background: rgb(var(--v-theme-surface-variant));
18669
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18721
+ .bottom-sheet-transition-leave-to {
18722
+ transform: translateY(100%);
18670
18723
  }
18671
- .v-badge--bordered .v-badge__badge::after {
18672
- border-radius: inherit;
18673
- border-style: solid;
18674
- border-width: 2px;
18675
- bottom: 0;
18676
- color: rgb(var(--v-theme-background));
18677
- content: "";
18724
+
18725
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18726
+ align-self: flex-end;
18727
+ border-radius: 0;
18728
+ flex: 0 1 auto;
18678
18729
  left: 0;
18679
- position: absolute;
18680
18730
  right: 0;
18681
- top: 0;
18682
- transform: scale(1.05);
18683
- }
18684
- .v-badge--dot .v-badge__badge {
18685
- border-radius: 4.5px;
18686
- height: 9px;
18687
- min-width: 0;
18688
- padding: 0;
18689
- width: 9px;
18690
- }
18691
- .v-badge--dot .v-badge__badge::after {
18692
- border-width: 1.5px;
18693
- }
18694
- .v-badge--inline .v-badge__badge {
18695
- position: relative;
18696
- vertical-align: middle;
18731
+ margin-inline: 0;
18732
+ margin-bottom: 0;
18733
+ transition-duration: 0.2s;
18734
+ width: 100%;
18735
+ max-width: 100%;
18736
+ overflow: visible;
18697
18737
  }
18698
- .v-badge__badge .v-icon {
18699
- color: inherit;
18700
- font-size: 0.75rem;
18701
- margin: 0 -2px;
18738
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18739
+ box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18702
18740
  }
18703
- .v-badge__badge img,
18704
- .v-badge__badge .v-img {
18705
- height: 100%;
18706
- width: 100%;
18741
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18742
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18743
+ border-radius: 0;
18707
18744
  }
18708
-
18709
- .v-badge__wrapper {
18710
- display: flex;
18711
- position: relative;
18745
+ .v-bottom-sheet.v-bottom-sheet--inset {
18746
+ max-width: none;
18712
18747
  }
18713
- .v-badge--inline .v-badge__wrapper {
18714
- align-items: center;
18715
- display: inline-flex;
18716
- justify-content: center;
18717
- margin: 0 4px;
18748
+ @media (min-width: 600px) {
18749
+ .v-bottom-sheet.v-bottom-sheet--inset {
18750
+ max-width: 70%;
18751
+ }
18718
18752
  }.v-breadcrumbs {
18719
18753
  display: flex;
18720
18754
  align-items: center;
@@ -18772,40 +18806,6 @@ html.overflow-y-hidden {
18772
18806
  display: inline-block;
18773
18807
  padding: 0 8px;
18774
18808
  vertical-align: middle;
18775
- }.bottom-sheet-transition-enter-from {
18776
- transform: translateY(100%);
18777
- }
18778
- .bottom-sheet-transition-leave-to {
18779
- transform: translateY(100%);
18780
- }
18781
-
18782
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18783
- align-self: flex-end;
18784
- border-radius: 0;
18785
- flex: 0 1 auto;
18786
- left: 0;
18787
- right: 0;
18788
- margin-inline: 0;
18789
- margin-bottom: 0;
18790
- transition-duration: 0.2s;
18791
- width: 100%;
18792
- max-width: 100%;
18793
- overflow: visible;
18794
- }
18795
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18796
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18797
- }
18798
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18799
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18800
- border-radius: 0;
18801
- }
18802
- .v-bottom-sheet.v-bottom-sheet--inset {
18803
- max-width: none;
18804
- }
18805
- @media (min-width: 600px) {
18806
- .v-bottom-sheet.v-bottom-sheet--inset {
18807
- max-width: 70%;
18808
- }
18809
18809
  }.v-btn {
18810
18810
  align-items: center;
18811
18811
  border-radius: 4px;
@@ -19372,29 +19372,342 @@ html.overflow-y-hidden {
19372
19372
  flex-direction: column;
19373
19373
  height: 100% !important;
19374
19374
  width: 50px;
19375
- }.v-chip {
19376
- align-items: center;
19377
- display: inline-flex;
19378
- font-weight: 400;
19379
- max-width: 100%;
19380
- min-width: 0;
19375
+ }.v-card {
19376
+ display: block;
19381
19377
  overflow: hidden;
19378
+ overflow-wrap: break-word;
19382
19379
  position: relative;
19380
+ padding: 0;
19383
19381
  text-decoration: none;
19384
- white-space: nowrap;
19385
- vertical-align: middle;
19382
+ transition-duration: 0.28s;
19383
+ transition-property: box-shadow, opacity, background;
19384
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19385
+ z-index: 0;
19386
19386
  }
19387
- .v-chip .v-icon {
19388
- --v-icon-size-multiplier: 0.8571428571;
19387
+ .v-card {
19388
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19389
+ border-style: solid;
19390
+ border-width: 0;
19389
19391
  }
19390
- .v-chip.v-chip--size-x-small {
19391
- --v-chip-size: 0.625rem;
19392
- --v-chip-height: 20px;
19393
- font-size: 0.625rem;
19394
- padding: 0 8px;
19392
+ .v-card--border {
19393
+ border-width: thin;
19394
+ box-shadow: none;
19395
19395
  }
19396
- .v-chip.v-chip--size-x-small .v-avatar {
19397
- --v-avatar-height: 14px;
19396
+ .v-card--absolute {
19397
+ position: absolute;
19398
+ }
19399
+ .v-card--fixed {
19400
+ position: fixed;
19401
+ }
19402
+ .v-card {
19403
+ border-radius: 4px;
19404
+ }
19405
+ .v-card:hover > .v-card__overlay {
19406
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
19407
+ }
19408
+ .v-card:focus-visible > .v-card__overlay {
19409
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19410
+ }
19411
+ @supports not selector(:focus-visible) {
19412
+ .v-card:focus > .v-card__overlay {
19413
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19414
+ }
19415
+ }
19416
+ .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
19417
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19418
+ }
19419
+ .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
19420
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19421
+ }
19422
+ .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
19423
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19424
+ }
19425
+ @supports not selector(:focus-visible) {
19426
+ .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
19427
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19428
+ }
19429
+ }
19430
+ .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
19431
+ background: transparent;
19432
+ color: inherit;
19433
+ }
19434
+ .v-card--variant-plain {
19435
+ opacity: 0.62;
19436
+ }
19437
+ .v-card--variant-plain:focus, .v-card--variant-plain:hover {
19438
+ opacity: 1;
19439
+ }
19440
+ .v-card--variant-plain .v-card__overlay {
19441
+ display: none;
19442
+ }
19443
+ .v-card--variant-elevated, .v-card--variant-flat {
19444
+ background: rgb(var(--v-theme-surface));
19445
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19446
+ }
19447
+ .v-card--variant-elevated {
19448
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19449
+ }
19450
+ .v-card--variant-flat {
19451
+ 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));
19452
+ }
19453
+ .v-card--variant-outlined {
19454
+ border: thin solid currentColor;
19455
+ }
19456
+ .v-card--variant-text .v-card__overlay {
19457
+ background: currentColor;
19458
+ }
19459
+ .v-card--variant-tonal .v-card__underlay {
19460
+ background: currentColor;
19461
+ opacity: var(--v-activated-opacity);
19462
+ border-radius: inherit;
19463
+ top: 0;
19464
+ right: 0;
19465
+ bottom: 0;
19466
+ left: 0;
19467
+ pointer-events: none;
19468
+ }
19469
+ .v-card .v-card__underlay {
19470
+ position: absolute;
19471
+ }
19472
+ .v-card--disabled {
19473
+ pointer-events: none;
19474
+ -webkit-user-select: none;
19475
+ user-select: none;
19476
+ }
19477
+ .v-card--disabled > :not(.v-card__loader) {
19478
+ opacity: 0.6;
19479
+ }
19480
+ .v-card--flat {
19481
+ box-shadow: none;
19482
+ }
19483
+ .v-card--hover {
19484
+ cursor: pointer;
19485
+ }
19486
+ .v-card--hover::before, .v-card--hover::after {
19487
+ border-radius: inherit;
19488
+ bottom: 0;
19489
+ content: "";
19490
+ display: block;
19491
+ left: 0;
19492
+ pointer-events: none;
19493
+ position: absolute;
19494
+ right: 0;
19495
+ top: 0;
19496
+ transition: inherit;
19497
+ }
19498
+ .v-card--hover::before {
19499
+ opacity: 1;
19500
+ z-index: -1;
19501
+ }
19502
+ .v-card--hover::before {
19503
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19504
+ }
19505
+ .v-card--hover::after {
19506
+ z-index: 1;
19507
+ opacity: 0;
19508
+ }
19509
+ .v-card--hover::after {
19510
+ 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));
19511
+ }
19512
+ .v-card--hover:hover::after {
19513
+ opacity: 1;
19514
+ }
19515
+ .v-card--hover:hover::before {
19516
+ opacity: 0;
19517
+ }
19518
+ .v-card--hover:hover {
19519
+ 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));
19520
+ }
19521
+ .v-card--link {
19522
+ cursor: pointer;
19523
+ }
19524
+
19525
+ .v-card-actions {
19526
+ align-items: center;
19527
+ display: flex;
19528
+ flex: none;
19529
+ min-height: 52px;
19530
+ padding: 0.5rem;
19531
+ gap: 0.5rem;
19532
+ }
19533
+
19534
+ .v-card-item {
19535
+ align-items: center;
19536
+ display: grid;
19537
+ flex: none;
19538
+ grid-template-areas: "prepend content append";
19539
+ grid-template-columns: max-content auto max-content;
19540
+ padding: 0.625rem 1rem;
19541
+ }
19542
+ .v-card-item + .v-card-text {
19543
+ padding-top: 0;
19544
+ }
19545
+ .v-card-item__prepend, .v-card-item__append {
19546
+ align-items: center;
19547
+ display: flex;
19548
+ }
19549
+ .v-card-item__prepend {
19550
+ grid-area: prepend;
19551
+ padding-inline-end: 0.5rem;
19552
+ }
19553
+ .v-card-item__append {
19554
+ grid-area: append;
19555
+ padding-inline-start: 0.5rem;
19556
+ }
19557
+
19558
+ .v-card-item__content {
19559
+ align-self: center;
19560
+ grid-area: content;
19561
+ overflow: hidden;
19562
+ }
19563
+
19564
+ .v-card-title {
19565
+ display: block;
19566
+ flex: none;
19567
+ font-size: 1.25rem;
19568
+ font-weight: 500;
19569
+ -webkit-hyphens: auto;
19570
+ hyphens: auto;
19571
+ letter-spacing: 0.0125em;
19572
+ min-width: 0;
19573
+ overflow-wrap: normal;
19574
+ overflow: hidden;
19575
+ padding: 0.5rem 1rem;
19576
+ text-overflow: ellipsis;
19577
+ text-transform: none;
19578
+ white-space: nowrap;
19579
+ word-break: normal;
19580
+ word-wrap: break-word;
19581
+ }
19582
+ .v-card .v-card-title {
19583
+ line-height: 1.6;
19584
+ }
19585
+ .v-card--density-comfortable .v-card-title {
19586
+ line-height: 1.75rem;
19587
+ }
19588
+ .v-card--density-compact .v-card-title {
19589
+ line-height: 1.55rem;
19590
+ }
19591
+ .v-card-item .v-card-title {
19592
+ padding: 0;
19593
+ }
19594
+ .v-card-title + .v-card-text,
19595
+ .v-card-title + .v-card-actions {
19596
+ padding-top: 0;
19597
+ }
19598
+
19599
+ .v-card-subtitle {
19600
+ display: block;
19601
+ flex: none;
19602
+ font-size: 0.875rem;
19603
+ font-weight: 400;
19604
+ letter-spacing: 0.0178571429em;
19605
+ opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
19606
+ overflow: hidden;
19607
+ padding: 0 1rem;
19608
+ text-overflow: ellipsis;
19609
+ text-transform: none;
19610
+ white-space: nowrap;
19611
+ }
19612
+ .v-card .v-card-subtitle {
19613
+ line-height: 1.425;
19614
+ }
19615
+ .v-card--density-comfortable .v-card-subtitle {
19616
+ line-height: 1.125rem;
19617
+ }
19618
+ .v-card--density-compact .v-card-subtitle {
19619
+ line-height: 1rem;
19620
+ }
19621
+ .v-card-item .v-card-subtitle {
19622
+ padding: 0 0 0.25rem;
19623
+ }
19624
+
19625
+ .v-card-text {
19626
+ flex: 1 1 auto;
19627
+ font-size: 0.875rem;
19628
+ font-weight: 400;
19629
+ letter-spacing: 0.0178571429em;
19630
+ opacity: var(--v-card-text-opacity, 1);
19631
+ padding: 1rem;
19632
+ text-transform: none;
19633
+ }
19634
+ .v-card .v-card-text {
19635
+ line-height: 1.425;
19636
+ }
19637
+ .v-card--density-comfortable .v-card-text {
19638
+ line-height: 1.2rem;
19639
+ }
19640
+ .v-card--density-compact .v-card-text {
19641
+ line-height: 1.15rem;
19642
+ }
19643
+
19644
+ .v-card__image {
19645
+ display: flex;
19646
+ height: 100%;
19647
+ flex: 1 1 auto;
19648
+ left: 0;
19649
+ overflow: hidden;
19650
+ position: absolute;
19651
+ top: 0;
19652
+ width: 100%;
19653
+ z-index: -1;
19654
+ }
19655
+
19656
+ .v-card__content {
19657
+ border-radius: inherit;
19658
+ overflow: hidden;
19659
+ position: relative;
19660
+ }
19661
+
19662
+ .v-card__loader {
19663
+ bottom: auto;
19664
+ top: 0;
19665
+ left: 0;
19666
+ position: absolute;
19667
+ right: 0;
19668
+ width: 100%;
19669
+ z-index: 1;
19670
+ }
19671
+
19672
+ .v-card__overlay {
19673
+ background-color: currentColor;
19674
+ border-radius: inherit;
19675
+ position: absolute;
19676
+ top: 0;
19677
+ right: 0;
19678
+ bottom: 0;
19679
+ left: 0;
19680
+ pointer-events: none;
19681
+ opacity: 0;
19682
+ transition: opacity 0.2s ease-in-out;
19683
+ }.v-checkbox.v-input {
19684
+ flex: 0 1 auto;
19685
+ }
19686
+ .v-checkbox .v-selection-control {
19687
+ min-height: var(--v-input-control-height);
19688
+ }.v-chip {
19689
+ align-items: center;
19690
+ display: inline-flex;
19691
+ font-weight: 400;
19692
+ max-width: 100%;
19693
+ min-width: 0;
19694
+ overflow: hidden;
19695
+ position: relative;
19696
+ text-decoration: none;
19697
+ white-space: nowrap;
19698
+ vertical-align: middle;
19699
+ }
19700
+ .v-chip .v-icon {
19701
+ --v-icon-size-multiplier: 0.8571428571;
19702
+ }
19703
+ .v-chip.v-chip--size-x-small {
19704
+ --v-chip-size: 0.625rem;
19705
+ --v-chip-height: 20px;
19706
+ font-size: 0.625rem;
19707
+ padding: 0 8px;
19708
+ }
19709
+ .v-chip.v-chip--size-x-small .v-avatar {
19710
+ --v-avatar-height: 14px;
19398
19711
  }
19399
19712
  .v-chip--pill.v-chip.v-chip--size-x-small .v-avatar {
19400
19713
  --v-avatar-height: 20px;
@@ -19626,255 +19939,87 @@ html.overflow-y-hidden {
19626
19939
  margin-inline-start: 8.5px;
19627
19940
  margin-inline-end: -8.5px;
19628
19941
  }
19629
- .v-chip.v-chip--size-x-large .v-icon--end + .v-chip__close,
19630
- .v-chip.v-chip--size-x-large .v-avatar--end + .v-chip__close,
19631
- .v-chip.v-chip--size-x-large .v-chip__append + .v-chip__close {
19632
- margin-inline-start: 17px;
19633
- }
19634
-
19635
- .v-chip.v-chip--density-default {
19636
- height: calc(var(--v-chip-height) + 0px);
19637
- }
19638
-
19639
- .v-chip.v-chip--density-comfortable {
19640
- height: calc(var(--v-chip-height) + -4px);
19641
- }
19642
-
19643
- .v-chip.v-chip--density-compact {
19644
- height: calc(var(--v-chip-height) + -8px);
19645
- }
19646
-
19647
- .v-chip {
19648
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19649
- border-style: solid;
19650
- border-width: 0;
19651
- }
19652
- .v-chip:hover > .v-chip__overlay {
19653
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
19654
- }
19655
- .v-chip:focus-visible > .v-chip__overlay {
19656
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19657
- }
19658
- @supports not selector(:focus-visible) {
19659
- .v-chip:focus > .v-chip__overlay {
19660
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19661
- }
19662
- }
19663
- .v-chip--active > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true] > .v-chip__overlay {
19664
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19665
- }
19666
- .v-chip--active:hover > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:hover > .v-chip__overlay {
19667
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19668
- }
19669
- .v-chip--active:focus-visible > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-chip__overlay {
19670
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19671
- }
19672
- @supports not selector(:focus-visible) {
19673
- .v-chip--active:focus > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus > .v-chip__overlay {
19674
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19675
- }
19676
- }
19677
- .v-chip {
19678
- border-radius: 9999px;
19679
- }
19680
- .v-chip--variant-plain, .v-chip--variant-outlined, .v-chip--variant-text, .v-chip--variant-tonal {
19681
- background: transparent;
19682
- color: inherit;
19683
- }
19684
- .v-chip--variant-plain {
19685
- opacity: 0.26;
19686
- }
19687
- .v-chip--variant-plain:focus, .v-chip--variant-plain:hover {
19688
- opacity: 1;
19689
- }
19690
- .v-chip--variant-plain .v-chip__overlay {
19691
- display: none;
19692
- }
19693
- .v-chip--variant-elevated, .v-chip--variant-flat {
19694
- background: rgb(var(--v-theme-surface-variant));
19695
- color: rgb(var(--v-theme-on-surface-variant));
19696
- }
19697
- .v-chip--variant-elevated {
19698
- box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19699
- }
19700
- .v-chip--variant-flat {
19701
- 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));
19702
- }
19703
- .v-chip--variant-outlined {
19704
- border: thin solid currentColor;
19705
- }
19706
- .v-chip--variant-text .v-chip__overlay {
19707
- background: currentColor;
19708
- }
19709
- .v-chip--variant-tonal .v-chip__underlay {
19710
- background: currentColor;
19711
- opacity: var(--v-activated-opacity);
19712
- border-radius: inherit;
19713
- top: 0;
19714
- right: 0;
19715
- bottom: 0;
19716
- left: 0;
19717
- pointer-events: none;
19718
- }
19719
- .v-chip .v-chip__underlay {
19720
- position: absolute;
19721
- }
19722
- .v-chip--border {
19723
- border-width: thin;
19724
- }
19725
- .v-chip--link {
19726
- cursor: pointer;
19727
- }
19728
- .v-chip--link, .v-chip--filter {
19729
- -webkit-user-select: none;
19730
- user-select: none;
19731
- }
19732
- .v-chip--label {
19733
- border-radius: 4px;
19734
- }
19735
-
19736
- .v-chip__content {
19737
- align-items: center;
19738
- display: inline-flex;
19739
- }
19740
- .v-autocomplete__selection .v-chip__content, .v-combobox__selection .v-chip__content, .v-select__selection .v-chip__content {
19741
- overflow: hidden;
19742
- }
19743
-
19744
- .v-chip__filter,
19745
- .v-chip__prepend,
19746
- .v-chip__append,
19747
- .v-chip__close {
19748
- align-items: center;
19749
- display: inline-flex;
19750
- }
19751
-
19752
- .v-chip__close {
19753
- cursor: pointer;
19754
- flex: 0 1 auto;
19755
- font-size: 18px;
19756
- max-height: 18px;
19757
- max-width: 18px;
19758
- -webkit-user-select: none;
19759
- user-select: none;
19760
- }
19761
- .v-chip__close .v-icon {
19762
- font-size: inherit;
19942
+ .v-chip.v-chip--size-x-large .v-icon--end + .v-chip__close,
19943
+ .v-chip.v-chip--size-x-large .v-avatar--end + .v-chip__close,
19944
+ .v-chip.v-chip--size-x-large .v-chip__append + .v-chip__close {
19945
+ margin-inline-start: 17px;
19763
19946
  }
19764
19947
 
19765
- .v-chip__filter {
19766
- transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
19948
+ .v-chip.v-chip--density-default {
19949
+ height: calc(var(--v-chip-height) + 0px);
19767
19950
  }
19768
19951
 
19769
- .v-chip__overlay {
19770
- background-color: currentColor;
19771
- border-radius: inherit;
19772
- pointer-events: none;
19773
- opacity: 0;
19774
- transition: opacity 0.2s ease-in-out;
19775
- }
19776
- .v-chip__overlay {
19777
- position: absolute;
19778
- top: 0;
19779
- left: 0;
19780
- width: 100%;
19781
- height: 100%;
19952
+ .v-chip.v-chip--density-comfortable {
19953
+ height: calc(var(--v-chip-height) + -4px);
19782
19954
  }
19783
19955
 
19784
- .v-chip--disabled {
19785
- opacity: 0.3;
19786
- pointer-events: none;
19787
- -webkit-user-select: none;
19788
- user-select: none;
19956
+ .v-chip.v-chip--density-compact {
19957
+ height: calc(var(--v-chip-height) + -8px);
19789
19958
  }
19790
19959
 
19791
- .v-chip--label {
19792
- border-radius: 4px;
19793
- }.v-card {
19794
- display: block;
19795
- overflow: hidden;
19796
- overflow-wrap: break-word;
19797
- position: relative;
19798
- padding: 0;
19799
- text-decoration: none;
19800
- transition-duration: 0.28s;
19801
- transition-property: box-shadow, opacity, background;
19802
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19803
- z-index: 0;
19804
- }
19805
- .v-card {
19960
+ .v-chip {
19806
19961
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19807
19962
  border-style: solid;
19808
19963
  border-width: 0;
19809
19964
  }
19810
- .v-card--border {
19811
- border-width: thin;
19812
- box-shadow: none;
19813
- }
19814
- .v-card--absolute {
19815
- position: absolute;
19816
- }
19817
- .v-card--fixed {
19818
- position: fixed;
19819
- }
19820
- .v-card {
19821
- border-radius: 4px;
19822
- }
19823
- .v-card:hover > .v-card__overlay {
19965
+ .v-chip:hover > .v-chip__overlay {
19824
19966
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
19825
19967
  }
19826
- .v-card:focus-visible > .v-card__overlay {
19968
+ .v-chip:focus-visible > .v-chip__overlay {
19827
19969
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19828
19970
  }
19829
19971
  @supports not selector(:focus-visible) {
19830
- .v-card:focus > .v-card__overlay {
19972
+ .v-chip:focus > .v-chip__overlay {
19831
19973
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19832
19974
  }
19833
19975
  }
19834
- .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
19976
+ .v-chip--active > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true] > .v-chip__overlay {
19835
19977
  opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19836
19978
  }
19837
- .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
19979
+ .v-chip--active:hover > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:hover > .v-chip__overlay {
19838
19980
  opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19839
19981
  }
19840
- .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
19982
+ .v-chip--active:focus-visible > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-chip__overlay {
19841
19983
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19842
19984
  }
19843
19985
  @supports not selector(:focus-visible) {
19844
- .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
19986
+ .v-chip--active:focus > .v-chip__overlay, .v-chip[aria-haspopup=menu][aria-expanded=true]:focus > .v-chip__overlay {
19845
19987
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19846
19988
  }
19847
19989
  }
19848
- .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
19990
+ .v-chip {
19991
+ border-radius: 9999px;
19992
+ }
19993
+ .v-chip--variant-plain, .v-chip--variant-outlined, .v-chip--variant-text, .v-chip--variant-tonal {
19849
19994
  background: transparent;
19850
19995
  color: inherit;
19851
19996
  }
19852
- .v-card--variant-plain {
19853
- opacity: 0.62;
19997
+ .v-chip--variant-plain {
19998
+ opacity: 0.26;
19854
19999
  }
19855
- .v-card--variant-plain:focus, .v-card--variant-plain:hover {
20000
+ .v-chip--variant-plain:focus, .v-chip--variant-plain:hover {
19856
20001
  opacity: 1;
19857
20002
  }
19858
- .v-card--variant-plain .v-card__overlay {
20003
+ .v-chip--variant-plain .v-chip__overlay {
19859
20004
  display: none;
19860
20005
  }
19861
- .v-card--variant-elevated, .v-card--variant-flat {
19862
- background: rgb(var(--v-theme-surface));
19863
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20006
+ .v-chip--variant-elevated, .v-chip--variant-flat {
20007
+ background: rgb(var(--v-theme-surface-variant));
20008
+ color: rgb(var(--v-theme-on-surface-variant));
19864
20009
  }
19865
- .v-card--variant-elevated {
20010
+ .v-chip--variant-elevated {
19866
20011
  box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19867
20012
  }
19868
- .v-card--variant-flat {
20013
+ .v-chip--variant-flat {
19869
20014
  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));
19870
20015
  }
19871
- .v-card--variant-outlined {
20016
+ .v-chip--variant-outlined {
19872
20017
  border: thin solid currentColor;
19873
20018
  }
19874
- .v-card--variant-text .v-card__overlay {
20019
+ .v-chip--variant-text .v-chip__overlay {
19875
20020
  background: currentColor;
19876
20021
  }
19877
- .v-card--variant-tonal .v-card__underlay {
20022
+ .v-chip--variant-tonal .v-chip__underlay {
19878
20023
  background: currentColor;
19879
20024
  opacity: var(--v-activated-opacity);
19880
20025
  border-radius: inherit;
@@ -19884,225 +20029,80 @@ html.overflow-y-hidden {
19884
20029
  left: 0;
19885
20030
  pointer-events: none;
19886
20031
  }
19887
- .v-card .v-card__underlay {
19888
- position: absolute;
19889
- }
19890
- .v-card--disabled {
19891
- pointer-events: none;
19892
- -webkit-user-select: none;
19893
- user-select: none;
19894
- }
19895
- .v-card--disabled > :not(.v-card__loader) {
19896
- opacity: 0.6;
19897
- }
19898
- .v-card--flat {
19899
- box-shadow: none;
19900
- }
19901
- .v-card--hover {
19902
- cursor: pointer;
19903
- }
19904
- .v-card--hover::before, .v-card--hover::after {
19905
- border-radius: inherit;
19906
- bottom: 0;
19907
- content: "";
19908
- display: block;
19909
- left: 0;
19910
- pointer-events: none;
19911
- position: absolute;
19912
- right: 0;
19913
- top: 0;
19914
- transition: inherit;
19915
- }
19916
- .v-card--hover::before {
19917
- opacity: 1;
19918
- z-index: -1;
19919
- }
19920
- .v-card--hover::before {
19921
- box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19922
- }
19923
- .v-card--hover::after {
19924
- z-index: 1;
19925
- opacity: 0;
19926
- }
19927
- .v-card--hover::after {
19928
- 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));
19929
- }
19930
- .v-card--hover:hover::after {
19931
- opacity: 1;
19932
- }
19933
- .v-card--hover:hover::before {
19934
- opacity: 0;
19935
- }
19936
- .v-card--hover:hover {
19937
- 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));
19938
- }
19939
- .v-card--link {
19940
- cursor: pointer;
19941
- }
19942
-
19943
- .v-card-actions {
19944
- align-items: center;
19945
- display: flex;
19946
- flex: none;
19947
- min-height: 52px;
19948
- padding: 0.5rem;
19949
- gap: 0.5rem;
19950
- }
19951
-
19952
- .v-card-item {
19953
- align-items: center;
19954
- display: grid;
19955
- flex: none;
19956
- grid-template-areas: "prepend content append";
19957
- grid-template-columns: max-content auto max-content;
19958
- padding: 0.625rem 1rem;
19959
- }
19960
- .v-card-item + .v-card-text {
19961
- padding-top: 0;
19962
- }
19963
- .v-card-item__prepend, .v-card-item__append {
19964
- align-items: center;
19965
- display: flex;
19966
- }
19967
- .v-card-item__prepend {
19968
- grid-area: prepend;
19969
- padding-inline-end: 0.5rem;
19970
- }
19971
- .v-card-item__append {
19972
- grid-area: append;
19973
- padding-inline-start: 0.5rem;
19974
- }
19975
-
19976
- .v-card-item__content {
19977
- align-self: center;
19978
- grid-area: content;
19979
- overflow: hidden;
19980
- }
19981
-
19982
- .v-card-title {
19983
- display: block;
19984
- flex: none;
19985
- font-size: 1.25rem;
19986
- font-weight: 500;
19987
- -webkit-hyphens: auto;
19988
- hyphens: auto;
19989
- letter-spacing: 0.0125em;
19990
- min-width: 0;
19991
- overflow-wrap: normal;
19992
- overflow: hidden;
19993
- padding: 0.5rem 1rem;
19994
- text-overflow: ellipsis;
19995
- text-transform: none;
19996
- white-space: nowrap;
19997
- word-break: normal;
19998
- word-wrap: break-word;
19999
- }
20000
- .v-card .v-card-title {
20001
- line-height: 1.6;
20002
- }
20003
- .v-card--density-comfortable .v-card-title {
20004
- line-height: 1.75rem;
20005
- }
20006
- .v-card--density-compact .v-card-title {
20007
- line-height: 1.55rem;
20008
- }
20009
- .v-card-item .v-card-title {
20010
- padding: 0;
20011
- }
20012
- .v-card-title + .v-card-text,
20013
- .v-card-title + .v-card-actions {
20014
- padding-top: 0;
20015
- }
20016
-
20017
- .v-card-subtitle {
20018
- display: block;
20019
- flex: none;
20020
- font-size: 0.875rem;
20021
- font-weight: 400;
20022
- letter-spacing: 0.0178571429em;
20023
- opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
20024
- overflow: hidden;
20025
- padding: 0 1rem;
20026
- text-overflow: ellipsis;
20027
- text-transform: none;
20028
- white-space: nowrap;
20029
- }
20030
- .v-card .v-card-subtitle {
20031
- line-height: 1.425;
20032
- }
20033
- .v-card--density-comfortable .v-card-subtitle {
20034
- line-height: 1.125rem;
20035
- }
20036
- .v-card--density-compact .v-card-subtitle {
20037
- line-height: 1rem;
20038
- }
20039
- .v-card-item .v-card-subtitle {
20040
- padding: 0 0 0.25rem;
20032
+ .v-chip .v-chip__underlay {
20033
+ position: absolute;
20041
20034
  }
20042
-
20043
- .v-card-text {
20044
- flex: 1 1 auto;
20045
- font-size: 0.875rem;
20046
- font-weight: 400;
20047
- letter-spacing: 0.0178571429em;
20048
- opacity: var(--v-card-text-opacity, 1);
20049
- padding: 1rem;
20050
- text-transform: none;
20035
+ .v-chip--border {
20036
+ border-width: thin;
20051
20037
  }
20052
- .v-card .v-card-text {
20053
- line-height: 1.425;
20038
+ .v-chip--link {
20039
+ cursor: pointer;
20054
20040
  }
20055
- .v-card--density-comfortable .v-card-text {
20056
- line-height: 1.2rem;
20041
+ .v-chip--link, .v-chip--filter {
20042
+ -webkit-user-select: none;
20043
+ user-select: none;
20057
20044
  }
20058
- .v-card--density-compact .v-card-text {
20059
- line-height: 1.15rem;
20045
+ .v-chip--label {
20046
+ border-radius: 4px;
20060
20047
  }
20061
20048
 
20062
- .v-card__image {
20063
- display: flex;
20064
- height: 100%;
20065
- flex: 1 1 auto;
20066
- left: 0;
20049
+ .v-chip__content {
20050
+ align-items: center;
20051
+ display: inline-flex;
20052
+ }
20053
+ .v-autocomplete__selection .v-chip__content, .v-combobox__selection .v-chip__content, .v-select__selection .v-chip__content {
20067
20054
  overflow: hidden;
20068
- position: absolute;
20069
- top: 0;
20070
- width: 100%;
20071
- z-index: -1;
20072
20055
  }
20073
20056
 
20074
- .v-card__content {
20075
- border-radius: inherit;
20076
- overflow: hidden;
20077
- position: relative;
20057
+ .v-chip__filter,
20058
+ .v-chip__prepend,
20059
+ .v-chip__append,
20060
+ .v-chip__close {
20061
+ align-items: center;
20062
+ display: inline-flex;
20078
20063
  }
20079
20064
 
20080
- .v-card__loader {
20081
- bottom: auto;
20082
- top: 0;
20083
- left: 0;
20084
- position: absolute;
20085
- right: 0;
20086
- width: 100%;
20087
- z-index: 1;
20065
+ .v-chip__close {
20066
+ cursor: pointer;
20067
+ flex: 0 1 auto;
20068
+ font-size: 18px;
20069
+ max-height: 18px;
20070
+ max-width: 18px;
20071
+ -webkit-user-select: none;
20072
+ user-select: none;
20073
+ }
20074
+ .v-chip__close .v-icon {
20075
+ font-size: inherit;
20088
20076
  }
20089
20077
 
20090
- .v-card__overlay {
20078
+ .v-chip__filter {
20079
+ transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
20080
+ }
20081
+
20082
+ .v-chip__overlay {
20091
20083
  background-color: currentColor;
20092
20084
  border-radius: inherit;
20085
+ pointer-events: none;
20086
+ opacity: 0;
20087
+ transition: opacity 0.2s ease-in-out;
20088
+ }
20089
+ .v-chip__overlay {
20093
20090
  position: absolute;
20094
20091
  top: 0;
20095
- right: 0;
20096
- bottom: 0;
20097
20092
  left: 0;
20093
+ width: 100%;
20094
+ height: 100%;
20095
+ }
20096
+
20097
+ .v-chip--disabled {
20098
+ opacity: 0.3;
20098
20099
  pointer-events: none;
20099
- opacity: 0;
20100
- transition: opacity 0.2s ease-in-out;
20101
- }.v-checkbox.v-input {
20102
- flex: 0 1 auto;
20100
+ -webkit-user-select: none;
20101
+ user-select: none;
20103
20102
  }
20104
- .v-checkbox .v-selection-control {
20105
- min-height: var(--v-input-control-height);
20103
+
20104
+ .v-chip--label {
20105
+ border-radius: 4px;
20106
20106
  }.v-chip-group {
20107
20107
  display: flex;
20108
20108
  max-width: 100%;
@@ -20374,232 +20374,83 @@ html.overflow-y-hidden {
20374
20374
 
20375
20375
  .v-data-table-progress > th {
20376
20376
  border: none !important;
20377
- height: auto !important;
20378
- padding: 0 !important;
20379
- }
20380
-
20381
- .v-data-table-progress__loader {
20382
- position: relative;
20383
- }
20384
-
20385
- .v-data-table-rows-loading,
20386
- .v-data-table-rows-no-data {
20387
- text-align: center;
20388
- }
20389
-
20390
- .v-data-table__tr--mobile > .v-data-table__td--expanded-row {
20391
- grid-template-columns: 0;
20392
- justify-content: center;
20393
- }
20394
- .v-data-table__tr--mobile > .v-data-table__td--select-row {
20395
- grid-template-columns: 0;
20396
- justify-content: end;
20397
- }
20398
- .v-data-table__tr--mobile > td {
20399
- align-items: center;
20400
- column-gap: 4px;
20401
- display: grid;
20402
- grid-template-columns: repeat(2, 1fr);
20403
- min-height: var(--v-table-row-height);
20404
- }
20405
- .v-data-table__tr--mobile > td:not(:last-child) {
20406
- border-bottom: 0 !important;
20407
- }
20408
-
20409
- .v-data-table__td-title {
20410
- font-weight: 500;
20411
- text-align: left;
20412
- }
20413
-
20414
- .v-data-table__td-value {
20415
- text-align: right;
20416
- }
20417
-
20418
- .v-data-table__td-sort-icon {
20419
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
20420
- }
20421
- .v-data-table__td-sort-icon-active {
20422
- color: rgba(var(--v-theme-on-surface));
20423
- }.v-data-table-footer {
20424
- align-items: center;
20425
- display: flex;
20426
- flex-wrap: wrap;
20427
- justify-content: flex-end;
20428
- padding: 8px 4px;
20429
- }
20430
- .v-data-table-footer__items-per-page {
20431
- align-items: center;
20432
- display: flex;
20433
- justify-content: center;
20434
- }
20435
- .v-data-table-footer__items-per-page > span {
20436
- padding-inline-end: 8px;
20437
- }
20438
- .v-data-table-footer__items-per-page > .v-select {
20439
- width: 90px;
20440
- }
20441
- .v-data-table-footer__info {
20442
- display: flex;
20443
- justify-content: flex-end;
20444
- min-width: 116px;
20445
- padding: 0 16px;
20446
- }
20447
- .v-data-table-footer__paginationz {
20448
- align-items: center;
20449
- display: flex;
20450
- margin-inline-start: 16px;
20451
- }
20452
- .v-data-table-footer__page {
20453
- padding: 0 8px;
20454
- }.v-dialog {
20455
- align-items: center;
20456
- justify-content: center;
20457
- margin: auto;
20458
- }
20459
- .v-dialog > .v-overlay__content {
20460
- max-height: calc(100% - 48px);
20461
- width: calc(100% - 48px);
20462
- max-width: calc(100% - 48px);
20463
- margin: 24px;
20464
- }
20465
- .v-dialog > .v-overlay__content,
20466
- .v-dialog > .v-overlay__content > form {
20467
- display: flex;
20468
- flex-direction: column;
20469
- min-height: 0;
20470
- }
20471
- .v-dialog > .v-overlay__content > .v-card,
20472
- .v-dialog > .v-overlay__content > .v-sheet,
20473
- .v-dialog > .v-overlay__content > form > .v-card,
20474
- .v-dialog > .v-overlay__content > form > .v-sheet {
20475
- --v-scrollbar-offset: 0px;
20476
- border-radius: 4px;
20477
- overflow-y: auto;
20478
- }
20479
- .v-dialog > .v-overlay__content > .v-card,
20480
- .v-dialog > .v-overlay__content > .v-sheet,
20481
- .v-dialog > .v-overlay__content > form > .v-card,
20482
- .v-dialog > .v-overlay__content > form > .v-sheet {
20483
- 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));
20484
- }
20485
- .v-dialog > .v-overlay__content > .v-card,
20486
- .v-dialog > .v-overlay__content > form > .v-card {
20487
- display: flex;
20488
- flex-direction: column;
20489
- }
20490
- .v-dialog > .v-overlay__content > .v-card > .v-card-item,
20491
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
20492
- padding: 16px 24px;
20493
- }
20494
- .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
20495
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
20496
- padding-top: 0;
20497
- }
20498
- .v-dialog > .v-overlay__content > .v-card > .v-card-text,
20499
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
20500
- font-size: inherit;
20501
- letter-spacing: 0.03125em;
20502
- line-height: inherit;
20503
- padding: 16px 24px 24px;
20504
- }
20505
- .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
20506
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
20507
- justify-content: flex-end;
20508
- }
20509
-
20510
- .v-dialog--fullscreen {
20511
- --v-scrollbar-offset: 0px;
20512
- }
20513
- .v-dialog--fullscreen > .v-overlay__content {
20514
- border-radius: 0;
20515
- margin: 0;
20516
- padding: 0;
20517
- width: 100%;
20518
- height: 100%;
20519
- max-width: 100%;
20520
- max-height: 100%;
20521
- overflow-y: auto;
20522
- top: 0;
20523
- left: 0;
20524
- }
20525
- .v-dialog--fullscreen > .v-overlay__content > .v-card,
20526
- .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
20527
- .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
20528
- .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
20529
- min-height: 100%;
20530
- min-width: 100%;
20531
- border-radius: 0;
20377
+ height: auto !important;
20378
+ padding: 0 !important;
20532
20379
  }
20533
20380
 
20534
- .v-dialog--scrollable > .v-overlay__content,
20535
- .v-dialog--scrollable > .v-overlay__content > form {
20536
- display: flex;
20537
- }
20538
- .v-dialog--scrollable > .v-overlay__content > .v-card,
20539
- .v-dialog--scrollable > .v-overlay__content > form > .v-card {
20540
- display: flex;
20541
- flex: 1 1 100%;
20542
- flex-direction: column;
20543
- max-height: 100%;
20544
- max-width: 100%;
20381
+ .v-data-table-progress__loader {
20382
+ position: relative;
20545
20383
  }
20546
- .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
20547
- .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
20548
- -webkit-backface-visibility: hidden;
20549
- backface-visibility: hidden;
20550
- overflow-y: auto;
20551
- }.v-divider {
20552
- display: block;
20553
- flex: 1 1 100%;
20554
- height: 0px;
20555
- max-height: 0px;
20556
- opacity: var(--v-border-opacity);
20557
- transition: inherit;
20384
+
20385
+ .v-data-table-rows-loading,
20386
+ .v-data-table-rows-no-data {
20387
+ text-align: center;
20558
20388
  }
20559
- .v-divider {
20560
- border-style: solid;
20561
- border-width: thin 0 0 0;
20389
+
20390
+ .v-data-table__tr--mobile > .v-data-table__td--expanded-row {
20391
+ grid-template-columns: 0;
20392
+ justify-content: center;
20562
20393
  }
20563
- .v-divider--vertical {
20564
- align-self: stretch;
20565
- border-width: 0 thin 0 0;
20566
- display: inline-flex;
20567
- height: auto;
20568
- margin-left: -1px;
20569
- max-height: 100%;
20570
- max-width: 0px;
20571
- vertical-align: text-bottom;
20572
- width: 0px;
20394
+ .v-data-table__tr--mobile > .v-data-table__td--select-row {
20395
+ grid-template-columns: 0;
20396
+ justify-content: end;
20573
20397
  }
20574
- .v-divider--inset:not(.v-divider--vertical) {
20575
- max-width: calc(100% - 72px);
20576
- margin-inline-start: 72px;
20398
+ .v-data-table__tr--mobile > td {
20399
+ align-items: center;
20400
+ column-gap: 4px;
20401
+ display: grid;
20402
+ grid-template-columns: repeat(2, 1fr);
20403
+ min-height: var(--v-table-row-height);
20577
20404
  }
20578
- .v-divider--inset.v-divider--vertical {
20579
- margin-bottom: 8px;
20580
- margin-top: 8px;
20581
- max-height: calc(100% - 16px);
20405
+ .v-data-table__tr--mobile > td:not(:last-child) {
20406
+ border-bottom: 0 !important;
20582
20407
  }
20583
20408
 
20584
- .v-divider__content {
20585
- padding: 0 16px;
20586
- text-wrap: nowrap;
20409
+ .v-data-table__td-title {
20410
+ font-weight: 500;
20411
+ text-align: left;
20587
20412
  }
20588
- .v-divider__wrapper--vertical .v-divider__content {
20589
- padding: 4px 0;
20413
+
20414
+ .v-data-table__td-value {
20415
+ text-align: right;
20590
20416
  }
20591
20417
 
20592
- .v-divider__wrapper {
20418
+ .v-data-table__td-sort-icon {
20419
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
20420
+ }
20421
+ .v-data-table__td-sort-icon-active {
20422
+ color: rgba(var(--v-theme-on-surface));
20423
+ }.v-data-table-footer {
20424
+ align-items: center;
20593
20425
  display: flex;
20426
+ flex-wrap: wrap;
20427
+ justify-content: flex-end;
20428
+ padding: 8px 4px;
20429
+ }
20430
+ .v-data-table-footer__items-per-page {
20594
20431
  align-items: center;
20432
+ display: flex;
20595
20433
  justify-content: center;
20596
20434
  }
20597
- .v-divider__wrapper--vertical {
20598
- flex-direction: column;
20599
- height: 100%;
20435
+ .v-data-table-footer__items-per-page > span {
20436
+ padding-inline-end: 8px;
20600
20437
  }
20601
- .v-divider__wrapper--vertical .v-divider {
20602
- margin: 0 auto;
20438
+ .v-data-table-footer__items-per-page > .v-select {
20439
+ width: 90px;
20440
+ }
20441
+ .v-data-table-footer__info {
20442
+ display: flex;
20443
+ justify-content: flex-end;
20444
+ min-width: 116px;
20445
+ padding: 0 16px;
20446
+ }
20447
+ .v-data-table-footer__paginationz {
20448
+ align-items: center;
20449
+ display: flex;
20450
+ margin-inline-start: 16px;
20451
+ }
20452
+ .v-data-table-footer__page {
20453
+ padding: 0 8px;
20603
20454
  }.v-date-picker {
20604
20455
  overflow: hidden;
20605
20456
  width: 328px;
@@ -20763,54 +20614,203 @@ html.overflow-y-hidden {
20763
20614
  background-color: rgb(var(--v-theme-surface-variant));
20764
20615
  color: rgb(var(--v-theme-on-surface-variant));
20765
20616
  }
20766
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
20767
- --v-btn-height: 24px;
20768
- --v-btn-size: 0.85rem;
20617
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
20618
+ --v-btn-height: 24px;
20619
+ --v-btn-size: 0.85rem;
20620
+ }
20621
+ .v-date-picker-month__day--week {
20622
+ font-size: var(--v-btn-size);
20623
+ }
20624
+
20625
+ .v-date-picker-month__day--adjacent {
20626
+ opacity: 0.5;
20627
+ }
20628
+
20629
+ .v-date-picker-month__day--hide-adjacent {
20630
+ opacity: 0;
20631
+ }.v-date-picker-months {
20632
+ height: 288px;
20633
+ }
20634
+
20635
+ .v-date-picker-months__content {
20636
+ align-items: center;
20637
+ display: grid;
20638
+ flex: 1 1;
20639
+ height: inherit;
20640
+ justify-content: space-around;
20641
+ grid-template-columns: repeat(2, 1fr);
20642
+ grid-gap: 0px 24px;
20643
+ padding-inline-start: 36px;
20644
+ padding-inline-end: 36px;
20645
+ }
20646
+ .v-date-picker-months__content .v-btn {
20647
+ text-transform: none;
20648
+ padding-inline-start: 8px;
20649
+ padding-inline-end: 8px;
20650
+ }.v-date-picker-years {
20651
+ height: 288px;
20652
+ overflow-y: scroll;
20653
+ }
20654
+
20655
+ .v-date-picker-years__content {
20656
+ display: grid;
20657
+ flex: 1 1;
20658
+ justify-content: space-around;
20659
+ grid-template-columns: repeat(3, 1fr);
20660
+ gap: 8px 24px;
20661
+ padding-inline: 32px;
20662
+ }
20663
+ .v-date-picker-years__content .v-btn {
20664
+ padding-inline: 8px;
20665
+ }.v-dialog {
20666
+ align-items: center;
20667
+ justify-content: center;
20668
+ margin: auto;
20669
+ }
20670
+ .v-dialog > .v-overlay__content {
20671
+ max-height: calc(100% - 48px);
20672
+ width: calc(100% - 48px);
20673
+ max-width: calc(100% - 48px);
20674
+ margin: 24px;
20675
+ }
20676
+ .v-dialog > .v-overlay__content,
20677
+ .v-dialog > .v-overlay__content > form {
20678
+ display: flex;
20679
+ flex-direction: column;
20680
+ min-height: 0;
20681
+ }
20682
+ .v-dialog > .v-overlay__content > .v-card,
20683
+ .v-dialog > .v-overlay__content > .v-sheet,
20684
+ .v-dialog > .v-overlay__content > form > .v-card,
20685
+ .v-dialog > .v-overlay__content > form > .v-sheet {
20686
+ --v-scrollbar-offset: 0px;
20687
+ border-radius: 4px;
20688
+ overflow-y: auto;
20689
+ }
20690
+ .v-dialog > .v-overlay__content > .v-card,
20691
+ .v-dialog > .v-overlay__content > .v-sheet,
20692
+ .v-dialog > .v-overlay__content > form > .v-card,
20693
+ .v-dialog > .v-overlay__content > form > .v-sheet {
20694
+ 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));
20695
+ }
20696
+ .v-dialog > .v-overlay__content > .v-card,
20697
+ .v-dialog > .v-overlay__content > form > .v-card {
20698
+ display: flex;
20699
+ flex-direction: column;
20700
+ }
20701
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item,
20702
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
20703
+ padding: 16px 24px;
20704
+ }
20705
+ .v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
20706
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
20707
+ padding-top: 0;
20708
+ }
20709
+ .v-dialog > .v-overlay__content > .v-card > .v-card-text,
20710
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
20711
+ font-size: inherit;
20712
+ letter-spacing: 0.03125em;
20713
+ line-height: inherit;
20714
+ padding: 16px 24px 24px;
20715
+ }
20716
+ .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
20717
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
20718
+ justify-content: flex-end;
20719
+ }
20720
+
20721
+ .v-dialog--fullscreen {
20722
+ --v-scrollbar-offset: 0px;
20723
+ }
20724
+ .v-dialog--fullscreen > .v-overlay__content {
20725
+ border-radius: 0;
20726
+ margin: 0;
20727
+ padding: 0;
20728
+ width: 100%;
20729
+ height: 100%;
20730
+ max-width: 100%;
20731
+ max-height: 100%;
20732
+ overflow-y: auto;
20733
+ top: 0;
20734
+ left: 0;
20735
+ }
20736
+ .v-dialog--fullscreen > .v-overlay__content > .v-card,
20737
+ .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
20738
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
20739
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
20740
+ min-height: 100%;
20741
+ min-width: 100%;
20742
+ border-radius: 0;
20743
+ }
20744
+
20745
+ .v-dialog--scrollable > .v-overlay__content,
20746
+ .v-dialog--scrollable > .v-overlay__content > form {
20747
+ display: flex;
20748
+ }
20749
+ .v-dialog--scrollable > .v-overlay__content > .v-card,
20750
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
20751
+ display: flex;
20752
+ flex: 1 1 100%;
20753
+ flex-direction: column;
20754
+ max-height: 100%;
20755
+ max-width: 100%;
20756
+ }
20757
+ .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
20758
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
20759
+ -webkit-backface-visibility: hidden;
20760
+ backface-visibility: hidden;
20761
+ overflow-y: auto;
20762
+ }.v-divider {
20763
+ display: block;
20764
+ flex: 1 1 100%;
20765
+ height: 0px;
20766
+ max-height: 0px;
20767
+ opacity: var(--v-border-opacity);
20768
+ transition: inherit;
20769
+ }
20770
+ .v-divider {
20771
+ border-style: solid;
20772
+ border-width: thin 0 0 0;
20769
20773
  }
20770
- .v-date-picker-month__day--week {
20771
- font-size: var(--v-btn-size);
20774
+ .v-divider--vertical {
20775
+ align-self: stretch;
20776
+ border-width: 0 thin 0 0;
20777
+ display: inline-flex;
20778
+ height: auto;
20779
+ margin-left: -1px;
20780
+ max-height: 100%;
20781
+ max-width: 0px;
20782
+ vertical-align: text-bottom;
20783
+ width: 0px;
20772
20784
  }
20773
-
20774
- .v-date-picker-month__day--adjacent {
20775
- opacity: 0.5;
20785
+ .v-divider--inset:not(.v-divider--vertical) {
20786
+ max-width: calc(100% - 72px);
20787
+ margin-inline-start: 72px;
20776
20788
  }
20777
-
20778
- .v-date-picker-month__day--hide-adjacent {
20779
- opacity: 0;
20780
- }.v-date-picker-years {
20781
- height: 288px;
20782
- overflow-y: scroll;
20789
+ .v-divider--inset.v-divider--vertical {
20790
+ margin-bottom: 8px;
20791
+ margin-top: 8px;
20792
+ max-height: calc(100% - 16px);
20783
20793
  }
20784
20794
 
20785
- .v-date-picker-years__content {
20786
- display: grid;
20787
- flex: 1 1;
20788
- justify-content: space-around;
20789
- grid-template-columns: repeat(3, 1fr);
20790
- gap: 8px 24px;
20791
- padding-inline: 32px;
20795
+ .v-divider__content {
20796
+ padding: 0 16px;
20797
+ text-wrap: nowrap;
20792
20798
  }
20793
- .v-date-picker-years__content .v-btn {
20794
- padding-inline: 8px;
20795
- }.v-date-picker-months {
20796
- height: 288px;
20799
+ .v-divider__wrapper--vertical .v-divider__content {
20800
+ padding: 4px 0;
20797
20801
  }
20798
20802
 
20799
- .v-date-picker-months__content {
20803
+ .v-divider__wrapper {
20804
+ display: flex;
20800
20805
  align-items: center;
20801
- display: grid;
20802
- flex: 1 1;
20803
- height: inherit;
20804
- justify-content: space-around;
20805
- grid-template-columns: repeat(2, 1fr);
20806
- grid-gap: 0px 24px;
20807
- padding-inline-start: 36px;
20808
- padding-inline-end: 36px;
20806
+ justify-content: center;
20809
20807
  }
20810
- .v-date-picker-months__content .v-btn {
20811
- text-transform: none;
20812
- padding-inline-start: 8px;
20813
- padding-inline-end: 8px;
20808
+ .v-divider__wrapper--vertical {
20809
+ flex-direction: column;
20810
+ height: 100%;
20811
+ }
20812
+ .v-divider__wrapper--vertical .v-divider {
20813
+ margin: 0 auto;
20814
20814
  }.v-empty-state {
20815
20815
  align-items: center;
20816
20816
  display: flex;
@@ -20878,75 +20878,6 @@ html.overflow-y-hidden {
20878
20878
  .v-empty-state__action-btn.v-btn {
20879
20879
  background-color: initial;
20880
20880
  color: initial;
20881
- }.v-fab {
20882
- align-items: center;
20883
- display: inline-flex;
20884
- flex: 1 1 auto;
20885
- pointer-events: none;
20886
- position: relative;
20887
- transition-duration: 0.2s;
20888
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20889
- vertical-align: middle;
20890
- }
20891
- .v-fab .v-btn {
20892
- pointer-events: auto;
20893
- }
20894
- .v-fab .v-btn--variant-elevated {
20895
- 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));
20896
- }
20897
- .v-fab--app, .v-fab--absolute {
20898
- display: flex;
20899
- }
20900
- .v-fab--start, .v-fab--left {
20901
- justify-content: flex-start;
20902
- }
20903
- .v-fab--center {
20904
- align-items: center;
20905
- justify-content: center;
20906
- }
20907
- .v-fab--end, .v-fab--right {
20908
- justify-content: flex-end;
20909
- }
20910
- .v-fab--bottom {
20911
- align-items: flex-end;
20912
- }
20913
- .v-fab--top {
20914
- align-items: flex-start;
20915
- }
20916
- .v-fab--extended .v-btn {
20917
- border-radius: 9999px !important;
20918
- }
20919
-
20920
- .v-fab__container {
20921
- align-self: center;
20922
- display: inline-flex;
20923
- position: absolute;
20924
- vertical-align: middle;
20925
- }
20926
- .v-fab--app .v-fab__container {
20927
- margin: 12px;
20928
- }
20929
- .v-fab--absolute .v-fab__container {
20930
- position: absolute;
20931
- z-index: 4;
20932
- }
20933
- .v-fab--offset.v-fab--top .v-fab__container {
20934
- transform: translateY(-50%);
20935
- }
20936
- .v-fab--offset.v-fab--bottom .v-fab__container {
20937
- transform: translateY(50%);
20938
- }
20939
- .v-fab--top .v-fab__container {
20940
- top: 0;
20941
- }
20942
- .v-fab--bottom .v-fab__container {
20943
- bottom: 0;
20944
- }
20945
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
20946
- left: 0;
20947
- }
20948
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
20949
- right: 0;
20950
20881
  }.v-expansion-panel {
20951
20882
  background-color: rgb(var(--v-theme-surface));
20952
20883
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -21163,6 +21094,75 @@ html.overflow-y-hidden {
21163
21094
  }
21164
21095
  .v-expansion-panels--tile > .v-expansion-panel {
21165
21096
  border-radius: 0;
21097
+ }.v-fab {
21098
+ align-items: center;
21099
+ display: inline-flex;
21100
+ flex: 1 1 auto;
21101
+ pointer-events: none;
21102
+ position: relative;
21103
+ transition-duration: 0.2s;
21104
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21105
+ vertical-align: middle;
21106
+ }
21107
+ .v-fab .v-btn {
21108
+ pointer-events: auto;
21109
+ }
21110
+ .v-fab .v-btn--variant-elevated {
21111
+ 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));
21112
+ }
21113
+ .v-fab--app, .v-fab--absolute {
21114
+ display: flex;
21115
+ }
21116
+ .v-fab--start, .v-fab--left {
21117
+ justify-content: flex-start;
21118
+ }
21119
+ .v-fab--center {
21120
+ align-items: center;
21121
+ justify-content: center;
21122
+ }
21123
+ .v-fab--end, .v-fab--right {
21124
+ justify-content: flex-end;
21125
+ }
21126
+ .v-fab--bottom {
21127
+ align-items: flex-end;
21128
+ }
21129
+ .v-fab--top {
21130
+ align-items: flex-start;
21131
+ }
21132
+ .v-fab--extended .v-btn {
21133
+ border-radius: 9999px !important;
21134
+ }
21135
+
21136
+ .v-fab__container {
21137
+ align-self: center;
21138
+ display: inline-flex;
21139
+ position: absolute;
21140
+ vertical-align: middle;
21141
+ }
21142
+ .v-fab--app .v-fab__container {
21143
+ margin: 12px;
21144
+ }
21145
+ .v-fab--absolute .v-fab__container {
21146
+ position: absolute;
21147
+ z-index: 4;
21148
+ }
21149
+ .v-fab--offset.v-fab--top .v-fab__container {
21150
+ transform: translateY(-50%);
21151
+ }
21152
+ .v-fab--offset.v-fab--bottom .v-fab__container {
21153
+ transform: translateY(50%);
21154
+ }
21155
+ .v-fab--top .v-fab__container {
21156
+ top: 0;
21157
+ }
21158
+ .v-fab--bottom .v-fab__container {
21159
+ bottom: 0;
21160
+ }
21161
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21162
+ left: 0;
21163
+ }
21164
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21165
+ right: 0;
21166
21166
  }/* region INPUT */
21167
21167
  .v-field {
21168
21168
  display: grid;
@@ -21755,26 +21755,62 @@ textarea.v-field__input::placeholder {
21755
21755
  grid-area: control;
21756
21756
  margin: 0 auto;
21757
21757
  }
21758
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21759
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21760
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21761
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21762
- top: 0px;
21758
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21759
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21760
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21761
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21762
+ top: 0px;
21763
+ }
21764
+ .v-file-input input[type=file] {
21765
+ height: 100%;
21766
+ left: 0;
21767
+ opacity: 0;
21768
+ position: absolute;
21769
+ top: 0;
21770
+ width: 100%;
21771
+ z-index: 1;
21772
+ }
21773
+ .v-file-input .v-input__details {
21774
+ padding-inline: 16px;
21775
+ }
21776
+ .v-input--plain-underlined.v-file-input .v-input__details {
21777
+ padding-inline: 0;
21778
+ }.v-footer {
21779
+ align-items: center;
21780
+ display: flex;
21781
+ flex: 1 1 auto;
21782
+ padding: 8px 16px;
21783
+ position: relative;
21784
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21785
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
21786
+ }
21787
+ .v-footer {
21788
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21789
+ border-style: solid;
21790
+ border-width: 0;
21791
+ }
21792
+ .v-footer--border {
21793
+ border-width: thin;
21794
+ box-shadow: none;
21795
+ }
21796
+ .v-footer {
21797
+ 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));
21763
21798
  }
21764
- .v-file-input input[type=file] {
21765
- height: 100%;
21766
- left: 0;
21767
- opacity: 0;
21799
+ .v-footer--absolute {
21768
21800
  position: absolute;
21769
- top: 0;
21770
- width: 100%;
21771
- z-index: 1;
21772
21801
  }
21773
- .v-file-input .v-input__details {
21774
- padding-inline: 16px;
21802
+ .v-footer--fixed {
21803
+ position: fixed;
21775
21804
  }
21776
- .v-input--plain-underlined.v-file-input .v-input__details {
21777
- padding-inline: 0;
21805
+ .v-footer {
21806
+ border-radius: 0;
21807
+ }
21808
+ .v-footer {
21809
+ background: rgb(var(--v-theme-surface));
21810
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21811
+ }
21812
+ .v-footer--rounded {
21813
+ border-radius: 4px;
21778
21814
  }.v-container {
21779
21815
  width: 100%;
21780
21816
  padding: 16px;
@@ -22447,42 +22483,59 @@ textarea.v-field__input::placeholder {
22447
22483
  .offset-xxl-11 {
22448
22484
  margin-inline-start: 91.6666666667%;
22449
22485
  }
22450
- }.v-footer {
22486
+ }.v-icon {
22487
+ --v-icon-size-multiplier: 1;
22451
22488
  align-items: center;
22452
- display: flex;
22453
- flex: 1 1 auto;
22454
- padding: 8px 16px;
22489
+ display: inline-flex;
22490
+ font-feature-settings: "liga";
22491
+ height: 1em;
22492
+ justify-content: center;
22493
+ letter-spacing: normal;
22494
+ line-height: 1;
22455
22495
  position: relative;
22456
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22457
- transition-property: height, width, transform, max-width, left, right, top, bottom;
22496
+ text-indent: 0;
22497
+ text-align: center;
22498
+ -webkit-user-select: none;
22499
+ user-select: none;
22500
+ vertical-align: middle;
22501
+ width: 1em;
22502
+ min-width: 1em;
22458
22503
  }
22459
- .v-footer {
22460
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22461
- border-style: solid;
22462
- border-width: 0;
22504
+ .v-icon--clickable {
22505
+ cursor: pointer;
22463
22506
  }
22464
- .v-footer--border {
22465
- border-width: thin;
22466
- box-shadow: none;
22507
+ .v-icon--disabled {
22508
+ pointer-events: none;
22509
+ opacity: 0.38;
22467
22510
  }
22468
- .v-footer {
22469
- 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));
22511
+ .v-icon--size-x-small {
22512
+ font-size: calc(var(--v-icon-size-multiplier) * 1em);
22470
22513
  }
22471
- .v-footer--absolute {
22472
- position: absolute;
22514
+ .v-icon--size-small {
22515
+ font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
22473
22516
  }
22474
- .v-footer--fixed {
22475
- position: fixed;
22517
+ .v-icon--size-default {
22518
+ font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
22476
22519
  }
22477
- .v-footer {
22478
- border-radius: 0;
22520
+ .v-icon--size-large {
22521
+ font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
22479
22522
  }
22480
- .v-footer {
22481
- background: rgb(var(--v-theme-surface));
22482
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22523
+ .v-icon--size-x-large {
22524
+ font-size: calc(var(--v-icon-size-multiplier) * 2em);
22483
22525
  }
22484
- .v-footer--rounded {
22485
- border-radius: 4px;
22526
+
22527
+ .v-icon__svg {
22528
+ fill: currentColor;
22529
+ width: 100%;
22530
+ height: 100%;
22531
+ }
22532
+
22533
+ .v-icon--start {
22534
+ margin-inline-end: 8px;
22535
+ }
22536
+
22537
+ .v-icon--end {
22538
+ margin-inline-start: 8px;
22486
22539
  }.v-img {
22487
22540
  --v-theme-overlay-multiplier: 3;
22488
22541
  z-index: 0;
@@ -22534,31 +22587,6 @@ textarea.v-field__input::placeholder {
22534
22587
 
22535
22588
  .v-img__gradient {
22536
22589
  background-repeat: no-repeat;
22537
- }.v-infinite-scroll--horizontal {
22538
- display: flex;
22539
- flex-direction: row;
22540
- overflow-x: auto;
22541
- }
22542
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22543
- height: 100%;
22544
- width: 1px;
22545
- }
22546
-
22547
- .v-infinite-scroll--vertical {
22548
- display: flex;
22549
- flex-direction: column;
22550
- overflow-y: auto;
22551
- }
22552
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22553
- height: 1px;
22554
- width: 100%;
22555
- }
22556
-
22557
- .v-infinite-scroll__side {
22558
- align-items: center;
22559
- display: flex;
22560
- justify-content: center;
22561
- padding: 8px;
22562
22590
  }.v-input {
22563
22591
  display: grid;
22564
22592
  flex: 1 1 auto;
@@ -22699,205 +22727,80 @@ textarea.v-field__input::placeholder {
22699
22727
  padding-top: calc(var(--v-input-padding-top) + 2px);
22700
22728
  }
22701
22729
 
22702
- .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22703
- padding-top: calc(var(--v-input-padding-top) + 0px);
22704
- }.v-icon {
22705
- --v-icon-size-multiplier: 1;
22706
- align-items: center;
22707
- display: inline-flex;
22708
- font-feature-settings: "liga";
22709
- height: 1em;
22710
- justify-content: center;
22711
- letter-spacing: normal;
22712
- line-height: 1;
22713
- position: relative;
22714
- text-indent: 0;
22715
- text-align: center;
22716
- -webkit-user-select: none;
22717
- user-select: none;
22718
- vertical-align: middle;
22719
- width: 1em;
22720
- min-width: 1em;
22721
- }
22722
- .v-icon--clickable {
22723
- cursor: pointer;
22724
- }
22725
- .v-icon--disabled {
22726
- pointer-events: none;
22727
- opacity: 0.38;
22728
- }
22729
- .v-icon--size-x-small {
22730
- font-size: calc(var(--v-icon-size-multiplier) * 1em);
22731
- }
22732
- .v-icon--size-small {
22733
- font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
22734
- }
22735
- .v-icon--size-default {
22736
- font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
22737
- }
22738
- .v-icon--size-large {
22739
- font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
22740
- }
22741
- .v-icon--size-x-large {
22742
- font-size: calc(var(--v-icon-size-multiplier) * 2em);
22743
- }
22744
-
22745
- .v-icon__svg {
22746
- fill: currentColor;
22747
- width: 100%;
22748
- height: 100%;
22749
- }
22750
-
22751
- .v-icon--start {
22752
- margin-inline-end: 8px;
22753
- }
22754
-
22755
- .v-icon--end {
22756
- margin-inline-start: 8px;
22757
- }.v-item-group {
22758
- flex: 0 1 auto;
22759
- max-width: 100%;
22760
- position: relative;
22761
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22762
- }.v-layout-item {
22763
- position: absolute;
22764
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22765
- }
22766
-
22767
- .v-layout-item--absolute {
22768
- position: absolute;
22769
- }.v-layout {
22770
- --v-scrollbar-offset: 0px;
22771
- display: flex;
22772
- flex: 1 1 auto;
22773
- }
22774
- .v-layout--full-height {
22775
- --v-scrollbar-offset: inherit;
22776
- height: 100%;
22777
- }.v-label {
22778
- align-items: center;
22779
- color: inherit;
22780
- display: inline-flex;
22781
- font-size: 1rem;
22782
- letter-spacing: 0.009375em;
22783
- min-width: 0;
22784
- opacity: var(--v-medium-emphasis-opacity);
22785
- overflow: hidden;
22786
- text-overflow: ellipsis;
22787
- white-space: nowrap;
22788
- }
22789
-
22790
- .v-label--clickable {
22791
- cursor: pointer;
22792
- }.v-list {
22793
- overflow: auto;
22794
- padding: 8px 0;
22795
- position: relative;
22796
- outline: none;
22797
- }
22798
- .v-list {
22799
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22800
- border-style: solid;
22801
- border-width: 0;
22802
- }
22803
- .v-list--border {
22804
- border-width: thin;
22805
- box-shadow: none;
22806
- }
22807
- .v-list {
22808
- 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));
22809
- }
22810
- .v-list {
22811
- border-radius: 0;
22812
- }
22813
- .v-list {
22814
- background: rgba(var(--v-theme-surface));
22815
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22816
- }
22817
- .v-list--disabled {
22818
- pointer-events: none;
22819
- -webkit-user-select: none;
22820
- user-select: none;
22821
- }
22822
- .v-list--nav {
22823
- padding-inline: 8px;
22824
- }
22825
- .v-list--rounded {
22826
- border-radius: 4px;
22827
- }
22828
- .v-list--subheader {
22829
- padding-top: 0;
22830
- }
22831
-
22832
- .v-list-img {
22833
- border-radius: inherit;
22730
+ .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22731
+ padding-top: calc(var(--v-input-padding-top) + 0px);
22732
+ }.v-infinite-scroll--horizontal {
22834
22733
  display: flex;
22734
+ flex-direction: row;
22735
+ overflow-x: auto;
22736
+ }
22737
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22835
22738
  height: 100%;
22836
- left: 0;
22837
- overflow: hidden;
22838
- position: absolute;
22839
- top: 0;
22840
- width: 100%;
22841
- z-index: -1;
22739
+ width: var(--v-infinite-margin-size, 1px);
22842
22740
  }
22843
22741
 
22844
- .v-list-subheader {
22845
- align-items: center;
22846
- background: inherit;
22847
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22742
+ .v-infinite-scroll--vertical {
22848
22743
  display: flex;
22849
- font-size: 0.875rem;
22850
- font-weight: 400;
22851
- line-height: 1.375rem;
22852
- padding-inline-end: 16px;
22853
- min-height: 40px;
22854
- transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
22855
- }
22856
- .v-list-subheader__text {
22857
- overflow: hidden;
22858
- text-overflow: ellipsis;
22859
- white-space: nowrap;
22744
+ flex-direction: column;
22745
+ overflow-y: auto;
22860
22746
  }
22861
- .v-list--density-default .v-list-subheader {
22862
- min-height: 40px;
22863
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22747
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22748
+ height: 1px;
22749
+ width: 100%;
22864
22750
  }
22865
22751
 
22866
- .v-list--density-comfortable .v-list-subheader {
22867
- min-height: 36px;
22868
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22752
+ .v-infinite-scroll-intersect {
22753
+ pointer-events: none;
22754
+ margin-top: var(--v-infinite-margin);
22755
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
22869
22756
  }
22870
-
22871
- .v-list--density-compact .v-list-subheader {
22872
- min-height: 32px;
22873
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22757
+ .v-infinite-scroll-intersect:nth-child(2) {
22758
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22874
22759
  }
22875
-
22876
- .v-list-subheader--inset {
22877
- --indent-padding: 56px;
22760
+ .v-infinite-scroll-intersect:nth-last-child(2) {
22761
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22878
22762
  }
22879
- .v-list--nav .v-list-subheader {
22880
- font-size: 0.75rem;
22763
+
22764
+ .v-infinite-scroll__side {
22765
+ align-items: center;
22766
+ display: flex;
22767
+ justify-content: center;
22768
+ padding: 8px;
22769
+ }.v-item-group {
22770
+ flex: 0 1 auto;
22771
+ max-width: 100%;
22772
+ position: relative;
22773
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22774
+ }.v-label {
22775
+ align-items: center;
22776
+ color: inherit;
22777
+ display: inline-flex;
22778
+ font-size: 1rem;
22779
+ letter-spacing: 0.009375em;
22780
+ min-width: 0;
22781
+ opacity: var(--v-medium-emphasis-opacity);
22782
+ overflow: hidden;
22783
+ text-overflow: ellipsis;
22784
+ white-space: nowrap;
22881
22785
  }
22882
- .v-list-subheader--sticky {
22883
- background: inherit;
22884
- left: 0;
22885
- position: sticky;
22886
- top: 0;
22887
- z-index: 1;
22786
+
22787
+ .v-label--clickable {
22788
+ cursor: pointer;
22789
+ }.v-layout-item {
22790
+ position: absolute;
22791
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22888
22792
  }
22889
22793
 
22890
- .v-list__overlay {
22891
- background-color: currentColor;
22892
- border-radius: inherit;
22893
- bottom: 0;
22894
- left: 0;
22895
- opacity: 0;
22896
- pointer-events: none;
22794
+ .v-layout-item--absolute {
22897
22795
  position: absolute;
22898
- right: 0;
22899
- top: 0;
22900
- transition: opacity 0.2s ease-in-out;
22796
+ }.v-layout {
22797
+ --v-scrollbar-offset: 0px;
22798
+ display: flex;
22799
+ flex: 1 1 auto;
22800
+ }
22801
+ .v-layout--full-height {
22802
+ --v-scrollbar-offset: inherit;
22803
+ height: 100%;
22901
22804
  }.v-list-item {
22902
22805
  align-items: center;
22903
22806
  display: grid;
@@ -23310,7 +23213,159 @@ textarea.v-field__input::placeholder {
23310
23213
  position: absolute;
23311
23214
  }
23312
23215
 
23313
- .v-list-item__overlay {
23216
+ .v-list-item__overlay {
23217
+ background-color: currentColor;
23218
+ border-radius: inherit;
23219
+ bottom: 0;
23220
+ left: 0;
23221
+ opacity: 0;
23222
+ pointer-events: none;
23223
+ position: absolute;
23224
+ right: 0;
23225
+ top: 0;
23226
+ transition: opacity 0.2s ease-in-out;
23227
+ }
23228
+ .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
23229
+ --v-theme-overlay-multiplier: 0;
23230
+ }
23231
+
23232
+ .v-list {
23233
+ --indent-padding: 0px;
23234
+ }
23235
+ .v-list--nav {
23236
+ --indent-padding: -8px;
23237
+ }
23238
+
23239
+ .v-list-group {
23240
+ --list-indent-size: 16px;
23241
+ --parent-padding: var(--indent-padding);
23242
+ --prepend-width: 40px;
23243
+ }
23244
+ .v-list--slim .v-list-group {
23245
+ --prepend-width: 28px;
23246
+ }
23247
+ .v-list-group--fluid {
23248
+ --list-indent-size: 0px;
23249
+ }
23250
+ .v-list-group--prepend {
23251
+ --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
23252
+ }
23253
+ .v-list-group--fluid.v-list-group--prepend {
23254
+ --parent-padding: var(--indent-padding);
23255
+ }
23256
+
23257
+ .v-list-group__items {
23258
+ --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
23259
+ }
23260
+
23261
+ .v-list-group__items .v-list-item {
23262
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23263
+ }
23264
+
23265
+ .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23266
+ opacity: 0;
23267
+ }
23268
+ .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23269
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23270
+ }.v-list {
23271
+ overflow: auto;
23272
+ padding: 8px 0;
23273
+ position: relative;
23274
+ outline: none;
23275
+ }
23276
+ .v-list {
23277
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23278
+ border-style: solid;
23279
+ border-width: 0;
23280
+ }
23281
+ .v-list--border {
23282
+ border-width: thin;
23283
+ box-shadow: none;
23284
+ }
23285
+ .v-list {
23286
+ 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));
23287
+ }
23288
+ .v-list {
23289
+ border-radius: 0;
23290
+ }
23291
+ .v-list {
23292
+ background: rgba(var(--v-theme-surface));
23293
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23294
+ }
23295
+ .v-list--disabled {
23296
+ pointer-events: none;
23297
+ -webkit-user-select: none;
23298
+ user-select: none;
23299
+ }
23300
+ .v-list--nav {
23301
+ padding-inline: 8px;
23302
+ }
23303
+ .v-list--rounded {
23304
+ border-radius: 4px;
23305
+ }
23306
+ .v-list--subheader {
23307
+ padding-top: 0;
23308
+ }
23309
+
23310
+ .v-list-img {
23311
+ border-radius: inherit;
23312
+ display: flex;
23313
+ height: 100%;
23314
+ left: 0;
23315
+ overflow: hidden;
23316
+ position: absolute;
23317
+ top: 0;
23318
+ width: 100%;
23319
+ z-index: -1;
23320
+ }
23321
+
23322
+ .v-list-subheader {
23323
+ align-items: center;
23324
+ background: inherit;
23325
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23326
+ display: flex;
23327
+ font-size: 0.875rem;
23328
+ font-weight: 400;
23329
+ line-height: 1.375rem;
23330
+ padding-inline-end: 16px;
23331
+ min-height: 40px;
23332
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
23333
+ }
23334
+ .v-list-subheader__text {
23335
+ overflow: hidden;
23336
+ text-overflow: ellipsis;
23337
+ white-space: nowrap;
23338
+ }
23339
+ .v-list--density-default .v-list-subheader {
23340
+ min-height: 40px;
23341
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23342
+ }
23343
+
23344
+ .v-list--density-comfortable .v-list-subheader {
23345
+ min-height: 36px;
23346
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23347
+ }
23348
+
23349
+ .v-list--density-compact .v-list-subheader {
23350
+ min-height: 32px;
23351
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23352
+ }
23353
+
23354
+ .v-list-subheader--inset {
23355
+ --indent-padding: 56px;
23356
+ }
23357
+ .v-list--nav .v-list-subheader {
23358
+ font-size: 0.75rem;
23359
+ }
23360
+ .v-list-subheader--sticky {
23361
+ background: inherit;
23362
+ left: 0;
23363
+ position: sticky;
23364
+ top: 0;
23365
+ z-index: 1;
23366
+ }
23367
+
23368
+ .v-list__overlay {
23314
23369
  background-color: currentColor;
23315
23370
  border-radius: inherit;
23316
23371
  bottom: 0;
@@ -23321,49 +23376,6 @@ textarea.v-field__input::placeholder {
23321
23376
  right: 0;
23322
23377
  top: 0;
23323
23378
  transition: opacity 0.2s ease-in-out;
23324
- }
23325
- .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
23326
- --v-theme-overlay-multiplier: 0;
23327
- }
23328
-
23329
- .v-list {
23330
- --indent-padding: 0px;
23331
- }
23332
- .v-list--nav {
23333
- --indent-padding: -8px;
23334
- }
23335
-
23336
- .v-list-group {
23337
- --list-indent-size: 16px;
23338
- --parent-padding: var(--indent-padding);
23339
- --prepend-width: 40px;
23340
- }
23341
- .v-list--slim .v-list-group {
23342
- --prepend-width: 28px;
23343
- }
23344
- .v-list-group--fluid {
23345
- --list-indent-size: 0px;
23346
- }
23347
- .v-list-group--prepend {
23348
- --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
23349
- }
23350
- .v-list-group--fluid.v-list-group--prepend {
23351
- --parent-padding: var(--indent-padding);
23352
- }
23353
-
23354
- .v-list-group__items {
23355
- --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
23356
- }
23357
-
23358
- .v-list-group__items .v-list-item {
23359
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
23360
- }
23361
-
23362
- .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23363
- opacity: 0;
23364
- }
23365
- .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23366
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23367
23379
  }.v-main {
23368
23380
  flex: 1 0 auto;
23369
23381
  max-width: 100%;
@@ -23396,6 +23408,22 @@ textarea.v-field__input::placeholder {
23396
23408
  --v-layout-bottom: 0px;
23397
23409
  }.v-locale-provider {
23398
23410
  display: contents;
23411
+ }.v-messages {
23412
+ flex: 1 1 auto;
23413
+ font-size: 12px;
23414
+ min-height: 14px;
23415
+ min-width: 1px;
23416
+ opacity: var(--v-medium-emphasis-opacity);
23417
+ position: relative;
23418
+ }
23419
+ .v-messages__message {
23420
+ line-height: 12px;
23421
+ word-break: break-word;
23422
+ overflow-wrap: break-word;
23423
+ word-wrap: break-word;
23424
+ -webkit-hyphens: auto;
23425
+ hyphens: auto;
23426
+ transition-duration: 150ms;
23399
23427
  }.v-menu > .v-overlay__content {
23400
23428
  display: flex;
23401
23429
  flex-direction: column;
@@ -23523,22 +23551,6 @@ textarea.v-field__input::placeholder {
23523
23551
  .v-navigation-drawer__append {
23524
23552
  flex: none;
23525
23553
  overflow: hidden;
23526
- }.v-messages {
23527
- flex: 1 1 auto;
23528
- font-size: 12px;
23529
- min-height: 14px;
23530
- min-width: 1px;
23531
- opacity: var(--v-medium-emphasis-opacity);
23532
- position: relative;
23533
- }
23534
- .v-messages__message {
23535
- line-height: 12px;
23536
- word-break: break-word;
23537
- overflow-wrap: break-word;
23538
- word-wrap: break-word;
23539
- -webkit-hyphens: auto;
23540
- hyphens: auto;
23541
- transition-duration: 150ms;
23542
23554
  }.v-otp-input {
23543
23555
  align-items: center;
23544
23556
  display: flex;
@@ -23660,6 +23672,20 @@ html.v-overlay-scroll-blocked {
23660
23672
 
23661
23673
  .v-overlay--scroll-blocked {
23662
23674
  padding-inline-end: var(--v-scrollbar-offset);
23675
+ }.v-pagination__list {
23676
+ display: inline-flex;
23677
+ list-style-type: none;
23678
+ justify-content: center;
23679
+ width: 100%;
23680
+ }
23681
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23682
+ margin: 0.3rem;
23683
+ }.v-parallax {
23684
+ position: relative;
23685
+ overflow: hidden;
23686
+ }
23687
+ .v-parallax--active > .v-img__img {
23688
+ will-change: transform;
23663
23689
  }.v-progress-circular {
23664
23690
  align-items: center;
23665
23691
  display: inline-flex;
@@ -23762,32 +23788,6 @@ html.v-overlay-scroll-blocked {
23762
23788
  100% {
23763
23789
  transform: rotate(270deg);
23764
23790
  }
23765
- }.v-parallax {
23766
- position: relative;
23767
- overflow: hidden;
23768
- }
23769
- .v-parallax--active > .v-img__img {
23770
- will-change: transform;
23771
- }.v-pagination__list {
23772
- display: inline-flex;
23773
- list-style-type: none;
23774
- justify-content: center;
23775
- width: 100%;
23776
- }
23777
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23778
- margin: 0.3rem;
23779
- }.v-radio-group > .v-input__control {
23780
- flex-direction: column;
23781
- }
23782
- .v-radio-group > .v-input__control > .v-label {
23783
- margin-inline-start: 16px;
23784
- }
23785
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23786
- padding-inline-start: 6px;
23787
- margin-top: 8px;
23788
- }
23789
- .v-radio-group .v-input__details {
23790
- padding-inline: 16px;
23791
23791
  }.v-progress-linear {
23792
23792
  background: transparent;
23793
23793
  overflow: hidden;
@@ -24016,6 +24016,18 @@ html.v-overlay-scroll-blocked {
24016
24016
  0% {
24017
24017
  background-position-x: var(--v-progress-linear-height);
24018
24018
  }
24019
+ }.v-radio-group > .v-input__control {
24020
+ flex-direction: column;
24021
+ }
24022
+ .v-radio-group > .v-input__control > .v-label {
24023
+ margin-inline-start: 16px;
24024
+ }
24025
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24026
+ padding-inline-start: 6px;
24027
+ margin-top: 8px;
24028
+ }
24029
+ .v-radio-group .v-input__details {
24030
+ padding-inline: 16px;
24019
24031
  }.v-slider .v-slider__container input {
24020
24032
  cursor: default;
24021
24033
  padding: 0;
@@ -24126,6 +24138,32 @@ html.v-overlay-scroll-blocked {
24126
24138
  opacity: 0;
24127
24139
  position: absolute;
24128
24140
  width: 0;
24141
+ }.v-responsive {
24142
+ display: flex;
24143
+ flex: 1 0 auto;
24144
+ max-height: 100%;
24145
+ max-width: 100%;
24146
+ overflow: hidden;
24147
+ position: relative;
24148
+ }
24149
+ .v-responsive--inline {
24150
+ display: inline-flex;
24151
+ flex: 0 0 auto;
24152
+ }
24153
+
24154
+ .v-responsive__content {
24155
+ flex: 1 0 0px;
24156
+ max-width: 100%;
24157
+ }
24158
+
24159
+ .v-responsive__sizer ~ .v-responsive__content {
24160
+ margin-inline-start: -100%;
24161
+ }
24162
+
24163
+ .v-responsive__sizer {
24164
+ flex: 1 0 0px;
24165
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24166
+ pointer-events: none;
24129
24167
  }.v-select .v-field .v-text-field__prefix,
24130
24168
  .v-select .v-field .v-text-field__suffix,
24131
24169
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -24178,32 +24216,6 @@ html.v-overlay-scroll-blocked {
24178
24216
  .v-select--active-menu .v-select__menu-icon {
24179
24217
  opacity: var(--v-high-emphasis-opacity);
24180
24218
  transform: rotate(180deg);
24181
- }.v-responsive {
24182
- display: flex;
24183
- flex: 1 0 auto;
24184
- max-height: 100%;
24185
- max-width: 100%;
24186
- overflow: hidden;
24187
- position: relative;
24188
- }
24189
- .v-responsive--inline {
24190
- display: inline-flex;
24191
- flex: 0 0 auto;
24192
- }
24193
-
24194
- .v-responsive__content {
24195
- flex: 1 0 0px;
24196
- max-width: 100%;
24197
- }
24198
-
24199
- .v-responsive__sizer ~ .v-responsive__content {
24200
- margin-inline-start: -100%;
24201
- }
24202
-
24203
- .v-responsive__sizer {
24204
- flex: 1 0 0px;
24205
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24206
- pointer-events: none;
24207
24219
  }.v-selection-control {
24208
24220
  align-items: center;
24209
24221
  contain: layout;
@@ -24307,42 +24319,6 @@ html.v-overlay-scroll-blocked {
24307
24319
  }
24308
24320
  .v-selection-control--focus-visible .v-selection-control__input::before {
24309
24321
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24310
- }.v-sheet {
24311
- display: block;
24312
- }
24313
- .v-sheet {
24314
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24315
- border-style: solid;
24316
- border-width: 0;
24317
- }
24318
- .v-sheet--border {
24319
- border-width: thin;
24320
- box-shadow: none;
24321
- }
24322
- .v-sheet {
24323
- 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));
24324
- }
24325
- .v-sheet--absolute {
24326
- position: absolute;
24327
- }
24328
- .v-sheet--fixed {
24329
- position: fixed;
24330
- }
24331
- .v-sheet--relative {
24332
- position: relative;
24333
- }
24334
- .v-sheet--sticky {
24335
- position: sticky;
24336
- }
24337
- .v-sheet {
24338
- border-radius: 0;
24339
- }
24340
- .v-sheet {
24341
- background: rgb(var(--v-theme-surface));
24342
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24343
- }
24344
- .v-sheet--rounded {
24345
- border-radius: 4px;
24346
24322
  }.v-selection-control-group {
24347
24323
  grid-area: control;
24348
24324
  display: flex;
@@ -24571,11 +24547,47 @@ html.v-overlay-scroll-blocked {
24571
24547
  .v-skeleton-loader--tile .v-skeleton-loader__bone {
24572
24548
  border-radius: 0;
24573
24549
  }
24574
-
24575
- @keyframes loading {
24576
- 100% {
24577
- transform: translateX(100%);
24578
- }
24550
+
24551
+ @keyframes loading {
24552
+ 100% {
24553
+ transform: translateX(100%);
24554
+ }
24555
+ }.v-sheet {
24556
+ display: block;
24557
+ }
24558
+ .v-sheet {
24559
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24560
+ border-style: solid;
24561
+ border-width: 0;
24562
+ }
24563
+ .v-sheet--border {
24564
+ border-width: thin;
24565
+ box-shadow: none;
24566
+ }
24567
+ .v-sheet {
24568
+ 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));
24569
+ }
24570
+ .v-sheet--absolute {
24571
+ position: absolute;
24572
+ }
24573
+ .v-sheet--fixed {
24574
+ position: fixed;
24575
+ }
24576
+ .v-sheet--relative {
24577
+ position: relative;
24578
+ }
24579
+ .v-sheet--sticky {
24580
+ position: sticky;
24581
+ }
24582
+ .v-sheet {
24583
+ border-radius: 0;
24584
+ }
24585
+ .v-sheet {
24586
+ background: rgb(var(--v-theme-surface));
24587
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24588
+ }
24589
+ .v-sheet--rounded {
24590
+ border-radius: 4px;
24579
24591
  }.v-slide-group {
24580
24592
  display: flex;
24581
24593
  overflow: hidden;
@@ -24771,47 +24783,6 @@ html.v-overlay-scroll-blocked {
24771
24783
  }
24772
24784
  .v-snackbar-transition-leave-to {
24773
24785
  opacity: 0;
24774
- }.v-speed-dial__content {
24775
- gap: 8px;
24776
- }
24777
- .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 {
24778
- flex-direction: row;
24779
- }
24780
- .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 {
24781
- flex-direction: row-reverse;
24782
- }
24783
- .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 {
24784
- flex-direction: column-reverse;
24785
- }
24786
- .v-speed-dial__content > *:nth-child(1) {
24787
- transition-delay: 0s;
24788
- }
24789
- .v-speed-dial__content > *:nth-child(2) {
24790
- transition-delay: 0.05s;
24791
- }
24792
- .v-speed-dial__content > *:nth-child(3) {
24793
- transition-delay: 0.1s;
24794
- }
24795
- .v-speed-dial__content > *:nth-child(4) {
24796
- transition-delay: 0.15s;
24797
- }
24798
- .v-speed-dial__content > *:nth-child(5) {
24799
- transition-delay: 0.2s;
24800
- }
24801
- .v-speed-dial__content > *:nth-child(6) {
24802
- transition-delay: 0.25s;
24803
- }
24804
- .v-speed-dial__content > *:nth-child(7) {
24805
- transition-delay: 0.3s;
24806
- }
24807
- .v-speed-dial__content > *:nth-child(8) {
24808
- transition-delay: 0.35s;
24809
- }
24810
- .v-speed-dial__content > *:nth-child(9) {
24811
- transition-delay: 0.4s;
24812
- }
24813
- .v-speed-dial__content > *:nth-child(10) {
24814
- transition-delay: 0.45s;
24815
24786
  }.v-stepper.v-sheet {
24816
24787
  overflow: hidden;
24817
24788
  }
@@ -24987,49 +24958,47 @@ html.v-overlay-scroll-blocked {
24987
24958
  left: 0;
24988
24959
  width: 100%;
24989
24960
  height: 100%;
24990
- }.v-system-bar {
24991
- align-items: center;
24992
- display: flex;
24993
- flex: 1 1 auto;
24994
- height: 24px;
24995
- justify-content: flex-end;
24996
- max-width: 100%;
24997
- padding-inline: 8px;
24998
- position: relative;
24999
- text-align: end;
25000
- width: 100%;
24961
+ }.v-speed-dial__content {
24962
+ gap: 8px;
25001
24963
  }
25002
- .v-system-bar .v-icon {
25003
- opacity: var(--v-medium-emphasis-opacity);
24964
+ .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 {
24965
+ flex-direction: row;
25004
24966
  }
25005
- .v-system-bar {
25006
- 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));
24967
+ .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 {
24968
+ flex-direction: row-reverse;
25007
24969
  }
25008
- .v-system-bar--absolute {
25009
- position: absolute;
24970
+ .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 {
24971
+ flex-direction: column-reverse;
25010
24972
  }
25011
- .v-system-bar--fixed {
25012
- position: fixed;
24973
+ .v-speed-dial__content > *:nth-child(1) {
24974
+ transition-delay: 0s;
25013
24975
  }
25014
- .v-system-bar {
25015
- background: rgba(var(--v-theme-surface-light));
25016
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24976
+ .v-speed-dial__content > *:nth-child(2) {
24977
+ transition-delay: 0.05s;
25017
24978
  }
25018
- .v-system-bar {
25019
- font-size: 0.75rem;
25020
- font-weight: 400;
25021
- letter-spacing: 0.0333333333em;
25022
- line-height: 1.667;
25023
- text-transform: none;
24979
+ .v-speed-dial__content > *:nth-child(3) {
24980
+ transition-delay: 0.1s;
25024
24981
  }
25025
- .v-system-bar--rounded {
25026
- border-radius: 0;
24982
+ .v-speed-dial__content > *:nth-child(4) {
24983
+ transition-delay: 0.15s;
25027
24984
  }
25028
- .v-system-bar--window {
25029
- height: 32px;
24985
+ .v-speed-dial__content > *:nth-child(5) {
24986
+ transition-delay: 0.2s;
25030
24987
  }
25031
- .v-system-bar:not(.v-system-bar--absolute) {
25032
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24988
+ .v-speed-dial__content > *:nth-child(6) {
24989
+ transition-delay: 0.25s;
24990
+ }
24991
+ .v-speed-dial__content > *:nth-child(7) {
24992
+ transition-delay: 0.3s;
24993
+ }
24994
+ .v-speed-dial__content > *:nth-child(8) {
24995
+ transition-delay: 0.35s;
24996
+ }
24997
+ .v-speed-dial__content > *:nth-child(9) {
24998
+ transition-delay: 0.4s;
24999
+ }
25000
+ .v-speed-dial__content > *:nth-child(10) {
25001
+ transition-delay: 0.45s;
25033
25002
  }.v-switch .v-label {
25034
25003
  padding-inline-start: 10px;
25035
25004
  }
@@ -25212,101 +25181,6 @@ html.v-overlay-scroll-blocked {
25212
25181
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25213
25182
  border-width: 0;
25214
25183
  }
25215
- }.v-tab.v-tab.v-btn {
25216
- height: var(--v-tabs-height);
25217
- border-radius: 0;
25218
- min-width: 90px;
25219
- }
25220
- .v-slide-group--horizontal .v-tab {
25221
- max-width: 360px;
25222
- }
25223
- .v-slide-group--vertical .v-tab {
25224
- justify-content: start;
25225
- }
25226
-
25227
- .v-tab__slider {
25228
- position: absolute;
25229
- bottom: 0;
25230
- left: 0;
25231
- height: 2px;
25232
- width: 100%;
25233
- background: currentColor;
25234
- pointer-events: none;
25235
- opacity: 0;
25236
- }
25237
- .v-tab--selected .v-tab__slider {
25238
- opacity: 1;
25239
- }
25240
- .v-slide-group--vertical .v-tab__slider {
25241
- top: 0;
25242
- height: 100%;
25243
- width: 2px;
25244
- }.v-tabs {
25245
- display: flex;
25246
- height: var(--v-tabs-height);
25247
- }
25248
- .v-tabs--density-default {
25249
- --v-tabs-height: 48px;
25250
- }
25251
- .v-tabs--density-default.v-tabs--stacked {
25252
- --v-tabs-height: 72px;
25253
- }
25254
-
25255
- .v-tabs--density-comfortable {
25256
- --v-tabs-height: 44px;
25257
- }
25258
- .v-tabs--density-comfortable.v-tabs--stacked {
25259
- --v-tabs-height: 68px;
25260
- }
25261
-
25262
- .v-tabs--density-compact {
25263
- --v-tabs-height: 36px;
25264
- }
25265
- .v-tabs--density-compact.v-tabs--stacked {
25266
- --v-tabs-height: 60px;
25267
- }
25268
-
25269
- .v-tabs.v-slide-group--vertical {
25270
- height: auto;
25271
- flex: none;
25272
- --v-tabs-height: 48px;
25273
- }
25274
-
25275
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25276
- margin-inline-start: 42px;
25277
- }
25278
-
25279
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25280
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25281
- margin-inline-end: auto;
25282
- }
25283
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25284
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25285
- margin-inline-start: auto;
25286
- }
25287
-
25288
- .v-tabs--grow {
25289
- flex-grow: 1;
25290
- }
25291
- .v-tabs--grow .v-tab {
25292
- flex: 1 0 auto;
25293
- max-width: none;
25294
- }
25295
-
25296
- .v-tabs--align-tabs-end .v-tab:first-child {
25297
- margin-inline-start: auto;
25298
- }
25299
- .v-tabs--align-tabs-end .v-tab:last-child {
25300
- margin-inline-end: 0;
25301
- }
25302
-
25303
- @media (max-width: 1279.98px) {
25304
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25305
- margin-inline-start: 52px;
25306
- }
25307
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25308
- margin-inline-end: 52px;
25309
- }
25310
25184
  }.v-table {
25311
25185
  font-size: 0.875rem;
25312
25186
  transition-duration: 0.28s;
@@ -25437,18 +25311,61 @@ html.v-overlay-scroll-blocked {
25437
25311
  top: 0;
25438
25312
  z-index: 2;
25439
25313
  }
25440
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25441
- border-bottom: 0px !important;
25314
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25315
+ border-bottom: 0px !important;
25316
+ }
25317
+
25318
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25319
+ position: sticky;
25320
+ bottom: 0;
25321
+ z-index: 1;
25322
+ }
25323
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25324
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25325
+ border-top: 0px !important;
25326
+ }.v-system-bar {
25327
+ align-items: center;
25328
+ display: flex;
25329
+ flex: 1 1 auto;
25330
+ height: 24px;
25331
+ justify-content: flex-end;
25332
+ max-width: 100%;
25333
+ padding-inline: 8px;
25334
+ position: relative;
25335
+ text-align: end;
25336
+ width: 100%;
25337
+ }
25338
+ .v-system-bar .v-icon {
25339
+ opacity: var(--v-medium-emphasis-opacity);
25340
+ }
25341
+ .v-system-bar {
25342
+ 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));
25343
+ }
25344
+ .v-system-bar--absolute {
25345
+ position: absolute;
25346
+ }
25347
+ .v-system-bar--fixed {
25348
+ position: fixed;
25349
+ }
25350
+ .v-system-bar {
25351
+ background: rgba(var(--v-theme-surface-light));
25352
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25353
+ }
25354
+ .v-system-bar {
25355
+ font-size: 0.75rem;
25356
+ font-weight: 400;
25357
+ letter-spacing: 0.0333333333em;
25358
+ line-height: 1.667;
25359
+ text-transform: none;
25360
+ }
25361
+ .v-system-bar--rounded {
25362
+ border-radius: 0;
25442
25363
  }
25443
-
25444
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25445
- position: sticky;
25446
- bottom: 0;
25447
- z-index: 1;
25364
+ .v-system-bar--window {
25365
+ height: 32px;
25448
25366
  }
25449
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25450
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25451
- border-top: 0px !important;
25367
+ .v-system-bar:not(.v-system-bar--absolute) {
25368
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25452
25369
  }/* region BLOCK */
25453
25370
  .v-text-field input {
25454
25371
  color: inherit;
@@ -25516,191 +25433,140 @@ html.v-overlay-scroll-blocked {
25516
25433
  padding-inline-end: var(--v-field-padding-end);
25517
25434
  }
25518
25435
 
25519
- /* endregion */.v-textarea .v-field {
25520
- --v-textarea-control-height: var(--v-input-control-height);
25436
+ /* endregion */.v-tab.v-tab.v-btn {
25437
+ height: var(--v-tabs-height);
25438
+ border-radius: 0;
25439
+ min-width: 90px;
25521
25440
  }
25522
- .v-textarea .v-field__field {
25523
- --v-input-control-height: var(--v-textarea-control-height);
25441
+ .v-slide-group--horizontal .v-tab {
25442
+ max-width: 360px;
25524
25443
  }
25525
- .v-textarea .v-field__input {
25526
- flex: 1 1 auto;
25527
- outline: none;
25528
- -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));
25529
- 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));
25444
+ .v-slide-group--vertical .v-tab {
25445
+ justify-content: start;
25530
25446
  }
25531
- .v-textarea .v-field__input.v-textarea__sizer {
25532
- visibility: hidden;
25447
+
25448
+ .v-tab__slider {
25533
25449
  position: absolute;
25534
- top: 0;
25450
+ bottom: 0;
25535
25451
  left: 0;
25536
- height: 0 !important;
25537
- min-height: 0 !important;
25452
+ height: 2px;
25453
+ width: 100%;
25454
+ background: currentColor;
25538
25455
  pointer-events: none;
25539
- }
25540
- .v-textarea--no-resize .v-field__input {
25541
- resize: none;
25542
- }
25543
- .v-textarea .v-field--no-label textarea,
25544
- .v-textarea .v-field--active textarea {
25545
- opacity: 1;
25546
- }
25547
- .v-textarea textarea {
25548
25456
  opacity: 0;
25549
- flex: 1;
25550
- min-width: 0;
25551
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25552
25457
  }
25553
- .v-textarea textarea:focus, .v-textarea textarea:active {
25554
- outline: none;
25458
+ .v-tab--selected .v-tab__slider {
25459
+ opacity: 1;
25555
25460
  }
25556
- .v-textarea textarea:invalid {
25557
- box-shadow: none;
25558
- }.v-theme-provider {
25559
- background: rgb(var(--v-theme-background));
25560
- color: rgb(var(--v-theme-on-background));
25561
- }.v-toolbar {
25562
- align-items: flex-start;
25461
+ .v-slide-group--vertical .v-tab__slider {
25462
+ top: 0;
25463
+ height: 100%;
25464
+ width: 2px;
25465
+ }.v-tabs {
25563
25466
  display: flex;
25564
- flex: none;
25565
- flex-direction: column;
25566
- justify-content: space-between;
25567
- max-width: 100%;
25568
- position: relative;
25569
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25570
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25571
- width: 100%;
25572
- }
25573
- .v-toolbar {
25574
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25575
- border-style: solid;
25576
- border-width: 0;
25467
+ height: var(--v-tabs-height);
25577
25468
  }
25578
- .v-toolbar--border {
25579
- border-width: thin;
25580
- box-shadow: none;
25469
+ .v-tabs--density-default {
25470
+ --v-tabs-height: 48px;
25581
25471
  }
25582
- .v-toolbar {
25583
- 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));
25472
+ .v-tabs--density-default.v-tabs--stacked {
25473
+ --v-tabs-height: 72px;
25584
25474
  }
25585
- .v-toolbar {
25586
- border-radius: 0;
25475
+
25476
+ .v-tabs--density-comfortable {
25477
+ --v-tabs-height: 44px;
25587
25478
  }
25588
- .v-toolbar {
25589
- background: rgb(var(--v-theme-surface-light));
25590
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25479
+ .v-tabs--density-comfortable.v-tabs--stacked {
25480
+ --v-tabs-height: 68px;
25591
25481
  }
25592
- .v-toolbar--absolute {
25593
- position: absolute;
25482
+
25483
+ .v-tabs--density-compact {
25484
+ --v-tabs-height: 36px;
25594
25485
  }
25595
- .v-toolbar--collapse {
25596
- max-width: 112px;
25597
- overflow: hidden;
25598
- border-end-end-radius: 24px;
25486
+ .v-tabs--density-compact.v-tabs--stacked {
25487
+ --v-tabs-height: 60px;
25599
25488
  }
25600
- .v-toolbar--collapse .v-toolbar-title {
25601
- display: none;
25489
+
25490
+ .v-tabs.v-slide-group--vertical {
25491
+ height: auto;
25492
+ flex: none;
25493
+ --v-tabs-height: 48px;
25602
25494
  }
25603
- .v-toolbar--flat {
25604
- 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));
25495
+
25496
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25497
+ margin-inline-start: 42px;
25605
25498
  }
25606
- .v-toolbar--floating {
25607
- display: inline-flex;
25499
+
25500
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25501
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25502
+ margin-inline-end: auto;
25608
25503
  }
25609
- .v-toolbar--rounded {
25610
- border-radius: 4px;
25504
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25505
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25506
+ margin-inline-start: auto;
25611
25507
  }
25612
25508
 
25613
- .v-toolbar__content,
25614
- .v-toolbar__extension {
25615
- align-items: center;
25616
- display: flex;
25617
- flex: 0 0 auto;
25618
- position: relative;
25619
- transition: inherit;
25620
- width: 100%;
25509
+ .v-tabs--grow {
25510
+ flex-grow: 1;
25621
25511
  }
25622
-
25623
- .v-toolbar__content {
25624
- overflow: hidden;
25512
+ .v-tabs--grow .v-tab {
25513
+ flex: 1 0 auto;
25514
+ max-width: none;
25625
25515
  }
25626
- .v-toolbar__content > .v-btn:first-child {
25627
- margin-inline-start: 4px;
25516
+
25517
+ .v-tabs--align-tabs-end .v-tab:first-child {
25518
+ margin-inline-start: auto;
25628
25519
  }
25629
- .v-toolbar__content > .v-btn:last-child {
25630
- margin-inline-end: 4px;
25520
+ .v-tabs--align-tabs-end .v-tab:last-child {
25521
+ margin-inline-end: 0;
25631
25522
  }
25632
- .v-toolbar__content > .v-toolbar-title {
25633
- margin-inline-start: 20px;
25523
+
25524
+ @media (max-width: 1279.98px) {
25525
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25526
+ margin-inline-start: 52px;
25527
+ }
25528
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25529
+ margin-inline-end: 52px;
25530
+ }
25531
+ }.v-textarea .v-field {
25532
+ --v-textarea-control-height: var(--v-input-control-height);
25634
25533
  }
25635
- .v-toolbar--density-prominent .v-toolbar__content {
25636
- align-items: flex-start;
25534
+ .v-textarea .v-field__field {
25535
+ --v-input-control-height: var(--v-textarea-control-height);
25637
25536
  }
25638
-
25639
- .v-toolbar__image {
25640
- display: flex;
25641
- opacity: var(--v-toolbar-image-opacity, 1);
25642
- transition-property: opacity;
25537
+ .v-textarea .v-field__input {
25538
+ flex: 1 1 auto;
25539
+ outline: none;
25540
+ -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));
25541
+ 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));
25643
25542
  }
25644
- .v-toolbar__image {
25543
+ .v-textarea .v-field__input.v-textarea__sizer {
25544
+ visibility: hidden;
25645
25545
  position: absolute;
25646
25546
  top: 0;
25647
25547
  left: 0;
25648
- width: 100%;
25649
- height: 100%;
25650
- }
25651
-
25652
- .v-toolbar__prepend,
25653
- .v-toolbar__append {
25654
- align-items: center;
25655
- align-self: stretch;
25656
- display: flex;
25548
+ height: 0 !important;
25549
+ min-height: 0 !important;
25550
+ pointer-events: none;
25657
25551
  }
25658
-
25659
- .v-toolbar__prepend {
25660
- margin-inline: 4px auto;
25552
+ .v-textarea--no-resize .v-field__input {
25553
+ resize: none;
25661
25554
  }
25662
-
25663
- .v-toolbar__append {
25664
- margin-inline: auto 4px;
25555
+ .v-textarea .v-field--no-label textarea,
25556
+ .v-textarea .v-field--active textarea {
25557
+ opacity: 1;
25665
25558
  }
25666
-
25667
- .v-toolbar-title {
25668
- flex: 1 1;
25669
- font-size: 1.25rem;
25559
+ .v-textarea textarea {
25560
+ opacity: 0;
25561
+ flex: 1;
25670
25562
  min-width: 0;
25563
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25671
25564
  }
25672
- .v-toolbar-title {
25673
- font-size: 1.25rem;
25674
- font-weight: 400;
25675
- letter-spacing: 0;
25676
- line-height: 1.75rem;
25677
- text-transform: none;
25678
- }
25679
- .v-toolbar--density-prominent .v-toolbar-title {
25680
- align-self: flex-end;
25681
- padding-bottom: 6px;
25682
- }
25683
- .v-toolbar--density-prominent .v-toolbar-title {
25684
- font-size: 1.5rem;
25685
- font-weight: 400;
25686
- letter-spacing: 0;
25687
- line-height: 2.25rem;
25688
- text-transform: none;
25689
- }
25690
-
25691
- .v-toolbar-title__placeholder {
25692
- overflow: hidden;
25693
- text-overflow: ellipsis;
25694
- white-space: nowrap;
25695
- }
25696
-
25697
- .v-toolbar-items {
25698
- display: flex;
25699
- height: inherit;
25700
- align-self: stretch;
25565
+ .v-textarea textarea:focus, .v-textarea textarea:active {
25566
+ outline: none;
25701
25567
  }
25702
- .v-toolbar-items > .v-btn {
25703
- border-radius: 0;
25568
+ .v-textarea textarea:invalid {
25569
+ box-shadow: none;
25704
25570
  }.v-timeline .v-timeline-divider__dot {
25705
25571
  background: rgb(var(--v-theme-surface-light));
25706
25572
  }
@@ -26119,15 +25985,9 @@ html.v-overlay-scroll-blocked {
26119
25985
 
26120
25986
  .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26121
25987
  padding-inline-end: 0;
26122
- }.v-virtual-scroll {
26123
- display: block;
26124
- flex: 1 1 auto;
26125
- max-width: 100%;
26126
- overflow: auto;
26127
- position: relative;
26128
- }
26129
- .v-virtual-scroll__container {
26130
- display: block;
25988
+ }.v-theme-provider {
25989
+ background: rgb(var(--v-theme-background));
25990
+ color: rgb(var(--v-theme-on-background));
26131
25991
  }.v-tooltip > .v-overlay__content {
26132
25992
  background: rgb(var(--v-theme-surface-variant));
26133
25993
  color: rgb(var(--v-theme-on-surface-variant));
@@ -26150,6 +26010,15 @@ html.v-overlay-scroll-blocked {
26150
26010
  .v-tooltip > .v-overlay__content[class*=leave-active] {
26151
26011
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26152
26012
  transition-duration: 75ms;
26013
+ }.v-virtual-scroll {
26014
+ display: block;
26015
+ flex: 1 1 auto;
26016
+ max-width: 100%;
26017
+ overflow: auto;
26018
+ position: relative;
26019
+ }
26020
+ .v-virtual-scroll__container {
26021
+ display: block;
26153
26022
  }.v-window {
26154
26023
  overflow: hidden;
26155
26024
  }
@@ -26220,76 +26089,149 @@ html.v-overlay-scroll-blocked {
26220
26089
  }
26221
26090
  .v-window-y-reverse-transition-leave-to {
26222
26091
  transform: translateY(100%);
26223
- }.v-color-picker-preview__alpha .v-slider-track__background {
26224
- background-color: transparent !important;
26092
+ }.v-toolbar {
26093
+ align-items: flex-start;
26094
+ display: flex;
26095
+ flex: none;
26096
+ flex-direction: column;
26097
+ justify-content: space-between;
26098
+ max-width: 100%;
26099
+ position: relative;
26100
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26101
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
26102
+ width: 100%;
26225
26103
  }
26226
- .v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background {
26227
- background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
26104
+ .v-toolbar {
26105
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26106
+ border-style: solid;
26107
+ border-width: 0;
26228
26108
  }
26229
-
26230
- .v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background {
26231
- background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
26109
+ .v-toolbar--border {
26110
+ border-width: thin;
26111
+ box-shadow: none;
26232
26112
  }
26233
-
26234
- .v-color-picker-preview__alpha .v-slider-track__background::after {
26235
- content: "";
26236
- z-index: -1;
26237
- left: 0;
26238
- top: 0;
26239
- width: 100%;
26240
- height: 100%;
26113
+ .v-toolbar {
26114
+ 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));
26115
+ }
26116
+ .v-toolbar {
26117
+ border-radius: 0;
26118
+ }
26119
+ .v-toolbar {
26120
+ background: rgb(var(--v-theme-surface-light));
26121
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26122
+ }
26123
+ .v-toolbar--absolute {
26241
26124
  position: absolute;
26242
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26243
- border-radius: inherit;
26125
+ }
26126
+ .v-toolbar--collapse {
26127
+ max-width: 112px;
26128
+ overflow: hidden;
26129
+ border-end-end-radius: 24px;
26130
+ }
26131
+ .v-toolbar--collapse .v-toolbar-title {
26132
+ display: none;
26133
+ }
26134
+ .v-toolbar--flat {
26135
+ 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));
26136
+ }
26137
+ .v-toolbar--floating {
26138
+ display: inline-flex;
26139
+ }
26140
+ .v-toolbar--rounded {
26141
+ border-radius: 4px;
26244
26142
  }
26245
26143
 
26246
- .v-color-picker-preview__sliders {
26144
+ .v-toolbar__content,
26145
+ .v-toolbar__extension {
26146
+ align-items: center;
26247
26147
  display: flex;
26248
- flex: 1 0 auto;
26249
- flex-direction: column;
26250
- padding-inline-end: 16px;
26148
+ flex: 0 0 auto;
26149
+ position: relative;
26150
+ transition: inherit;
26151
+ width: 100%;
26251
26152
  }
26252
26153
 
26253
- .v-color-picker-preview__dot {
26254
- position: relative;
26255
- height: 30px;
26256
- width: 30px;
26257
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26258
- border-radius: 50%;
26154
+ .v-toolbar__content {
26259
26155
  overflow: hidden;
26260
- margin-inline-end: 24px;
26261
26156
  }
26262
- .v-color-picker-preview__dot > div {
26157
+ .v-toolbar__content > .v-btn:first-child {
26158
+ margin-inline-start: 4px;
26159
+ }
26160
+ .v-toolbar__content > .v-btn:last-child {
26161
+ margin-inline-end: 4px;
26162
+ }
26163
+ .v-toolbar__content > .v-toolbar-title {
26164
+ margin-inline-start: 20px;
26165
+ }
26166
+ .v-toolbar--density-prominent .v-toolbar__content {
26167
+ align-items: flex-start;
26168
+ }
26169
+
26170
+ .v-toolbar__image {
26171
+ display: flex;
26172
+ opacity: var(--v-toolbar-image-opacity, 1);
26173
+ transition-property: opacity;
26174
+ }
26175
+ .v-toolbar__image {
26176
+ position: absolute;
26177
+ top: 0;
26178
+ left: 0;
26263
26179
  width: 100%;
26264
26180
  height: 100%;
26265
26181
  }
26266
26182
 
26267
- .v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
26268
- background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
26183
+ .v-toolbar__prepend,
26184
+ .v-toolbar__append {
26185
+ align-items: center;
26186
+ align-self: stretch;
26187
+ display: flex;
26269
26188
  }
26270
26189
 
26271
- .v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
26272
- background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
26190
+ .v-toolbar__prepend {
26191
+ margin-inline: 4px auto;
26273
26192
  }
26274
26193
 
26275
- .v-color-picker-preview__track {
26276
- position: relative;
26277
- width: 100%;
26278
- margin: 0 !important;
26194
+ .v-toolbar__append {
26195
+ margin-inline: auto 4px;
26279
26196
  }
26280
- .v-color-picker-preview__track .v-slider-track__fill {
26281
- display: none;
26197
+
26198
+ .v-toolbar-title {
26199
+ flex: 1 1;
26200
+ font-size: 1.25rem;
26201
+ min-width: 0;
26202
+ }
26203
+ .v-toolbar-title {
26204
+ font-size: 1.25rem;
26205
+ font-weight: 400;
26206
+ letter-spacing: 0;
26207
+ line-height: 1.75rem;
26208
+ text-transform: none;
26209
+ }
26210
+ .v-toolbar--density-prominent .v-toolbar-title {
26211
+ align-self: flex-end;
26212
+ padding-bottom: 6px;
26213
+ }
26214
+ .v-toolbar--density-prominent .v-toolbar-title {
26215
+ font-size: 1.5rem;
26216
+ font-weight: 400;
26217
+ letter-spacing: 0;
26218
+ line-height: 2.25rem;
26219
+ text-transform: none;
26282
26220
  }
26283
26221
 
26284
- .v-color-picker-preview {
26285
- align-items: center;
26286
- display: flex;
26287
- margin-bottom: 0;
26222
+ .v-toolbar-title__placeholder {
26223
+ overflow: hidden;
26224
+ text-overflow: ellipsis;
26225
+ white-space: nowrap;
26288
26226
  }
26289
26227
 
26290
- .v-color-picker-preview__eye-dropper {
26291
- position: relative;
26292
- margin-right: 12px;
26228
+ .v-toolbar-items {
26229
+ display: flex;
26230
+ height: inherit;
26231
+ align-self: stretch;
26232
+ }
26233
+ .v-toolbar-items > .v-btn {
26234
+ border-radius: 0;
26293
26235
  }.v-color-picker-canvas {
26294
26236
  display: flex;
26295
26237
  position: relative;
@@ -26375,6 +26317,76 @@ html.v-overlay-scroll-blocked {
26375
26317
  justify-content: center;
26376
26318
  width: 100%;
26377
26319
  height: 100%;
26320
+ }.v-color-picker-preview__alpha .v-slider-track__background {
26321
+ background-color: transparent !important;
26322
+ }
26323
+ .v-locale--is-ltr.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__alpha .v-slider-track__background {
26324
+ background-image: linear-gradient(to right, transparent, var(--v-color-picker-color-hsv));
26325
+ }
26326
+
26327
+ .v-locale--is-rtl.v-color-picker-preview__alpha .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__alpha .v-slider-track__background {
26328
+ background-image: linear-gradient(to left, transparent, var(--v-color-picker-color-hsv));
26329
+ }
26330
+
26331
+ .v-color-picker-preview__alpha .v-slider-track__background::after {
26332
+ content: "";
26333
+ z-index: -1;
26334
+ left: 0;
26335
+ top: 0;
26336
+ width: 100%;
26337
+ height: 100%;
26338
+ position: absolute;
26339
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26340
+ border-radius: inherit;
26341
+ }
26342
+
26343
+ .v-color-picker-preview__sliders {
26344
+ display: flex;
26345
+ flex: 1 0 auto;
26346
+ flex-direction: column;
26347
+ padding-inline-end: 16px;
26348
+ }
26349
+
26350
+ .v-color-picker-preview__dot {
26351
+ position: relative;
26352
+ height: 30px;
26353
+ width: 30px;
26354
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26355
+ border-radius: 50%;
26356
+ overflow: hidden;
26357
+ margin-inline-end: 24px;
26358
+ }
26359
+ .v-color-picker-preview__dot > div {
26360
+ width: 100%;
26361
+ height: 100%;
26362
+ }
26363
+
26364
+ .v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
26365
+ background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
26366
+ }
26367
+
26368
+ .v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
26369
+ background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
26370
+ }
26371
+
26372
+ .v-color-picker-preview__track {
26373
+ position: relative;
26374
+ width: 100%;
26375
+ margin: 0 !important;
26376
+ }
26377
+ .v-color-picker-preview__track .v-slider-track__fill {
26378
+ display: none;
26379
+ }
26380
+
26381
+ .v-color-picker-preview {
26382
+ align-items: center;
26383
+ display: flex;
26384
+ margin-bottom: 0;
26385
+ }
26386
+
26387
+ .v-color-picker-preview__eye-dropper {
26388
+ position: relative;
26389
+ margin-right: 12px;
26378
26390
  }.v-picker.v-sheet {
26379
26391
  display: grid;
26380
26392
  grid-auto-rows: min-content;