@vuetify/nightly 3.7.4-master.2024-11-20 → 3.7.4-master.2024-11-24

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.4-master.2024-11-20
2
+ * Vuetify v3.7.4-master.2024-11-24
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18490,69 +18490,6 @@ html.overflow-y-hidden {
18490
18490
  display: inline-flex;
18491
18491
  justify-content: center;
18492
18492
  margin: 0 4px;
18493
- }.v-bottom-navigation {
18494
- display: flex;
18495
- max-width: 100%;
18496
- overflow: hidden;
18497
- position: absolute;
18498
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18499
- }
18500
- .v-bottom-navigation {
18501
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18502
- border-style: solid;
18503
- border-width: 0;
18504
- }
18505
- .v-bottom-navigation--border {
18506
- border-width: thin;
18507
- box-shadow: none;
18508
- }
18509
- .v-bottom-navigation {
18510
- border-radius: 0;
18511
- }
18512
- .v-bottom-navigation {
18513
- background: rgb(var(--v-theme-surface));
18514
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18515
- }
18516
- .v-bottom-navigation--active {
18517
- 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));
18518
- }
18519
-
18520
- .v-bottom-navigation__content {
18521
- display: flex;
18522
- flex: none;
18523
- font-size: 0.75rem;
18524
- justify-content: center;
18525
- transition: inherit;
18526
- width: 100%;
18527
- }
18528
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18529
- font-size: inherit;
18530
- height: 100%;
18531
- max-width: 168px;
18532
- min-width: 80px;
18533
- text-transform: none;
18534
- transition: inherit;
18535
- width: auto;
18536
- }
18537
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18538
- border-radius: 0;
18539
- }
18540
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18541
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18542
- transition: inherit;
18543
- }
18544
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18545
- font-size: 1.5rem;
18546
- }
18547
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18548
- flex-grow: 1;
18549
- }
18550
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18551
- transition: inherit;
18552
- opacity: 0;
18553
- }
18554
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18555
- transform: translateY(0.5rem);
18556
18493
  }.v-banner {
18557
18494
  display: grid;
18558
18495
  flex: 1 1;
@@ -18719,6 +18656,40 @@ html.overflow-y-hidden {
18719
18656
  }
18720
18657
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18721
18658
  align-self: flex-start;
18659
+ }.bottom-sheet-transition-enter-from {
18660
+ transform: translateY(100%);
18661
+ }
18662
+ .bottom-sheet-transition-leave-to {
18663
+ transform: translateY(100%);
18664
+ }
18665
+
18666
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18667
+ align-self: flex-end;
18668
+ border-radius: 0;
18669
+ flex: 0 1 auto;
18670
+ left: 0;
18671
+ right: 0;
18672
+ margin-inline: 0;
18673
+ margin-bottom: 0;
18674
+ transition-duration: 0.2s;
18675
+ width: 100%;
18676
+ max-width: 100%;
18677
+ overflow: visible;
18678
+ }
18679
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18680
+ 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));
18681
+ }
18682
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18683
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18684
+ border-radius: 0;
18685
+ }
18686
+ .v-bottom-sheet.v-bottom-sheet--inset {
18687
+ max-width: none;
18688
+ }
18689
+ @media (min-width: 600px) {
18690
+ .v-bottom-sheet.v-bottom-sheet--inset {
18691
+ max-width: 70%;
18692
+ }
18722
18693
  }.v-breadcrumbs {
18723
18694
  display: flex;
18724
18695
  align-items: center;
@@ -18776,40 +18747,69 @@ html.overflow-y-hidden {
18776
18747
  display: inline-block;
18777
18748
  padding: 0 8px;
18778
18749
  vertical-align: middle;
18779
- }.bottom-sheet-transition-enter-from {
18780
- transform: translateY(100%);
18750
+ }.v-bottom-navigation {
18751
+ display: flex;
18752
+ max-width: 100%;
18753
+ overflow: hidden;
18754
+ position: absolute;
18755
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18781
18756
  }
18782
- .bottom-sheet-transition-leave-to {
18783
- transform: translateY(100%);
18757
+ .v-bottom-navigation {
18758
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18759
+ border-style: solid;
18760
+ border-width: 0;
18784
18761
  }
18785
-
18786
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18787
- align-self: flex-end;
18762
+ .v-bottom-navigation--border {
18763
+ border-width: thin;
18764
+ box-shadow: none;
18765
+ }
18766
+ .v-bottom-navigation {
18788
18767
  border-radius: 0;
18789
- flex: 0 1 auto;
18790
- left: 0;
18791
- right: 0;
18792
- margin-inline: 0;
18793
- margin-bottom: 0;
18794
- transition-duration: 0.2s;
18768
+ }
18769
+ .v-bottom-navigation {
18770
+ background: rgb(var(--v-theme-surface));
18771
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18772
+ }
18773
+ .v-bottom-navigation--active {
18774
+ 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));
18775
+ }
18776
+
18777
+ .v-bottom-navigation__content {
18778
+ display: flex;
18779
+ flex: none;
18780
+ font-size: 0.75rem;
18781
+ justify-content: center;
18782
+ transition: inherit;
18795
18783
  width: 100%;
18796
- max-width: 100%;
18797
- overflow: visible;
18798
18784
  }
18799
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18800
- 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));
18785
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18786
+ font-size: inherit;
18787
+ height: 100%;
18788
+ max-width: 168px;
18789
+ min-width: 80px;
18790
+ text-transform: none;
18791
+ transition: inherit;
18792
+ width: auto;
18801
18793
  }
18802
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18803
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18794
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18804
18795
  border-radius: 0;
18805
18796
  }
18806
- .v-bottom-sheet.v-bottom-sheet--inset {
18807
- max-width: none;
18797
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18798
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18799
+ transition: inherit;
18808
18800
  }
18809
- @media (min-width: 600px) {
18810
- .v-bottom-sheet.v-bottom-sheet--inset {
18811
- max-width: 70%;
18812
- }
18801
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18802
+ font-size: 1.5rem;
18803
+ }
18804
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18805
+ flex-grow: 1;
18806
+ }
18807
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18808
+ transition: inherit;
18809
+ opacity: 0;
18810
+ }
18811
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18812
+ transform: translateY(0.5rem);
18813
18813
  }.v-btn {
18814
18814
  align-items: center;
18815
18815
  border-radius: 4px;
@@ -19298,6 +19298,22 @@ html.overflow-y-hidden {
19298
19298
  }
19299
19299
  .v-btn-group--tile {
19300
19300
  border-radius: 0;
19301
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19302
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19303
+ }
19304
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19305
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19306
+ }
19307
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19308
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19309
+ }
19310
+ @supports not selector(:focus-visible) {
19311
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19312
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19313
+ }
19314
+ }
19315
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19316
+ opacity: 1;
19301
19317
  }.v-card {
19302
19318
  display: block;
19303
19319
  overflow: hidden;
@@ -19671,22 +19687,6 @@ html.overflow-y-hidden {
19671
19687
  flex-direction: column;
19672
19688
  height: 100% !important;
19673
19689
  width: 50px;
19674
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19675
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19676
- }
19677
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19678
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19679
- }
19680
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19681
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19682
- }
19683
- @supports not selector(:focus-visible) {
19684
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19685
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19686
- }
19687
- }
19688
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19689
- opacity: 1;
19690
19690
  }.v-checkbox.v-input {
19691
19691
  flex: 0 1 auto;
19692
19692
  }
@@ -20458,100 +20458,38 @@ html.overflow-y-hidden {
20458
20458
  }
20459
20459
  .v-data-table-footer__page {
20460
20460
  padding: 0 8px;
20461
- }.v-date-picker {
20461
+ }.v-date-picker-header {
20462
+ align-items: flex-end;
20463
+ height: 70px;
20464
+ display: grid;
20465
+ grid-template-areas: "prepend content append";
20466
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
20462
20467
  overflow: hidden;
20463
- width: 328px;
20468
+ padding-inline: 24px 12px;
20469
+ padding-bottom: 12px;
20464
20470
  }
20465
- .v-date-picker--show-week {
20466
- width: 368px;
20467
- }.v-date-picker-controls {
20468
- display: flex;
20471
+
20472
+ .v-date-picker-header__append {
20473
+ grid-area: append;
20474
+ }
20475
+
20476
+ .v-date-picker-header__prepend {
20477
+ grid-area: prepend;
20478
+ padding-inline-start: 8px;
20479
+ }
20480
+
20481
+ .v-date-picker-header__content {
20469
20482
  align-items: center;
20483
+ display: inline-flex;
20484
+ font-size: 32px;
20485
+ line-height: 40px;
20486
+ grid-area: content;
20470
20487
  justify-content: space-between;
20471
- font-size: 0.875rem;
20472
- padding-top: 4px;
20473
- padding-bottom: 4px;
20474
- padding-inline-start: 6px;
20475
- padding-inline-end: 12px;
20476
- }
20477
- .v-date-picker-controls > .v-btn:first-child {
20478
- text-transform: none;
20479
- font-weight: 400;
20480
- line-height: initial;
20481
- letter-spacing: initial;
20482
20488
  }
20483
- .v-date-picker-controls--variant-classic {
20484
- padding-inline-start: 12px;
20489
+ .v-date-picker-header--clickable .v-date-picker-header__content {
20490
+ cursor: pointer;
20485
20491
  }
20486
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20487
- opacity: 0.7;
20488
- }
20489
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20490
- cursor: pointer;
20491
- }
20492
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20493
- opacity: 1;
20494
- }
20495
- .v-date-picker-controls .v-btn:last-child {
20496
- margin-inline-start: 4px;
20497
- }
20498
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20499
- transform: rotate(180deg);
20500
- }
20501
-
20502
- .v-date-picker-controls__date {
20503
- margin-inline-end: 4px;
20504
- }
20505
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20506
- margin: auto;
20507
- text-align: center;
20508
- }
20509
-
20510
- .v-date-picker-controls__month {
20511
- display: flex;
20512
- }
20513
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20514
- flex-direction: row-reverse;
20515
- }
20516
-
20517
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20518
- flex: 1 0 auto;
20519
- }
20520
-
20521
- .v-date-picker__title {
20522
- display: inline-block;
20523
- }.v-date-picker-header {
20524
- align-items: flex-end;
20525
- height: 70px;
20526
- display: grid;
20527
- grid-template-areas: "prepend content append";
20528
- grid-template-columns: min-content minmax(0, 1fr) min-content;
20529
- overflow: hidden;
20530
- padding-inline: 24px 12px;
20531
- padding-bottom: 12px;
20532
- }
20533
-
20534
- .v-date-picker-header__append {
20535
- grid-area: append;
20536
- }
20537
-
20538
- .v-date-picker-header__prepend {
20539
- grid-area: prepend;
20540
- padding-inline-start: 8px;
20541
- }
20542
-
20543
- .v-date-picker-header__content {
20544
- align-items: center;
20545
- display: inline-flex;
20546
- font-size: 32px;
20547
- line-height: 40px;
20548
- grid-area: content;
20549
- justify-content: space-between;
20550
- }
20551
- .v-date-picker-header--clickable .v-date-picker-header__content {
20552
- cursor: pointer;
20553
- }
20554
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
20492
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
20555
20493
  opacity: 0.7;
20556
20494
  }
20557
20495
 
@@ -20580,25 +20518,12 @@ html.overflow-y-hidden {
20580
20518
  .date-picker-header-reverse-transition-leave-to {
20581
20519
  opacity: 0;
20582
20520
  transform: translate(0, 100%);
20583
- }.v-date-picker-months {
20584
- height: 288px;
20585
- }
20586
-
20587
- .v-date-picker-months__content {
20588
- align-items: center;
20589
- display: grid;
20590
- flex: 1 1;
20591
- height: inherit;
20592
- justify-content: space-around;
20593
- grid-template-columns: repeat(2, 1fr);
20594
- grid-gap: 0px 24px;
20595
- padding-inline-start: 36px;
20596
- padding-inline-end: 36px;
20521
+ }.v-date-picker {
20522
+ overflow: hidden;
20523
+ width: 328px;
20597
20524
  }
20598
- .v-date-picker-months__content .v-btn {
20599
- text-transform: none;
20600
- padding-inline-start: 8px;
20601
- padding-inline-end: 8px;
20525
+ .v-date-picker--show-week {
20526
+ width: 368px;
20602
20527
  }.v-date-picker-month {
20603
20528
  display: flex;
20604
20529
  justify-content: center;
@@ -20654,6 +20579,62 @@ html.overflow-y-hidden {
20654
20579
 
20655
20580
  .v-date-picker-month__day--hide-adjacent {
20656
20581
  opacity: 0;
20582
+ }.v-date-picker-controls {
20583
+ display: flex;
20584
+ align-items: center;
20585
+ justify-content: space-between;
20586
+ font-size: 0.875rem;
20587
+ padding-top: 4px;
20588
+ padding-bottom: 4px;
20589
+ padding-inline-start: 6px;
20590
+ padding-inline-end: 12px;
20591
+ }
20592
+ .v-date-picker-controls > .v-btn:first-child {
20593
+ text-transform: none;
20594
+ font-weight: 400;
20595
+ line-height: initial;
20596
+ letter-spacing: initial;
20597
+ }
20598
+ .v-date-picker-controls--variant-classic {
20599
+ padding-inline-start: 12px;
20600
+ }
20601
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20602
+ opacity: 0.7;
20603
+ }
20604
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20605
+ cursor: pointer;
20606
+ }
20607
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20608
+ opacity: 1;
20609
+ }
20610
+ .v-date-picker-controls .v-btn:last-child {
20611
+ margin-inline-start: 4px;
20612
+ }
20613
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20614
+ transform: rotate(180deg);
20615
+ }
20616
+
20617
+ .v-date-picker-controls__date {
20618
+ margin-inline-end: 4px;
20619
+ }
20620
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20621
+ margin: auto;
20622
+ text-align: center;
20623
+ }
20624
+
20625
+ .v-date-picker-controls__month {
20626
+ display: flex;
20627
+ }
20628
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20629
+ flex-direction: row-reverse;
20630
+ }
20631
+
20632
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20633
+ flex: 1 0 auto;
20634
+ }
20635
+
20636
+ .v-date-picker__title {
20637
+ display: inline-block;
20657
20638
  }.v-date-picker-years {
20658
20639
  height: 288px;
20659
20640
  overflow-y: scroll;
@@ -20669,6 +20650,25 @@ html.overflow-y-hidden {
20669
20650
  }
20670
20651
  .v-date-picker-years__content .v-btn {
20671
20652
  padding-inline: 8px;
20653
+ }.v-date-picker-months {
20654
+ height: 288px;
20655
+ }
20656
+
20657
+ .v-date-picker-months__content {
20658
+ align-items: center;
20659
+ display: grid;
20660
+ flex: 1 1;
20661
+ height: inherit;
20662
+ justify-content: space-around;
20663
+ grid-template-columns: repeat(2, 1fr);
20664
+ grid-gap: 0px 24px;
20665
+ padding-inline-start: 36px;
20666
+ padding-inline-end: 36px;
20667
+ }
20668
+ .v-date-picker-months__content .v-btn {
20669
+ text-transform: none;
20670
+ padding-inline-start: 8px;
20671
+ padding-inline-end: 8px;
20672
20672
  }.v-dialog {
20673
20673
  align-items: center;
20674
20674
  justify-content: center;
@@ -20765,58 +20765,6 @@ html.overflow-y-hidden {
20765
20765
  -webkit-backface-visibility: hidden;
20766
20766
  backface-visibility: hidden;
20767
20767
  overflow-y: auto;
20768
- }.v-divider {
20769
- display: block;
20770
- flex: 1 1 100%;
20771
- height: 0px;
20772
- max-height: 0px;
20773
- opacity: var(--v-border-opacity);
20774
- transition: inherit;
20775
- }
20776
- .v-divider {
20777
- border-style: solid;
20778
- border-width: thin 0 0 0;
20779
- }
20780
- .v-divider--vertical {
20781
- align-self: stretch;
20782
- border-width: 0 thin 0 0;
20783
- display: inline-flex;
20784
- height: auto;
20785
- margin-left: -1px;
20786
- max-height: 100%;
20787
- max-width: 0px;
20788
- vertical-align: text-bottom;
20789
- width: 0px;
20790
- }
20791
- .v-divider--inset:not(.v-divider--vertical) {
20792
- max-width: calc(100% - 72px);
20793
- margin-inline-start: 72px;
20794
- }
20795
- .v-divider--inset.v-divider--vertical {
20796
- margin-bottom: 8px;
20797
- margin-top: 8px;
20798
- max-height: calc(100% - 16px);
20799
- }
20800
-
20801
- .v-divider__content {
20802
- padding: 0 16px;
20803
- text-wrap: nowrap;
20804
- }
20805
- .v-divider__wrapper--vertical .v-divider__content {
20806
- padding: 4px 0;
20807
- }
20808
-
20809
- .v-divider__wrapper {
20810
- display: flex;
20811
- align-items: center;
20812
- justify-content: center;
20813
- }
20814
- .v-divider__wrapper--vertical {
20815
- flex-direction: column;
20816
- height: 100%;
20817
- }
20818
- .v-divider__wrapper--vertical .v-divider {
20819
- margin: 0 auto;
20820
20768
  }.v-empty-state {
20821
20769
  align-items: center;
20822
20770
  display: flex;
@@ -20880,10 +20828,62 @@ html.overflow-y-hidden {
20880
20828
  gap: 8px;
20881
20829
  padding: 16px;
20882
20830
  }
20883
-
20884
- .v-empty-state__action-btn.v-btn {
20885
- background-color: initial;
20886
- color: initial;
20831
+
20832
+ .v-empty-state__action-btn.v-btn {
20833
+ background-color: initial;
20834
+ color: initial;
20835
+ }.v-divider {
20836
+ display: block;
20837
+ flex: 1 1 100%;
20838
+ height: 0px;
20839
+ max-height: 0px;
20840
+ opacity: var(--v-border-opacity);
20841
+ transition: inherit;
20842
+ }
20843
+ .v-divider {
20844
+ border-style: solid;
20845
+ border-width: thin 0 0 0;
20846
+ }
20847
+ .v-divider--vertical {
20848
+ align-self: stretch;
20849
+ border-width: 0 thin 0 0;
20850
+ display: inline-flex;
20851
+ height: auto;
20852
+ margin-left: -1px;
20853
+ max-height: 100%;
20854
+ max-width: 0px;
20855
+ vertical-align: text-bottom;
20856
+ width: 0px;
20857
+ }
20858
+ .v-divider--inset:not(.v-divider--vertical) {
20859
+ max-width: calc(100% - 72px);
20860
+ margin-inline-start: 72px;
20861
+ }
20862
+ .v-divider--inset.v-divider--vertical {
20863
+ margin-bottom: 8px;
20864
+ margin-top: 8px;
20865
+ max-height: calc(100% - 16px);
20866
+ }
20867
+
20868
+ .v-divider__content {
20869
+ padding: 0 16px;
20870
+ text-wrap: nowrap;
20871
+ }
20872
+ .v-divider__wrapper--vertical .v-divider__content {
20873
+ padding: 4px 0;
20874
+ }
20875
+
20876
+ .v-divider__wrapper {
20877
+ display: flex;
20878
+ align-items: center;
20879
+ justify-content: center;
20880
+ }
20881
+ .v-divider__wrapper--vertical {
20882
+ flex-direction: column;
20883
+ height: 100%;
20884
+ }
20885
+ .v-divider__wrapper--vertical .v-divider {
20886
+ margin: 0 auto;
20887
20887
  }.v-fab {
20888
20888
  align-items: center;
20889
20889
  display: inline-flex;
@@ -21169,71 +21169,6 @@ html.overflow-y-hidden {
21169
21169
  }
21170
21170
  .v-expansion-panels--tile > .v-expansion-panel {
21171
21171
  border-radius: 0;
21172
- }.v-file-input--hide.v-input .v-field,
21173
- .v-file-input--hide.v-input .v-input__control,
21174
- .v-file-input--hide.v-input .v-input__details {
21175
- display: none;
21176
- }
21177
- .v-file-input--hide.v-input .v-input__prepend {
21178
- grid-area: control;
21179
- margin: 0 auto;
21180
- }
21181
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21182
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21183
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21184
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21185
- top: 0px;
21186
- }
21187
- .v-file-input input[type=file] {
21188
- height: 100%;
21189
- left: 0;
21190
- opacity: 0;
21191
- position: absolute;
21192
- top: 0;
21193
- width: 100%;
21194
- z-index: 1;
21195
- }
21196
- .v-file-input .v-input__details {
21197
- padding-inline: 16px;
21198
- }
21199
- .v-input--plain-underlined.v-file-input .v-input__details {
21200
- padding-inline: 0;
21201
- }.v-footer {
21202
- align-items: center;
21203
- display: flex;
21204
- flex: 1 1 auto;
21205
- padding: 8px 16px;
21206
- position: relative;
21207
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21208
- transition-property: height, width, transform, max-width, left, right, top, bottom;
21209
- }
21210
- .v-footer {
21211
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21212
- border-style: solid;
21213
- border-width: 0;
21214
- }
21215
- .v-footer--border {
21216
- border-width: thin;
21217
- box-shadow: none;
21218
- }
21219
- .v-footer {
21220
- 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));
21221
- }
21222
- .v-footer--absolute {
21223
- position: absolute;
21224
- }
21225
- .v-footer--fixed {
21226
- position: fixed;
21227
- }
21228
- .v-footer {
21229
- border-radius: 0;
21230
- }
21231
- .v-footer {
21232
- background: rgb(var(--v-theme-surface));
21233
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21234
- }
21235
- .v-footer--rounded {
21236
- border-radius: 4px;
21237
21172
  }/* region INPUT */
21238
21173
  .v-field {
21239
21174
  display: grid;
@@ -21817,7 +21752,36 @@ textarea.v-field__input::placeholder {
21817
21752
  opacity: 0;
21818
21753
  }
21819
21754
 
21820
- /* endregion */.v-container {
21755
+ /* endregion */.v-file-input--hide.v-input .v-field,
21756
+ .v-file-input--hide.v-input .v-input__control,
21757
+ .v-file-input--hide.v-input .v-input__details {
21758
+ display: none;
21759
+ }
21760
+ .v-file-input--hide.v-input .v-input__prepend {
21761
+ grid-area: control;
21762
+ margin: 0 auto;
21763
+ }
21764
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21765
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21766
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21767
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21768
+ top: 0px;
21769
+ }
21770
+ .v-file-input input[type=file] {
21771
+ height: 100%;
21772
+ left: 0;
21773
+ opacity: 0;
21774
+ position: absolute;
21775
+ top: 0;
21776
+ width: 100%;
21777
+ z-index: 1;
21778
+ }
21779
+ .v-file-input .v-input__details {
21780
+ padding-inline: 16px;
21781
+ }
21782
+ .v-input--plain-underlined.v-file-input .v-input__details {
21783
+ padding-inline: 0;
21784
+ }.v-container {
21821
21785
  width: 100%;
21822
21786
  padding: 16px;
21823
21787
  margin-right: auto;
@@ -22489,6 +22453,42 @@ textarea.v-field__input::placeholder {
22489
22453
  .offset-xxl-11 {
22490
22454
  margin-inline-start: 91.6666666667%;
22491
22455
  }
22456
+ }.v-footer {
22457
+ align-items: center;
22458
+ display: flex;
22459
+ flex: 1 1 auto;
22460
+ padding: 8px 16px;
22461
+ position: relative;
22462
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22463
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
22464
+ }
22465
+ .v-footer {
22466
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22467
+ border-style: solid;
22468
+ border-width: 0;
22469
+ }
22470
+ .v-footer--border {
22471
+ border-width: thin;
22472
+ box-shadow: none;
22473
+ }
22474
+ .v-footer {
22475
+ 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));
22476
+ }
22477
+ .v-footer--absolute {
22478
+ position: absolute;
22479
+ }
22480
+ .v-footer--fixed {
22481
+ position: fixed;
22482
+ }
22483
+ .v-footer {
22484
+ border-radius: 0;
22485
+ }
22486
+ .v-footer {
22487
+ background: rgb(var(--v-theme-surface));
22488
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22489
+ }
22490
+ .v-footer--rounded {
22491
+ border-radius: 4px;
22492
22492
  }.v-icon {
22493
22493
  --v-icon-size-multiplier: 1;
22494
22494
  align-items: center;
@@ -22542,6 +22542,57 @@ textarea.v-field__input::placeholder {
22542
22542
 
22543
22543
  .v-icon--end {
22544
22544
  margin-inline-start: 8px;
22545
+ }.v-img {
22546
+ --v-theme-overlay-multiplier: 3;
22547
+ z-index: 0;
22548
+ }
22549
+ .v-img.v-img--absolute {
22550
+ height: 100%;
22551
+ left: 0;
22552
+ overflow: hidden;
22553
+ position: absolute;
22554
+ top: 0;
22555
+ width: 100%;
22556
+ z-index: -1;
22557
+ }
22558
+ .v-img--booting .v-responsive__sizer {
22559
+ transition: none;
22560
+ }
22561
+ .v-img--rounded {
22562
+ border-radius: 4px;
22563
+ }
22564
+
22565
+ .v-img__img,
22566
+ .v-img__picture,
22567
+ .v-img__gradient,
22568
+ .v-img__placeholder,
22569
+ .v-img__error {
22570
+ z-index: -1;
22571
+ }
22572
+ .v-img__img,
22573
+ .v-img__picture,
22574
+ .v-img__gradient,
22575
+ .v-img__placeholder,
22576
+ .v-img__error {
22577
+ position: absolute;
22578
+ top: 0;
22579
+ left: 0;
22580
+ width: 100%;
22581
+ height: 100%;
22582
+ }
22583
+
22584
+ .v-img__img--preload {
22585
+ filter: blur(4px);
22586
+ }
22587
+ .v-img__img--contain {
22588
+ object-fit: contain;
22589
+ }
22590
+ .v-img__img--cover {
22591
+ object-fit: cover;
22592
+ }
22593
+
22594
+ .v-img__gradient {
22595
+ background-repeat: no-repeat;
22545
22596
  }.v-infinite-scroll--horizontal {
22546
22597
  display: flex;
22547
22598
  flex-direction: row;
@@ -22687,111 +22738,45 @@ textarea.v-field__input::placeholder {
22687
22738
  }
22688
22739
 
22689
22740
  .v-input__prepend {
22690
- grid-area: prepend;
22691
- }
22692
-
22693
- .v-input__append {
22694
- grid-area: append;
22695
- }
22696
-
22697
- .v-input__control {
22698
- display: flex;
22699
- grid-area: control;
22700
- }
22701
-
22702
- .v-input--hide-spin-buttons input::-webkit-outer-spin-button,
22703
- .v-input--hide-spin-buttons input::-webkit-inner-spin-button {
22704
- -webkit-appearance: none;
22705
- margin: 0;
22706
- }
22707
- .v-input--hide-spin-buttons input[type=number] {
22708
- -moz-appearance: textfield;
22709
- }
22710
- .v-input--plain-underlined .v-input__prepend,
22711
- .v-input--plain-underlined .v-input__append {
22712
- align-items: flex-start;
22713
- }
22714
- .v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
22715
- padding-top: calc(var(--v-input-padding-top) + 4px);
22716
- }
22717
-
22718
- .v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
22719
- padding-top: calc(var(--v-input-padding-top) + 2px);
22720
- }
22721
-
22722
- .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22723
- padding-top: calc(var(--v-input-padding-top) + 0px);
22724
- }.v-img {
22725
- --v-theme-overlay-multiplier: 3;
22726
- z-index: 0;
22727
- }
22728
- .v-img.v-img--absolute {
22729
- height: 100%;
22730
- left: 0;
22731
- overflow: hidden;
22732
- position: absolute;
22733
- top: 0;
22734
- width: 100%;
22735
- z-index: -1;
22736
- }
22737
- .v-img--booting .v-responsive__sizer {
22738
- transition: none;
22739
- }
22740
- .v-img--rounded {
22741
- border-radius: 4px;
22742
- }
22743
-
22744
- .v-img__img,
22745
- .v-img__picture,
22746
- .v-img__gradient,
22747
- .v-img__placeholder,
22748
- .v-img__error {
22749
- z-index: -1;
22750
- }
22751
- .v-img__img,
22752
- .v-img__picture,
22753
- .v-img__gradient,
22754
- .v-img__placeholder,
22755
- .v-img__error {
22756
- position: absolute;
22757
- top: 0;
22758
- left: 0;
22759
- width: 100%;
22760
- height: 100%;
22741
+ grid-area: prepend;
22761
22742
  }
22762
22743
 
22763
- .v-img__img--preload {
22764
- filter: blur(4px);
22744
+ .v-input__append {
22745
+ grid-area: append;
22765
22746
  }
22766
- .v-img__img--contain {
22767
- object-fit: contain;
22747
+
22748
+ .v-input__control {
22749
+ display: flex;
22750
+ grid-area: control;
22768
22751
  }
22769
- .v-img__img--cover {
22770
- object-fit: cover;
22752
+
22753
+ .v-input--hide-spin-buttons input::-webkit-outer-spin-button,
22754
+ .v-input--hide-spin-buttons input::-webkit-inner-spin-button {
22755
+ -webkit-appearance: none;
22756
+ margin: 0;
22757
+ }
22758
+ .v-input--hide-spin-buttons input[type=number] {
22759
+ -moz-appearance: textfield;
22760
+ }
22761
+ .v-input--plain-underlined .v-input__prepend,
22762
+ .v-input--plain-underlined .v-input__append {
22763
+ align-items: flex-start;
22764
+ }
22765
+ .v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
22766
+ padding-top: calc(var(--v-input-padding-top) + 4px);
22771
22767
  }
22772
22768
 
22773
- .v-img__gradient {
22774
- background-repeat: no-repeat;
22769
+ .v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
22770
+ padding-top: calc(var(--v-input-padding-top) + 2px);
22771
+ }
22772
+
22773
+ .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22774
+ padding-top: calc(var(--v-input-padding-top) + 0px);
22775
22775
  }.v-item-group {
22776
22776
  flex: 0 1 auto;
22777
22777
  max-width: 100%;
22778
22778
  position: relative;
22779
22779
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22780
- }.v-layout {
22781
- --v-scrollbar-offset: 0px;
22782
- display: flex;
22783
- flex: 1 1 auto;
22784
- }
22785
- .v-layout--full-height {
22786
- --v-scrollbar-offset: inherit;
22787
- height: 100%;
22788
- }.v-layout-item {
22789
- position: absolute;
22790
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22791
- }
22792
-
22793
- .v-layout-item--absolute {
22794
- position: absolute;
22795
22780
  }.v-label {
22796
22781
  align-items: center;
22797
22782
  color: inherit;
@@ -22807,6 +22792,21 @@ textarea.v-field__input::placeholder {
22807
22792
 
22808
22793
  .v-label--clickable {
22809
22794
  cursor: pointer;
22795
+ }.v-layout-item {
22796
+ position: absolute;
22797
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22798
+ }
22799
+
22800
+ .v-layout-item--absolute {
22801
+ position: absolute;
22802
+ }.v-layout {
22803
+ --v-scrollbar-offset: 0px;
22804
+ display: flex;
22805
+ flex: 1 1 auto;
22806
+ }
22807
+ .v-layout--full-height {
22808
+ --v-scrollbar-offset: inherit;
22809
+ height: 100%;
22810
22810
  }.v-list {
22811
22811
  overflow: auto;
22812
22812
  padding: 8px 0;
@@ -23385,6 +23385,25 @@ textarea.v-field__input::placeholder {
23385
23385
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23386
23386
  }.v-locale-provider {
23387
23387
  display: contents;
23388
+ }.v-menu > .v-overlay__content {
23389
+ display: flex;
23390
+ flex-direction: column;
23391
+ }
23392
+ .v-menu > .v-overlay__content {
23393
+ border-radius: 4px;
23394
+ }
23395
+ .v-menu > .v-overlay__content > .v-card,
23396
+ .v-menu > .v-overlay__content > .v-sheet,
23397
+ .v-menu > .v-overlay__content > .v-list {
23398
+ background: rgb(var(--v-theme-surface));
23399
+ border-radius: inherit;
23400
+ overflow: auto;
23401
+ height: 100%;
23402
+ }
23403
+ .v-menu > .v-overlay__content > .v-card,
23404
+ .v-menu > .v-overlay__content > .v-sheet,
23405
+ .v-menu > .v-overlay__content > .v-list {
23406
+ 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));
23388
23407
  }.v-main {
23389
23408
  flex: 1 0 auto;
23390
23409
  max-width: 100%;
@@ -23415,99 +23434,6 @@ textarea.v-field__input::placeholder {
23415
23434
  --v-layout-right: 0px;
23416
23435
  --v-layout-top: 0px;
23417
23436
  --v-layout-bottom: 0px;
23418
- }.v-menu > .v-overlay__content {
23419
- display: flex;
23420
- flex-direction: column;
23421
- }
23422
- .v-menu > .v-overlay__content {
23423
- border-radius: 4px;
23424
- }
23425
- .v-menu > .v-overlay__content > .v-card,
23426
- .v-menu > .v-overlay__content > .v-sheet,
23427
- .v-menu > .v-overlay__content > .v-list {
23428
- background: rgb(var(--v-theme-surface));
23429
- border-radius: inherit;
23430
- overflow: auto;
23431
- height: 100%;
23432
- }
23433
- .v-menu > .v-overlay__content > .v-card,
23434
- .v-menu > .v-overlay__content > .v-sheet,
23435
- .v-menu > .v-overlay__content > .v-list {
23436
- 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));
23437
- }.v-messages {
23438
- flex: 1 1 auto;
23439
- font-size: 12px;
23440
- min-height: 14px;
23441
- min-width: 1px;
23442
- opacity: var(--v-medium-emphasis-opacity);
23443
- position: relative;
23444
- }
23445
- .v-messages__message {
23446
- line-height: 12px;
23447
- word-break: break-word;
23448
- overflow-wrap: break-word;
23449
- word-wrap: break-word;
23450
- -webkit-hyphens: auto;
23451
- hyphens: auto;
23452
- transition-duration: 150ms;
23453
- }.v-otp-input {
23454
- align-items: center;
23455
- display: flex;
23456
- justify-content: center;
23457
- padding: 0.5rem 0;
23458
- position: relative;
23459
- }
23460
- .v-otp-input {
23461
- border-radius: 4px;
23462
- }
23463
- .v-otp-input .v-field {
23464
- height: 100%;
23465
- }
23466
-
23467
- .v-otp-input__divider {
23468
- margin: 0 8px;
23469
- }
23470
-
23471
- .v-otp-input__content {
23472
- align-items: center;
23473
- display: flex;
23474
- gap: 0.5rem;
23475
- height: 64px;
23476
- padding: 0.5rem;
23477
- justify-content: center;
23478
- max-width: 320px;
23479
- position: relative;
23480
- border-radius: inherit;
23481
- }
23482
- .v-otp-input--divided .v-otp-input__content {
23483
- max-width: 360px;
23484
- }
23485
-
23486
- .v-otp-input__field {
23487
- color: inherit;
23488
- font-size: 1.25rem;
23489
- height: 100%;
23490
- outline: none;
23491
- text-align: center;
23492
- width: 100%;
23493
- }
23494
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23495
- -webkit-appearance: none;
23496
- margin: 0;
23497
- }
23498
- .v-otp-input__field[type=number] {
23499
- -moz-appearance: textfield;
23500
- }
23501
-
23502
- .v-otp-input__loader {
23503
- align-items: center;
23504
- display: flex;
23505
- height: 100%;
23506
- justify-content: center;
23507
- width: 100%;
23508
- }
23509
- .v-otp-input__loader .v-progress-linear {
23510
- position: absolute;
23511
23437
  }.v-navigation-drawer {
23512
23438
  -webkit-overflow-scrolling: touch;
23513
23439
  background: rgb(var(--v-theme-surface));
@@ -23588,34 +23514,108 @@ textarea.v-field__input::placeholder {
23588
23514
 
23589
23515
  .v-navigation-drawer__img {
23590
23516
  height: 100%;
23591
- left: 0;
23592
- position: absolute;
23593
- top: 0;
23517
+ left: 0;
23518
+ position: absolute;
23519
+ top: 0;
23520
+ width: 100%;
23521
+ z-index: -1;
23522
+ }
23523
+ .v-navigation-drawer__img img:not(.v-img__img) {
23524
+ height: inherit;
23525
+ object-fit: cover;
23526
+ width: inherit;
23527
+ }
23528
+
23529
+ .v-navigation-drawer__scrim {
23530
+ position: absolute;
23531
+ top: 0;
23532
+ left: 0;
23533
+ width: 100%;
23534
+ height: 100%;
23535
+ background: black;
23536
+ opacity: 0.2;
23537
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23538
+ z-index: 1;
23539
+ }
23540
+
23541
+ .v-navigation-drawer__prepend,
23542
+ .v-navigation-drawer__append {
23543
+ flex: none;
23544
+ overflow: hidden;
23545
+ }.v-messages {
23546
+ flex: 1 1 auto;
23547
+ font-size: 12px;
23548
+ min-height: 14px;
23549
+ min-width: 1px;
23550
+ opacity: var(--v-medium-emphasis-opacity);
23551
+ position: relative;
23552
+ }
23553
+ .v-messages__message {
23554
+ line-height: 12px;
23555
+ word-break: break-word;
23556
+ overflow-wrap: break-word;
23557
+ word-wrap: break-word;
23558
+ -webkit-hyphens: auto;
23559
+ hyphens: auto;
23560
+ transition-duration: 150ms;
23561
+ }.v-otp-input {
23562
+ align-items: center;
23563
+ display: flex;
23564
+ justify-content: center;
23565
+ padding: 0.5rem 0;
23566
+ position: relative;
23567
+ }
23568
+ .v-otp-input {
23569
+ border-radius: 4px;
23570
+ }
23571
+ .v-otp-input .v-field {
23572
+ height: 100%;
23573
+ }
23574
+
23575
+ .v-otp-input__divider {
23576
+ margin: 0 8px;
23577
+ }
23578
+
23579
+ .v-otp-input__content {
23580
+ align-items: center;
23581
+ display: flex;
23582
+ gap: 0.5rem;
23583
+ height: 64px;
23584
+ padding: 0.5rem;
23585
+ justify-content: center;
23586
+ max-width: 320px;
23587
+ position: relative;
23588
+ border-radius: inherit;
23589
+ }
23590
+ .v-otp-input--divided .v-otp-input__content {
23591
+ max-width: 360px;
23592
+ }
23593
+
23594
+ .v-otp-input__field {
23595
+ color: inherit;
23596
+ font-size: 1.25rem;
23597
+ height: 100%;
23598
+ outline: none;
23599
+ text-align: center;
23594
23600
  width: 100%;
23595
- z-index: -1;
23596
23601
  }
23597
- .v-navigation-drawer__img img:not(.v-img__img) {
23598
- height: inherit;
23599
- object-fit: cover;
23600
- width: inherit;
23602
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23603
+ -webkit-appearance: none;
23604
+ margin: 0;
23605
+ }
23606
+ .v-otp-input__field[type=number] {
23607
+ -moz-appearance: textfield;
23601
23608
  }
23602
23609
 
23603
- .v-navigation-drawer__scrim {
23604
- position: absolute;
23605
- top: 0;
23606
- left: 0;
23607
- width: 100%;
23610
+ .v-otp-input__loader {
23611
+ align-items: center;
23612
+ display: flex;
23608
23613
  height: 100%;
23609
- background: black;
23610
- opacity: 0.2;
23611
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23612
- z-index: 1;
23614
+ justify-content: center;
23615
+ width: 100%;
23613
23616
  }
23614
-
23615
- .v-navigation-drawer__prepend,
23616
- .v-navigation-drawer__append {
23617
- flex: none;
23618
- overflow: hidden;
23617
+ .v-otp-input__loader .v-progress-linear {
23618
+ position: absolute;
23619
23619
  }.v-overlay-container {
23620
23620
  contain: layout;
23621
23621
  left: 0;
@@ -24035,59 +24035,6 @@ html.v-overlay-scroll-blocked {
24035
24035
  }
24036
24036
  .v-radio-group .v-input__details {
24037
24037
  padding-inline: 16px;
24038
- }.v-rating {
24039
- max-width: 100%;
24040
- display: inline-flex;
24041
- white-space: nowrap;
24042
- }
24043
- .v-rating--readonly {
24044
- pointer-events: none;
24045
- }
24046
-
24047
- .v-rating__wrapper {
24048
- align-items: center;
24049
- display: inline-flex;
24050
- flex-direction: column;
24051
- }
24052
- .v-rating__wrapper--bottom {
24053
- flex-direction: column-reverse;
24054
- }
24055
-
24056
- .v-rating__item {
24057
- display: inline-flex;
24058
- position: relative;
24059
- }
24060
- .v-rating__item label {
24061
- cursor: pointer;
24062
- }
24063
- .v-rating__item .v-btn--variant-plain {
24064
- opacity: 1;
24065
- }
24066
- .v-rating__item .v-btn {
24067
- transition-property: transform;
24068
- }
24069
- .v-rating__item .v-btn .v-icon {
24070
- transition: inherit;
24071
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24072
- }
24073
- .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24074
- transform: scale(1.25);
24075
- }
24076
- .v-rating__item--half {
24077
- overflow: hidden;
24078
- position: absolute;
24079
- clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24080
- z-index: 1;
24081
- }
24082
- .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24083
- opacity: 0;
24084
- }
24085
-
24086
- .v-rating__hidden {
24087
- height: 0;
24088
- opacity: 0;
24089
- position: absolute;
24090
- width: 0;
24091
24038
  }.v-slider .v-slider__container input {
24092
24039
  cursor: default;
24093
24040
  padding: 0;
@@ -24145,84 +24092,59 @@ html.v-overlay-scroll-blocked {
24145
24092
 
24146
24093
  .v-slider__label {
24147
24094
  margin-inline-end: 12px;
24148
- }.v-responsive {
24149
- display: flex;
24150
- flex: 1 0 auto;
24151
- max-height: 100%;
24095
+ }.v-rating {
24152
24096
  max-width: 100%;
24153
- overflow: hidden;
24154
- position: relative;
24155
- }
24156
- .v-responsive--inline {
24157
24097
  display: inline-flex;
24158
- flex: 0 0 auto;
24098
+ white-space: nowrap;
24159
24099
  }
24160
-
24161
- .v-responsive__content {
24162
- flex: 1 0 0px;
24163
- max-width: 100%;
24100
+ .v-rating--readonly {
24101
+ pointer-events: none;
24164
24102
  }
24165
24103
 
24166
- .v-responsive__sizer ~ .v-responsive__content {
24167
- margin-inline-start: -100%;
24104
+ .v-rating__wrapper {
24105
+ align-items: center;
24106
+ display: inline-flex;
24107
+ flex-direction: column;
24108
+ }
24109
+ .v-rating__wrapper--bottom {
24110
+ flex-direction: column-reverse;
24168
24111
  }
24169
24112
 
24170
- .v-responsive__sizer {
24171
- flex: 1 0 0px;
24172
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24173
- pointer-events: none;
24174
- }.v-select .v-field .v-text-field__prefix,
24175
- .v-select .v-field .v-text-field__suffix,
24176
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
24113
+ .v-rating__item {
24114
+ display: inline-flex;
24115
+ position: relative;
24116
+ }
24117
+ .v-rating__item label {
24177
24118
  cursor: pointer;
24178
24119
  }
24179
- .v-select .v-field .v-field__input > input {
24180
- align-self: flex-start;
24120
+ .v-rating__item .v-btn--variant-plain {
24181
24121
  opacity: 1;
24182
- flex: 0 0;
24183
- position: absolute;
24184
- width: 100%;
24185
- transition: none;
24186
- pointer-events: none;
24187
- caret-color: transparent;
24188
- }
24189
- .v-select .v-field--dirty .v-select__selection {
24190
- margin-inline-end: 2px;
24191
- }
24192
- .v-select .v-select__selection-text {
24193
- overflow: hidden;
24194
- text-overflow: ellipsis;
24195
- white-space: nowrap;
24196
24122
  }
24197
- .v-select__content {
24198
- overflow: hidden;
24199
- }
24200
- .v-select__content {
24201
- 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));
24123
+ .v-rating__item .v-btn {
24124
+ transition-property: transform;
24202
24125
  }
24203
- .v-select__content {
24204
- border-radius: 4px;
24126
+ .v-rating__item .v-btn .v-icon {
24127
+ transition: inherit;
24128
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24205
24129
  }
24206
- .v-select__selection {
24207
- display: inline-flex;
24208
- align-items: center;
24209
- letter-spacing: inherit;
24210
- line-height: inherit;
24211
- max-width: 100%;
24130
+ .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24131
+ transform: scale(1.25);
24212
24132
  }
24213
- .v-select .v-select__selection:first-child {
24214
- margin-inline-start: 0;
24133
+ .v-rating__item--half {
24134
+ overflow: hidden;
24135
+ position: absolute;
24136
+ clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24137
+ z-index: 1;
24215
24138
  }
24216
- .v-select--selected .v-field .v-field__input > input {
24139
+ .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24217
24140
  opacity: 0;
24218
24141
  }
24219
- .v-select__menu-icon {
24220
- margin-inline-start: 4px;
24221
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24222
- }
24223
- .v-select--active-menu .v-select__menu-icon {
24224
- opacity: var(--v-high-emphasis-opacity);
24225
- transform: rotate(180deg);
24142
+
24143
+ .v-rating__hidden {
24144
+ height: 0;
24145
+ opacity: 0;
24146
+ position: absolute;
24147
+ width: 0;
24226
24148
  }.v-selection-control {
24227
24149
  align-items: center;
24228
24150
  contain: layout;
@@ -24326,6 +24248,32 @@ html.v-overlay-scroll-blocked {
24326
24248
  }
24327
24249
  .v-selection-control--focus-visible .v-selection-control__input::before {
24328
24250
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24251
+ }.v-responsive {
24252
+ display: flex;
24253
+ flex: 1 0 auto;
24254
+ max-height: 100%;
24255
+ max-width: 100%;
24256
+ overflow: hidden;
24257
+ position: relative;
24258
+ }
24259
+ .v-responsive--inline {
24260
+ display: inline-flex;
24261
+ flex: 0 0 auto;
24262
+ }
24263
+
24264
+ .v-responsive__content {
24265
+ flex: 1 0 0px;
24266
+ max-width: 100%;
24267
+ }
24268
+
24269
+ .v-responsive__sizer ~ .v-responsive__content {
24270
+ margin-inline-start: -100%;
24271
+ }
24272
+
24273
+ .v-responsive__sizer {
24274
+ flex: 1 0 0px;
24275
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24276
+ pointer-events: none;
24329
24277
  }.v-selection-control-group {
24330
24278
  grid-area: control;
24331
24279
  display: flex;
@@ -24781,15 +24729,56 @@ html.v-overlay-scroll-blocked {
24781
24729
  .v-snackbar-transition-enter-active {
24782
24730
  transition-property: opacity, transform;
24783
24731
  }
24784
- .v-snackbar-transition-enter-from {
24785
- opacity: 0;
24786
- transform: scale(0.8);
24732
+ .v-snackbar-transition-enter-from {
24733
+ opacity: 0;
24734
+ transform: scale(0.8);
24735
+ }
24736
+ .v-snackbar-transition-leave-active {
24737
+ transition-property: opacity;
24738
+ }
24739
+ .v-snackbar-transition-leave-to {
24740
+ opacity: 0;
24741
+ }.v-speed-dial__content {
24742
+ gap: 8px;
24743
+ }
24744
+ .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 {
24745
+ flex-direction: row;
24746
+ }
24747
+ .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 {
24748
+ flex-direction: row-reverse;
24749
+ }
24750
+ .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 {
24751
+ flex-direction: column-reverse;
24752
+ }
24753
+ .v-speed-dial__content > *:nth-child(1) {
24754
+ transition-delay: 0s;
24755
+ }
24756
+ .v-speed-dial__content > *:nth-child(2) {
24757
+ transition-delay: 0.05s;
24758
+ }
24759
+ .v-speed-dial__content > *:nth-child(3) {
24760
+ transition-delay: 0.1s;
24761
+ }
24762
+ .v-speed-dial__content > *:nth-child(4) {
24763
+ transition-delay: 0.15s;
24764
+ }
24765
+ .v-speed-dial__content > *:nth-child(5) {
24766
+ transition-delay: 0.2s;
24767
+ }
24768
+ .v-speed-dial__content > *:nth-child(6) {
24769
+ transition-delay: 0.25s;
24770
+ }
24771
+ .v-speed-dial__content > *:nth-child(7) {
24772
+ transition-delay: 0.3s;
24773
+ }
24774
+ .v-speed-dial__content > *:nth-child(8) {
24775
+ transition-delay: 0.35s;
24787
24776
  }
24788
- .v-snackbar-transition-leave-active {
24789
- transition-property: opacity;
24777
+ .v-speed-dial__content > *:nth-child(9) {
24778
+ transition-delay: 0.4s;
24790
24779
  }
24791
- .v-snackbar-transition-leave-to {
24792
- opacity: 0;
24780
+ .v-speed-dial__content > *:nth-child(10) {
24781
+ transition-delay: 0.45s;
24793
24782
  }.v-stepper.v-sheet {
24794
24783
  overflow: hidden;
24795
24784
  }
@@ -24965,47 +24954,6 @@ html.v-overlay-scroll-blocked {
24965
24954
  left: 0;
24966
24955
  width: 100%;
24967
24956
  height: 100%;
24968
- }.v-speed-dial__content {
24969
- gap: 8px;
24970
- }
24971
- .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 {
24972
- flex-direction: row;
24973
- }
24974
- .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 {
24975
- flex-direction: row-reverse;
24976
- }
24977
- .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 {
24978
- flex-direction: column-reverse;
24979
- }
24980
- .v-speed-dial__content > *:nth-child(1) {
24981
- transition-delay: 0s;
24982
- }
24983
- .v-speed-dial__content > *:nth-child(2) {
24984
- transition-delay: 0.05s;
24985
- }
24986
- .v-speed-dial__content > *:nth-child(3) {
24987
- transition-delay: 0.1s;
24988
- }
24989
- .v-speed-dial__content > *:nth-child(4) {
24990
- transition-delay: 0.15s;
24991
- }
24992
- .v-speed-dial__content > *:nth-child(5) {
24993
- transition-delay: 0.2s;
24994
- }
24995
- .v-speed-dial__content > *:nth-child(6) {
24996
- transition-delay: 0.25s;
24997
- }
24998
- .v-speed-dial__content > *:nth-child(7) {
24999
- transition-delay: 0.3s;
25000
- }
25001
- .v-speed-dial__content > *:nth-child(8) {
25002
- transition-delay: 0.35s;
25003
- }
25004
- .v-speed-dial__content > *:nth-child(9) {
25005
- transition-delay: 0.4s;
25006
- }
25007
- .v-speed-dial__content > *:nth-child(10) {
25008
- transition-delay: 0.45s;
25009
24957
  }.v-switch .v-label {
25010
24958
  padding-inline-start: 10px;
25011
24959
  }
@@ -25231,35 +25179,6 @@ html.v-overlay-scroll-blocked {
25231
25179
  }
25232
25180
  .v-system-bar:not(.v-system-bar--absolute) {
25233
25181
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25234
- }.v-tab.v-tab.v-btn {
25235
- height: var(--v-tabs-height);
25236
- border-radius: 0;
25237
- min-width: 90px;
25238
- }
25239
- .v-slide-group--horizontal .v-tab {
25240
- max-width: 360px;
25241
- }
25242
- .v-slide-group--vertical .v-tab {
25243
- justify-content: start;
25244
- }
25245
-
25246
- .v-tab__slider {
25247
- position: absolute;
25248
- bottom: 0;
25249
- left: 0;
25250
- height: 2px;
25251
- width: 100%;
25252
- background: currentColor;
25253
- pointer-events: none;
25254
- opacity: 0;
25255
- }
25256
- .v-tab--selected .v-tab__slider {
25257
- opacity: 1;
25258
- }
25259
- .v-slide-group--vertical .v-tab__slider {
25260
- top: 0;
25261
- height: 100%;
25262
- width: 2px;
25263
25182
  }.v-tabs {
25264
25183
  display: flex;
25265
25184
  height: var(--v-tabs-height);
@@ -25326,6 +25245,35 @@ html.v-overlay-scroll-blocked {
25326
25245
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25327
25246
  margin-inline-end: 52px;
25328
25247
  }
25248
+ }.v-tab.v-tab.v-btn {
25249
+ height: var(--v-tabs-height);
25250
+ border-radius: 0;
25251
+ min-width: 90px;
25252
+ }
25253
+ .v-slide-group--horizontal .v-tab {
25254
+ max-width: 360px;
25255
+ }
25256
+ .v-slide-group--vertical .v-tab {
25257
+ justify-content: start;
25258
+ }
25259
+
25260
+ .v-tab__slider {
25261
+ position: absolute;
25262
+ bottom: 0;
25263
+ left: 0;
25264
+ height: 2px;
25265
+ width: 100%;
25266
+ background: currentColor;
25267
+ pointer-events: none;
25268
+ opacity: 0;
25269
+ }
25270
+ .v-tab--selected .v-tab__slider {
25271
+ opacity: 1;
25272
+ }
25273
+ .v-slide-group--vertical .v-tab__slider {
25274
+ top: 0;
25275
+ height: 100%;
25276
+ width: 2px;
25329
25277
  }.v-table {
25330
25278
  font-size: 0.875rem;
25331
25279
  transition-duration: 0.28s;
@@ -25535,10 +25483,7 @@ html.v-overlay-scroll-blocked {
25535
25483
  padding-inline-end: var(--v-field-padding-end);
25536
25484
  }
25537
25485
 
25538
- /* endregion */.v-theme-provider {
25539
- background: rgb(var(--v-theme-background));
25540
- color: rgb(var(--v-theme-on-background));
25541
- }.v-textarea .v-field {
25486
+ /* endregion */.v-textarea .v-field {
25542
25487
  --v-textarea-control-height: var(--v-input-control-height);
25543
25488
  }
25544
25489
  .v-textarea .v-field__field {
@@ -25577,6 +25522,152 @@ html.v-overlay-scroll-blocked {
25577
25522
  }
25578
25523
  .v-textarea textarea:invalid {
25579
25524
  box-shadow: none;
25525
+ }.v-toolbar {
25526
+ align-items: flex-start;
25527
+ display: flex;
25528
+ flex: none;
25529
+ flex-direction: column;
25530
+ justify-content: space-between;
25531
+ max-width: 100%;
25532
+ position: relative;
25533
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25534
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25535
+ width: 100%;
25536
+ }
25537
+ .v-toolbar {
25538
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25539
+ border-style: solid;
25540
+ border-width: 0;
25541
+ }
25542
+ .v-toolbar--border {
25543
+ border-width: thin;
25544
+ box-shadow: none;
25545
+ }
25546
+ .v-toolbar {
25547
+ 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));
25548
+ }
25549
+ .v-toolbar {
25550
+ border-radius: 0;
25551
+ }
25552
+ .v-toolbar {
25553
+ background: rgb(var(--v-theme-surface-light));
25554
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25555
+ }
25556
+ .v-toolbar--absolute {
25557
+ position: absolute;
25558
+ }
25559
+ .v-toolbar--collapse {
25560
+ max-width: 112px;
25561
+ overflow: hidden;
25562
+ border-end-end-radius: 24px;
25563
+ }
25564
+ .v-toolbar--collapse .v-toolbar-title {
25565
+ display: none;
25566
+ }
25567
+ .v-toolbar--flat {
25568
+ 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));
25569
+ }
25570
+ .v-toolbar--floating {
25571
+ display: inline-flex;
25572
+ }
25573
+ .v-toolbar--rounded {
25574
+ border-radius: 4px;
25575
+ }
25576
+
25577
+ .v-toolbar__content,
25578
+ .v-toolbar__extension {
25579
+ align-items: center;
25580
+ display: flex;
25581
+ flex: 0 0 auto;
25582
+ position: relative;
25583
+ transition: inherit;
25584
+ width: 100%;
25585
+ }
25586
+
25587
+ .v-toolbar__content {
25588
+ overflow: hidden;
25589
+ }
25590
+ .v-toolbar__content > .v-btn:first-child {
25591
+ margin-inline-start: 4px;
25592
+ }
25593
+ .v-toolbar__content > .v-btn:last-child {
25594
+ margin-inline-end: 4px;
25595
+ }
25596
+ .v-toolbar__content > .v-toolbar-title {
25597
+ margin-inline-start: 20px;
25598
+ }
25599
+ .v-toolbar--density-prominent .v-toolbar__content {
25600
+ align-items: flex-start;
25601
+ }
25602
+
25603
+ .v-toolbar__image {
25604
+ display: flex;
25605
+ opacity: var(--v-toolbar-image-opacity, 1);
25606
+ transition-property: opacity;
25607
+ }
25608
+ .v-toolbar__image {
25609
+ position: absolute;
25610
+ top: 0;
25611
+ left: 0;
25612
+ width: 100%;
25613
+ height: 100%;
25614
+ }
25615
+
25616
+ .v-toolbar__prepend,
25617
+ .v-toolbar__append {
25618
+ align-items: center;
25619
+ align-self: stretch;
25620
+ display: flex;
25621
+ }
25622
+
25623
+ .v-toolbar__prepend {
25624
+ margin-inline: 4px auto;
25625
+ }
25626
+
25627
+ .v-toolbar__append {
25628
+ margin-inline: auto 4px;
25629
+ }
25630
+
25631
+ .v-toolbar-title {
25632
+ flex: 1 1;
25633
+ font-size: 1.25rem;
25634
+ min-width: 0;
25635
+ }
25636
+ .v-toolbar-title {
25637
+ font-size: 1.25rem;
25638
+ font-weight: 400;
25639
+ letter-spacing: 0;
25640
+ line-height: 1.75rem;
25641
+ text-transform: none;
25642
+ }
25643
+ .v-toolbar--density-prominent .v-toolbar-title {
25644
+ align-self: flex-end;
25645
+ padding-bottom: 6px;
25646
+ }
25647
+ .v-toolbar--density-prominent .v-toolbar-title {
25648
+ font-size: 1.5rem;
25649
+ font-weight: 400;
25650
+ letter-spacing: 0;
25651
+ line-height: 2.25rem;
25652
+ text-transform: none;
25653
+ }
25654
+
25655
+ .v-toolbar-title__placeholder {
25656
+ overflow: hidden;
25657
+ text-overflow: ellipsis;
25658
+ white-space: nowrap;
25659
+ }
25660
+
25661
+ .v-toolbar-items {
25662
+ display: flex;
25663
+ height: inherit;
25664
+ align-self: stretch;
25665
+ }
25666
+ .v-toolbar-items > .v-btn {
25667
+ border-radius: 0;
25668
+ }.v-theme-provider {
25669
+ background: rgb(var(--v-theme-background));
25670
+ color: rgb(var(--v-theme-on-background));
25580
25671
  }.v-timeline .v-timeline-divider__dot {
25581
25672
  background: rgb(var(--v-theme-surface-light));
25582
25673
  }
@@ -25995,149 +26086,6 @@ html.v-overlay-scroll-blocked {
25995
26086
 
25996
26087
  .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 {
25997
26088
  padding-inline-end: 0;
25998
- }.v-toolbar {
25999
- align-items: flex-start;
26000
- display: flex;
26001
- flex: none;
26002
- flex-direction: column;
26003
- justify-content: space-between;
26004
- max-width: 100%;
26005
- position: relative;
26006
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26007
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
26008
- width: 100%;
26009
- }
26010
- .v-toolbar {
26011
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26012
- border-style: solid;
26013
- border-width: 0;
26014
- }
26015
- .v-toolbar--border {
26016
- border-width: thin;
26017
- box-shadow: none;
26018
- }
26019
- .v-toolbar {
26020
- 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));
26021
- }
26022
- .v-toolbar {
26023
- border-radius: 0;
26024
- }
26025
- .v-toolbar {
26026
- background: rgb(var(--v-theme-surface-light));
26027
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26028
- }
26029
- .v-toolbar--absolute {
26030
- position: absolute;
26031
- }
26032
- .v-toolbar--collapse {
26033
- max-width: 112px;
26034
- overflow: hidden;
26035
- border-end-end-radius: 24px;
26036
- }
26037
- .v-toolbar--collapse .v-toolbar-title {
26038
- display: none;
26039
- }
26040
- .v-toolbar--flat {
26041
- 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));
26042
- }
26043
- .v-toolbar--floating {
26044
- display: inline-flex;
26045
- }
26046
- .v-toolbar--rounded {
26047
- border-radius: 4px;
26048
- }
26049
-
26050
- .v-toolbar__content,
26051
- .v-toolbar__extension {
26052
- align-items: center;
26053
- display: flex;
26054
- flex: 0 0 auto;
26055
- position: relative;
26056
- transition: inherit;
26057
- width: 100%;
26058
- }
26059
-
26060
- .v-toolbar__content {
26061
- overflow: hidden;
26062
- }
26063
- .v-toolbar__content > .v-btn:first-child {
26064
- margin-inline-start: 4px;
26065
- }
26066
- .v-toolbar__content > .v-btn:last-child {
26067
- margin-inline-end: 4px;
26068
- }
26069
- .v-toolbar__content > .v-toolbar-title {
26070
- margin-inline-start: 20px;
26071
- }
26072
- .v-toolbar--density-prominent .v-toolbar__content {
26073
- align-items: flex-start;
26074
- }
26075
-
26076
- .v-toolbar__image {
26077
- display: flex;
26078
- opacity: var(--v-toolbar-image-opacity, 1);
26079
- transition-property: opacity;
26080
- }
26081
- .v-toolbar__image {
26082
- position: absolute;
26083
- top: 0;
26084
- left: 0;
26085
- width: 100%;
26086
- height: 100%;
26087
- }
26088
-
26089
- .v-toolbar__prepend,
26090
- .v-toolbar__append {
26091
- align-items: center;
26092
- align-self: stretch;
26093
- display: flex;
26094
- }
26095
-
26096
- .v-toolbar__prepend {
26097
- margin-inline: 4px auto;
26098
- }
26099
-
26100
- .v-toolbar__append {
26101
- margin-inline: auto 4px;
26102
- }
26103
-
26104
- .v-toolbar-title {
26105
- flex: 1 1;
26106
- font-size: 1.25rem;
26107
- min-width: 0;
26108
- }
26109
- .v-toolbar-title {
26110
- font-size: 1.25rem;
26111
- font-weight: 400;
26112
- letter-spacing: 0;
26113
- line-height: 1.75rem;
26114
- text-transform: none;
26115
- }
26116
- .v-toolbar--density-prominent .v-toolbar-title {
26117
- align-self: flex-end;
26118
- padding-bottom: 6px;
26119
- }
26120
- .v-toolbar--density-prominent .v-toolbar-title {
26121
- font-size: 1.5rem;
26122
- font-weight: 400;
26123
- letter-spacing: 0;
26124
- line-height: 2.25rem;
26125
- text-transform: none;
26126
- }
26127
-
26128
- .v-toolbar-title__placeholder {
26129
- overflow: hidden;
26130
- text-overflow: ellipsis;
26131
- white-space: nowrap;
26132
- }
26133
-
26134
- .v-toolbar-items {
26135
- display: flex;
26136
- height: inherit;
26137
- align-self: stretch;
26138
- }
26139
- .v-toolbar-items > .v-btn {
26140
- border-radius: 0;
26141
26089
  }.v-tooltip > .v-overlay__content {
26142
26090
  background: rgb(var(--v-theme-surface-variant));
26143
26091
  color: rgb(var(--v-theme-on-surface-variant));
@@ -26239,6 +26187,86 @@ html.v-overlay-scroll-blocked {
26239
26187
  }
26240
26188
  .v-window-y-reverse-transition-leave-to {
26241
26189
  transform: translateY(100%);
26190
+ }.v-select .v-field .v-text-field__prefix,
26191
+ .v-select .v-field .v-text-field__suffix,
26192
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
26193
+ cursor: pointer;
26194
+ }
26195
+ .v-select .v-field .v-field__input > input {
26196
+ align-self: flex-start;
26197
+ opacity: 1;
26198
+ flex: 0 0;
26199
+ position: absolute;
26200
+ width: 100%;
26201
+ transition: none;
26202
+ pointer-events: none;
26203
+ caret-color: transparent;
26204
+ }
26205
+ .v-select .v-field--dirty .v-select__selection {
26206
+ margin-inline-end: 2px;
26207
+ }
26208
+ .v-select .v-select__selection-text {
26209
+ overflow: hidden;
26210
+ text-overflow: ellipsis;
26211
+ white-space: nowrap;
26212
+ }
26213
+ .v-select__content {
26214
+ overflow: hidden;
26215
+ }
26216
+ .v-select__content {
26217
+ 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));
26218
+ }
26219
+ .v-select__content {
26220
+ border-radius: 4px;
26221
+ }
26222
+ .v-select__selection {
26223
+ display: inline-flex;
26224
+ align-items: center;
26225
+ letter-spacing: inherit;
26226
+ line-height: inherit;
26227
+ max-width: 100%;
26228
+ }
26229
+ .v-select .v-select__selection:first-child {
26230
+ margin-inline-start: 0;
26231
+ }
26232
+ .v-select--selected .v-field .v-field__input > input {
26233
+ opacity: 0;
26234
+ }
26235
+ .v-select__menu-icon {
26236
+ margin-inline-start: 4px;
26237
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26238
+ }
26239
+ .v-select--active-menu .v-select__menu-icon {
26240
+ opacity: var(--v-high-emphasis-opacity);
26241
+ transform: rotate(180deg);
26242
+ }.v-color-picker-edit {
26243
+ display: flex;
26244
+ margin-top: 24px;
26245
+ }
26246
+
26247
+ .v-color-picker-edit__input {
26248
+ width: 100%;
26249
+ display: flex;
26250
+ flex-wrap: wrap;
26251
+ justify-content: center;
26252
+ text-align: center;
26253
+ }
26254
+ .v-color-picker-edit__input:not(:last-child) {
26255
+ margin-inline-end: 8px;
26256
+ }
26257
+ .v-color-picker-edit__input input {
26258
+ border-radius: 4px;
26259
+ margin-bottom: 8px;
26260
+ min-width: 0;
26261
+ outline: none;
26262
+ text-align: center;
26263
+ width: 100%;
26264
+ height: 32px;
26265
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26266
+ color: rgba(var(--v-theme-on-surface));
26267
+ }
26268
+ .v-color-picker-edit__input span {
26269
+ font-size: 0.75rem;
26242
26270
  }.v-color-picker-canvas {
26243
26271
  display: flex;
26244
26272
  position: relative;
@@ -26331,34 +26359,6 @@ html.v-overlay-scroll-blocked {
26331
26359
  .v-color-picker-preview__eye-dropper {
26332
26360
  position: relative;
26333
26361
  margin-right: 12px;
26334
- }.v-color-picker-edit {
26335
- display: flex;
26336
- margin-top: 24px;
26337
- }
26338
-
26339
- .v-color-picker-edit__input {
26340
- width: 100%;
26341
- display: flex;
26342
- flex-wrap: wrap;
26343
- justify-content: center;
26344
- text-align: center;
26345
- }
26346
- .v-color-picker-edit__input:not(:last-child) {
26347
- margin-inline-end: 8px;
26348
- }
26349
- .v-color-picker-edit__input input {
26350
- border-radius: 4px;
26351
- margin-bottom: 8px;
26352
- min-width: 0;
26353
- outline: none;
26354
- text-align: center;
26355
- width: 100%;
26356
- height: 32px;
26357
- background: rgba(var(--v-theme-surface-variant), 0.2);
26358
- color: rgba(var(--v-theme-on-surface));
26359
- }
26360
- .v-color-picker-edit__input span {
26361
- font-size: 0.75rem;
26362
26362
  }.v-color-picker-swatches {
26363
26363
  overflow-y: auto;
26364
26364
  }