@vuetify/nightly 3.7.3-master.2024-11-01 → 3.7.3-master.2024-11-04

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.3-master.2024-11-01
2
+ * Vuetify v3.7.3-master.2024-11-04
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18222,6 +18222,91 @@ html.overflow-y-hidden {
18222
18222
  text-transform: none;
18223
18223
  word-break: normal;
18224
18224
  word-wrap: break-word;
18225
+ }.v-autocomplete .v-field .v-text-field__prefix,
18226
+ .v-autocomplete .v-field .v-text-field__suffix,
18227
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18228
+ cursor: text;
18229
+ }
18230
+ .v-autocomplete .v-field .v-field__input > input {
18231
+ flex: 1 1;
18232
+ }
18233
+ .v-autocomplete .v-field input {
18234
+ min-width: 64px;
18235
+ }
18236
+ .v-autocomplete .v-field:not(.v-field--focused) input {
18237
+ min-width: 0;
18238
+ }
18239
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18240
+ margin-inline-end: 2px;
18241
+ }
18242
+ .v-autocomplete .v-autocomplete__selection-text {
18243
+ overflow: hidden;
18244
+ text-overflow: ellipsis;
18245
+ white-space: nowrap;
18246
+ }
18247
+
18248
+ .v-autocomplete__content {
18249
+ overflow: hidden;
18250
+ }
18251
+ .v-autocomplete__content {
18252
+ box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18253
+ }
18254
+ .v-autocomplete__content {
18255
+ border-radius: 4px;
18256
+ }
18257
+ .v-autocomplete__mask {
18258
+ background: rgb(var(--v-theme-surface-light));
18259
+ }
18260
+ .v-autocomplete__selection {
18261
+ display: inline-flex;
18262
+ align-items: center;
18263
+ height: 1.5rem;
18264
+ letter-spacing: inherit;
18265
+ line-height: inherit;
18266
+ max-width: calc(100% - 2px - 2px);
18267
+ }
18268
+ .v-autocomplete__selection:first-child {
18269
+ margin-inline-start: 0;
18270
+ }
18271
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18272
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18273
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18274
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18275
+ top: 0px;
18276
+ }
18277
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
18278
+ opacity: var(--v-medium-emphasis-opacity);
18279
+ }
18280
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18281
+ opacity: 1;
18282
+ }
18283
+ .v-autocomplete--selecting-index .v-field__input > input {
18284
+ caret-color: transparent;
18285
+ }
18286
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18287
+ flex: 1 1;
18288
+ position: absolute;
18289
+ left: 0;
18290
+ right: 0;
18291
+ width: 100%;
18292
+ padding-inline: inherit;
18293
+ }
18294
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18295
+ transition: none;
18296
+ }
18297
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18298
+ opacity: 0;
18299
+ }
18300
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18301
+ opacity: 0;
18302
+ }
18303
+ .v-autocomplete__menu-icon {
18304
+ margin-inline-start: 4px;
18305
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18306
+ }
18307
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18308
+ opacity: var(--v-high-emphasis-opacity);
18309
+ transform: rotate(180deg);
18225
18310
  }.v-avatar {
18226
18311
  flex: none;
18227
18312
  align-items: center;
@@ -18328,91 +18413,79 @@ html.overflow-y-hidden {
18328
18413
  .v-avatar .v-img {
18329
18414
  height: 100%;
18330
18415
  width: 100%;
18331
- }.v-autocomplete .v-field .v-text-field__prefix,
18332
- .v-autocomplete .v-field .v-text-field__suffix,
18333
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18334
- cursor: text;
18335
- }
18336
- .v-autocomplete .v-field .v-field__input > input {
18337
- flex: 1 1;
18338
- }
18339
- .v-autocomplete .v-field input {
18340
- min-width: 64px;
18341
- }
18342
- .v-autocomplete .v-field:not(.v-field--focused) input {
18343
- min-width: 0;
18344
- }
18345
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18346
- margin-inline-end: 2px;
18347
- }
18348
- .v-autocomplete .v-autocomplete__selection-text {
18349
- overflow: hidden;
18350
- text-overflow: ellipsis;
18351
- white-space: nowrap;
18416
+ }.v-badge {
18417
+ display: inline-block;
18418
+ line-height: 1;
18352
18419
  }
18353
18420
 
18354
- .v-autocomplete__content {
18355
- overflow: hidden;
18356
- }
18357
- .v-autocomplete__content {
18358
- 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));
18359
- }
18360
- .v-autocomplete__content {
18361
- border-radius: 4px;
18362
- }
18363
- .v-autocomplete__mask {
18364
- background: rgb(var(--v-theme-surface-light));
18365
- }
18366
- .v-autocomplete__selection {
18367
- display: inline-flex;
18421
+ .v-badge__badge {
18368
18422
  align-items: center;
18369
- height: 1.5rem;
18370
- letter-spacing: inherit;
18371
- line-height: inherit;
18372
- max-width: calc(100% - 2px - 2px);
18373
- }
18374
- .v-autocomplete__selection:first-child {
18375
- margin-inline-start: 0;
18376
- }
18377
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18378
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18379
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18380
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18381
- top: 0px;
18382
- }
18383
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18384
- opacity: var(--v-medium-emphasis-opacity);
18385
- }
18386
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18387
- opacity: 1;
18423
+ display: inline-flex;
18424
+ border-radius: 10px;
18425
+ font-size: 0.75rem;
18426
+ font-weight: 500;
18427
+ height: 1.25rem;
18428
+ justify-content: center;
18429
+ min-width: 20px;
18430
+ padding: 4px 6px;
18431
+ pointer-events: auto;
18432
+ position: absolute;
18433
+ text-align: center;
18434
+ text-indent: 0;
18435
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18436
+ white-space: nowrap;
18388
18437
  }
18389
- .v-autocomplete--selecting-index .v-field__input > input {
18390
- caret-color: transparent;
18438
+ .v-badge__badge {
18439
+ background: rgb(var(--v-theme-surface-variant));
18440
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18391
18441
  }
18392
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18393
- flex: 1 1;
18394
- position: absolute;
18442
+ .v-badge--bordered .v-badge__badge::after {
18443
+ border-radius: inherit;
18444
+ border-style: solid;
18445
+ border-width: 2px;
18446
+ bottom: 0;
18447
+ color: rgb(var(--v-theme-background));
18448
+ content: "";
18395
18449
  left: 0;
18450
+ position: absolute;
18396
18451
  right: 0;
18397
- width: 100%;
18398
- padding-inline: inherit;
18452
+ top: 0;
18453
+ transform: scale(1.05);
18399
18454
  }
18400
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18401
- transition: none;
18455
+ .v-badge--dot .v-badge__badge {
18456
+ border-radius: 4.5px;
18457
+ height: 9px;
18458
+ min-width: 0;
18459
+ padding: 0;
18460
+ width: 9px;
18402
18461
  }
18403
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18404
- opacity: 0;
18462
+ .v-badge--dot .v-badge__badge::after {
18463
+ border-width: 1.5px;
18405
18464
  }
18406
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18407
- opacity: 0;
18465
+ .v-badge--inline .v-badge__badge {
18466
+ position: relative;
18467
+ vertical-align: middle;
18408
18468
  }
18409
- .v-autocomplete__menu-icon {
18410
- margin-inline-start: 4px;
18411
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18469
+ .v-badge__badge .v-icon {
18470
+ color: inherit;
18471
+ font-size: 0.75rem;
18472
+ margin: 0 -2px;
18412
18473
  }
18413
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18414
- opacity: var(--v-high-emphasis-opacity);
18415
- transform: rotate(180deg);
18474
+ .v-badge__badge img,
18475
+ .v-badge__badge .v-img {
18476
+ height: 100%;
18477
+ width: 100%;
18478
+ }
18479
+
18480
+ .v-badge__wrapper {
18481
+ display: flex;
18482
+ position: relative;
18483
+ }
18484
+ .v-badge--inline .v-badge__wrapper {
18485
+ align-items: center;
18486
+ display: inline-flex;
18487
+ justify-content: center;
18488
+ margin: 0 4px;
18416
18489
  }.v-banner {
18417
18490
  display: grid;
18418
18491
  flex: 1 1;
@@ -18523,232 +18596,62 @@ html.overflow-y-hidden {
18523
18596
  margin-bottom: 0;
18524
18597
  }
18525
18598
  .v-banner--density-compact.v-banner--two-line {
18526
- padding-top: 8px;
18527
- padding-bottom: 8px;
18528
- }
18529
- .v-banner--density-compact.v-banner--three-line {
18530
- padding-top: 16px;
18531
- padding-bottom: 8px;
18532
- }
18533
- .v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
18534
- margin-top: 12px;
18535
- }
18536
-
18537
- .v-banner--sticky {
18538
- top: 0;
18539
- z-index: 1;
18540
- }
18541
-
18542
- .v-banner__content {
18543
- align-items: center;
18544
- display: flex;
18545
- grid-area: content;
18546
- }
18547
-
18548
- .v-banner__prepend {
18549
- align-self: flex-start;
18550
- grid-area: prepend;
18551
- margin-inline-end: 24px;
18552
- }
18553
-
18554
- .v-banner-actions {
18555
- align-self: flex-end;
18556
- display: flex;
18557
- flex: 0 1;
18558
- grid-area: actions;
18559
- justify-content: flex-end;
18560
- }
18561
- .v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
18562
- margin-top: 20px;
18563
- }
18564
-
18565
- .v-banner-text {
18566
- -webkit-box-orient: vertical;
18567
- display: -webkit-box;
18568
- padding-inline-end: 90px;
18569
- overflow: hidden;
18570
- }
18571
- .v-banner--one-line .v-banner-text {
18572
- -webkit-line-clamp: 1;
18573
- }
18574
- .v-banner--two-line .v-banner-text {
18575
- -webkit-line-clamp: 2;
18576
- }
18577
- .v-banner--three-line .v-banner-text {
18578
- -webkit-line-clamp: 3;
18579
- }
18580
- .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18581
- align-self: flex-start;
18582
- }.v-badge {
18583
- display: inline-block;
18584
- line-height: 1;
18585
- }
18586
-
18587
- .v-badge__badge {
18588
- align-items: center;
18589
- display: inline-flex;
18590
- border-radius: 10px;
18591
- font-size: 0.75rem;
18592
- font-weight: 500;
18593
- height: 1.25rem;
18594
- justify-content: center;
18595
- min-width: 20px;
18596
- padding: 4px 6px;
18597
- pointer-events: auto;
18598
- position: absolute;
18599
- text-align: center;
18600
- text-indent: 0;
18601
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18602
- white-space: nowrap;
18603
- }
18604
- .v-badge__badge {
18605
- background: rgb(var(--v-theme-surface-variant));
18606
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18607
- }
18608
- .v-badge--bordered .v-badge__badge::after {
18609
- border-radius: inherit;
18610
- border-style: solid;
18611
- border-width: 2px;
18612
- bottom: 0;
18613
- color: rgb(var(--v-theme-background));
18614
- content: "";
18615
- left: 0;
18616
- position: absolute;
18617
- right: 0;
18618
- top: 0;
18619
- transform: scale(1.05);
18620
- }
18621
- .v-badge--dot .v-badge__badge {
18622
- border-radius: 4.5px;
18623
- height: 9px;
18624
- min-width: 0;
18625
- padding: 0;
18626
- width: 9px;
18627
- }
18628
- .v-badge--dot .v-badge__badge::after {
18629
- border-width: 1.5px;
18630
- }
18631
- .v-badge--inline .v-badge__badge {
18632
- position: relative;
18633
- vertical-align: middle;
18634
- }
18635
- .v-badge__badge .v-icon {
18636
- color: inherit;
18637
- font-size: 0.75rem;
18638
- margin: 0 -2px;
18639
- }
18640
- .v-badge__badge img,
18641
- .v-badge__badge .v-img {
18642
- height: 100%;
18643
- width: 100%;
18644
- }
18645
-
18646
- .v-badge__wrapper {
18647
- display: flex;
18648
- position: relative;
18649
- }
18650
- .v-badge--inline .v-badge__wrapper {
18651
- align-items: center;
18652
- display: inline-flex;
18653
- justify-content: center;
18654
- margin: 0 4px;
18655
- }.v-bottom-navigation {
18656
- display: flex;
18657
- max-width: 100%;
18658
- overflow: hidden;
18659
- position: absolute;
18660
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18661
- }
18662
- .v-bottom-navigation {
18663
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18664
- border-style: solid;
18665
- border-width: 0;
18666
- }
18667
- .v-bottom-navigation--border {
18668
- border-width: thin;
18669
- box-shadow: none;
18670
- }
18671
- .v-bottom-navigation {
18672
- border-radius: 0;
18673
- }
18674
- .v-bottom-navigation {
18675
- background: rgb(var(--v-theme-surface));
18676
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18677
- }
18678
- .v-bottom-navigation--active {
18679
- 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));
18680
- }
18681
-
18682
- .v-bottom-navigation__content {
18683
- display: flex;
18684
- flex: none;
18685
- font-size: 0.75rem;
18686
- justify-content: center;
18687
- transition: inherit;
18688
- width: 100%;
18689
- }
18690
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18691
- font-size: inherit;
18692
- height: 100%;
18693
- max-width: 168px;
18694
- min-width: 80px;
18695
- text-transform: none;
18696
- transition: inherit;
18697
- width: auto;
18698
- }
18699
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18700
- border-radius: 0;
18701
- }
18702
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18703
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18704
- transition: inherit;
18599
+ padding-top: 8px;
18600
+ padding-bottom: 8px;
18705
18601
  }
18706
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18707
- font-size: 1.5rem;
18602
+ .v-banner--density-compact.v-banner--three-line {
18603
+ padding-top: 16px;
18604
+ padding-bottom: 8px;
18708
18605
  }
18709
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18710
- flex-grow: 1;
18606
+ .v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
18607
+ margin-top: 12px;
18711
18608
  }
18712
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18713
- transition: inherit;
18714
- opacity: 0;
18609
+
18610
+ .v-banner--sticky {
18611
+ top: 0;
18612
+ z-index: 1;
18715
18613
  }
18716
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18717
- transform: translateY(0.5rem);
18718
- }.bottom-sheet-transition-enter-from {
18719
- transform: translateY(100%);
18614
+
18615
+ .v-banner__content {
18616
+ align-items: center;
18617
+ display: flex;
18618
+ grid-area: content;
18720
18619
  }
18721
- .bottom-sheet-transition-leave-to {
18722
- transform: translateY(100%);
18620
+
18621
+ .v-banner__prepend {
18622
+ align-self: flex-start;
18623
+ grid-area: prepend;
18624
+ margin-inline-end: 24px;
18723
18625
  }
18724
18626
 
18725
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18627
+ .v-banner-actions {
18726
18628
  align-self: flex-end;
18727
- border-radius: 0;
18728
- flex: 0 1 auto;
18729
- left: 0;
18730
- right: 0;
18731
- margin-inline: 0;
18732
- margin-bottom: 0;
18733
- transition-duration: 0.2s;
18734
- width: 100%;
18735
- max-width: 100%;
18736
- overflow: visible;
18629
+ display: flex;
18630
+ flex: 0 1;
18631
+ grid-area: actions;
18632
+ justify-content: flex-end;
18737
18633
  }
18738
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18739
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18634
+ .v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
18635
+ margin-top: 20px;
18740
18636
  }
18741
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18742
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18743
- border-radius: 0;
18637
+
18638
+ .v-banner-text {
18639
+ -webkit-box-orient: vertical;
18640
+ display: -webkit-box;
18641
+ padding-inline-end: 90px;
18642
+ overflow: hidden;
18744
18643
  }
18745
- .v-bottom-sheet.v-bottom-sheet--inset {
18746
- max-width: none;
18644
+ .v-banner--one-line .v-banner-text {
18645
+ -webkit-line-clamp: 1;
18747
18646
  }
18748
- @media (min-width: 600px) {
18749
- .v-bottom-sheet.v-bottom-sheet--inset {
18750
- max-width: 70%;
18751
- }
18647
+ .v-banner--two-line .v-banner-text {
18648
+ -webkit-line-clamp: 2;
18649
+ }
18650
+ .v-banner--three-line .v-banner-text {
18651
+ -webkit-line-clamp: 3;
18652
+ }
18653
+ .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18654
+ align-self: flex-start;
18752
18655
  }.v-breadcrumbs {
18753
18656
  display: flex;
18754
18657
  align-items: center;
@@ -18806,6 +18709,40 @@ html.overflow-y-hidden {
18806
18709
  display: inline-block;
18807
18710
  padding: 0 8px;
18808
18711
  vertical-align: middle;
18712
+ }.bottom-sheet-transition-enter-from {
18713
+ transform: translateY(100%);
18714
+ }
18715
+ .bottom-sheet-transition-leave-to {
18716
+ transform: translateY(100%);
18717
+ }
18718
+
18719
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18720
+ align-self: flex-end;
18721
+ border-radius: 0;
18722
+ flex: 0 1 auto;
18723
+ left: 0;
18724
+ right: 0;
18725
+ margin-inline: 0;
18726
+ margin-bottom: 0;
18727
+ transition-duration: 0.2s;
18728
+ width: 100%;
18729
+ max-width: 100%;
18730
+ overflow: visible;
18731
+ }
18732
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18733
+ 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));
18734
+ }
18735
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18736
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18737
+ border-radius: 0;
18738
+ }
18739
+ .v-bottom-sheet.v-bottom-sheet--inset {
18740
+ max-width: none;
18741
+ }
18742
+ @media (min-width: 600px) {
18743
+ .v-bottom-sheet.v-bottom-sheet--inset {
18744
+ max-width: 70%;
18745
+ }
18809
18746
  }.v-btn {
18810
18747
  align-items: center;
18811
18748
  border-radius: 4px;
@@ -19230,6 +19167,22 @@ html.overflow-y-hidden {
19230
19167
  }
19231
19168
  .v-pagination__item--is-active .v-btn__overlay {
19232
19169
  opacity: var(--v-border-opacity);
19170
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19171
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19172
+ }
19173
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19174
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19175
+ }
19176
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19177
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19178
+ }
19179
+ @supports not selector(:focus-visible) {
19180
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19181
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19182
+ }
19183
+ }
19184
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19185
+ opacity: 1;
19233
19186
  }.v-btn-group {
19234
19187
  display: inline-flex;
19235
19188
  flex-wrap: nowrap;
@@ -19667,24 +19620,6 @@ html.overflow-y-hidden {
19667
19620
  flex-direction: column;
19668
19621
  height: 100% !important;
19669
19622
  width: 50px;
19670
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19671
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19672
- }
19673
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19674
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19675
- }
19676
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19677
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19678
- }
19679
- @supports not selector(:focus-visible) {
19680
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19681
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19682
- }
19683
- }.v-checkbox.v-input {
19684
- flex: 0 1 auto;
19685
- }
19686
- .v-checkbox .v-selection-control {
19687
- min-height: var(--v-input-control-height);
19688
19623
  }.v-chip {
19689
19624
  align-items: center;
19690
19625
  display: inline-flex;
@@ -20103,6 +20038,11 @@ html.overflow-y-hidden {
20103
20038
 
20104
20039
  .v-chip--label {
20105
20040
  border-radius: 4px;
20041
+ }.v-checkbox.v-input {
20042
+ flex: 0 1 auto;
20043
+ }
20044
+ .v-checkbox .v-selection-control {
20045
+ min-height: var(--v-input-control-height);
20106
20046
  }.v-chip-group {
20107
20047
  display: flex;
20108
20048
  max-width: 100%;
@@ -20121,28 +20061,6 @@ html.overflow-y-hidden {
20121
20061
  white-space: normal;
20122
20062
  flex-wrap: wrap;
20123
20063
  max-width: 100%;
20124
- }.v-color-picker {
20125
- align-self: flex-start;
20126
- contain: content;
20127
- }
20128
- .v-color-picker.v-sheet {
20129
- 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));
20130
- }
20131
- .v-color-picker.v-sheet {
20132
- border-radius: 4px;
20133
- }
20134
-
20135
- .v-color-picker__controls {
20136
- display: flex;
20137
- flex-direction: column;
20138
- padding: 16px;
20139
- }
20140
-
20141
- .v-color-picker--flat {
20142
- 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));
20143
- }
20144
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20145
- 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));
20146
20064
  }.v-combobox .v-field .v-text-field__prefix,
20147
20065
  .v-combobox .v-field .v-text-field__suffix,
20148
20066
  .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
@@ -20228,6 +20146,28 @@ html.overflow-y-hidden {
20228
20146
  .v-combobox--active-menu .v-combobox__menu-icon {
20229
20147
  opacity: var(--v-high-emphasis-opacity);
20230
20148
  transform: rotate(180deg);
20149
+ }.v-color-picker {
20150
+ align-self: flex-start;
20151
+ contain: content;
20152
+ }
20153
+ .v-color-picker.v-sheet {
20154
+ 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));
20155
+ }
20156
+ .v-color-picker.v-sheet {
20157
+ border-radius: 4px;
20158
+ }
20159
+
20160
+ .v-color-picker__controls {
20161
+ display: flex;
20162
+ flex-direction: column;
20163
+ padding: 16px;
20164
+ }
20165
+
20166
+ .v-color-picker--flat {
20167
+ box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
20168
+ }
20169
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20170
+ 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));
20231
20171
  }.v-counter {
20232
20172
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20233
20173
  flex: 0 1 auto;
@@ -20451,6 +20391,12 @@ html.overflow-y-hidden {
20451
20391
  }
20452
20392
  .v-data-table-footer__page {
20453
20393
  padding: 0 8px;
20394
+ }.v-date-picker {
20395
+ overflow: hidden;
20396
+ width: 328px;
20397
+ }
20398
+ .v-date-picker--show-week {
20399
+ width: 368px;
20454
20400
  }.v-date-picker-controls {
20455
20401
  display: flex;
20456
20402
  align-items: center;
@@ -20507,12 +20453,6 @@ html.overflow-y-hidden {
20507
20453
 
20508
20454
  .v-date-picker__title {
20509
20455
  display: inline-block;
20510
- }.v-date-picker {
20511
- overflow: hidden;
20512
- width: 328px;
20513
- }
20514
- .v-date-picker--show-week {
20515
- width: 368px;
20516
20456
  }.v-date-picker-month {
20517
20457
  display: flex;
20518
20458
  justify-content: center;
@@ -20628,6 +20568,21 @@ html.overflow-y-hidden {
20628
20568
  .date-picker-header-reverse-transition-leave-to {
20629
20569
  opacity: 0;
20630
20570
  transform: translate(0, 100%);
20571
+ }.v-date-picker-years {
20572
+ height: 288px;
20573
+ overflow-y: scroll;
20574
+ }
20575
+
20576
+ .v-date-picker-years__content {
20577
+ display: grid;
20578
+ flex: 1 1;
20579
+ justify-content: space-around;
20580
+ grid-template-columns: repeat(3, 1fr);
20581
+ gap: 8px 24px;
20582
+ padding-inline: 32px;
20583
+ }
20584
+ .v-date-picker-years__content .v-btn {
20585
+ padding-inline: 8px;
20631
20586
  }.v-date-picker-months {
20632
20587
  height: 288px;
20633
20588
  }
@@ -20647,21 +20602,6 @@ html.overflow-y-hidden {
20647
20602
  text-transform: none;
20648
20603
  padding-inline-start: 8px;
20649
20604
  padding-inline-end: 8px;
20650
- }.v-date-picker-years {
20651
- height: 288px;
20652
- overflow-y: scroll;
20653
- }
20654
-
20655
- .v-date-picker-years__content {
20656
- display: grid;
20657
- flex: 1 1;
20658
- justify-content: space-around;
20659
- grid-template-columns: repeat(3, 1fr);
20660
- gap: 8px 24px;
20661
- padding-inline: 32px;
20662
- }
20663
- .v-date-picker-years__content .v-btn {
20664
- padding-inline: 8px;
20665
20605
  }.v-dialog {
20666
20606
  align-items: center;
20667
20607
  justify-content: center;
@@ -21161,11 +21101,40 @@ html.overflow-y-hidden {
21161
21101
  .v-fab--bottom .v-fab__container {
21162
21102
  bottom: 0;
21163
21103
  }
21164
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21104
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21105
+ left: 0;
21106
+ }
21107
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21108
+ right: 0;
21109
+ }.v-file-input--hide.v-input .v-field,
21110
+ .v-file-input--hide.v-input .v-input__control,
21111
+ .v-file-input--hide.v-input .v-input__details {
21112
+ display: none;
21113
+ }
21114
+ .v-file-input--hide.v-input .v-input__prepend {
21115
+ grid-area: control;
21116
+ margin: 0 auto;
21117
+ }
21118
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21119
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21120
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21121
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21122
+ top: 0px;
21123
+ }
21124
+ .v-file-input input[type=file] {
21125
+ height: 100%;
21165
21126
  left: 0;
21127
+ opacity: 0;
21128
+ position: absolute;
21129
+ top: 0;
21130
+ width: 100%;
21131
+ z-index: 1;
21166
21132
  }
21167
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21168
- right: 0;
21133
+ .v-file-input .v-input__details {
21134
+ padding-inline: 16px;
21135
+ }
21136
+ .v-input--plain-underlined.v-file-input .v-input__details {
21137
+ padding-inline: 0;
21169
21138
  }/* region INPUT */
21170
21139
  .v-field {
21171
21140
  display: grid;
@@ -22457,86 +22426,6 @@ textarea.v-field__input::placeholder {
22457
22426
  .offset-xxl-11 {
22458
22427
  margin-inline-start: 91.6666666667%;
22459
22428
  }
22460
- }.v-file-input--hide.v-input .v-field,
22461
- .v-file-input--hide.v-input .v-input__control,
22462
- .v-file-input--hide.v-input .v-input__details {
22463
- display: none;
22464
- }
22465
- .v-file-input--hide.v-input .v-input__prepend {
22466
- grid-area: control;
22467
- margin: 0 auto;
22468
- }
22469
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22470
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22471
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22472
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22473
- top: 0px;
22474
- }
22475
- .v-file-input input[type=file] {
22476
- height: 100%;
22477
- left: 0;
22478
- opacity: 0;
22479
- position: absolute;
22480
- top: 0;
22481
- width: 100%;
22482
- z-index: 1;
22483
- }
22484
- .v-file-input .v-input__details {
22485
- padding-inline: 16px;
22486
- }
22487
- .v-input--plain-underlined.v-file-input .v-input__details {
22488
- padding-inline: 0;
22489
- }.v-img {
22490
- --v-theme-overlay-multiplier: 3;
22491
- z-index: 0;
22492
- }
22493
- .v-img.v-img--absolute {
22494
- height: 100%;
22495
- left: 0;
22496
- overflow: hidden;
22497
- position: absolute;
22498
- top: 0;
22499
- width: 100%;
22500
- z-index: -1;
22501
- }
22502
- .v-img--booting .v-responsive__sizer {
22503
- transition: none;
22504
- }
22505
- .v-img--rounded {
22506
- border-radius: 4px;
22507
- }
22508
-
22509
- .v-img__img,
22510
- .v-img__picture,
22511
- .v-img__gradient,
22512
- .v-img__placeholder,
22513
- .v-img__error {
22514
- z-index: -1;
22515
- }
22516
- .v-img__img,
22517
- .v-img__picture,
22518
- .v-img__gradient,
22519
- .v-img__placeholder,
22520
- .v-img__error {
22521
- position: absolute;
22522
- top: 0;
22523
- left: 0;
22524
- width: 100%;
22525
- height: 100%;
22526
- }
22527
-
22528
- .v-img__img--preload {
22529
- filter: blur(4px);
22530
- }
22531
- .v-img__img--contain {
22532
- object-fit: contain;
22533
- }
22534
- .v-img__img--cover {
22535
- object-fit: cover;
22536
- }
22537
-
22538
- .v-img__gradient {
22539
- background-repeat: no-repeat;
22540
22429
  }.v-icon {
22541
22430
  --v-icon-size-multiplier: 1;
22542
22431
  align-items: center;
@@ -22590,43 +22479,57 @@ textarea.v-field__input::placeholder {
22590
22479
 
22591
22480
  .v-icon--end {
22592
22481
  margin-inline-start: 8px;
22593
- }.v-infinite-scroll--horizontal {
22594
- display: flex;
22595
- flex-direction: row;
22596
- overflow-x: auto;
22482
+ }.v-img {
22483
+ --v-theme-overlay-multiplier: 3;
22484
+ z-index: 0;
22597
22485
  }
22598
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22486
+ .v-img.v-img--absolute {
22599
22487
  height: 100%;
22600
- width: var(--v-infinite-margin-size, 1px);
22488
+ left: 0;
22489
+ overflow: hidden;
22490
+ position: absolute;
22491
+ top: 0;
22492
+ width: 100%;
22493
+ z-index: -1;
22494
+ }
22495
+ .v-img--booting .v-responsive__sizer {
22496
+ transition: none;
22497
+ }
22498
+ .v-img--rounded {
22499
+ border-radius: 4px;
22601
22500
  }
22602
22501
 
22603
- .v-infinite-scroll--vertical {
22604
- display: flex;
22605
- flex-direction: column;
22606
- overflow-y: auto;
22502
+ .v-img__img,
22503
+ .v-img__picture,
22504
+ .v-img__gradient,
22505
+ .v-img__placeholder,
22506
+ .v-img__error {
22507
+ z-index: -1;
22607
22508
  }
22608
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22609
- height: 1px;
22509
+ .v-img__img,
22510
+ .v-img__picture,
22511
+ .v-img__gradient,
22512
+ .v-img__placeholder,
22513
+ .v-img__error {
22514
+ position: absolute;
22515
+ top: 0;
22516
+ left: 0;
22610
22517
  width: 100%;
22518
+ height: 100%;
22611
22519
  }
22612
22520
 
22613
- .v-infinite-scroll-intersect {
22614
- pointer-events: none;
22615
- margin-top: var(--v-infinite-margin);
22616
- margin-bottom: calc(var(--v-infinite-margin) * -1);
22521
+ .v-img__img--preload {
22522
+ filter: blur(4px);
22617
22523
  }
22618
- .v-infinite-scroll-intersect:nth-child(2) {
22619
- --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22524
+ .v-img__img--contain {
22525
+ object-fit: contain;
22620
22526
  }
22621
- .v-infinite-scroll-intersect:nth-last-child(2) {
22622
- --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22527
+ .v-img__img--cover {
22528
+ object-fit: cover;
22623
22529
  }
22624
22530
 
22625
- .v-infinite-scroll__side {
22626
- align-items: center;
22627
- display: flex;
22628
- justify-content: center;
22629
- padding: 8px;
22531
+ .v-img__gradient {
22532
+ background-repeat: no-repeat;
22630
22533
  }.v-input {
22631
22534
  display: grid;
22632
22535
  flex: 1 1 auto;
@@ -22769,150 +22672,80 @@ textarea.v-field__input::placeholder {
22769
22672
 
22770
22673
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22771
22674
  padding-top: calc(var(--v-input-padding-top) + 0px);
22772
- }.v-item-group {
22773
- flex: 0 1 auto;
22774
- max-width: 100%;
22775
- position: relative;
22776
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22777
- }.v-layout-item {
22778
- position: absolute;
22779
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22780
- }
22781
-
22782
- .v-layout-item--absolute {
22783
- position: absolute;
22784
- }.v-layout {
22785
- --v-scrollbar-offset: 0px;
22675
+ }.v-infinite-scroll--horizontal {
22786
22676
  display: flex;
22787
- flex: 1 1 auto;
22677
+ flex-direction: row;
22678
+ overflow-x: auto;
22788
22679
  }
22789
- .v-layout--full-height {
22790
- --v-scrollbar-offset: inherit;
22680
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22791
22681
  height: 100%;
22792
- }.v-label {
22793
- align-items: center;
22794
- color: inherit;
22795
- display: inline-flex;
22796
- font-size: 1rem;
22797
- letter-spacing: 0.009375em;
22798
- min-width: 0;
22799
- opacity: var(--v-medium-emphasis-opacity);
22800
- overflow: hidden;
22801
- text-overflow: ellipsis;
22802
- white-space: nowrap;
22682
+ width: var(--v-infinite-margin-size, 1px);
22803
22683
  }
22804
22684
 
22805
- .v-label--clickable {
22806
- cursor: pointer;
22807
- }.v-list {
22808
- overflow: auto;
22809
- padding: 8px 0;
22810
- position: relative;
22811
- outline: none;
22812
- }
22813
- .v-list {
22814
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22815
- border-style: solid;
22816
- border-width: 0;
22817
- }
22818
- .v-list--border {
22819
- border-width: thin;
22820
- box-shadow: none;
22821
- }
22822
- .v-list {
22823
- 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));
22824
- }
22825
- .v-list {
22826
- border-radius: 0;
22685
+ .v-infinite-scroll--vertical {
22686
+ display: flex;
22687
+ flex-direction: column;
22688
+ overflow-y: auto;
22827
22689
  }
22828
- .v-list {
22829
- background: rgba(var(--v-theme-surface));
22830
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22690
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22691
+ height: 1px;
22692
+ width: 100%;
22831
22693
  }
22832
- .v-list--disabled {
22694
+
22695
+ .v-infinite-scroll-intersect {
22833
22696
  pointer-events: none;
22834
- -webkit-user-select: none;
22835
- user-select: none;
22836
- }
22837
- .v-list--nav {
22838
- padding-inline: 8px;
22839
- }
22840
- .v-list--rounded {
22841
- border-radius: 4px;
22697
+ margin-top: var(--v-infinite-margin);
22698
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
22842
22699
  }
22843
- .v-list--subheader {
22844
- padding-top: 0;
22700
+ .v-infinite-scroll-intersect:nth-child(2) {
22701
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22845
22702
  }
22846
-
22847
- .v-list-img {
22848
- border-radius: inherit;
22849
- display: flex;
22850
- height: 100%;
22851
- left: 0;
22852
- overflow: hidden;
22853
- position: absolute;
22854
- top: 0;
22855
- width: 100%;
22856
- z-index: -1;
22703
+ .v-infinite-scroll-intersect:nth-last-child(2) {
22704
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22857
22705
  }
22858
22706
 
22859
- .v-list-subheader {
22707
+ .v-infinite-scroll__side {
22860
22708
  align-items: center;
22861
- background: inherit;
22862
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22863
22709
  display: flex;
22864
- font-size: 0.875rem;
22865
- font-weight: 400;
22866
- line-height: 1.375rem;
22867
- padding-inline-end: 16px;
22868
- min-height: 40px;
22869
- transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
22870
- }
22871
- .v-list-subheader__text {
22710
+ justify-content: center;
22711
+ padding: 8px;
22712
+ }.v-item-group {
22713
+ flex: 0 1 auto;
22714
+ max-width: 100%;
22715
+ position: relative;
22716
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22717
+ }.v-label {
22718
+ align-items: center;
22719
+ color: inherit;
22720
+ display: inline-flex;
22721
+ font-size: 1rem;
22722
+ letter-spacing: 0.009375em;
22723
+ min-width: 0;
22724
+ opacity: var(--v-medium-emphasis-opacity);
22872
22725
  overflow: hidden;
22873
22726
  text-overflow: ellipsis;
22874
22727
  white-space: nowrap;
22875
22728
  }
22876
- .v-list--density-default .v-list-subheader {
22877
- min-height: 40px;
22878
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22879
- }
22880
-
22881
- .v-list--density-comfortable .v-list-subheader {
22882
- min-height: 36px;
22883
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22884
- }
22885
-
22886
- .v-list--density-compact .v-list-subheader {
22887
- min-height: 32px;
22888
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
22889
- }
22890
22729
 
22891
- .v-list-subheader--inset {
22892
- --indent-padding: 56px;
22893
- }
22894
- .v-list--nav .v-list-subheader {
22895
- font-size: 0.75rem;
22896
- }
22897
- .v-list-subheader--sticky {
22898
- background: inherit;
22899
- left: 0;
22900
- position: sticky;
22901
- top: 0;
22902
- z-index: 1;
22730
+ .v-label--clickable {
22731
+ cursor: pointer;
22732
+ }.v-layout-item {
22733
+ position: absolute;
22734
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22903
22735
  }
22904
22736
 
22905
- .v-list__overlay {
22906
- background-color: currentColor;
22907
- border-radius: inherit;
22908
- bottom: 0;
22909
- left: 0;
22910
- opacity: 0;
22911
- pointer-events: none;
22737
+ .v-layout-item--absolute {
22912
22738
  position: absolute;
22913
- right: 0;
22914
- top: 0;
22915
- transition: opacity 0.2s ease-in-out;
22739
+ }.v-layout {
22740
+ --v-scrollbar-offset: 0px;
22741
+ display: flex;
22742
+ flex: 1 1 auto;
22743
+ }
22744
+ .v-layout--full-height {
22745
+ --v-scrollbar-offset: inherit;
22746
+ height: 100%;
22747
+ }.v-locale-provider {
22748
+ display: contents;
22916
22749
  }.v-list-item {
22917
22750
  align-items: center;
22918
22751
  display: grid;
@@ -23379,8 +23212,115 @@ textarea.v-field__input::placeholder {
23379
23212
  }
23380
23213
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23381
23214
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23382
- }.v-locale-provider {
23383
- display: contents;
23215
+ }.v-list {
23216
+ overflow: auto;
23217
+ padding: 8px 0;
23218
+ position: relative;
23219
+ outline: none;
23220
+ }
23221
+ .v-list {
23222
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23223
+ border-style: solid;
23224
+ border-width: 0;
23225
+ }
23226
+ .v-list--border {
23227
+ border-width: thin;
23228
+ box-shadow: none;
23229
+ }
23230
+ .v-list {
23231
+ 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));
23232
+ }
23233
+ .v-list {
23234
+ border-radius: 0;
23235
+ }
23236
+ .v-list {
23237
+ background: rgba(var(--v-theme-surface));
23238
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23239
+ }
23240
+ .v-list--disabled {
23241
+ pointer-events: none;
23242
+ -webkit-user-select: none;
23243
+ user-select: none;
23244
+ }
23245
+ .v-list--nav {
23246
+ padding-inline: 8px;
23247
+ }
23248
+ .v-list--rounded {
23249
+ border-radius: 4px;
23250
+ }
23251
+ .v-list--subheader {
23252
+ padding-top: 0;
23253
+ }
23254
+
23255
+ .v-list-img {
23256
+ border-radius: inherit;
23257
+ display: flex;
23258
+ height: 100%;
23259
+ left: 0;
23260
+ overflow: hidden;
23261
+ position: absolute;
23262
+ top: 0;
23263
+ width: 100%;
23264
+ z-index: -1;
23265
+ }
23266
+
23267
+ .v-list-subheader {
23268
+ align-items: center;
23269
+ background: inherit;
23270
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23271
+ display: flex;
23272
+ font-size: 0.875rem;
23273
+ font-weight: 400;
23274
+ line-height: 1.375rem;
23275
+ padding-inline-end: 16px;
23276
+ min-height: 40px;
23277
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
23278
+ }
23279
+ .v-list-subheader__text {
23280
+ overflow: hidden;
23281
+ text-overflow: ellipsis;
23282
+ white-space: nowrap;
23283
+ }
23284
+ .v-list--density-default .v-list-subheader {
23285
+ min-height: 40px;
23286
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23287
+ }
23288
+
23289
+ .v-list--density-comfortable .v-list-subheader {
23290
+ min-height: 36px;
23291
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23292
+ }
23293
+
23294
+ .v-list--density-compact .v-list-subheader {
23295
+ min-height: 32px;
23296
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23297
+ }
23298
+
23299
+ .v-list-subheader--inset {
23300
+ --indent-padding: 56px;
23301
+ }
23302
+ .v-list--nav .v-list-subheader {
23303
+ font-size: 0.75rem;
23304
+ }
23305
+ .v-list-subheader--sticky {
23306
+ background: inherit;
23307
+ left: 0;
23308
+ position: sticky;
23309
+ top: 0;
23310
+ z-index: 1;
23311
+ }
23312
+
23313
+ .v-list__overlay {
23314
+ background-color: currentColor;
23315
+ border-radius: inherit;
23316
+ bottom: 0;
23317
+ left: 0;
23318
+ opacity: 0;
23319
+ pointer-events: none;
23320
+ position: absolute;
23321
+ right: 0;
23322
+ top: 0;
23323
+ transition: opacity 0.2s ease-in-out;
23384
23324
  }.v-main {
23385
23325
  flex: 1 0 auto;
23386
23326
  max-width: 100%;
@@ -23541,83 +23481,19 @@ textarea.v-field__input::placeholder {
23541
23481
  .v-navigation-drawer__scrim {
23542
23482
  position: absolute;
23543
23483
  top: 0;
23544
- left: 0;
23545
- width: 100%;
23546
- height: 100%;
23547
- background: black;
23548
- opacity: 0.2;
23549
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23550
- z-index: 1;
23551
- }
23552
-
23553
- .v-navigation-drawer__prepend,
23554
- .v-navigation-drawer__append {
23555
- flex: none;
23556
- overflow: hidden;
23557
- }.v-otp-input {
23558
- align-items: center;
23559
- display: flex;
23560
- justify-content: center;
23561
- padding: 0.5rem 0;
23562
- position: relative;
23563
- }
23564
- .v-otp-input {
23565
- border-radius: 4px;
23566
- }
23567
- .v-otp-input .v-field {
23568
- height: 100%;
23569
- }
23570
-
23571
- .v-otp-input__divider {
23572
- margin: 0 8px;
23573
- }
23574
-
23575
- .v-otp-input__content {
23576
- align-items: center;
23577
- display: flex;
23578
- gap: 0.5rem;
23579
- height: 64px;
23580
- padding: 0.5rem;
23581
- justify-content: center;
23582
- max-width: 320px;
23583
- position: relative;
23584
- border-radius: inherit;
23585
- }
23586
- .v-otp-input--divided .v-otp-input__content {
23587
- max-width: 360px;
23588
- }
23589
-
23590
- .v-otp-input__field {
23591
- color: inherit;
23592
- font-size: 1.25rem;
23593
- height: 100%;
23594
- outline: none;
23595
- text-align: center;
23596
- width: 100%;
23597
- }
23598
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23599
- -webkit-appearance: none;
23600
- margin: 0;
23601
- }
23602
- .v-otp-input__field[type=number] {
23603
- -moz-appearance: textfield;
23604
- }
23605
-
23606
- .v-otp-input__loader {
23607
- align-items: center;
23608
- display: flex;
23609
- height: 100%;
23610
- justify-content: center;
23484
+ left: 0;
23611
23485
  width: 100%;
23486
+ height: 100%;
23487
+ background: black;
23488
+ opacity: 0.2;
23489
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23490
+ z-index: 1;
23612
23491
  }
23613
- .v-otp-input__loader .v-progress-linear {
23614
- position: absolute;
23615
- }.v-parallax {
23616
- position: relative;
23492
+
23493
+ .v-navigation-drawer__prepend,
23494
+ .v-navigation-drawer__append {
23495
+ flex: none;
23617
23496
  overflow: hidden;
23618
- }
23619
- .v-parallax--active > .v-img__img {
23620
- will-change: transform;
23621
23497
  }.v-overlay-container {
23622
23498
  contain: layout;
23623
23499
  left: 0;
@@ -23681,6 +23557,64 @@ html.v-overlay-scroll-blocked {
23681
23557
 
23682
23558
  .v-overlay--scroll-blocked {
23683
23559
  padding-inline-end: var(--v-scrollbar-offset);
23560
+ }.v-otp-input {
23561
+ align-items: center;
23562
+ display: flex;
23563
+ justify-content: center;
23564
+ padding: 0.5rem 0;
23565
+ position: relative;
23566
+ }
23567
+ .v-otp-input {
23568
+ border-radius: 4px;
23569
+ }
23570
+ .v-otp-input .v-field {
23571
+ height: 100%;
23572
+ }
23573
+
23574
+ .v-otp-input__divider {
23575
+ margin: 0 8px;
23576
+ }
23577
+
23578
+ .v-otp-input__content {
23579
+ align-items: center;
23580
+ display: flex;
23581
+ gap: 0.5rem;
23582
+ height: 64px;
23583
+ padding: 0.5rem;
23584
+ justify-content: center;
23585
+ max-width: 320px;
23586
+ position: relative;
23587
+ border-radius: inherit;
23588
+ }
23589
+ .v-otp-input--divided .v-otp-input__content {
23590
+ max-width: 360px;
23591
+ }
23592
+
23593
+ .v-otp-input__field {
23594
+ color: inherit;
23595
+ font-size: 1.25rem;
23596
+ height: 100%;
23597
+ outline: none;
23598
+ text-align: center;
23599
+ width: 100%;
23600
+ }
23601
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23602
+ -webkit-appearance: none;
23603
+ margin: 0;
23604
+ }
23605
+ .v-otp-input__field[type=number] {
23606
+ -moz-appearance: textfield;
23607
+ }
23608
+
23609
+ .v-otp-input__loader {
23610
+ align-items: center;
23611
+ display: flex;
23612
+ height: 100%;
23613
+ justify-content: center;
23614
+ width: 100%;
23615
+ }
23616
+ .v-otp-input__loader .v-progress-linear {
23617
+ position: absolute;
23684
23618
  }.v-pagination__list {
23685
23619
  display: inline-flex;
23686
23620
  list-style-type: none;
@@ -23689,6 +23623,12 @@ html.v-overlay-scroll-blocked {
23689
23623
  }
23690
23624
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23691
23625
  margin: 0.3rem;
23626
+ }.v-parallax {
23627
+ position: relative;
23628
+ overflow: hidden;
23629
+ }
23630
+ .v-parallax--active > .v-img__img {
23631
+ will-change: transform;
23692
23632
  }.v-progress-circular {
23693
23633
  align-items: center;
23694
23634
  display: inline-flex;
@@ -24084,32 +24024,63 @@ html.v-overlay-scroll-blocked {
24084
24024
  opacity: 0;
24085
24025
  position: absolute;
24086
24026
  width: 0;
24087
- }.v-responsive {
24088
- display: flex;
24089
- flex: 1 0 auto;
24090
- max-height: 100%;
24091
- max-width: 100%;
24092
- overflow: hidden;
24027
+ }.v-slider .v-slider__container input {
24028
+ cursor: default;
24029
+ padding: 0;
24030
+ width: 100%;
24031
+ display: none;
24032
+ }
24033
+ .v-slider > .v-input__append,
24034
+ .v-slider > .v-input__prepend {
24035
+ padding: 0;
24036
+ }
24037
+
24038
+ .v-slider__container {
24093
24039
  position: relative;
24040
+ min-height: inherit;
24041
+ width: 100%;
24042
+ height: 100%;
24043
+ display: flex;
24044
+ justify-content: center;
24045
+ align-items: center;
24046
+ cursor: pointer;
24094
24047
  }
24095
- .v-responsive--inline {
24096
- display: inline-flex;
24097
- flex: 0 0 auto;
24048
+ .v-input--disabled .v-slider__container {
24049
+ opacity: var(--v-disabled-opacity);
24050
+ }
24051
+ .v-input--error:not(.v-input--disabled) .v-slider__container {
24052
+ color: rgb(var(--v-theme-error));
24098
24053
  }
24099
24054
 
24100
- .v-responsive__content {
24101
- flex: 1 0 0px;
24102
- max-width: 100%;
24055
+ .v-slider.v-input--horizontal {
24056
+ align-items: center;
24057
+ margin-inline: 8px 8px;
24058
+ }
24059
+ .v-slider.v-input--horizontal > .v-input__control {
24060
+ min-height: 32px;
24061
+ display: flex;
24062
+ align-items: center;
24103
24063
  }
24104
24064
 
24105
- .v-responsive__sizer ~ .v-responsive__content {
24106
- margin-inline-start: -100%;
24065
+ .v-slider.v-input--vertical {
24066
+ justify-content: center;
24067
+ margin-top: 12px;
24068
+ margin-bottom: 12px;
24069
+ }
24070
+ .v-slider.v-input--vertical > .v-input__control {
24071
+ min-height: 300px;
24107
24072
  }
24108
24073
 
24109
- .v-responsive__sizer {
24110
- flex: 1 0 0px;
24111
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24074
+ .v-slider.v-input--disabled {
24112
24075
  pointer-events: none;
24076
+ }
24077
+
24078
+ .v-slider--has-labels > .v-input__control {
24079
+ margin-bottom: 4px;
24080
+ }
24081
+
24082
+ .v-slider__label {
24083
+ margin-inline-end: 12px;
24113
24084
  }.v-select .v-field .v-text-field__prefix,
24114
24085
  .v-select .v-field .v-text-field__suffix,
24115
24086
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -24162,14 +24133,6 @@ html.v-overlay-scroll-blocked {
24162
24133
  .v-select--active-menu .v-select__menu-icon {
24163
24134
  opacity: var(--v-high-emphasis-opacity);
24164
24135
  transform: rotate(180deg);
24165
- }.v-selection-control-group {
24166
- grid-area: control;
24167
- display: flex;
24168
- flex-direction: column;
24169
- }
24170
- .v-selection-control-group--inline {
24171
- flex-direction: row;
24172
- flex-wrap: wrap;
24173
24136
  }.v-selection-control {
24174
24137
  align-items: center;
24175
24138
  contain: layout;
@@ -24309,61 +24272,14 @@ html.v-overlay-scroll-blocked {
24309
24272
  }
24310
24273
  .v-sheet--rounded {
24311
24274
  border-radius: 4px;
24312
- }.v-slide-group {
24313
- display: flex;
24314
- overflow: hidden;
24315
- }
24316
-
24317
- .v-slide-group__next,
24318
- .v-slide-group__prev {
24319
- align-items: center;
24320
- display: flex;
24321
- flex: 0 1 52px;
24322
- justify-content: center;
24323
- min-width: 52px;
24324
- cursor: pointer;
24325
- }
24326
- .v-slide-group__next--disabled,
24327
- .v-slide-group__prev--disabled {
24328
- pointer-events: none;
24329
- opacity: var(--v-disabled-opacity);
24330
- }
24331
-
24332
- .v-slide-group__content {
24333
- display: flex;
24334
- flex: 1 0 auto;
24335
- position: relative;
24336
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24337
- white-space: nowrap;
24338
- }
24339
- .v-slide-group__content > * {
24340
- white-space: initial;
24341
- }
24342
-
24343
- .v-slide-group__container {
24344
- contain: content;
24275
+ }.v-selection-control-group {
24276
+ grid-area: control;
24345
24277
  display: flex;
24346
- flex: 1 1 auto;
24347
- overflow-x: auto;
24348
- overflow-y: hidden;
24349
- scrollbar-width: none;
24350
- scrollbar-color: rgba(0, 0, 0, 0);
24351
- }
24352
- .v-slide-group__container::-webkit-scrollbar {
24353
- display: none;
24354
- }
24355
-
24356
- .v-slide-group--vertical {
24357
- max-height: inherit;
24358
- }
24359
- .v-slide-group--vertical,
24360
- .v-slide-group--vertical .v-slide-group__container,
24361
- .v-slide-group--vertical .v-slide-group__content {
24362
24278
  flex-direction: column;
24363
24279
  }
24364
- .v-slide-group--vertical .v-slide-group__container {
24365
- overflow-x: hidden;
24366
- overflow-y: auto;
24280
+ .v-selection-control-group--inline {
24281
+ flex-direction: row;
24282
+ flex-wrap: wrap;
24367
24283
  }.v-skeleton-loader {
24368
24284
  align-items: center;
24369
24285
  background: rgb(var(--v-theme-surface));
@@ -24589,63 +24505,61 @@ html.v-overlay-scroll-blocked {
24589
24505
  100% {
24590
24506
  transform: translateX(100%);
24591
24507
  }
24592
- }.v-slider .v-slider__container input {
24593
- cursor: default;
24594
- padding: 0;
24595
- width: 100%;
24596
- display: none;
24597
- }
24598
- .v-slider > .v-input__append,
24599
- .v-slider > .v-input__prepend {
24600
- padding: 0;
24508
+ }.v-slide-group {
24509
+ display: flex;
24510
+ overflow: hidden;
24601
24511
  }
24602
24512
 
24603
- .v-slider__container {
24604
- position: relative;
24605
- min-height: inherit;
24606
- width: 100%;
24607
- height: 100%;
24513
+ .v-slide-group__next,
24514
+ .v-slide-group__prev {
24515
+ align-items: center;
24608
24516
  display: flex;
24517
+ flex: 0 1 52px;
24609
24518
  justify-content: center;
24610
- align-items: center;
24519
+ min-width: 52px;
24611
24520
  cursor: pointer;
24612
24521
  }
24613
- .v-input--disabled .v-slider__container {
24522
+ .v-slide-group__next--disabled,
24523
+ .v-slide-group__prev--disabled {
24524
+ pointer-events: none;
24614
24525
  opacity: var(--v-disabled-opacity);
24615
24526
  }
24616
- .v-input--error:not(.v-input--disabled) .v-slider__container {
24617
- color: rgb(var(--v-theme-error));
24618
- }
24619
24527
 
24620
- .v-slider.v-input--horizontal {
24621
- align-items: center;
24622
- margin-inline: 8px 8px;
24623
- }
24624
- .v-slider.v-input--horizontal > .v-input__control {
24625
- min-height: 32px;
24528
+ .v-slide-group__content {
24626
24529
  display: flex;
24627
- align-items: center;
24530
+ flex: 1 0 auto;
24531
+ position: relative;
24532
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24533
+ white-space: nowrap;
24534
+ }
24535
+ .v-slide-group__content > * {
24536
+ white-space: initial;
24628
24537
  }
24629
24538
 
24630
- .v-slider.v-input--vertical {
24631
- justify-content: center;
24632
- margin-top: 12px;
24633
- margin-bottom: 12px;
24539
+ .v-slide-group__container {
24540
+ contain: content;
24541
+ display: flex;
24542
+ flex: 1 1 auto;
24543
+ overflow-x: auto;
24544
+ overflow-y: hidden;
24545
+ scrollbar-width: none;
24546
+ scrollbar-color: rgba(0, 0, 0, 0);
24634
24547
  }
24635
- .v-slider.v-input--vertical > .v-input__control {
24636
- min-height: 300px;
24548
+ .v-slide-group__container::-webkit-scrollbar {
24549
+ display: none;
24637
24550
  }
24638
24551
 
24639
- .v-slider.v-input--disabled {
24640
- pointer-events: none;
24552
+ .v-slide-group--vertical {
24553
+ max-height: inherit;
24641
24554
  }
24642
-
24643
- .v-slider--has-labels > .v-input__control {
24644
- margin-bottom: 4px;
24555
+ .v-slide-group--vertical,
24556
+ .v-slide-group--vertical .v-slide-group__container,
24557
+ .v-slide-group--vertical .v-slide-group__content {
24558
+ flex-direction: column;
24645
24559
  }
24646
-
24647
- .v-slider__label {
24648
- margin-inline-end: 12px;
24560
+ .v-slide-group--vertical .v-slide-group__container {
24561
+ overflow-x: hidden;
24562
+ overflow-y: auto;
24649
24563
  }.v-snackbar {
24650
24564
  justify-content: center;
24651
24565
  z-index: 10000;
@@ -25184,49 +25098,6 @@ html.v-overlay-scroll-blocked {
25184
25098
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25185
25099
  border-width: 0;
25186
25100
  }
25187
- }.v-system-bar {
25188
- align-items: center;
25189
- display: flex;
25190
- flex: 1 1 auto;
25191
- height: 24px;
25192
- justify-content: flex-end;
25193
- max-width: 100%;
25194
- padding-inline: 8px;
25195
- position: relative;
25196
- text-align: end;
25197
- width: 100%;
25198
- }
25199
- .v-system-bar .v-icon {
25200
- opacity: var(--v-medium-emphasis-opacity);
25201
- }
25202
- .v-system-bar {
25203
- 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));
25204
- }
25205
- .v-system-bar--absolute {
25206
- position: absolute;
25207
- }
25208
- .v-system-bar--fixed {
25209
- position: fixed;
25210
- }
25211
- .v-system-bar {
25212
- background: rgba(var(--v-theme-surface-light));
25213
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25214
- }
25215
- .v-system-bar {
25216
- font-size: 0.75rem;
25217
- font-weight: 400;
25218
- letter-spacing: 0.0333333333em;
25219
- line-height: 1.667;
25220
- text-transform: none;
25221
- }
25222
- .v-system-bar--rounded {
25223
- border-radius: 0;
25224
- }
25225
- .v-system-bar--window {
25226
- height: 32px;
25227
- }
25228
- .v-system-bar:not(.v-system-bar--absolute) {
25229
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25230
25101
  }.v-tabs {
25231
25102
  display: flex;
25232
25103
  height: var(--v-tabs-height);
@@ -25322,7 +25193,117 @@ html.v-overlay-scroll-blocked {
25322
25193
  top: 0;
25323
25194
  height: 100%;
25324
25195
  width: 2px;
25325
- }.v-table {
25196
+ }.v-system-bar {
25197
+ align-items: center;
25198
+ display: flex;
25199
+ flex: 1 1 auto;
25200
+ height: 24px;
25201
+ justify-content: flex-end;
25202
+ max-width: 100%;
25203
+ padding-inline: 8px;
25204
+ position: relative;
25205
+ text-align: end;
25206
+ width: 100%;
25207
+ }
25208
+ .v-system-bar .v-icon {
25209
+ opacity: var(--v-medium-emphasis-opacity);
25210
+ }
25211
+ .v-system-bar {
25212
+ 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));
25213
+ }
25214
+ .v-system-bar--absolute {
25215
+ position: absolute;
25216
+ }
25217
+ .v-system-bar--fixed {
25218
+ position: fixed;
25219
+ }
25220
+ .v-system-bar {
25221
+ background: rgba(var(--v-theme-surface-light));
25222
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25223
+ }
25224
+ .v-system-bar {
25225
+ font-size: 0.75rem;
25226
+ font-weight: 400;
25227
+ letter-spacing: 0.0333333333em;
25228
+ line-height: 1.667;
25229
+ text-transform: none;
25230
+ }
25231
+ .v-system-bar--rounded {
25232
+ border-radius: 0;
25233
+ }
25234
+ .v-system-bar--window {
25235
+ height: 32px;
25236
+ }
25237
+ .v-system-bar:not(.v-system-bar--absolute) {
25238
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25239
+ }/* region BLOCK */
25240
+ .v-text-field input {
25241
+ color: inherit;
25242
+ opacity: 0;
25243
+ flex: 1;
25244
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25245
+ min-width: 0;
25246
+ }
25247
+ .v-text-field input:focus, .v-text-field input:active {
25248
+ outline: none;
25249
+ }
25250
+ .v-text-field input:invalid {
25251
+ box-shadow: none;
25252
+ }
25253
+ .v-text-field .v-field {
25254
+ cursor: text;
25255
+ }
25256
+ .v-text-field--prefixed.v-text-field .v-field__input {
25257
+ --v-field-padding-start: 6px;
25258
+ }
25259
+
25260
+ .v-text-field--suffixed.v-text-field .v-field__input {
25261
+ --v-field-padding-end: 0;
25262
+ }
25263
+
25264
+ .v-text-field .v-input__details {
25265
+ padding-inline: 16px;
25266
+ }
25267
+ .v-input--plain-underlined.v-text-field .v-input__details {
25268
+ padding-inline: 0;
25269
+ }
25270
+
25271
+ .v-text-field .v-field--no-label input,
25272
+ .v-text-field .v-field--active input {
25273
+ opacity: 1;
25274
+ }
25275
+ .v-text-field .v-field--single-line input {
25276
+ transition: none;
25277
+ }
25278
+
25279
+ /* endregion */
25280
+ /* region ELEMENTS */
25281
+ .v-text-field__prefix, .v-text-field__suffix {
25282
+ align-items: center;
25283
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
25284
+ cursor: default;
25285
+ display: flex;
25286
+ opacity: 0;
25287
+ transition: inherit;
25288
+ white-space: nowrap;
25289
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
25290
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
25291
+ padding-bottom: var(--v-field-padding-bottom, 6px);
25292
+ }
25293
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
25294
+ opacity: 1;
25295
+ }
25296
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
25297
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
25298
+ }
25299
+ .v-text-field__prefix {
25300
+ padding-inline-start: var(--v-field-padding-start);
25301
+ }
25302
+ .v-text-field__suffix {
25303
+ padding-inline-end: var(--v-field-padding-end);
25304
+ }
25305
+
25306
+ /* endregion */.v-table {
25326
25307
  font-size: 0.875rem;
25327
25308
  transition-duration: 0.28s;
25328
25309
  transition-property: box-shadow, opacity, background, height;
@@ -25424,114 +25405,47 @@ html.v-overlay-scroll-blocked {
25424
25405
  }
25425
25406
 
25426
25407
  .v-table__wrapper {
25427
- border-radius: inherit;
25428
- overflow: auto;
25429
- flex: 1 1 auto;
25430
- }
25431
-
25432
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25433
- border-top-left-radius: 0;
25434
- }
25435
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25436
- border-top-right-radius: 0;
25437
- }
25438
-
25439
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25440
- border-bottom-left-radius: 0;
25441
- }
25442
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25443
- border-bottom-right-radius: 0;
25444
- }
25445
-
25446
- .v-table--fixed-height > .v-table__wrapper {
25447
- overflow-y: auto;
25448
- }
25449
-
25450
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25451
- position: sticky;
25452
- top: 0;
25453
- z-index: 2;
25454
- }
25455
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25456
- border-bottom: 0px !important;
25457
- }
25458
-
25459
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25460
- position: sticky;
25461
- bottom: 0;
25462
- z-index: 1;
25463
- }
25464
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25465
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25466
- border-top: 0px !important;
25467
- }/* region BLOCK */
25468
- .v-text-field input {
25469
- color: inherit;
25470
- opacity: 0;
25471
- flex: 1;
25472
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25473
- min-width: 0;
25474
- }
25475
- .v-text-field input:focus, .v-text-field input:active {
25476
- outline: none;
25477
- }
25478
- .v-text-field input:invalid {
25479
- box-shadow: none;
25480
- }
25481
- .v-text-field .v-field {
25482
- cursor: text;
25483
- }
25484
- .v-text-field--prefixed.v-text-field .v-field__input {
25485
- --v-field-padding-start: 6px;
25486
- }
25487
-
25488
- .v-text-field--suffixed.v-text-field .v-field__input {
25489
- --v-field-padding-end: 0;
25490
- }
25491
-
25492
- .v-text-field .v-input__details {
25493
- padding-inline: 16px;
25494
- }
25495
- .v-input--plain-underlined.v-text-field .v-input__details {
25496
- padding-inline: 0;
25408
+ border-radius: inherit;
25409
+ overflow: auto;
25410
+ flex: 1 1 auto;
25497
25411
  }
25498
25412
 
25499
- .v-text-field .v-field--no-label input,
25500
- .v-text-field .v-field--active input {
25501
- opacity: 1;
25413
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25414
+ border-top-left-radius: 0;
25502
25415
  }
25503
- .v-text-field .v-field--single-line input {
25504
- transition: none;
25416
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25417
+ border-top-right-radius: 0;
25505
25418
  }
25506
25419
 
25507
- /* endregion */
25508
- /* region ELEMENTS */
25509
- .v-text-field__prefix, .v-text-field__suffix {
25510
- align-items: center;
25511
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
25512
- cursor: default;
25513
- display: flex;
25514
- opacity: 0;
25515
- transition: inherit;
25516
- white-space: nowrap;
25517
- min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
25518
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
25519
- padding-bottom: var(--v-field-padding-bottom, 6px);
25420
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25421
+ border-bottom-left-radius: 0;
25520
25422
  }
25521
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
25522
- opacity: 1;
25423
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25424
+ border-bottom-right-radius: 0;
25523
25425
  }
25524
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
25525
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
25426
+
25427
+ .v-table--fixed-height > .v-table__wrapper {
25428
+ overflow-y: auto;
25526
25429
  }
25527
- .v-text-field__prefix {
25528
- padding-inline-start: var(--v-field-padding-start);
25430
+
25431
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25432
+ position: sticky;
25433
+ top: 0;
25434
+ z-index: 2;
25529
25435
  }
25530
- .v-text-field__suffix {
25531
- padding-inline-end: var(--v-field-padding-end);
25436
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25437
+ border-bottom: 0px !important;
25532
25438
  }
25533
25439
 
25534
- /* endregion */.v-textarea .v-field {
25440
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25441
+ position: sticky;
25442
+ bottom: 0;
25443
+ z-index: 1;
25444
+ }
25445
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25446
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25447
+ border-top: 0px !important;
25448
+ }.v-textarea .v-field {
25535
25449
  --v-textarea-control-height: var(--v-input-control-height);
25536
25450
  }
25537
25451
  .v-textarea .v-field__field {
@@ -25991,6 +25905,37 @@ html.v-overlay-scroll-blocked {
25991
25905
 
25992
25906
  .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 {
25993
25907
  padding-inline-end: 0;
25908
+ }.v-virtual-scroll {
25909
+ display: block;
25910
+ flex: 1 1 auto;
25911
+ max-width: 100%;
25912
+ overflow: auto;
25913
+ position: relative;
25914
+ }
25915
+ .v-virtual-scroll__container {
25916
+ display: block;
25917
+ }.v-tooltip > .v-overlay__content {
25918
+ background: rgb(var(--v-theme-surface-variant));
25919
+ color: rgb(var(--v-theme-on-surface-variant));
25920
+ border-radius: 4px;
25921
+ font-size: 0.875rem;
25922
+ line-height: 1.6;
25923
+ display: inline-block;
25924
+ padding: 5px 16px;
25925
+ text-transform: initial;
25926
+ width: auto;
25927
+ opacity: 1;
25928
+ pointer-events: none;
25929
+ transition-property: opacity, transform;
25930
+ overflow-wrap: break-word;
25931
+ }
25932
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
25933
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25934
+ transition-duration: 150ms;
25935
+ }
25936
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
25937
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
25938
+ transition-duration: 75ms;
25994
25939
  }.v-toolbar {
25995
25940
  align-items: flex-start;
25996
25941
  display: flex;
@@ -26134,28 +26079,6 @@ html.v-overlay-scroll-blocked {
26134
26079
  }
26135
26080
  .v-toolbar-items > .v-btn {
26136
26081
  border-radius: 0;
26137
- }.v-tooltip > .v-overlay__content {
26138
- background: rgb(var(--v-theme-surface-variant));
26139
- color: rgb(var(--v-theme-on-surface-variant));
26140
- border-radius: 4px;
26141
- font-size: 0.875rem;
26142
- line-height: 1.6;
26143
- display: inline-block;
26144
- padding: 5px 16px;
26145
- text-transform: initial;
26146
- width: auto;
26147
- opacity: 1;
26148
- pointer-events: none;
26149
- transition-property: opacity, transform;
26150
- overflow-wrap: break-word;
26151
- }
26152
- .v-tooltip > .v-overlay__content[class*=enter-active] {
26153
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
26154
- transition-duration: 150ms;
26155
- }
26156
- .v-tooltip > .v-overlay__content[class*=leave-active] {
26157
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26158
- transition-duration: 75ms;
26159
26082
  }.v-window {
26160
26083
  overflow: hidden;
26161
26084
  }
@@ -26226,15 +26149,123 @@ html.v-overlay-scroll-blocked {
26226
26149
  }
26227
26150
  .v-window-y-reverse-transition-leave-to {
26228
26151
  transform: translateY(100%);
26229
- }.v-virtual-scroll {
26230
- display: block;
26231
- flex: 1 1 auto;
26152
+ }.v-responsive {
26153
+ display: flex;
26154
+ flex: 1 0 auto;
26155
+ max-height: 100%;
26232
26156
  max-width: 100%;
26233
- overflow: auto;
26157
+ overflow: hidden;
26234
26158
  position: relative;
26235
26159
  }
26236
- .v-virtual-scroll__container {
26237
- display: block;
26160
+ .v-responsive--inline {
26161
+ display: inline-flex;
26162
+ flex: 0 0 auto;
26163
+ }
26164
+
26165
+ .v-responsive__content {
26166
+ flex: 1 0 0px;
26167
+ max-width: 100%;
26168
+ }
26169
+
26170
+ .v-responsive__sizer ~ .v-responsive__content {
26171
+ margin-inline-start: -100%;
26172
+ }
26173
+
26174
+ .v-responsive__sizer {
26175
+ flex: 1 0 0px;
26176
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26177
+ pointer-events: none;
26178
+ }.v-bottom-navigation {
26179
+ display: flex;
26180
+ max-width: 100%;
26181
+ overflow: hidden;
26182
+ position: absolute;
26183
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
26184
+ }
26185
+ .v-bottom-navigation {
26186
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26187
+ border-style: solid;
26188
+ border-width: 0;
26189
+ }
26190
+ .v-bottom-navigation--border {
26191
+ border-width: thin;
26192
+ box-shadow: none;
26193
+ }
26194
+ .v-bottom-navigation {
26195
+ border-radius: 0;
26196
+ }
26197
+ .v-bottom-navigation {
26198
+ background: rgb(var(--v-theme-surface));
26199
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
26200
+ }
26201
+ .v-bottom-navigation--active {
26202
+ 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));
26203
+ }
26204
+
26205
+ .v-bottom-navigation__content {
26206
+ display: flex;
26207
+ flex: none;
26208
+ font-size: 0.75rem;
26209
+ justify-content: center;
26210
+ transition: inherit;
26211
+ width: 100%;
26212
+ }
26213
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
26214
+ font-size: inherit;
26215
+ height: 100%;
26216
+ max-width: 168px;
26217
+ min-width: 80px;
26218
+ text-transform: none;
26219
+ transition: inherit;
26220
+ width: auto;
26221
+ }
26222
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
26223
+ border-radius: 0;
26224
+ }
26225
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
26226
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
26227
+ transition: inherit;
26228
+ }
26229
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
26230
+ font-size: 1.5rem;
26231
+ }
26232
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
26233
+ flex-grow: 1;
26234
+ }
26235
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
26236
+ transition: inherit;
26237
+ opacity: 0;
26238
+ }
26239
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
26240
+ transform: translateY(0.5rem);
26241
+ }.v-color-picker-edit {
26242
+ display: flex;
26243
+ margin-top: 24px;
26244
+ }
26245
+
26246
+ .v-color-picker-edit__input {
26247
+ width: 100%;
26248
+ display: flex;
26249
+ flex-wrap: wrap;
26250
+ justify-content: center;
26251
+ text-align: center;
26252
+ }
26253
+ .v-color-picker-edit__input:not(:last-child) {
26254
+ margin-inline-end: 8px;
26255
+ }
26256
+ .v-color-picker-edit__input input {
26257
+ border-radius: 4px;
26258
+ margin-bottom: 8px;
26259
+ min-width: 0;
26260
+ outline: none;
26261
+ text-align: center;
26262
+ width: 100%;
26263
+ height: 32px;
26264
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26265
+ color: rgba(var(--v-theme-on-surface));
26266
+ }
26267
+ .v-color-picker-edit__input span {
26268
+ font-size: 0.75rem;
26238
26269
  }.v-color-picker-canvas {
26239
26270
  display: flex;
26240
26271
  position: relative;
@@ -26327,34 +26358,6 @@ html.v-overlay-scroll-blocked {
26327
26358
  .v-color-picker-preview__eye-dropper {
26328
26359
  position: relative;
26329
26360
  margin-right: 12px;
26330
- }.v-color-picker-edit {
26331
- display: flex;
26332
- margin-top: 24px;
26333
- }
26334
-
26335
- .v-color-picker-edit__input {
26336
- width: 100%;
26337
- display: flex;
26338
- flex-wrap: wrap;
26339
- justify-content: center;
26340
- text-align: center;
26341
- }
26342
- .v-color-picker-edit__input:not(:last-child) {
26343
- margin-inline-end: 8px;
26344
- }
26345
- .v-color-picker-edit__input input {
26346
- border-radius: 4px;
26347
- margin-bottom: 8px;
26348
- min-width: 0;
26349
- outline: none;
26350
- text-align: center;
26351
- width: 100%;
26352
- height: 32px;
26353
- background: rgba(var(--v-theme-surface-variant), 0.2);
26354
- color: rgba(var(--v-theme-on-surface));
26355
- }
26356
- .v-color-picker-edit__input span {
26357
- font-size: 0.75rem;
26358
26361
  }.v-color-picker-swatches {
26359
26362
  overflow-y: auto;
26360
26363
  }