@vuetify/nightly 3.6.14-master.2024-08-13 → 3.6.15-master.2024-08-15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.14-master.2024-08-13
2
+ * Vuetify v3.6.15-master.2024-08-15
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18307,6 +18307,79 @@ html.overflow-y-hidden {
18307
18307
  .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18308
18308
  opacity: var(--v-high-emphasis-opacity);
18309
18309
  transform: rotate(180deg);
18310
+ }.v-badge {
18311
+ display: inline-block;
18312
+ line-height: 1;
18313
+ }
18314
+
18315
+ .v-badge__badge {
18316
+ align-items: center;
18317
+ display: inline-flex;
18318
+ border-radius: 10px;
18319
+ font-size: 0.75rem;
18320
+ font-weight: 500;
18321
+ height: 1.25rem;
18322
+ justify-content: center;
18323
+ min-width: 20px;
18324
+ padding: 4px 6px;
18325
+ pointer-events: auto;
18326
+ position: absolute;
18327
+ text-align: center;
18328
+ text-indent: 0;
18329
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18330
+ white-space: nowrap;
18331
+ }
18332
+ .v-badge__badge {
18333
+ background: rgb(var(--v-theme-surface-variant));
18334
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18335
+ }
18336
+ .v-badge--bordered .v-badge__badge::after {
18337
+ border-radius: inherit;
18338
+ border-style: solid;
18339
+ border-width: 2px;
18340
+ bottom: 0;
18341
+ color: rgb(var(--v-theme-background));
18342
+ content: "";
18343
+ left: 0;
18344
+ position: absolute;
18345
+ right: 0;
18346
+ top: 0;
18347
+ transform: scale(1.05);
18348
+ }
18349
+ .v-badge--dot .v-badge__badge {
18350
+ border-radius: 4.5px;
18351
+ height: 9px;
18352
+ min-width: 0;
18353
+ padding: 0;
18354
+ width: 9px;
18355
+ }
18356
+ .v-badge--dot .v-badge__badge::after {
18357
+ border-width: 1.5px;
18358
+ }
18359
+ .v-badge--inline .v-badge__badge {
18360
+ position: relative;
18361
+ vertical-align: middle;
18362
+ }
18363
+ .v-badge__badge .v-icon {
18364
+ color: inherit;
18365
+ font-size: 0.75rem;
18366
+ margin: 0 -2px;
18367
+ }
18368
+ .v-badge__badge img,
18369
+ .v-badge__badge .v-img {
18370
+ height: 100%;
18371
+ width: 100%;
18372
+ }
18373
+
18374
+ .v-badge__wrapper {
18375
+ display: flex;
18376
+ position: relative;
18377
+ }
18378
+ .v-badge--inline .v-badge__wrapper {
18379
+ align-items: center;
18380
+ display: inline-flex;
18381
+ justify-content: center;
18382
+ margin: 0 4px;
18310
18383
  }.v-avatar {
18311
18384
  flex: none;
18312
18385
  align-items: center;
@@ -18404,79 +18477,69 @@ html.overflow-y-hidden {
18404
18477
  .v-avatar .v-img {
18405
18478
  height: 100%;
18406
18479
  width: 100%;
18407
- }.v-badge {
18408
- display: inline-block;
18409
- line-height: 1;
18410
- }
18411
-
18412
- .v-badge__badge {
18413
- align-items: center;
18414
- display: inline-flex;
18415
- border-radius: 10px;
18416
- font-size: 0.75rem;
18417
- font-weight: 500;
18418
- height: 1.25rem;
18419
- justify-content: center;
18420
- min-width: 20px;
18421
- padding: 4px 6px;
18422
- pointer-events: auto;
18480
+ }.v-bottom-navigation {
18481
+ display: flex;
18482
+ max-width: 100%;
18483
+ overflow: hidden;
18423
18484
  position: absolute;
18424
- text-align: center;
18425
- text-indent: 0;
18426
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18427
- white-space: nowrap;
18428
- }
18429
- .v-badge__badge {
18430
- background: rgb(var(--v-theme-surface-variant));
18431
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18485
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18432
18486
  }
18433
- .v-badge--bordered .v-badge__badge::after {
18434
- border-radius: inherit;
18487
+ .v-bottom-navigation {
18488
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18435
18489
  border-style: solid;
18436
- border-width: 2px;
18437
- bottom: 0;
18438
- color: rgb(var(--v-theme-background));
18439
- content: "";
18440
- left: 0;
18441
- position: absolute;
18442
- right: 0;
18443
- top: 0;
18444
- transform: scale(1.05);
18490
+ border-width: 0;
18445
18491
  }
18446
- .v-badge--dot .v-badge__badge {
18447
- border-radius: 4.5px;
18448
- height: 9px;
18449
- min-width: 0;
18450
- padding: 0;
18451
- width: 9px;
18492
+ .v-bottom-navigation--border {
18493
+ border-width: thin;
18494
+ box-shadow: none;
18452
18495
  }
18453
- .v-badge--dot .v-badge__badge::after {
18454
- border-width: 1.5px;
18496
+ .v-bottom-navigation {
18497
+ border-radius: 0;
18455
18498
  }
18456
- .v-badge--inline .v-badge__badge {
18457
- position: relative;
18458
- vertical-align: middle;
18499
+ .v-bottom-navigation {
18500
+ background: rgb(var(--v-theme-surface));
18501
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18459
18502
  }
18460
- .v-badge__badge .v-icon {
18461
- color: inherit;
18503
+ .v-bottom-navigation--active {
18504
+ 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));
18505
+ }
18506
+
18507
+ .v-bottom-navigation__content {
18508
+ display: flex;
18509
+ flex: none;
18462
18510
  font-size: 0.75rem;
18463
- margin: 0 -2px;
18511
+ justify-content: center;
18512
+ transition: inherit;
18513
+ width: 100%;
18464
18514
  }
18465
- .v-badge__badge img,
18466
- .v-badge__badge .v-img {
18515
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18516
+ font-size: inherit;
18467
18517
  height: 100%;
18468
- width: 100%;
18518
+ max-width: 168px;
18519
+ min-width: 80px;
18520
+ text-transform: none;
18521
+ transition: inherit;
18522
+ width: auto;
18469
18523
  }
18470
-
18471
- .v-badge__wrapper {
18472
- display: flex;
18473
- position: relative;
18524
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18525
+ border-radius: 0;
18474
18526
  }
18475
- .v-badge--inline .v-badge__wrapper {
18476
- align-items: center;
18477
- display: inline-flex;
18478
- justify-content: center;
18479
- margin: 0 4px;
18527
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18528
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18529
+ transition: inherit;
18530
+ }
18531
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18532
+ font-size: 1.5rem;
18533
+ }
18534
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18535
+ flex-grow: 1;
18536
+ }
18537
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18538
+ transition: inherit;
18539
+ opacity: 0;
18540
+ }
18541
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18542
+ transform: translateY(0.5rem);
18480
18543
  }.v-banner {
18481
18544
  display: grid;
18482
18545
  flex: 1 1;
@@ -18643,69 +18706,6 @@ html.overflow-y-hidden {
18643
18706
  }
18644
18707
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18645
18708
  align-self: flex-start;
18646
- }.v-bottom-navigation {
18647
- display: flex;
18648
- max-width: 100%;
18649
- overflow: hidden;
18650
- position: absolute;
18651
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18652
- }
18653
- .v-bottom-navigation {
18654
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18655
- border-style: solid;
18656
- border-width: 0;
18657
- }
18658
- .v-bottom-navigation--border {
18659
- border-width: thin;
18660
- box-shadow: none;
18661
- }
18662
- .v-bottom-navigation {
18663
- border-radius: 0;
18664
- }
18665
- .v-bottom-navigation {
18666
- background: rgb(var(--v-theme-surface));
18667
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18668
- }
18669
- .v-bottom-navigation--active {
18670
- 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));
18671
- }
18672
-
18673
- .v-bottom-navigation__content {
18674
- display: flex;
18675
- flex: none;
18676
- font-size: 0.75rem;
18677
- justify-content: center;
18678
- transition: inherit;
18679
- width: 100%;
18680
- }
18681
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18682
- font-size: inherit;
18683
- height: 100%;
18684
- max-width: 168px;
18685
- min-width: 80px;
18686
- text-transform: none;
18687
- transition: inherit;
18688
- width: auto;
18689
- }
18690
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18691
- border-radius: 0;
18692
- }
18693
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18694
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18695
- transition: inherit;
18696
- }
18697
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18698
- font-size: 1.5rem;
18699
- }
18700
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18701
- flex-grow: 1;
18702
- }
18703
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18704
- transition: inherit;
18705
- opacity: 0;
18706
- }
18707
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18708
- transform: translateY(0.5rem);
18709
18709
  }.bottom-sheet-transition-enter-from {
18710
18710
  transform: translateY(100%);
18711
18711
  }
@@ -19225,14 +19225,27 @@ html.overflow-y-hidden {
19225
19225
  }
19226
19226
  .v-pagination__item--is-active .v-btn__overlay {
19227
19227
  opacity: var(--v-border-opacity);
19228
- }.v-btn-group {
19229
- display: inline-flex;
19230
- flex-wrap: nowrap;
19231
- max-width: 100%;
19232
- min-width: 0;
19233
- overflow: hidden;
19234
- vertical-align: middle;
19235
- }
19228
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19229
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19230
+ }
19231
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19232
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19233
+ }
19234
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19235
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19236
+ }
19237
+ @supports not selector(:focus-visible) {
19238
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19239
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19240
+ }
19241
+ }.v-btn-group {
19242
+ display: inline-flex;
19243
+ flex-wrap: nowrap;
19244
+ max-width: 100%;
19245
+ min-width: 0;
19246
+ overflow: hidden;
19247
+ vertical-align: middle;
19248
+ }
19236
19249
  .v-btn-group {
19237
19250
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19238
19251
  border-style: solid;
@@ -19289,19 +19302,6 @@ html.overflow-y-hidden {
19289
19302
  }
19290
19303
  .v-btn-group--tile {
19291
19304
  border-radius: 0;
19292
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19293
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19294
- }
19295
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19296
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19297
- }
19298
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19299
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19300
- }
19301
- @supports not selector(:focus-visible) {
19302
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19303
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19304
- }
19305
19305
  }.v-card {
19306
19306
  display: block;
19307
19307
  overflow: hidden;
@@ -20507,6 +20507,61 @@ html.overflow-y-hidden {
20507
20507
  }
20508
20508
  .v-date-picker--show-week {
20509
20509
  width: 368px;
20510
+ }.v-date-picker-month {
20511
+ display: flex;
20512
+ justify-content: center;
20513
+ padding: 0 12px 8px;
20514
+ --v-date-picker-month-day-diff: 4px;
20515
+ }
20516
+
20517
+ .v-date-picker-month__weeks {
20518
+ display: grid;
20519
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20520
+ column-gap: 4px;
20521
+ font-size: 0.85rem;
20522
+ }
20523
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
20524
+ grid-row-gap: 0;
20525
+ }
20526
+
20527
+ .v-date-picker-month__weekday {
20528
+ font-size: 0.85rem;
20529
+ }
20530
+
20531
+ .v-date-picker-month__days {
20532
+ display: grid;
20533
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20534
+ column-gap: 4px;
20535
+ flex: 1 1;
20536
+ justify-content: space-around;
20537
+ }
20538
+
20539
+ .v-date-picker-month__day {
20540
+ align-items: center;
20541
+ display: flex;
20542
+ justify-content: center;
20543
+ position: relative;
20544
+ height: 40px;
20545
+ width: 40px;
20546
+ }
20547
+ .v-date-picker-month__day--selected .v-btn {
20548
+ background-color: rgb(var(--v-theme-surface-variant));
20549
+ color: rgb(var(--v-theme-on-surface-variant));
20550
+ }
20551
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
20552
+ --v-btn-height: 24px;
20553
+ --v-btn-size: 0.85rem;
20554
+ }
20555
+ .v-date-picker-month__day--week {
20556
+ font-size: var(--v-btn-size);
20557
+ }
20558
+
20559
+ .v-date-picker-month__day--adjacent {
20560
+ opacity: 0.5;
20561
+ }
20562
+
20563
+ .v-date-picker-month__day--hide-adjacent {
20564
+ opacity: 0;
20510
20565
  }.v-date-picker-header {
20511
20566
  align-items: flex-end;
20512
20567
  height: 70px;
@@ -20567,61 +20622,25 @@ html.overflow-y-hidden {
20567
20622
  .date-picker-header-reverse-transition-leave-to {
20568
20623
  opacity: 0;
20569
20624
  transform: translate(0, 100%);
20570
- }.v-date-picker-month {
20571
- display: flex;
20572
- justify-content: center;
20573
- padding: 0 12px 8px;
20574
- --v-date-picker-month-day-diff: 4px;
20575
- }
20576
-
20577
- .v-date-picker-month__weeks {
20578
- display: grid;
20579
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20580
- column-gap: 4px;
20581
- font-size: 0.85rem;
20582
- }
20583
- .v-date-picker-month__weeks + .v-date-picker-month__days {
20584
- grid-row-gap: 0;
20585
- }
20586
-
20587
- .v-date-picker-month__weekday {
20588
- font-size: 0.85rem;
20625
+ }.v-date-picker-months {
20626
+ height: 288px;
20589
20627
  }
20590
20628
 
20591
- .v-date-picker-month__days {
20629
+ .v-date-picker-months__content {
20630
+ align-items: center;
20592
20631
  display: grid;
20593
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20594
- column-gap: 4px;
20595
20632
  flex: 1 1;
20633
+ height: inherit;
20596
20634
  justify-content: space-around;
20635
+ grid-template-columns: repeat(2, 1fr);
20636
+ grid-gap: 0px 24px;
20637
+ padding-inline-start: 36px;
20638
+ padding-inline-end: 36px;
20597
20639
  }
20598
-
20599
- .v-date-picker-month__day {
20600
- align-items: center;
20601
- display: flex;
20602
- justify-content: center;
20603
- position: relative;
20604
- height: 40px;
20605
- width: 40px;
20606
- }
20607
- .v-date-picker-month__day--selected .v-btn {
20608
- background-color: rgb(var(--v-theme-surface-variant));
20609
- color: rgb(var(--v-theme-on-surface-variant));
20610
- }
20611
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
20612
- --v-btn-height: 24px;
20613
- --v-btn-size: 0.85rem;
20614
- }
20615
- .v-date-picker-month__day--week {
20616
- font-size: var(--v-btn-size);
20617
- }
20618
-
20619
- .v-date-picker-month__day--adjacent {
20620
- opacity: 0.5;
20621
- }
20622
-
20623
- .v-date-picker-month__day--hide-adjacent {
20624
- opacity: 0;
20640
+ .v-date-picker-months__content .v-btn {
20641
+ text-transform: none;
20642
+ padding-inline-start: 8px;
20643
+ padding-inline-end: 8px;
20625
20644
  }.v-date-picker-years {
20626
20645
  height: 288px;
20627
20646
  overflow-y: scroll;
@@ -20637,25 +20656,6 @@ html.overflow-y-hidden {
20637
20656
  }
20638
20657
  .v-date-picker-years__content .v-btn {
20639
20658
  padding-inline: 8px;
20640
- }.v-date-picker-months {
20641
- height: 288px;
20642
- }
20643
-
20644
- .v-date-picker-months__content {
20645
- align-items: center;
20646
- display: grid;
20647
- flex: 1 1;
20648
- height: inherit;
20649
- justify-content: space-around;
20650
- grid-template-columns: repeat(2, 1fr);
20651
- grid-gap: 0px 24px;
20652
- padding-inline-start: 36px;
20653
- padding-inline-end: 36px;
20654
- }
20655
- .v-date-picker-months__content .v-btn {
20656
- text-transform: none;
20657
- padding-inline-start: 8px;
20658
- padding-inline-end: 8px;
20659
20659
  }.v-dialog {
20660
20660
  align-items: center;
20661
20661
  justify-content: center;
@@ -20753,58 +20753,6 @@ html.overflow-y-hidden {
20753
20753
  -webkit-backface-visibility: hidden;
20754
20754
  backface-visibility: hidden;
20755
20755
  overflow-y: auto;
20756
- }.v-divider {
20757
- display: block;
20758
- flex: 1 1 100%;
20759
- height: 0px;
20760
- max-height: 0px;
20761
- opacity: var(--v-border-opacity);
20762
- transition: inherit;
20763
- }
20764
- .v-divider {
20765
- border-style: solid;
20766
- border-width: thin 0 0 0;
20767
- }
20768
- .v-divider--vertical {
20769
- align-self: stretch;
20770
- border-width: 0 thin 0 0;
20771
- display: inline-flex;
20772
- height: auto;
20773
- margin-left: -1px;
20774
- max-height: 100%;
20775
- max-width: 0px;
20776
- vertical-align: text-bottom;
20777
- width: 0px;
20778
- }
20779
- .v-divider--inset:not(.v-divider--vertical) {
20780
- max-width: calc(100% - 72px);
20781
- margin-inline-start: 72px;
20782
- }
20783
- .v-divider--inset.v-divider--vertical {
20784
- margin-bottom: 8px;
20785
- margin-top: 8px;
20786
- max-height: calc(100% - 16px);
20787
- }
20788
-
20789
- .v-divider__content {
20790
- padding: 0 16px;
20791
- text-wrap: nowrap;
20792
- }
20793
- .v-divider__wrapper--vertical .v-divider__content {
20794
- padding: 4px 0;
20795
- }
20796
-
20797
- .v-divider__wrapper {
20798
- display: flex;
20799
- align-items: center;
20800
- justify-content: center;
20801
- }
20802
- .v-divider__wrapper--vertical {
20803
- flex-direction: column;
20804
- height: 100%;
20805
- }
20806
- .v-divider__wrapper--vertical .v-divider {
20807
- margin: 0 auto;
20808
20756
  }.v-empty-state {
20809
20757
  align-items: center;
20810
20758
  display: flex;
@@ -20872,21 +20820,73 @@ html.overflow-y-hidden {
20872
20820
  .v-empty-state__action-btn.v-btn {
20873
20821
  background-color: initial;
20874
20822
  color: initial;
20875
- }.v-expansion-panel {
20876
- background-color: rgb(var(--v-theme-surface));
20877
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20823
+ }.v-divider {
20824
+ display: block;
20825
+ flex: 1 1 100%;
20826
+ height: 0px;
20827
+ max-height: 0px;
20828
+ opacity: var(--v-border-opacity);
20829
+ transition: inherit;
20878
20830
  }
20879
- .v-expansion-panel:not(:first-child)::after {
20880
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20831
+ .v-divider {
20832
+ border-style: solid;
20833
+ border-width: thin 0 0 0;
20881
20834
  }
20882
- .v-expansion-panel--disabled .v-expansion-panel-title {
20883
- color: rgba(var(--v-theme-on-surface), 0.26);
20835
+ .v-divider--vertical {
20836
+ align-self: stretch;
20837
+ border-width: 0 thin 0 0;
20838
+ display: inline-flex;
20839
+ height: auto;
20840
+ margin-left: -1px;
20841
+ max-height: 100%;
20842
+ max-width: 0px;
20843
+ vertical-align: text-bottom;
20844
+ width: 0px;
20884
20845
  }
20885
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
20886
- opacity: 0.4615384615;
20846
+ .v-divider--inset:not(.v-divider--vertical) {
20847
+ max-width: calc(100% - 72px);
20848
+ margin-inline-start: 72px;
20887
20849
  }
20888
-
20889
- .v-expansion-panels {
20850
+ .v-divider--inset.v-divider--vertical {
20851
+ margin-bottom: 8px;
20852
+ margin-top: 8px;
20853
+ max-height: calc(100% - 16px);
20854
+ }
20855
+
20856
+ .v-divider__content {
20857
+ padding: 0 16px;
20858
+ text-wrap: nowrap;
20859
+ }
20860
+ .v-divider__wrapper--vertical .v-divider__content {
20861
+ padding: 4px 0;
20862
+ }
20863
+
20864
+ .v-divider__wrapper {
20865
+ display: flex;
20866
+ align-items: center;
20867
+ justify-content: center;
20868
+ }
20869
+ .v-divider__wrapper--vertical {
20870
+ flex-direction: column;
20871
+ height: 100%;
20872
+ }
20873
+ .v-divider__wrapper--vertical .v-divider {
20874
+ margin: 0 auto;
20875
+ }.v-expansion-panel {
20876
+ background-color: rgb(var(--v-theme-surface));
20877
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20878
+ }
20879
+ .v-expansion-panel:not(:first-child)::after {
20880
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20881
+ }
20882
+ .v-expansion-panel--disabled .v-expansion-panel-title {
20883
+ color: rgba(var(--v-theme-on-surface), 0.26);
20884
+ }
20885
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
20886
+ opacity: 0.4615384615;
20887
+ }
20888
+
20889
+ .v-expansion-panels {
20890
20890
  display: flex;
20891
20891
  flex-wrap: wrap;
20892
20892
  justify-content: center;
@@ -21157,35 +21157,6 @@ html.overflow-y-hidden {
21157
21157
  }
21158
21158
  .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21159
21159
  right: 0;
21160
- }.v-file-input--hide.v-input .v-field,
21161
- .v-file-input--hide.v-input .v-input__control,
21162
- .v-file-input--hide.v-input .v-input__details {
21163
- display: none;
21164
- }
21165
- .v-file-input--hide.v-input .v-input__prepend {
21166
- grid-area: control;
21167
- margin: 0 auto;
21168
- }
21169
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21170
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21171
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21172
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21173
- top: 0px;
21174
- }
21175
- .v-file-input input[type=file] {
21176
- height: 100%;
21177
- left: 0;
21178
- opacity: 0;
21179
- position: absolute;
21180
- top: 0;
21181
- width: 100%;
21182
- z-index: 1;
21183
- }
21184
- .v-file-input .v-input__details {
21185
- padding-inline: 16px;
21186
- }
21187
- .v-input--plain-underlined.v-file-input .v-input__details {
21188
- padding-inline: 0;
21189
21160
  }/* region INPUT */
21190
21161
  .v-field {
21191
21162
  display: grid;
@@ -21769,7 +21740,36 @@ textarea.v-field__input::placeholder {
21769
21740
  opacity: 0;
21770
21741
  }
21771
21742
 
21772
- /* endregion */.v-footer {
21743
+ /* endregion */.v-file-input--hide.v-input .v-field,
21744
+ .v-file-input--hide.v-input .v-input__control,
21745
+ .v-file-input--hide.v-input .v-input__details {
21746
+ display: none;
21747
+ }
21748
+ .v-file-input--hide.v-input .v-input__prepend {
21749
+ grid-area: control;
21750
+ margin: 0 auto;
21751
+ }
21752
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21753
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21754
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21755
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21756
+ top: 0px;
21757
+ }
21758
+ .v-file-input input[type=file] {
21759
+ height: 100%;
21760
+ left: 0;
21761
+ opacity: 0;
21762
+ position: absolute;
21763
+ top: 0;
21764
+ width: 100%;
21765
+ z-index: 1;
21766
+ }
21767
+ .v-file-input .v-input__details {
21768
+ padding-inline: 16px;
21769
+ }
21770
+ .v-input--plain-underlined.v-file-input .v-input__details {
21771
+ padding-inline: 0;
21772
+ }.v-footer {
21773
21773
  align-items: center;
21774
21774
  display: flex;
21775
21775
  flex: 1 1 auto;
@@ -22739,6 +22739,11 @@ textarea.v-field__input::placeholder {
22739
22739
 
22740
22740
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22741
22741
  padding-top: calc(var(--v-input-padding-top) + 0px);
22742
+ }.v-item-group {
22743
+ flex: 0 1 auto;
22744
+ max-width: 100%;
22745
+ position: relative;
22746
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22742
22747
  }.v-label {
22743
22748
  align-items: center;
22744
22749
  color: inherit;
@@ -22754,18 +22759,6 @@ textarea.v-field__input::placeholder {
22754
22759
 
22755
22760
  .v-label--clickable {
22756
22761
  cursor: pointer;
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
22762
  }.v-layout {
22770
22763
  --v-scrollbar-offset: 0px;
22771
22764
  display: flex;
@@ -22774,6 +22767,13 @@ textarea.v-field__input::placeholder {
22774
22767
  .v-layout--full-height {
22775
22768
  --v-scrollbar-offset: inherit;
22776
22769
  height: 100%;
22770
+ }.v-layout-item {
22771
+ position: absolute;
22772
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22773
+ }
22774
+
22775
+ .v-layout-item--absolute {
22776
+ position: absolute;
22777
22777
  }.v-list {
22778
22778
  overflow: auto;
22779
22779
  padding: 8px 0;
@@ -23349,6 +23349,8 @@ textarea.v-field__input::placeholder {
23349
23349
  }
23350
23350
  .v-list-group__header:not(.v-treeview-item--activetable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23351
23351
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23352
+ }.v-locale-provider {
23353
+ display: contents;
23352
23354
  }.v-main {
23353
23355
  flex: 1 0 auto;
23354
23356
  max-width: 100%;
@@ -23398,24 +23400,6 @@ textarea.v-field__input::placeholder {
23398
23400
  .v-menu > .v-overlay__content > .v-sheet,
23399
23401
  .v-menu > .v-overlay__content > .v-list {
23400
23402
  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));
23401
- }.v-messages {
23402
- flex: 1 1 auto;
23403
- font-size: 12px;
23404
- min-height: 14px;
23405
- min-width: 1px;
23406
- opacity: var(--v-medium-emphasis-opacity);
23407
- position: relative;
23408
- }
23409
- .v-messages__message {
23410
- line-height: 12px;
23411
- word-break: break-word;
23412
- overflow-wrap: break-word;
23413
- word-wrap: break-word;
23414
- -webkit-hyphens: auto;
23415
- hyphens: auto;
23416
- transition-duration: 150ms;
23417
- }.v-locale-provider {
23418
- display: contents;
23419
23403
  }.v-navigation-drawer {
23420
23404
  -webkit-overflow-scrolling: touch;
23421
23405
  background: rgb(var(--v-theme-surface));
@@ -23524,6 +23508,80 @@ textarea.v-field__input::placeholder {
23524
23508
  .v-navigation-drawer__append {
23525
23509
  flex: none;
23526
23510
  overflow: hidden;
23511
+ }.v-messages {
23512
+ flex: 1 1 auto;
23513
+ font-size: 12px;
23514
+ min-height: 14px;
23515
+ min-width: 1px;
23516
+ opacity: var(--v-medium-emphasis-opacity);
23517
+ position: relative;
23518
+ }
23519
+ .v-messages__message {
23520
+ line-height: 12px;
23521
+ word-break: break-word;
23522
+ overflow-wrap: break-word;
23523
+ word-wrap: break-word;
23524
+ -webkit-hyphens: auto;
23525
+ hyphens: auto;
23526
+ transition-duration: 150ms;
23527
+ }.v-otp-input {
23528
+ align-items: center;
23529
+ display: flex;
23530
+ justify-content: center;
23531
+ padding: 0.5rem 0;
23532
+ position: relative;
23533
+ }
23534
+ .v-otp-input {
23535
+ border-radius: 4px;
23536
+ }
23537
+ .v-otp-input .v-field {
23538
+ height: 100%;
23539
+ }
23540
+
23541
+ .v-otp-input__divider {
23542
+ margin: 0 8px;
23543
+ }
23544
+
23545
+ .v-otp-input__content {
23546
+ align-items: center;
23547
+ display: flex;
23548
+ gap: 0.5rem;
23549
+ height: 64px;
23550
+ padding: 0.5rem;
23551
+ justify-content: center;
23552
+ max-width: 320px;
23553
+ position: relative;
23554
+ border-radius: inherit;
23555
+ }
23556
+ .v-otp-input--divided .v-otp-input__content {
23557
+ max-width: 360px;
23558
+ }
23559
+
23560
+ .v-otp-input__field {
23561
+ color: inherit;
23562
+ font-size: 1.25rem;
23563
+ height: 100%;
23564
+ outline: none;
23565
+ text-align: center;
23566
+ width: 100%;
23567
+ }
23568
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23569
+ -webkit-appearance: none;
23570
+ margin: 0;
23571
+ }
23572
+ .v-otp-input__field[type=number] {
23573
+ -moz-appearance: textfield;
23574
+ }
23575
+
23576
+ .v-otp-input__loader {
23577
+ align-items: center;
23578
+ display: flex;
23579
+ height: 100%;
23580
+ justify-content: center;
23581
+ width: 100%;
23582
+ }
23583
+ .v-otp-input__loader .v-progress-linear {
23584
+ position: absolute;
23527
23585
  }.v-overlay-container {
23528
23586
  contain: layout;
23529
23587
  left: 0;
@@ -23587,92 +23645,32 @@ html.v-overlay-scroll-blocked {
23587
23645
 
23588
23646
  .v-overlay--scroll-blocked {
23589
23647
  padding-inline-end: var(--v-scrollbar-offset);
23590
- }.v-otp-input {
23648
+ }.v-parallax {
23649
+ position: relative;
23650
+ overflow: hidden;
23651
+ }
23652
+ .v-parallax--active > .v-img__img {
23653
+ will-change: transform;
23654
+ }.v-progress-circular {
23591
23655
  align-items: center;
23592
- display: flex;
23656
+ display: inline-flex;
23593
23657
  justify-content: center;
23594
- padding: 0.5rem 0;
23595
23658
  position: relative;
23659
+ vertical-align: middle;
23596
23660
  }
23597
- .v-otp-input {
23598
- border-radius: 4px;
23599
- }
23600
- .v-otp-input .v-field {
23661
+ .v-progress-circular > svg {
23662
+ width: 100%;
23601
23663
  height: 100%;
23664
+ margin: auto;
23665
+ position: absolute;
23666
+ top: 0;
23667
+ bottom: 0;
23668
+ left: 0;
23669
+ right: 0;
23670
+ z-index: 0;
23602
23671
  }
23603
23672
 
23604
- .v-otp-input__divider {
23605
- margin: 0 8px;
23606
- }
23607
-
23608
- .v-otp-input__content {
23609
- align-items: center;
23610
- display: flex;
23611
- gap: 0.5rem;
23612
- height: 64px;
23613
- padding: 0.5rem;
23614
- justify-content: center;
23615
- max-width: 320px;
23616
- position: relative;
23617
- border-radius: inherit;
23618
- }
23619
- .v-otp-input--divided .v-otp-input__content {
23620
- max-width: 360px;
23621
- }
23622
-
23623
- .v-otp-input__field {
23624
- color: inherit;
23625
- font-size: 1.25rem;
23626
- height: 100%;
23627
- outline: none;
23628
- text-align: center;
23629
- width: 100%;
23630
- }
23631
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23632
- -webkit-appearance: none;
23633
- margin: 0;
23634
- }
23635
- .v-otp-input__field[type=number] {
23636
- -moz-appearance: textfield;
23637
- }
23638
-
23639
- .v-otp-input__loader {
23640
- align-items: center;
23641
- display: flex;
23642
- height: 100%;
23643
- justify-content: center;
23644
- width: 100%;
23645
- }
23646
- .v-otp-input__loader .v-progress-linear {
23647
- position: absolute;
23648
- }.v-pagination__list {
23649
- display: inline-flex;
23650
- list-style-type: none;
23651
- justify-content: center;
23652
- width: 100%;
23653
- }
23654
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23655
- margin: 0.3rem;
23656
- }.v-progress-circular {
23657
- align-items: center;
23658
- display: inline-flex;
23659
- justify-content: center;
23660
- position: relative;
23661
- vertical-align: middle;
23662
- }
23663
- .v-progress-circular > svg {
23664
- width: 100%;
23665
- height: 100%;
23666
- margin: auto;
23667
- position: absolute;
23668
- top: 0;
23669
- bottom: 0;
23670
- left: 0;
23671
- right: 0;
23672
- z-index: 0;
23673
- }
23674
-
23675
- .v-progress-circular__content {
23673
+ .v-progress-circular__content {
23676
23674
  align-items: center;
23677
23675
  display: flex;
23678
23676
  justify-content: center;
@@ -23755,12 +23753,14 @@ html.v-overlay-scroll-blocked {
23755
23753
  100% {
23756
23754
  transform: rotate(270deg);
23757
23755
  }
23758
- }.v-parallax {
23759
- position: relative;
23760
- overflow: hidden;
23756
+ }.v-pagination__list {
23757
+ display: inline-flex;
23758
+ list-style-type: none;
23759
+ justify-content: center;
23760
+ width: 100%;
23761
23761
  }
23762
- .v-parallax--active > .v-img__img {
23763
- will-change: transform;
23762
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23763
+ margin: 0.3rem;
23764
23764
  }.v-progress-linear {
23765
23765
  background: transparent;
23766
23766
  overflow: hidden;
@@ -24001,6 +24001,59 @@ html.v-overlay-scroll-blocked {
24001
24001
  }
24002
24002
  .v-radio-group .v-input__details {
24003
24003
  padding-inline: 16px;
24004
+ }.v-rating {
24005
+ max-width: 100%;
24006
+ display: inline-flex;
24007
+ white-space: nowrap;
24008
+ }
24009
+ .v-rating--readonly {
24010
+ pointer-events: none;
24011
+ }
24012
+
24013
+ .v-rating__wrapper {
24014
+ align-items: center;
24015
+ display: inline-flex;
24016
+ flex-direction: column;
24017
+ }
24018
+ .v-rating__wrapper--bottom {
24019
+ flex-direction: column-reverse;
24020
+ }
24021
+
24022
+ .v-rating__item {
24023
+ display: inline-flex;
24024
+ position: relative;
24025
+ }
24026
+ .v-rating__item label {
24027
+ cursor: pointer;
24028
+ }
24029
+ .v-rating__item .v-btn--variant-plain {
24030
+ opacity: 1;
24031
+ }
24032
+ .v-rating__item .v-btn {
24033
+ transition-property: transform;
24034
+ }
24035
+ .v-rating__item .v-btn .v-icon {
24036
+ transition: inherit;
24037
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24038
+ }
24039
+ .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24040
+ transform: scale(1.25);
24041
+ }
24042
+ .v-rating__item--half {
24043
+ overflow: hidden;
24044
+ position: absolute;
24045
+ clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24046
+ z-index: 1;
24047
+ }
24048
+ .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24049
+ opacity: 0;
24050
+ }
24051
+
24052
+ .v-rating__hidden {
24053
+ height: 0;
24054
+ opacity: 0;
24055
+ position: absolute;
24056
+ width: 0;
24004
24057
  }.v-slider .v-slider__container input {
24005
24058
  cursor: default;
24006
24059
  padding: 0;
@@ -24058,59 +24111,6 @@ html.v-overlay-scroll-blocked {
24058
24111
 
24059
24112
  .v-slider__label {
24060
24113
  margin-inline-end: 12px;
24061
- }.v-rating {
24062
- max-width: 100%;
24063
- display: inline-flex;
24064
- white-space: nowrap;
24065
- }
24066
- .v-rating--readonly {
24067
- pointer-events: none;
24068
- }
24069
-
24070
- .v-rating__wrapper {
24071
- align-items: center;
24072
- display: inline-flex;
24073
- flex-direction: column;
24074
- }
24075
- .v-rating__wrapper--bottom {
24076
- flex-direction: column-reverse;
24077
- }
24078
-
24079
- .v-rating__item {
24080
- display: inline-flex;
24081
- position: relative;
24082
- }
24083
- .v-rating__item label {
24084
- cursor: pointer;
24085
- }
24086
- .v-rating__item .v-btn--variant-plain {
24087
- opacity: 1;
24088
- }
24089
- .v-rating__item .v-btn {
24090
- transition-property: transform;
24091
- }
24092
- .v-rating__item .v-btn .v-icon {
24093
- transition: inherit;
24094
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24095
- }
24096
- .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24097
- transform: scale(1.25);
24098
- }
24099
- .v-rating__item--half {
24100
- overflow: hidden;
24101
- position: absolute;
24102
- clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24103
- z-index: 1;
24104
- }
24105
- .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24106
- opacity: 0;
24107
- }
24108
-
24109
- .v-rating__hidden {
24110
- height: 0;
24111
- opacity: 0;
24112
- position: absolute;
24113
- width: 0;
24114
24114
  }.v-responsive {
24115
24115
  display: flex;
24116
24116
  flex: 1 0 auto;
@@ -24189,50 +24189,6 @@ html.v-overlay-scroll-blocked {
24189
24189
  .v-select--active-menu .v-select__menu-icon {
24190
24190
  opacity: var(--v-high-emphasis-opacity);
24191
24191
  transform: rotate(180deg);
24192
- }.v-selection-control-group {
24193
- grid-area: control;
24194
- display: flex;
24195
- flex-direction: column;
24196
- }
24197
- .v-selection-control-group--inline {
24198
- flex-direction: row;
24199
- flex-wrap: wrap;
24200
- }.v-sheet {
24201
- display: block;
24202
- }
24203
- .v-sheet {
24204
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24205
- border-style: solid;
24206
- border-width: 0;
24207
- }
24208
- .v-sheet--border {
24209
- border-width: thin;
24210
- box-shadow: none;
24211
- }
24212
- .v-sheet {
24213
- 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));
24214
- }
24215
- .v-sheet--absolute {
24216
- position: absolute;
24217
- }
24218
- .v-sheet--fixed {
24219
- position: fixed;
24220
- }
24221
- .v-sheet--relative {
24222
- position: relative;
24223
- }
24224
- .v-sheet--sticky {
24225
- position: sticky;
24226
- }
24227
- .v-sheet {
24228
- border-radius: 0;
24229
- }
24230
- .v-sheet {
24231
- background: rgb(var(--v-theme-surface));
24232
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24233
- }
24234
- .v-sheet--rounded {
24235
- border-radius: 4px;
24236
24192
  }.v-selection-control {
24237
24193
  align-items: center;
24238
24194
  contain: layout;
@@ -24336,33 +24292,77 @@ html.v-overlay-scroll-blocked {
24336
24292
  }
24337
24293
  .v-selection-control--focus-visible .v-selection-control__input::before {
24338
24294
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24339
- }.v-skeleton-loader {
24340
- align-items: center;
24341
- background: rgb(var(--v-theme-surface));
24342
- border-radius: 4px;
24295
+ }.v-selection-control-group {
24296
+ grid-area: control;
24343
24297
  display: flex;
24298
+ flex-direction: column;
24299
+ }
24300
+ .v-selection-control-group--inline {
24301
+ flex-direction: row;
24344
24302
  flex-wrap: wrap;
24345
- position: relative;
24346
- vertical-align: top;
24303
+ }.v-sheet {
24304
+ display: block;
24347
24305
  }
24348
- .v-skeleton-loader__actions {
24349
- justify-content: end;
24306
+ .v-sheet {
24307
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24308
+ border-style: solid;
24309
+ border-width: 0;
24350
24310
  }
24351
- .v-skeleton-loader .v-skeleton-loader__ossein {
24352
- height: 100%;
24311
+ .v-sheet--border {
24312
+ border-width: thin;
24313
+ box-shadow: none;
24353
24314
  }
24354
- .v-skeleton-loader .v-skeleton-loader__avatar,
24355
- .v-skeleton-loader .v-skeleton-loader__button,
24356
- .v-skeleton-loader .v-skeleton-loader__chip,
24357
- .v-skeleton-loader .v-skeleton-loader__divider,
24358
- .v-skeleton-loader .v-skeleton-loader__heading,
24359
- .v-skeleton-loader .v-skeleton-loader__image,
24360
- .v-skeleton-loader .v-skeleton-loader__ossein,
24361
- .v-skeleton-loader .v-skeleton-loader__text {
24362
- background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
24315
+ .v-sheet {
24316
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24363
24317
  }
24364
- .v-skeleton-loader .v-skeleton-loader__list-item,
24365
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar,
24318
+ .v-sheet--absolute {
24319
+ position: absolute;
24320
+ }
24321
+ .v-sheet--fixed {
24322
+ position: fixed;
24323
+ }
24324
+ .v-sheet--relative {
24325
+ position: relative;
24326
+ }
24327
+ .v-sheet--sticky {
24328
+ position: sticky;
24329
+ }
24330
+ .v-sheet {
24331
+ border-radius: 0;
24332
+ }
24333
+ .v-sheet {
24334
+ background: rgb(var(--v-theme-surface));
24335
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24336
+ }
24337
+ .v-sheet--rounded {
24338
+ border-radius: 4px;
24339
+ }.v-skeleton-loader {
24340
+ align-items: center;
24341
+ background: rgb(var(--v-theme-surface));
24342
+ border-radius: 4px;
24343
+ display: flex;
24344
+ flex-wrap: wrap;
24345
+ position: relative;
24346
+ vertical-align: top;
24347
+ }
24348
+ .v-skeleton-loader__actions {
24349
+ justify-content: end;
24350
+ }
24351
+ .v-skeleton-loader .v-skeleton-loader__ossein {
24352
+ height: 100%;
24353
+ }
24354
+ .v-skeleton-loader .v-skeleton-loader__avatar,
24355
+ .v-skeleton-loader .v-skeleton-loader__button,
24356
+ .v-skeleton-loader .v-skeleton-loader__chip,
24357
+ .v-skeleton-loader .v-skeleton-loader__divider,
24358
+ .v-skeleton-loader .v-skeleton-loader__heading,
24359
+ .v-skeleton-loader .v-skeleton-loader__image,
24360
+ .v-skeleton-loader .v-skeleton-loader__ossein,
24361
+ .v-skeleton-loader .v-skeleton-loader__text {
24362
+ background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
24363
+ }
24364
+ .v-skeleton-loader .v-skeleton-loader__list-item,
24365
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar,
24366
24366
  .v-skeleton-loader .v-skeleton-loader__list-item-text,
24367
24367
  .v-skeleton-loader .v-skeleton-loader__list-item-two-line,
24368
24368
  .v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
@@ -24561,6 +24561,61 @@ html.v-overlay-scroll-blocked {
24561
24561
  100% {
24562
24562
  transform: translateX(100%);
24563
24563
  }
24564
+ }.v-slide-group {
24565
+ display: flex;
24566
+ overflow: hidden;
24567
+ }
24568
+
24569
+ .v-slide-group__next,
24570
+ .v-slide-group__prev {
24571
+ align-items: center;
24572
+ display: flex;
24573
+ flex: 0 1 52px;
24574
+ justify-content: center;
24575
+ min-width: 52px;
24576
+ cursor: pointer;
24577
+ }
24578
+ .v-slide-group__next--disabled,
24579
+ .v-slide-group__prev--disabled {
24580
+ pointer-events: none;
24581
+ opacity: var(--v-disabled-opacity);
24582
+ }
24583
+
24584
+ .v-slide-group__content {
24585
+ display: flex;
24586
+ flex: 1 0 auto;
24587
+ position: relative;
24588
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24589
+ white-space: nowrap;
24590
+ }
24591
+ .v-slide-group__content > * {
24592
+ white-space: initial;
24593
+ }
24594
+
24595
+ .v-slide-group__container {
24596
+ contain: content;
24597
+ display: flex;
24598
+ flex: 1 1 auto;
24599
+ overflow-x: auto;
24600
+ overflow-y: hidden;
24601
+ scrollbar-width: none;
24602
+ scrollbar-color: rgba(0, 0, 0, 0);
24603
+ }
24604
+ .v-slide-group__container::-webkit-scrollbar {
24605
+ display: none;
24606
+ }
24607
+
24608
+ .v-slide-group--vertical {
24609
+ max-height: inherit;
24610
+ }
24611
+ .v-slide-group--vertical,
24612
+ .v-slide-group--vertical .v-slide-group__container,
24613
+ .v-slide-group--vertical .v-slide-group__content {
24614
+ flex-direction: column;
24615
+ }
24616
+ .v-slide-group--vertical .v-slide-group__container {
24617
+ overflow-x: hidden;
24618
+ overflow-y: auto;
24564
24619
  }.v-snackbar {
24565
24620
  justify-content: center;
24566
24621
  z-index: 10000;
@@ -24701,289 +24756,100 @@ html.v-overlay-scroll-blocked {
24701
24756
  }
24702
24757
  .v-snackbar-transition-leave-to {
24703
24758
  opacity: 0;
24704
- }.v-slide-group {
24705
- display: flex;
24706
- overflow: hidden;
24759
+ }.v-speed-dial__content {
24760
+ gap: 8px;
24707
24761
  }
24708
-
24709
- .v-slide-group__next,
24710
- .v-slide-group__prev {
24711
- align-items: center;
24712
- display: flex;
24713
- flex: 0 1 52px;
24714
- justify-content: center;
24715
- min-width: 52px;
24716
- cursor: pointer;
24762
+ .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 {
24763
+ flex-direction: row;
24717
24764
  }
24718
- .v-slide-group__next--disabled,
24719
- .v-slide-group__prev--disabled {
24720
- pointer-events: none;
24721
- opacity: var(--v-disabled-opacity);
24765
+ .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 {
24766
+ flex-direction: row-reverse;
24722
24767
  }
24723
-
24724
- .v-slide-group__content {
24725
- display: flex;
24726
- flex: 1 0 auto;
24727
- position: relative;
24728
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24729
- white-space: nowrap;
24768
+ .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 {
24769
+ flex-direction: column-reverse;
24730
24770
  }
24731
- .v-slide-group__content > * {
24732
- white-space: initial;
24771
+ .v-speed-dial__content > *:nth-child(1) {
24772
+ transition-delay: 0s;
24733
24773
  }
24734
-
24735
- .v-slide-group__container {
24736
- contain: content;
24737
- display: flex;
24738
- flex: 1 1 auto;
24739
- overflow-x: auto;
24740
- overflow-y: hidden;
24741
- scrollbar-width: none;
24742
- scrollbar-color: rgba(0, 0, 0, 0);
24774
+ .v-speed-dial__content > *:nth-child(2) {
24775
+ transition-delay: 0.05s;
24743
24776
  }
24744
- .v-slide-group__container::-webkit-scrollbar {
24745
- display: none;
24777
+ .v-speed-dial__content > *:nth-child(3) {
24778
+ transition-delay: 0.1s;
24746
24779
  }
24747
-
24748
- .v-slide-group--vertical {
24749
- max-height: inherit;
24780
+ .v-speed-dial__content > *:nth-child(4) {
24781
+ transition-delay: 0.15s;
24750
24782
  }
24751
- .v-slide-group--vertical,
24752
- .v-slide-group--vertical .v-slide-group__container,
24753
- .v-slide-group--vertical .v-slide-group__content {
24754
- flex-direction: column;
24783
+ .v-speed-dial__content > *:nth-child(5) {
24784
+ transition-delay: 0.2s;
24755
24785
  }
24756
- .v-slide-group--vertical .v-slide-group__container {
24757
- overflow-x: hidden;
24758
- overflow-y: auto;
24759
- }.v-stepper.v-sheet {
24760
- overflow: hidden;
24786
+ .v-speed-dial__content > *:nth-child(6) {
24787
+ transition-delay: 0.25s;
24761
24788
  }
24762
- .v-stepper.v-sheet {
24763
- box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24789
+ .v-speed-dial__content > *:nth-child(7) {
24790
+ transition-delay: 0.3s;
24764
24791
  }
24765
- .v-stepper.v-sheet {
24766
- border-radius: 4px;
24792
+ .v-speed-dial__content > *:nth-child(8) {
24793
+ transition-delay: 0.35s;
24767
24794
  }
24768
- .v-stepper.v-sheet.v-stepper--flat {
24769
- box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24795
+ .v-speed-dial__content > *:nth-child(9) {
24796
+ transition-delay: 0.4s;
24797
+ }
24798
+ .v-speed-dial__content > *:nth-child(10) {
24799
+ transition-delay: 0.45s;
24800
+ }.v-switch .v-label {
24801
+ padding-inline-start: 10px;
24770
24802
  }
24771
24803
 
24772
- .v-stepper-header {
24773
- align-items: center;
24804
+ .v-switch__loader {
24774
24805
  display: flex;
24775
- position: relative;
24776
- overflow-x: auto;
24777
- justify-content: space-between;
24778
- z-index: 1;
24779
- }
24780
- .v-stepper-header {
24781
- box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24782
24806
  }
24783
- .v-stepper-header .v-divider {
24784
- margin: 0 -16px;
24807
+ .v-switch__loader .v-progress-circular {
24808
+ color: rgb(var(--v-theme-surface));
24785
24809
  }
24786
- .v-stepper-header .v-divider:last-child {
24787
- margin-inline-end: 0;
24810
+
24811
+ .v-switch__track,
24812
+ .v-switch__thumb {
24813
+ transition: none;
24788
24814
  }
24789
- .v-stepper-header .v-divider:first-child {
24790
- margin-inline-start: 0;
24815
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24816
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24817
+ background-color: rgb(var(--v-theme-error));
24818
+ color: rgb(var(--v-theme-on-error));
24791
24819
  }
24792
- .v-stepper--alt-labels .v-stepper-header {
24793
- height: auto;
24820
+
24821
+ .v-switch__track-true {
24822
+ margin-inline-end: auto;
24794
24823
  }
24795
- .v-stepper--alt-labels .v-stepper-header .v-divider {
24796
- align-self: flex-start;
24797
- margin: 35px -67px 0;
24824
+ .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
24825
+ opacity: 0;
24798
24826
  }
24799
24827
 
24800
- .v-stepper-window {
24801
- margin: 1.5rem;
24828
+ .v-switch__track-false {
24829
+ margin-inline-start: auto;
24830
+ }
24831
+ .v-selection-control--dirty .v-switch__track-false {
24832
+ opacity: 0;
24802
24833
  }
24803
24834
 
24804
- .v-stepper-actions {
24805
- display: flex;
24835
+ .v-switch__track {
24836
+ display: inline-flex;
24806
24837
  align-items: center;
24807
- justify-content: space-between;
24808
- padding: 1rem;
24838
+ font-size: 0.5rem;
24839
+ padding: 0 5px;
24840
+ background-color: rgb(var(--v-theme-surface-variant));
24841
+ border-radius: 9999px;
24842
+ height: 14px;
24843
+ opacity: 0.6;
24844
+ min-width: 36px;
24845
+ cursor: pointer;
24846
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24809
24847
  }
24810
- .v-stepper .v-stepper-actions {
24811
- padding: 0 1.5rem 1rem;
24812
- }
24813
- .v-stepper-window-item .v-stepper-actions {
24814
- padding: 1.5rem 0 0;
24815
- }.v-stepper-item {
24816
- align-items: center;
24817
- align-self: stretch;
24818
- display: inline-flex;
24819
- flex: none;
24820
- outline: none;
24821
- opacity: var(--v-medium-emphasis-opacity);
24822
- padding: 1.5rem;
24823
- position: relative;
24824
- transition-duration: 0.2s;
24825
- transition-property: opacity;
24826
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
24827
- }
24828
- .v-stepper-item:hover > .v-stepper-item__overlay {
24829
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24830
- }
24831
- .v-stepper-item:focus-visible > .v-stepper-item__overlay {
24832
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24833
- }
24834
- @supports not selector(:focus-visible) {
24835
- .v-stepper-item:focus > .v-stepper-item__overlay {
24836
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24837
- }
24838
- }
24839
- .v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
24840
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
24841
- }
24842
- .v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
24843
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
24844
- }
24845
- .v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
24846
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
24847
- }
24848
- @supports not selector(:focus-visible) {
24849
- .v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
24850
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
24851
- }
24852
- }
24853
- .v-stepper--non-linear .v-stepper-item {
24854
- opacity: var(--v-high-emphasis-opacity);
24855
- }
24856
- .v-stepper-item--selected {
24857
- opacity: 1;
24858
- }
24859
- .v-stepper-item--error {
24860
- color: rgb(var(--v-theme-error));
24861
- }
24862
- .v-stepper-item--disabled {
24863
- opacity: var(--v-medium-emphasis-opacity);
24864
- pointer-events: none;
24865
- }
24866
- .v-stepper--alt-labels .v-stepper-item {
24867
- flex-direction: column;
24868
- justify-content: flex-start;
24869
- align-items: center;
24870
- flex-basis: 175px;
24871
- }
24872
-
24873
- .v-stepper-item__avatar.v-avatar {
24874
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
24875
- color: rgb(var(--v-theme-on-surface-variant));
24876
- font-size: 0.75rem;
24877
- margin-inline-end: 8px;
24878
- }
24879
- .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
24880
- margin-inline-end: 0;
24881
- }
24882
- .v-stepper-item__avatar.v-avatar .v-icon {
24883
- font-size: 0.875rem;
24884
- }
24885
- .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
24886
- background: rgb(var(--v-theme-surface-variant));
24887
- }
24888
- .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
24889
- background: rgb(var(--v-theme-error));
24890
- }
24891
- .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
24892
- margin-bottom: 16px;
24893
- margin-inline-end: 0;
24894
- }
24895
-
24896
- .v-stepper-item__title {
24897
- line-height: 1;
24898
- }
24899
- .v-stepper--mobile .v-stepper-item__title {
24900
- display: none;
24901
- }
24902
-
24903
- .v-stepper-item__subtitle {
24904
- font-size: 0.75rem;
24905
- text-align: left;
24906
- line-height: 1;
24907
- opacity: var(--v-medium-emphasis-opacity);
24908
- }
24909
- .v-stepper--alt-labels .v-stepper-item__subtitle {
24910
- text-align: center;
24911
- }
24912
- .v-stepper--mobile .v-stepper-item__subtitle {
24913
- display: none;
24914
- }
24915
-
24916
- .v-stepper-item__overlay {
24917
- background-color: currentColor;
24918
- border-radius: inherit;
24919
- opacity: 0;
24920
- transition: opacity 0.2s ease-in-out;
24921
- }
24922
-
24923
- .v-stepper-item__overlay,
24924
- .v-stepper-item__underlay {
24925
- pointer-events: none;
24926
- }
24927
- .v-stepper-item__overlay,
24928
- .v-stepper-item__underlay {
24929
- position: absolute;
24930
- top: 0;
24931
- left: 0;
24932
- width: 100%;
24933
- height: 100%;
24934
- }.v-switch .v-label {
24935
- padding-inline-start: 10px;
24936
- }
24937
-
24938
- .v-switch__loader {
24939
- display: flex;
24940
- }
24941
- .v-switch__loader .v-progress-circular {
24942
- color: rgb(var(--v-theme-surface));
24943
- }
24944
-
24945
- .v-switch__track,
24946
- .v-switch__thumb {
24947
- transition: none;
24948
- }
24949
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24950
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24951
- background-color: rgb(var(--v-theme-error));
24952
- color: rgb(var(--v-theme-on-error));
24953
- }
24954
-
24955
- .v-switch__track-true {
24956
- margin-inline-end: auto;
24957
- }
24958
- .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
24959
- opacity: 0;
24960
- }
24961
-
24962
- .v-switch__track-false {
24963
- margin-inline-start: auto;
24964
- }
24965
- .v-selection-control--dirty .v-switch__track-false {
24966
- opacity: 0;
24967
- }
24968
-
24969
- .v-switch__track {
24970
- display: inline-flex;
24971
- align-items: center;
24972
- font-size: 0.5rem;
24973
- padding: 0 5px;
24974
- background-color: rgb(var(--v-theme-surface-variant));
24975
- border-radius: 9999px;
24976
- height: 14px;
24977
- opacity: 0.6;
24978
- min-width: 36px;
24979
- cursor: pointer;
24980
- transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24981
- }
24982
- .v-switch--inset .v-switch__track {
24983
- border-radius: 9999px;
24984
- font-size: 0.75rem;
24985
- height: 32px;
24986
- min-width: 52px;
24848
+ .v-switch--inset .v-switch__track {
24849
+ border-radius: 9999px;
24850
+ font-size: 0.75rem;
24851
+ height: 32px;
24852
+ min-width: 52px;
24987
24853
  }
24988
24854
 
24989
24855
  .v-switch__thumb {
@@ -25113,189 +24979,181 @@ html.v-overlay-scroll-blocked {
25113
24979
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25114
24980
  border-width: 0;
25115
24981
  }
25116
- }.v-speed-dial__content {
25117
- gap: 8px;
25118
- }
25119
- .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 {
25120
- flex-direction: row;
25121
- }
25122
- .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 {
25123
- flex-direction: row-reverse;
25124
- }
25125
- .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 {
25126
- flex-direction: column-reverse;
24982
+ }.v-stepper.v-sheet {
24983
+ overflow: hidden;
25127
24984
  }
25128
- .v-speed-dial__content > *:nth-child(1) {
25129
- transition-delay: 0s;
24985
+ .v-stepper.v-sheet {
24986
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25130
24987
  }
25131
- .v-speed-dial__content > *:nth-child(2) {
25132
- transition-delay: 0.05s;
24988
+ .v-stepper.v-sheet {
24989
+ border-radius: 4px;
25133
24990
  }
25134
- .v-speed-dial__content > *:nth-child(3) {
25135
- transition-delay: 0.1s;
24991
+ .v-stepper.v-sheet.v-stepper--flat {
24992
+ 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));
25136
24993
  }
25137
- .v-speed-dial__content > *:nth-child(4) {
25138
- transition-delay: 0.15s;
24994
+
24995
+ .v-stepper-header {
24996
+ align-items: center;
24997
+ display: flex;
24998
+ position: relative;
24999
+ overflow-x: auto;
25000
+ justify-content: space-between;
25001
+ z-index: 1;
25139
25002
  }
25140
- .v-speed-dial__content > *:nth-child(5) {
25141
- transition-delay: 0.2s;
25003
+ .v-stepper-header {
25004
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25142
25005
  }
25143
- .v-speed-dial__content > *:nth-child(6) {
25144
- transition-delay: 0.25s;
25006
+ .v-stepper-header .v-divider {
25007
+ margin: 0 -16px;
25145
25008
  }
25146
- .v-speed-dial__content > *:nth-child(7) {
25147
- transition-delay: 0.3s;
25009
+ .v-stepper-header .v-divider:last-child {
25010
+ margin-inline-end: 0;
25148
25011
  }
25149
- .v-speed-dial__content > *:nth-child(8) {
25150
- transition-delay: 0.35s;
25012
+ .v-stepper-header .v-divider:first-child {
25013
+ margin-inline-start: 0;
25151
25014
  }
25152
- .v-speed-dial__content > *:nth-child(9) {
25153
- transition-delay: 0.4s;
25015
+ .v-stepper--alt-labels .v-stepper-header {
25016
+ height: auto;
25154
25017
  }
25155
- .v-speed-dial__content > *:nth-child(10) {
25156
- transition-delay: 0.45s;
25157
- }.v-table {
25158
- font-size: 0.875rem;
25159
- transition-duration: 0.28s;
25160
- transition-property: box-shadow, opacity, background, height;
25161
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25018
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
25019
+ align-self: flex-start;
25020
+ margin: 35px -67px 0;
25162
25021
  }
25163
- .v-table {
25164
- background: rgb(var(--v-theme-surface));
25165
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25022
+
25023
+ .v-stepper-window {
25024
+ margin: 1.5rem;
25166
25025
  }
25167
- .v-table .v-table-divider {
25168
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25026
+
25027
+ .v-stepper-actions {
25028
+ display: flex;
25029
+ align-items: center;
25030
+ justify-content: space-between;
25031
+ padding: 1rem;
25169
25032
  }
25170
- .v-table .v-table__wrapper > table > thead > tr > th {
25171
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25033
+ .v-stepper .v-stepper-actions {
25034
+ padding: 0 1.5rem 1rem;
25172
25035
  }
25173
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25174
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25175
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25036
+ .v-stepper-window-item .v-stepper-actions {
25037
+ padding: 1.5rem 0 0;
25038
+ }.v-stepper-item {
25039
+ align-items: center;
25040
+ align-self: stretch;
25041
+ display: inline-flex;
25042
+ flex: none;
25043
+ outline: none;
25044
+ opacity: var(--v-medium-emphasis-opacity);
25045
+ padding: 1.5rem;
25046
+ position: relative;
25047
+ transition-duration: 0.2s;
25048
+ transition-property: opacity;
25049
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25176
25050
  }
25177
- .v-table .v-table__wrapper > table > tfoot > tr > td,
25178
- .v-table .v-table__wrapper > table > tfoot > tr > th {
25179
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25051
+ .v-stepper-item:hover > .v-stepper-item__overlay {
25052
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
25180
25053
  }
25181
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25182
- position: relative;
25054
+ .v-stepper-item:focus-visible > .v-stepper-item__overlay {
25055
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25183
25056
  }
25184
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25185
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
25186
- pointer-events: none;
25057
+ @supports not selector(:focus-visible) {
25058
+ .v-stepper-item:focus > .v-stepper-item__overlay {
25059
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25060
+ }
25187
25061
  }
25188
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25189
- content: "";
25190
- position: absolute;
25191
- top: 0;
25192
- left: 0;
25193
- width: 100%;
25194
- height: 100%;
25062
+ .v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
25063
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
25195
25064
  }
25196
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25197
- background: rgb(var(--v-theme-surface));
25198
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25199
- z-index: 1;
25065
+ .v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
25066
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
25200
25067
  }
25201
- .v-table.v-table--fixed-footer > tfoot > tr > th,
25202
- .v-table.v-table--fixed-footer > tfoot > tr > td {
25203
- background: rgb(var(--v-theme-surface));
25204
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25068
+ .v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
25069
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25205
25070
  }
25206
-
25207
- .v-table {
25208
- border-radius: inherit;
25209
- line-height: 1.5;
25210
- max-width: 100%;
25211
- display: flex;
25212
- flex-direction: column;
25071
+ @supports not selector(:focus-visible) {
25072
+ .v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
25073
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25074
+ }
25213
25075
  }
25214
- .v-table > .v-table__wrapper > table {
25215
- width: 100%;
25216
- border-spacing: 0;
25076
+ .v-stepper--non-linear .v-stepper-item {
25077
+ opacity: var(--v-high-emphasis-opacity);
25217
25078
  }
25218
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25219
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25220
- .v-table > .v-table__wrapper > table > thead > tr > td,
25221
- .v-table > .v-table__wrapper > table > thead > tr > th,
25222
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
25223
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25224
- padding: 0 16px;
25225
- transition-duration: 0.28s;
25226
- transition-property: box-shadow, opacity, background, height;
25227
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25079
+ .v-stepper-item--selected {
25080
+ opacity: 1;
25228
25081
  }
25229
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25230
- .v-table > .v-table__wrapper > table > thead > tr > td,
25231
- .v-table > .v-table__wrapper > table > tfoot > tr > td {
25232
- height: var(--v-table-row-height);
25082
+ .v-stepper-item--error {
25083
+ color: rgb(var(--v-theme-error));
25233
25084
  }
25234
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25235
- .v-table > .v-table__wrapper > table > thead > tr > th,
25236
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25237
- height: var(--v-table-header-height);
25238
- font-weight: 500;
25239
- -webkit-user-select: none;
25240
- user-select: none;
25241
- text-align: start;
25085
+ .v-stepper-item--disabled {
25086
+ opacity: var(--v-medium-emphasis-opacity);
25087
+ pointer-events: none;
25242
25088
  }
25243
- .v-table--density-default {
25244
- --v-table-header-height: 56px;
25245
- --v-table-row-height: 52px;
25089
+ .v-stepper--alt-labels .v-stepper-item {
25090
+ flex-direction: column;
25091
+ justify-content: flex-start;
25092
+ align-items: center;
25093
+ flex-basis: 175px;
25246
25094
  }
25247
25095
 
25248
- .v-table--density-comfortable {
25249
- --v-table-header-height: 48px;
25250
- --v-table-row-height: 44px;
25096
+ .v-stepper-item__avatar.v-avatar {
25097
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
25098
+ color: rgb(var(--v-theme-on-surface-variant));
25099
+ font-size: 0.75rem;
25100
+ margin-inline-end: 8px;
25251
25101
  }
25252
-
25253
- .v-table--density-compact {
25254
- --v-table-header-height: 40px;
25255
- --v-table-row-height: 36px;
25102
+ .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
25103
+ margin-inline-end: 0;
25256
25104
  }
25257
-
25258
- .v-table__wrapper {
25259
- border-radius: inherit;
25260
- overflow: auto;
25261
- flex: 1 1 auto;
25105
+ .v-stepper-item__avatar.v-avatar .v-icon {
25106
+ font-size: 0.875rem;
25262
25107
  }
25263
-
25264
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25265
- border-top-left-radius: 0;
25108
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
25109
+ background: rgb(var(--v-theme-surface-variant));
25266
25110
  }
25267
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25268
- border-top-right-radius: 0;
25111
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
25112
+ background: rgb(var(--v-theme-error));
25113
+ }
25114
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
25115
+ margin-bottom: 16px;
25116
+ margin-inline-end: 0;
25269
25117
  }
25270
25118
 
25271
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25272
- border-bottom-left-radius: 0;
25119
+ .v-stepper-item__title {
25120
+ line-height: 1;
25273
25121
  }
25274
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25275
- border-bottom-right-radius: 0;
25122
+ .v-stepper--mobile .v-stepper-item__title {
25123
+ display: none;
25276
25124
  }
25277
25125
 
25278
- .v-table--fixed-height > .v-table__wrapper {
25279
- overflow-y: auto;
25126
+ .v-stepper-item__subtitle {
25127
+ font-size: 0.75rem;
25128
+ text-align: left;
25129
+ line-height: 1;
25130
+ opacity: var(--v-medium-emphasis-opacity);
25280
25131
  }
25281
-
25282
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25283
- position: sticky;
25284
- top: 0;
25285
- z-index: 2;
25132
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
25133
+ text-align: center;
25286
25134
  }
25287
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25288
- border-bottom: 0px !important;
25135
+ .v-stepper--mobile .v-stepper-item__subtitle {
25136
+ display: none;
25289
25137
  }
25290
25138
 
25291
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25292
- position: sticky;
25293
- bottom: 0;
25294
- z-index: 1;
25139
+ .v-stepper-item__overlay {
25140
+ background-color: currentColor;
25141
+ border-radius: inherit;
25142
+ opacity: 0;
25143
+ transition: opacity 0.2s ease-in-out;
25295
25144
  }
25296
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25297
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25298
- border-top: 0px !important;
25145
+
25146
+ .v-stepper-item__overlay,
25147
+ .v-stepper-item__underlay {
25148
+ pointer-events: none;
25149
+ }
25150
+ .v-stepper-item__overlay,
25151
+ .v-stepper-item__underlay {
25152
+ position: absolute;
25153
+ top: 0;
25154
+ left: 0;
25155
+ width: 100%;
25156
+ height: 100%;
25299
25157
  }.v-system-bar {
25300
25158
  align-items: center;
25301
25159
  display: flex;
@@ -25339,6 +25197,35 @@ html.v-overlay-scroll-blocked {
25339
25197
  }
25340
25198
  .v-system-bar:not(.v-system-bar--absolute) {
25341
25199
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25200
+ }.v-tab.v-tab.v-btn {
25201
+ height: var(--v-tabs-height);
25202
+ border-radius: 0;
25203
+ min-width: 90px;
25204
+ }
25205
+ .v-slide-group--horizontal .v-tab {
25206
+ max-width: 360px;
25207
+ }
25208
+ .v-slide-group--vertical .v-tab {
25209
+ justify-content: start;
25210
+ }
25211
+
25212
+ .v-tab__slider {
25213
+ position: absolute;
25214
+ bottom: 0;
25215
+ left: 0;
25216
+ height: 2px;
25217
+ width: 100%;
25218
+ background: currentColor;
25219
+ pointer-events: none;
25220
+ opacity: 0;
25221
+ }
25222
+ .v-tab--selected .v-tab__slider {
25223
+ opacity: 1;
25224
+ }
25225
+ .v-slide-group--vertical .v-tab__slider {
25226
+ top: 0;
25227
+ height: 100%;
25228
+ width: 2px;
25342
25229
  }.v-tabs {
25343
25230
  display: flex;
25344
25231
  height: var(--v-tabs-height);
@@ -25346,94 +25233,207 @@ html.v-overlay-scroll-blocked {
25346
25233
  .v-tabs--density-default {
25347
25234
  --v-tabs-height: 48px;
25348
25235
  }
25349
- .v-tabs--density-default.v-tabs--stacked {
25350
- --v-tabs-height: 72px;
25236
+ .v-tabs--density-default.v-tabs--stacked {
25237
+ --v-tabs-height: 72px;
25238
+ }
25239
+
25240
+ .v-tabs--density-comfortable {
25241
+ --v-tabs-height: 44px;
25242
+ }
25243
+ .v-tabs--density-comfortable.v-tabs--stacked {
25244
+ --v-tabs-height: 68px;
25245
+ }
25246
+
25247
+ .v-tabs--density-compact {
25248
+ --v-tabs-height: 36px;
25249
+ }
25250
+ .v-tabs--density-compact.v-tabs--stacked {
25251
+ --v-tabs-height: 60px;
25252
+ }
25253
+
25254
+ .v-tabs.v-slide-group--vertical {
25255
+ height: auto;
25256
+ flex: none;
25257
+ --v-tabs-height: 48px;
25258
+ }
25259
+
25260
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25261
+ margin-inline-start: 42px;
25262
+ }
25263
+
25264
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25265
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25266
+ margin-inline-end: auto;
25267
+ }
25268
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25269
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25270
+ margin-inline-start: auto;
25271
+ }
25272
+
25273
+ .v-tabs--grow {
25274
+ flex-grow: 1;
25275
+ }
25276
+ .v-tabs--grow .v-tab {
25277
+ flex: 1 0 auto;
25278
+ max-width: none;
25279
+ }
25280
+
25281
+ .v-tabs--align-tabs-end .v-tab:first-child {
25282
+ margin-inline-start: auto;
25283
+ }
25284
+ .v-tabs--align-tabs-end .v-tab:last-child {
25285
+ margin-inline-end: 0;
25286
+ }
25287
+
25288
+ @media (max-width: 1279.98px) {
25289
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25290
+ margin-inline-start: 52px;
25291
+ }
25292
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25293
+ margin-inline-end: 52px;
25294
+ }
25295
+ }.v-table {
25296
+ font-size: 0.875rem;
25297
+ transition-duration: 0.28s;
25298
+ transition-property: box-shadow, opacity, background, height;
25299
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25300
+ }
25301
+ .v-table {
25302
+ background: rgb(var(--v-theme-surface));
25303
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25304
+ }
25305
+ .v-table .v-table-divider {
25306
+ border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25307
+ }
25308
+ .v-table .v-table__wrapper > table > thead > tr > th {
25309
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25310
+ }
25311
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25312
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25313
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25314
+ }
25315
+ .v-table .v-table__wrapper > table > tfoot > tr > td,
25316
+ .v-table .v-table__wrapper > table > tfoot > tr > th {
25317
+ border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25318
+ }
25319
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25320
+ position: relative;
25321
+ }
25322
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25323
+ background: rgba(var(--v-border-color), var(--v-hover-opacity));
25324
+ pointer-events: none;
25325
+ }
25326
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25327
+ content: "";
25328
+ position: absolute;
25329
+ top: 0;
25330
+ left: 0;
25331
+ width: 100%;
25332
+ height: 100%;
25333
+ }
25334
+ .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25335
+ background: rgb(var(--v-theme-surface));
25336
+ box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25337
+ z-index: 1;
25338
+ }
25339
+ .v-table.v-table--fixed-footer > tfoot > tr > th,
25340
+ .v-table.v-table--fixed-footer > tfoot > tr > td {
25341
+ background: rgb(var(--v-theme-surface));
25342
+ box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25343
+ }
25344
+
25345
+ .v-table {
25346
+ border-radius: inherit;
25347
+ line-height: 1.5;
25348
+ max-width: 100%;
25349
+ display: flex;
25350
+ flex-direction: column;
25351
+ }
25352
+ .v-table > .v-table__wrapper > table {
25353
+ width: 100%;
25354
+ border-spacing: 0;
25351
25355
  }
25352
-
25353
- .v-tabs--density-comfortable {
25354
- --v-tabs-height: 44px;
25356
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25357
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25358
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25359
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25360
+ .v-table > .v-table__wrapper > table > tfoot > tr > td,
25361
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25362
+ padding: 0 16px;
25363
+ transition-duration: 0.28s;
25364
+ transition-property: box-shadow, opacity, background, height;
25365
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25355
25366
  }
25356
- .v-tabs--density-comfortable.v-tabs--stacked {
25357
- --v-tabs-height: 68px;
25367
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25368
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25369
+ .v-table > .v-table__wrapper > table > tfoot > tr > td {
25370
+ height: var(--v-table-row-height);
25358
25371
  }
25359
-
25360
- .v-tabs--density-compact {
25361
- --v-tabs-height: 36px;
25372
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25373
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25374
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25375
+ height: var(--v-table-header-height);
25376
+ font-weight: 500;
25377
+ -webkit-user-select: none;
25378
+ user-select: none;
25379
+ text-align: start;
25362
25380
  }
25363
- .v-tabs--density-compact.v-tabs--stacked {
25364
- --v-tabs-height: 60px;
25381
+ .v-table--density-default {
25382
+ --v-table-header-height: 56px;
25383
+ --v-table-row-height: 52px;
25365
25384
  }
25366
25385
 
25367
- .v-tabs.v-slide-group--vertical {
25368
- height: auto;
25369
- flex: none;
25370
- --v-tabs-height: 48px;
25386
+ .v-table--density-comfortable {
25387
+ --v-table-header-height: 48px;
25388
+ --v-table-row-height: 44px;
25371
25389
  }
25372
25390
 
25373
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25374
- margin-inline-start: 42px;
25391
+ .v-table--density-compact {
25392
+ --v-table-header-height: 40px;
25393
+ --v-table-row-height: 36px;
25375
25394
  }
25376
25395
 
25377
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25378
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25379
- margin-inline-end: auto;
25380
- }
25381
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25382
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25383
- margin-inline-start: auto;
25396
+ .v-table__wrapper {
25397
+ border-radius: inherit;
25398
+ overflow: auto;
25399
+ flex: 1 1 auto;
25384
25400
  }
25385
25401
 
25386
- .v-tabs--grow {
25387
- flex-grow: 1;
25402
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25403
+ border-top-left-radius: 0;
25388
25404
  }
25389
- .v-tabs--grow .v-tab {
25390
- flex: 1 0 auto;
25391
- max-width: none;
25405
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25406
+ border-top-right-radius: 0;
25392
25407
  }
25393
25408
 
25394
- .v-tabs--align-tabs-end .v-tab:first-child {
25395
- margin-inline-start: auto;
25409
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25410
+ border-bottom-left-radius: 0;
25396
25411
  }
25397
- .v-tabs--align-tabs-end .v-tab:last-child {
25398
- margin-inline-end: 0;
25412
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25413
+ border-bottom-right-radius: 0;
25399
25414
  }
25400
25415
 
25401
- @media (max-width: 1279.98px) {
25402
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25403
- margin-inline-start: 52px;
25404
- }
25405
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25406
- margin-inline-end: 52px;
25407
- }
25408
- }.v-tab.v-tab.v-btn {
25409
- height: var(--v-tabs-height);
25410
- border-radius: 0;
25411
- min-width: 90px;
25416
+ .v-table--fixed-height > .v-table__wrapper {
25417
+ overflow-y: auto;
25412
25418
  }
25413
- .v-slide-group--horizontal .v-tab {
25414
- max-width: 360px;
25419
+
25420
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25421
+ position: sticky;
25422
+ top: 0;
25423
+ z-index: 2;
25415
25424
  }
25416
- .v-slide-group--vertical .v-tab {
25417
- justify-content: start;
25425
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25426
+ border-bottom: 0px !important;
25418
25427
  }
25419
25428
 
25420
- .v-tab__slider {
25421
- position: absolute;
25429
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25430
+ position: sticky;
25422
25431
  bottom: 0;
25423
- left: 0;
25424
- height: 2px;
25425
- width: 100%;
25426
- background: currentColor;
25427
- pointer-events: none;
25428
- opacity: 0;
25429
- }
25430
- .v-tab--selected .v-tab__slider {
25431
- opacity: 1;
25432
+ z-index: 1;
25432
25433
  }
25433
- .v-slide-group--vertical .v-tab__slider {
25434
- top: 0;
25435
- height: 100%;
25436
- width: 2px;
25434
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25435
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25436
+ border-top: 0px !important;
25437
25437
  }.v-textarea .v-field {
25438
25438
  --v-textarea-control-height: var(--v-input-control-height);
25439
25439
  }
@@ -26126,6 +26126,15 @@ html.v-overlay-scroll-blocked {
26126
26126
  }
26127
26127
  .v-toolbar-items > .v-btn {
26128
26128
  border-radius: 0;
26129
+ }.v-virtual-scroll {
26130
+ display: block;
26131
+ flex: 1 1 auto;
26132
+ max-width: 100%;
26133
+ overflow: auto;
26134
+ position: relative;
26135
+ }
26136
+ .v-virtual-scroll__container {
26137
+ display: block;
26129
26138
  }.v-window {
26130
26139
  overflow: hidden;
26131
26140
  }
@@ -26196,15 +26205,28 @@ html.v-overlay-scroll-blocked {
26196
26205
  }
26197
26206
  .v-window-y-reverse-transition-leave-to {
26198
26207
  transform: translateY(100%);
26199
- }.v-virtual-scroll {
26200
- display: block;
26201
- flex: 1 1 auto;
26202
- max-width: 100%;
26203
- overflow: auto;
26208
+ }.v-color-picker-canvas {
26209
+ display: flex;
26204
26210
  position: relative;
26211
+ overflow: hidden;
26212
+ contain: content;
26213
+ touch-action: none;
26205
26214
  }
26206
- .v-virtual-scroll__container {
26207
- display: block;
26215
+ .v-color-picker-canvas__dot {
26216
+ position: absolute;
26217
+ top: 0;
26218
+ left: 0;
26219
+ width: 15px;
26220
+ height: 15px;
26221
+ background: transparent;
26222
+ border-radius: 50%;
26223
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26224
+ }
26225
+ .v-color-picker-canvas__dot--disabled {
26226
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26227
+ }
26228
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26229
+ will-change: transform;
26208
26230
  }.v-color-picker-edit {
26209
26231
  display: flex;
26210
26232
  margin-top: 24px;
@@ -26233,63 +26255,6 @@ html.v-overlay-scroll-blocked {
26233
26255
  }
26234
26256
  .v-color-picker-edit__input span {
26235
26257
  font-size: 0.75rem;
26236
- }.v-color-picker-canvas {
26237
- display: flex;
26238
- position: relative;
26239
- overflow: hidden;
26240
- contain: content;
26241
- touch-action: none;
26242
- }
26243
- .v-color-picker-canvas__dot {
26244
- position: absolute;
26245
- top: 0;
26246
- left: 0;
26247
- width: 15px;
26248
- height: 15px;
26249
- background: transparent;
26250
- border-radius: 50%;
26251
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26252
- }
26253
- .v-color-picker-canvas__dot--disabled {
26254
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26255
- }
26256
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26257
- will-change: transform;
26258
- }.v-color-picker-swatches {
26259
- overflow-y: auto;
26260
- }
26261
- .v-color-picker-swatches > div {
26262
- display: flex;
26263
- flex-wrap: wrap;
26264
- justify-content: center;
26265
- padding: 8px;
26266
- }
26267
-
26268
- .v-color-picker-swatches__swatch {
26269
- display: flex;
26270
- flex-direction: column;
26271
- margin-bottom: 10px;
26272
- }
26273
-
26274
- .v-color-picker-swatches__color {
26275
- position: relative;
26276
- height: 18px;
26277
- max-height: 18px;
26278
- width: 45px;
26279
- margin: 2px 4px;
26280
- border-radius: 2px;
26281
- -webkit-user-select: none;
26282
- user-select: none;
26283
- overflow: hidden;
26284
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26285
- cursor: pointer;
26286
- }
26287
- .v-color-picker-swatches__color > div {
26288
- display: flex;
26289
- align-items: center;
26290
- justify-content: center;
26291
- width: 100%;
26292
- height: 100%;
26293
26258
  }.v-color-picker-preview__alpha .v-slider-track__background {
26294
26259
  background-color: transparent !important;
26295
26260
  }
@@ -26360,6 +26325,41 @@ html.v-overlay-scroll-blocked {
26360
26325
  .v-color-picker-preview__eye-dropper {
26361
26326
  position: relative;
26362
26327
  margin-right: 12px;
26328
+ }.v-color-picker-swatches {
26329
+ overflow-y: auto;
26330
+ }
26331
+ .v-color-picker-swatches > div {
26332
+ display: flex;
26333
+ flex-wrap: wrap;
26334
+ justify-content: center;
26335
+ padding: 8px;
26336
+ }
26337
+
26338
+ .v-color-picker-swatches__swatch {
26339
+ display: flex;
26340
+ flex-direction: column;
26341
+ margin-bottom: 10px;
26342
+ }
26343
+
26344
+ .v-color-picker-swatches__color {
26345
+ position: relative;
26346
+ height: 18px;
26347
+ max-height: 18px;
26348
+ width: 45px;
26349
+ margin: 2px 4px;
26350
+ border-radius: 2px;
26351
+ -webkit-user-select: none;
26352
+ user-select: none;
26353
+ overflow: hidden;
26354
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26355
+ cursor: pointer;
26356
+ }
26357
+ .v-color-picker-swatches__color > div {
26358
+ display: flex;
26359
+ align-items: center;
26360
+ justify-content: center;
26361
+ width: 100%;
26362
+ height: 100%;
26363
26363
  }.v-picker.v-sheet {
26364
26364
  display: grid;
26365
26365
  grid-auto-rows: min-content;