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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.0-master.2024-08-26
2
+ * Vuetify v3.7.1-dev.2024-08-28
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17978,6 +17978,95 @@ html.overflow-y-hidden {
17978
17978
  }
17979
17979
  .v-kbd {
17980
17980
  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));
17981
+ }.v-picker.v-sheet {
17982
+ display: grid;
17983
+ grid-auto-rows: min-content;
17984
+ grid-template-areas: "title" "header" "body";
17985
+ overflow: hidden;
17986
+ }
17987
+ .v-picker.v-sheet {
17988
+ 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));
17989
+ }
17990
+ .v-picker.v-sheet {
17991
+ border-radius: 4px;
17992
+ }
17993
+ .v-picker.v-sheet.v-picker--with-actions {
17994
+ grid-template-areas: "title" "header" "body" "actions";
17995
+ }
17996
+
17997
+ .v-picker__body {
17998
+ grid-area: body;
17999
+ overflow: hidden;
18000
+ position: relative;
18001
+ }
18002
+
18003
+ .v-picker__header {
18004
+ grid-area: header;
18005
+ }
18006
+
18007
+ .v-picker__actions {
18008
+ grid-area: actions;
18009
+ padding: 0 12px 12px;
18010
+ display: flex;
18011
+ align-items: center;
18012
+ justify-content: flex-end;
18013
+ }
18014
+ .v-picker__actions .v-btn {
18015
+ min-width: 48px;
18016
+ }
18017
+ .v-picker__actions .v-btn:not(:last-child) {
18018
+ margin-inline-end: 8px;
18019
+ }
18020
+
18021
+ .v-picker--landscape {
18022
+ grid-template-areas: "title" "header body" "header body";
18023
+ }
18024
+
18025
+ .v-picker--landscape.v-picker--with-actions {
18026
+ grid-template-areas: "title" "header body" "header actions";
18027
+ }
18028
+
18029
+ .v-picker-title {
18030
+ text-transform: uppercase;
18031
+ font-size: 0.75rem;
18032
+ grid-area: title;
18033
+ padding-inline: 24px 12px;
18034
+ padding-top: 16px;
18035
+ padding-bottom: 16px;
18036
+ font-weight: 400;
18037
+ letter-spacing: 0.1666666667em;
18038
+ }.v-calendar-day {
18039
+ position: relative;
18040
+ display: flex;
18041
+ flex-direction: column;
18042
+ }
18043
+
18044
+ .v-calendar-weekly .v-calendar__container {
18045
+ display: grid;
18046
+ }
18047
+ .v-calendar-weekly .v-calendar__container.days__7 {
18048
+ grid-template-columns: repeat(7, 1fr);
18049
+ }
18050
+ .v-calendar-weekly .v-calendar__container.days__6 {
18051
+ grid-template-columns: repeat(6, 1fr);
18052
+ }
18053
+ .v-calendar-weekly .v-calendar__container.days__5 {
18054
+ grid-template-columns: repeat(5, 1fr);
18055
+ }
18056
+ .v-calendar-weekly .v-calendar__container.days__4 {
18057
+ grid-template-columns: repeat(4, 1fr);
18058
+ }
18059
+ .v-calendar-weekly .v-calendar__container.days__3 {
18060
+ grid-template-columns: repeat(3, 1fr);
18061
+ }
18062
+ .v-calendar-weekly .v-calendar__container.days__2 {
18063
+ grid-template-columns: repeat(2, 1fr);
18064
+ }
18065
+ .v-calendar-weekly .v-calendar__container.days__1 {
18066
+ grid-template-columns: repeat(1, 1fr);
18067
+ }
18068
+ .v-calendar-weekly .v-calendar__container.days__0 {
18069
+ grid-template-columns: repeat(1, 1fr);
17981
18070
  }.v-calendar {
17982
18071
  background: rgb(var(--v-theme-background));
17983
18072
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
@@ -18205,63 +18294,6 @@ html.overflow-y-hidden {
18205
18294
  }
18206
18295
  .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
18207
18296
  border-right: none;
18208
- }.v-picker.v-sheet {
18209
- display: grid;
18210
- grid-auto-rows: min-content;
18211
- grid-template-areas: "title" "header" "body";
18212
- overflow: hidden;
18213
- }
18214
- .v-picker.v-sheet {
18215
- 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));
18216
- }
18217
- .v-picker.v-sheet {
18218
- border-radius: 4px;
18219
- }
18220
- .v-picker.v-sheet.v-picker--with-actions {
18221
- grid-template-areas: "title" "header" "body" "actions";
18222
- }
18223
-
18224
- .v-picker__body {
18225
- grid-area: body;
18226
- overflow: hidden;
18227
- position: relative;
18228
- }
18229
-
18230
- .v-picker__header {
18231
- grid-area: header;
18232
- }
18233
-
18234
- .v-picker__actions {
18235
- grid-area: actions;
18236
- padding: 0 12px 12px;
18237
- display: flex;
18238
- align-items: center;
18239
- justify-content: flex-end;
18240
- }
18241
- .v-picker__actions .v-btn {
18242
- min-width: 48px;
18243
- }
18244
- .v-picker__actions .v-btn:not(:last-child) {
18245
- margin-inline-end: 8px;
18246
- }
18247
-
18248
- .v-picker--landscape {
18249
- grid-template-areas: "title" "header body" "header body";
18250
- }
18251
-
18252
- .v-picker--landscape.v-picker--with-actions {
18253
- grid-template-areas: "title" "header body" "header actions";
18254
- }
18255
-
18256
- .v-picker-title {
18257
- text-transform: uppercase;
18258
- font-size: 0.75rem;
18259
- grid-area: title;
18260
- padding-inline: 24px 12px;
18261
- padding-top: 16px;
18262
- padding-bottom: 16px;
18263
- font-weight: 400;
18264
- letter-spacing: 0.1666666667em;
18265
18297
  }.v-calendar-header {
18266
18298
  align-items: center;
18267
18299
  display: flex;
@@ -18275,38 +18307,6 @@ html.overflow-y-hidden {
18275
18307
  .v-calendar-header__title {
18276
18308
  font-size: 1.5rem;
18277
18309
  margin-inline-start: 24px;
18278
- }.v-calendar-day {
18279
- position: relative;
18280
- display: flex;
18281
- flex-direction: column;
18282
- }
18283
-
18284
- .v-calendar-weekly .v-calendar__container {
18285
- display: grid;
18286
- }
18287
- .v-calendar-weekly .v-calendar__container.days__7 {
18288
- grid-template-columns: repeat(7, 1fr);
18289
- }
18290
- .v-calendar-weekly .v-calendar__container.days__6 {
18291
- grid-template-columns: repeat(6, 1fr);
18292
- }
18293
- .v-calendar-weekly .v-calendar__container.days__5 {
18294
- grid-template-columns: repeat(5, 1fr);
18295
- }
18296
- .v-calendar-weekly .v-calendar__container.days__4 {
18297
- grid-template-columns: repeat(4, 1fr);
18298
- }
18299
- .v-calendar-weekly .v-calendar__container.days__3 {
18300
- grid-template-columns: repeat(3, 1fr);
18301
- }
18302
- .v-calendar-weekly .v-calendar__container.days__2 {
18303
- grid-template-columns: repeat(2, 1fr);
18304
- }
18305
- .v-calendar-weekly .v-calendar__container.days__1 {
18306
- grid-template-columns: repeat(1, 1fr);
18307
- }
18308
- .v-calendar-weekly .v-calendar__container.days__0 {
18309
- grid-template-columns: repeat(1, 1fr);
18310
18310
  }.v-calendar-day__row-with-label {
18311
18311
  display: grid;
18312
18312
  grid-template-columns: 48px 8px 1fr;
@@ -18455,6 +18455,32 @@ html.overflow-y-hidden {
18455
18455
  .v-number-input__control .v-btn {
18456
18456
  background-color: transparent;
18457
18457
  border-radius: 0;
18458
+ }.v-pull-to-refresh {
18459
+ overflow: hidden;
18460
+ position: relative;
18461
+ }
18462
+ .v-pull-to-refresh__pull-down {
18463
+ position: absolute;
18464
+ width: 100%;
18465
+ transition: top 0.3s ease-out;
18466
+ }
18467
+ .v-pull-to-refresh__pull-down--touching {
18468
+ transition: none;
18469
+ }
18470
+ .v-pull-to-refresh__pull-down-default {
18471
+ display: flex;
18472
+ width: 100%;
18473
+ height: 100%;
18474
+ justify-content: center;
18475
+ align-items: flex-end;
18476
+ padding-bottom: 10px;
18477
+ }
18478
+ .v-pull-to-refresh__scroll-container {
18479
+ position: relative;
18480
+ transition: top 0.3s ease-out;
18481
+ }
18482
+ .v-pull-to-refresh__scroll-container--touching {
18483
+ transition: none;
18458
18484
  }.v-stepper-vertical-item {
18459
18485
  position: relative;
18460
18486
  transition-duration: 0.2s;
@@ -18523,48 +18549,116 @@ html.overflow-y-hidden {
18523
18549
  justify-content: flex-end;
18524
18550
  padding: 24px 0 0;
18525
18551
  flex-direction: row-reverse;
18526
- }.v-treeview-item.v-treeview-item--filtered {
18527
- display: none;
18552
+ }.v-time-picker.v-picker {
18553
+ padding: 24px;
18554
+ width: 328px;
18528
18555
  }
18529
-
18530
- .v-treeview {
18531
- --indent-padding: 0px;
18556
+ .v-time-picker.v-picker .v-picker-title {
18557
+ padding: 0;
18558
+ margin-bottom: 20px;
18559
+ }.v-time-picker-controls {
18560
+ display: flex;
18561
+ align-items: center;
18562
+ justify-content: center;
18563
+ font-size: 0.875rem;
18564
+ padding-top: 4px;
18565
+ padding-bottom: 4px;
18566
+ margin-bottom: 36px;
18532
18567
  }
18533
-
18534
- .v-treeview-group.v-list-group {
18535
- --list-indent-size: 16px;
18568
+ .v-time-picker-controls__text {
18569
+ padding-bottom: 12px;
18536
18570
  }
18537
- .v-list--slim .v-treeview-group.v-list-group {
18538
- --prepend-width: 16px;
18571
+ .v-time-picker-controls__time {
18572
+ display: flex;
18573
+ white-space: nowrap;
18574
+ direction: ltr;
18575
+ justify-content: center;
18539
18576
  }
18540
- .v-treeview-group.v-list-group .v-list-group__items .v-list-item {
18541
- padding-inline-start: calc(12px + var(--indent-padding)) !important;
18542
- }.v-pull-to-refresh {
18543
- overflow: hidden;
18544
- position: relative;
18577
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
18578
+ width: 96px;
18579
+ height: 80px;
18580
+ font-size: 56px;
18545
18581
  }
18546
- .v-pull-to-refresh__pull-down {
18547
- position: absolute;
18548
- width: 100%;
18549
- transition: top 0.3s ease-out;
18582
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
18583
+ background: rgb(var(--v-theme-primary));
18550
18584
  }
18551
- .v-pull-to-refresh__pull-down--touching {
18552
- transition: none;
18585
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
18586
+ width: 96px;
18587
+ height: 80px;
18553
18588
  }
18554
- .v-pull-to-refresh__pull-down-default {
18589
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
18590
+ width: 64px;
18591
+ height: 80px;
18592
+ font-size: 40px;
18593
+ }
18594
+ .v-time-picker-controls__time__separator {
18595
+ font-size: 56px;
18596
+ height: 80px;
18597
+ width: 24px;
18598
+ text-align: center;
18599
+ }
18600
+ .v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
18601
+ height: 80px;
18602
+ font-size: 56px;
18603
+ }
18604
+
18605
+ .v-time-picker-controls__ampm {
18606
+ margin-left: 12px;
18607
+ align-self: flex-end;
18555
18608
  display: flex;
18556
- width: 100%;
18557
- height: 100%;
18609
+ flex-direction: column;
18610
+ font-size: 18px;
18611
+ text-transform: uppercase;
18612
+ }
18613
+ .v-time-picker-controls__ampm--readonly {
18614
+ pointer-events: none;
18615
+ }
18616
+ .v-time-picker-controls__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {
18617
+ opacity: 0.6;
18618
+ }
18619
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
18620
+ font-size: 18px;
18621
+ padding: 0 8px;
18622
+ min-width: 52px;
18623
+ height: 40px;
18624
+ }
18625
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__am {
18626
+ border-radius: 4px 4px 0 0;
18627
+ border: 1px solid;
18628
+ }
18629
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__pm {
18630
+ border-radius: 0 0 4px 4px;
18631
+ border: 1px solid;
18632
+ border-top: none;
18633
+ }
18634
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default__active {
18635
+ background: rgb(var(--v-theme-primary));
18636
+ }
18637
+
18638
+ .v-picker__title--landscape .v-time-picker-controls {
18639
+ flex-direction: column;
18558
18640
  justify-content: center;
18559
- align-items: flex-end;
18560
- padding-bottom: 10px;
18641
+ height: 100%;
18561
18642
  }
18562
- .v-pull-to-refresh__scroll-container {
18563
- position: relative;
18564
- transition: top 0.3s ease-out;
18643
+ .v-picker__title--landscape .v-time-picker-controls__time {
18644
+ text-align: right;
18565
18645
  }
18566
- .v-pull-to-refresh__scroll-container--touching {
18567
- transition: none;
18646
+ .v-picker__title--landscape .v-time-picker-controls__time .v-picker__title__btn,
18647
+ .v-picker__title--landscape .v-time-picker-controls__time span {
18648
+ height: 55px;
18649
+ font-size: 55px;
18650
+ }
18651
+ .v-picker__title--landscape .v-time-picker-controls__ampm {
18652
+ margin: 16px 0 0;
18653
+ align-self: initial;
18654
+ text-align: center;
18655
+ }
18656
+
18657
+ .v-picker--time .v-picker__title--landscape {
18658
+ padding: 0;
18659
+ }
18660
+ .v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
18661
+ text-align: center;
18568
18662
  }.v-time-picker-clock {
18569
18663
  background: rgb(var(--v-theme-background));
18570
18664
  color: rgb(var(--v-theme-on-background));
@@ -18696,132 +18790,22 @@ html.overflow-y-hidden {
18696
18790
 
18697
18791
  .v-picker--landscape .v-time-picker-clock__container {
18698
18792
  flex-direction: row;
18699
- }.v-time-picker.v-picker {
18700
- padding: 24px;
18701
- width: 328px;
18702
- }
18703
- .v-time-picker.v-picker .v-picker-title {
18704
- padding: 0;
18705
- margin-bottom: 20px;
18706
- }.v-time-picker-controls {
18707
- display: flex;
18708
- align-items: center;
18709
- justify-content: center;
18710
- font-size: 0.875rem;
18711
- padding-top: 4px;
18712
- padding-bottom: 4px;
18713
- margin-bottom: 36px;
18714
- }
18715
- .v-time-picker-controls__text {
18716
- padding-bottom: 12px;
18717
- }
18718
- .v-time-picker-controls__time {
18719
- display: flex;
18720
- white-space: nowrap;
18721
- direction: ltr;
18722
- justify-content: center;
18723
- }
18724
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
18725
- width: 96px;
18726
- height: 80px;
18727
- font-size: 56px;
18728
- }
18729
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
18730
- background: rgb(var(--v-theme-primary));
18731
- }
18732
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
18733
- width: 96px;
18734
- height: 80px;
18735
- }
18736
- .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
18737
- width: 64px;
18738
- height: 80px;
18739
- font-size: 40px;
18740
- }
18741
- .v-time-picker-controls__time__separator {
18742
- font-size: 56px;
18743
- height: 80px;
18744
- width: 24px;
18745
- text-align: center;
18746
- }
18747
- .v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
18748
- height: 80px;
18749
- font-size: 56px;
18750
- }
18751
-
18752
- .v-time-picker-controls__ampm {
18753
- margin-left: 12px;
18754
- align-self: flex-end;
18755
- display: flex;
18756
- flex-direction: column;
18757
- font-size: 18px;
18758
- text-transform: uppercase;
18759
- }
18760
- .v-time-picker-controls__ampm--readonly {
18761
- pointer-events: none;
18762
- }
18763
- .v-time-picker-controls__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {
18764
- opacity: 0.6;
18765
- }
18766
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
18767
- font-size: 18px;
18768
- padding: 0 8px;
18769
- min-width: 52px;
18770
- height: 40px;
18771
- }
18772
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__am {
18773
- border-radius: 4px 4px 0 0;
18774
- border: 1px solid;
18775
- }
18776
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__pm {
18777
- border-radius: 0 0 4px 4px;
18778
- border: 1px solid;
18779
- border-top: none;
18780
- }
18781
- .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default__active {
18782
- background: rgb(var(--v-theme-primary));
18793
+ }.v-treeview-item.v-treeview-item--filtered {
18794
+ display: none;
18783
18795
  }
18784
18796
 
18785
- .v-picker__title--landscape .v-time-picker-controls {
18786
- flex-direction: column;
18787
- justify-content: center;
18788
- height: 100%;
18789
- }
18790
- .v-picker__title--landscape .v-time-picker-controls__time {
18791
- text-align: right;
18792
- }
18793
- .v-picker__title--landscape .v-time-picker-controls__time .v-picker__title__btn,
18794
- .v-picker__title--landscape .v-time-picker-controls__time span {
18795
- height: 55px;
18796
- font-size: 55px;
18797
- }
18798
- .v-picker__title--landscape .v-time-picker-controls__ampm {
18799
- margin: 16px 0 0;
18800
- align-self: initial;
18801
- text-align: center;
18797
+ .v-treeview {
18798
+ --indent-padding: 0px;
18802
18799
  }
18803
18800
 
18804
- .v-picker--time .v-picker__title--landscape {
18805
- padding: 0;
18801
+ .v-treeview-group.v-list-group {
18802
+ --list-indent-size: 16px;
18806
18803
  }
18807
- .v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
18808
- text-align: center;
18809
- }.v-application {
18810
- display: flex;
18811
- background: rgb(var(--v-theme-background));
18812
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18804
+ .v-list--slim .v-treeview-group.v-list-group {
18805
+ --prepend-width: 16px;
18813
18806
  }
18814
-
18815
- .v-application__wrap {
18816
- -webkit-backface-visibility: hidden;
18817
- backface-visibility: hidden;
18818
- display: flex;
18819
- flex-direction: column;
18820
- flex: 1 1 auto;
18821
- max-width: 100%;
18822
- min-height: 100vh;
18823
- min-height: 100dvh;
18824
- position: relative;
18807
+ .v-treeview-group.v-list-group .v-list-group__items .v-list-item {
18808
+ padding-inline-start: calc(12px + var(--indent-padding)) !important;
18825
18809
  }.v-avatar {
18826
18810
  flex: none;
18827
18811
  align-items: center;
@@ -18865,7 +18849,7 @@ html.overflow-y-hidden {
18865
18849
  .v-avatar {
18866
18850
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18867
18851
  border-style: solid;
18868
- border-width: thin;
18852
+ border-width: 0;
18869
18853
  }
18870
18854
  .v-avatar--border {
18871
18855
  border-width: thin;
@@ -18940,6 +18924,22 @@ html.overflow-y-hidden {
18940
18924
  }
18941
18925
  .v-app-bar:not(.v-toolbar--absolute) {
18942
18926
  padding-inline-end: var(--v-scrollbar-offset);
18927
+ }.v-application {
18928
+ display: flex;
18929
+ background: rgb(var(--v-theme-background));
18930
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18931
+ }
18932
+
18933
+ .v-application__wrap {
18934
+ -webkit-backface-visibility: hidden;
18935
+ backface-visibility: hidden;
18936
+ display: flex;
18937
+ flex-direction: column;
18938
+ flex: 1 1 auto;
18939
+ max-width: 100%;
18940
+ min-height: 100vh;
18941
+ min-height: 100dvh;
18942
+ position: relative;
18943
18943
  }.v-alert {
18944
18944
  display: grid;
18945
18945
  flex: 1 1;
@@ -19241,34 +19241,107 @@ html.overflow-y-hidden {
19241
19241
  .v-autocomplete--active-menu .v-autocomplete__menu-icon {
19242
19242
  opacity: var(--v-high-emphasis-opacity);
19243
19243
  transform: rotate(180deg);
19244
- }.v-banner {
19245
- display: grid;
19246
- flex: 1 1;
19247
- font-size: 0.875rem;
19248
- grid-template-areas: "prepend content actions";
19249
- grid-template-columns: max-content auto max-content;
19250
- grid-template-rows: max-content max-content;
19251
- line-height: 1.6;
19252
- overflow: hidden;
19253
- padding-inline: 16px 8px;
19254
- padding-top: 16px;
19255
- padding-bottom: 16px;
19256
- position: relative;
19257
- width: 100%;
19258
- }
19259
- .v-banner {
19260
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19261
- border-style: solid;
19262
- border-width: 0 0 thin 0;
19263
- }
19264
- .v-banner--border {
19265
- border-width: thin;
19266
- box-shadow: none;
19267
- }
19268
- .v-banner {
19269
- 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));
19244
+ }.v-badge {
19245
+ display: inline-block;
19246
+ line-height: 1;
19270
19247
  }
19271
- .v-banner--absolute {
19248
+
19249
+ .v-badge__badge {
19250
+ align-items: center;
19251
+ display: inline-flex;
19252
+ border-radius: 10px;
19253
+ font-size: 0.75rem;
19254
+ font-weight: 500;
19255
+ height: 1.25rem;
19256
+ justify-content: center;
19257
+ min-width: 20px;
19258
+ padding: 4px 6px;
19259
+ pointer-events: auto;
19260
+ position: absolute;
19261
+ text-align: center;
19262
+ text-indent: 0;
19263
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
19264
+ white-space: nowrap;
19265
+ }
19266
+ .v-badge__badge {
19267
+ background: rgb(var(--v-theme-surface-variant));
19268
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
19269
+ }
19270
+ .v-badge--bordered .v-badge__badge::after {
19271
+ border-radius: inherit;
19272
+ border-style: solid;
19273
+ border-width: 2px;
19274
+ bottom: 0;
19275
+ color: rgb(var(--v-theme-background));
19276
+ content: "";
19277
+ left: 0;
19278
+ position: absolute;
19279
+ right: 0;
19280
+ top: 0;
19281
+ transform: scale(1.05);
19282
+ }
19283
+ .v-badge--dot .v-badge__badge {
19284
+ border-radius: 4.5px;
19285
+ height: 9px;
19286
+ min-width: 0;
19287
+ padding: 0;
19288
+ width: 9px;
19289
+ }
19290
+ .v-badge--dot .v-badge__badge::after {
19291
+ border-width: 1.5px;
19292
+ }
19293
+ .v-badge--inline .v-badge__badge {
19294
+ position: relative;
19295
+ vertical-align: middle;
19296
+ }
19297
+ .v-badge__badge .v-icon {
19298
+ color: inherit;
19299
+ font-size: 0.75rem;
19300
+ margin: 0 -2px;
19301
+ }
19302
+ .v-badge__badge img,
19303
+ .v-badge__badge .v-img {
19304
+ height: 100%;
19305
+ width: 100%;
19306
+ }
19307
+
19308
+ .v-badge__wrapper {
19309
+ display: flex;
19310
+ position: relative;
19311
+ }
19312
+ .v-badge--inline .v-badge__wrapper {
19313
+ align-items: center;
19314
+ display: inline-flex;
19315
+ justify-content: center;
19316
+ margin: 0 4px;
19317
+ }.v-banner {
19318
+ display: grid;
19319
+ flex: 1 1;
19320
+ font-size: 0.875rem;
19321
+ grid-template-areas: "prepend content actions";
19322
+ grid-template-columns: max-content auto max-content;
19323
+ grid-template-rows: max-content max-content;
19324
+ line-height: 1.6;
19325
+ overflow: hidden;
19326
+ padding-inline: 16px 8px;
19327
+ padding-top: 16px;
19328
+ padding-bottom: 16px;
19329
+ position: relative;
19330
+ width: 100%;
19331
+ }
19332
+ .v-banner {
19333
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19334
+ border-style: solid;
19335
+ border-width: 0 0 thin 0;
19336
+ }
19337
+ .v-banner--border {
19338
+ border-width: thin;
19339
+ box-shadow: none;
19340
+ }
19341
+ .v-banner {
19342
+ 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));
19343
+ }
19344
+ .v-banner--absolute {
19272
19345
  position: absolute;
19273
19346
  }
19274
19347
  .v-banner--fixed {
@@ -19407,69 +19480,6 @@ html.overflow-y-hidden {
19407
19480
  }
19408
19481
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
19409
19482
  align-self: flex-start;
19410
- }.v-bottom-navigation {
19411
- display: flex;
19412
- max-width: 100%;
19413
- overflow: hidden;
19414
- position: absolute;
19415
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
19416
- }
19417
- .v-bottom-navigation {
19418
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19419
- border-style: solid;
19420
- border-width: 0;
19421
- }
19422
- .v-bottom-navigation--border {
19423
- border-width: thin;
19424
- box-shadow: none;
19425
- }
19426
- .v-bottom-navigation {
19427
- border-radius: 0;
19428
- }
19429
- .v-bottom-navigation {
19430
- background: rgb(var(--v-theme-surface));
19431
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19432
- }
19433
- .v-bottom-navigation--active {
19434
- 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));
19435
- }
19436
-
19437
- .v-bottom-navigation__content {
19438
- display: flex;
19439
- flex: none;
19440
- font-size: 0.75rem;
19441
- justify-content: center;
19442
- transition: inherit;
19443
- width: 100%;
19444
- }
19445
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
19446
- font-size: inherit;
19447
- height: 100%;
19448
- max-width: 168px;
19449
- min-width: 80px;
19450
- text-transform: none;
19451
- transition: inherit;
19452
- width: auto;
19453
- }
19454
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
19455
- border-radius: 0;
19456
- }
19457
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
19458
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
19459
- transition: inherit;
19460
- }
19461
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
19462
- font-size: 1.5rem;
19463
- }
19464
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
19465
- flex-grow: 1;
19466
- }
19467
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
19468
- transition: inherit;
19469
- opacity: 0;
19470
- }
19471
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
19472
- transform: translateY(0.5rem);
19473
19483
  }.v-breadcrumbs {
19474
19484
  display: flex;
19475
19485
  align-items: center;
@@ -19561,6 +19571,83 @@ html.overflow-y-hidden {
19561
19571
  .v-bottom-sheet.v-bottom-sheet--inset {
19562
19572
  max-width: 70%;
19563
19573
  }
19574
+ }.v-btn-group {
19575
+ display: inline-flex;
19576
+ flex-wrap: nowrap;
19577
+ max-width: 100%;
19578
+ min-width: 0;
19579
+ overflow: hidden;
19580
+ vertical-align: middle;
19581
+ }
19582
+ .v-btn-group {
19583
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19584
+ border-style: solid;
19585
+ border-width: 0;
19586
+ }
19587
+ .v-btn-group--border {
19588
+ border-width: thin;
19589
+ box-shadow: none;
19590
+ }
19591
+ .v-btn-group {
19592
+ 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));
19593
+ }
19594
+ .v-btn-group {
19595
+ border-radius: 4px;
19596
+ }
19597
+ .v-btn-group {
19598
+ background: transparent;
19599
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19600
+ }
19601
+ .v-btn-group--density-default.v-btn-group {
19602
+ height: 48px;
19603
+ }
19604
+
19605
+ .v-btn-group--density-comfortable.v-btn-group {
19606
+ height: 40px;
19607
+ }
19608
+
19609
+ .v-btn-group--density-compact.v-btn-group {
19610
+ height: 36px;
19611
+ }
19612
+
19613
+ .v-btn-group .v-btn {
19614
+ border-radius: 0;
19615
+ border-color: inherit;
19616
+ }
19617
+ .v-btn-group .v-btn:not(:last-child) {
19618
+ border-inline-end: none;
19619
+ }
19620
+ .v-btn-group .v-btn:not(:first-child) {
19621
+ border-inline-start: none;
19622
+ }
19623
+ .v-btn-group .v-btn:first-child {
19624
+ border-start-start-radius: inherit;
19625
+ border-end-start-radius: inherit;
19626
+ }
19627
+ .v-btn-group .v-btn:last-child {
19628
+ border-start-end-radius: inherit;
19629
+ border-end-end-radius: inherit;
19630
+ }
19631
+ .v-btn-group--divided .v-btn:not(:last-child) {
19632
+ border-inline-end-width: thin;
19633
+ border-inline-end-style: solid;
19634
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19635
+ }
19636
+ .v-btn-group--tile {
19637
+ border-radius: 0;
19638
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19639
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19640
+ }
19641
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19642
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19643
+ }
19644
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19645
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19646
+ }
19647
+ @supports not selector(:focus-visible) {
19648
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19649
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19650
+ }
19564
19651
  }.v-btn {
19565
19652
  align-items: center;
19566
19653
  border-radius: 4px;
@@ -19985,143 +20072,74 @@ html.overflow-y-hidden {
19985
20072
  }
19986
20073
  .v-pagination__item--is-active .v-btn__overlay {
19987
20074
  opacity: var(--v-border-opacity);
19988
- }.v-badge {
19989
- display: inline-block;
19990
- line-height: 1;
20075
+ }.v-bottom-navigation {
20076
+ display: flex;
20077
+ max-width: 100%;
20078
+ overflow: hidden;
20079
+ position: absolute;
20080
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
19991
20081
  }
19992
-
19993
- .v-badge__badge {
19994
- align-items: center;
19995
- display: inline-flex;
19996
- border-radius: 10px;
19997
- font-size: 0.75rem;
19998
- font-weight: 500;
19999
- height: 1.25rem;
20000
- justify-content: center;
20001
- min-width: 20px;
20002
- padding: 4px 6px;
20003
- pointer-events: auto;
20004
- position: absolute;
20005
- text-align: center;
20006
- text-indent: 0;
20007
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
20008
- white-space: nowrap;
20009
- }
20010
- .v-badge__badge {
20011
- background: rgb(var(--v-theme-surface-variant));
20012
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
20013
- }
20014
- .v-badge--bordered .v-badge__badge::after {
20015
- border-radius: inherit;
20016
- border-style: solid;
20017
- border-width: 2px;
20018
- bottom: 0;
20019
- color: rgb(var(--v-theme-background));
20020
- content: "";
20021
- left: 0;
20022
- position: absolute;
20023
- right: 0;
20024
- top: 0;
20025
- transform: scale(1.05);
20026
- }
20027
- .v-badge--dot .v-badge__badge {
20028
- border-radius: 4.5px;
20029
- height: 9px;
20030
- min-width: 0;
20031
- padding: 0;
20032
- width: 9px;
20033
- }
20034
- .v-badge--dot .v-badge__badge::after {
20035
- border-width: 1.5px;
20036
- }
20037
- .v-badge--inline .v-badge__badge {
20038
- position: relative;
20039
- vertical-align: middle;
20040
- }
20041
- .v-badge__badge .v-icon {
20042
- color: inherit;
20043
- font-size: 0.75rem;
20044
- margin: 0 -2px;
20045
- }
20046
- .v-badge__badge img,
20047
- .v-badge__badge .v-img {
20048
- height: 100%;
20049
- width: 100%;
20050
- }
20051
-
20052
- .v-badge__wrapper {
20053
- display: flex;
20054
- position: relative;
20055
- }
20056
- .v-badge--inline .v-badge__wrapper {
20057
- align-items: center;
20058
- display: inline-flex;
20059
- justify-content: center;
20060
- margin: 0 4px;
20061
- }.v-btn-group {
20062
- display: inline-flex;
20063
- flex-wrap: nowrap;
20064
- max-width: 100%;
20065
- min-width: 0;
20066
- overflow: hidden;
20067
- vertical-align: middle;
20068
- }
20069
- .v-btn-group {
20082
+ .v-bottom-navigation {
20070
20083
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20071
20084
  border-style: solid;
20072
20085
  border-width: 0;
20073
20086
  }
20074
- .v-btn-group--border {
20087
+ .v-bottom-navigation--border {
20075
20088
  border-width: thin;
20076
20089
  box-shadow: none;
20077
20090
  }
20078
- .v-btn-group {
20079
- 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));
20080
- }
20081
- .v-btn-group {
20082
- border-radius: 4px;
20091
+ .v-bottom-navigation {
20092
+ border-radius: 0;
20083
20093
  }
20084
- .v-btn-group {
20085
- background: transparent;
20094
+ .v-bottom-navigation {
20095
+ background: rgb(var(--v-theme-surface));
20086
20096
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20087
20097
  }
20088
- .v-btn-group--density-default.v-btn-group {
20089
- height: 48px;
20098
+ .v-bottom-navigation--active {
20099
+ 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));
20090
20100
  }
20091
20101
 
20092
- .v-btn-group--density-comfortable.v-btn-group {
20093
- height: 40px;
20102
+ .v-bottom-navigation__content {
20103
+ display: flex;
20104
+ flex: none;
20105
+ font-size: 0.75rem;
20106
+ justify-content: center;
20107
+ transition: inherit;
20108
+ width: 100%;
20094
20109
  }
20095
-
20096
- .v-btn-group--density-compact.v-btn-group {
20097
- height: 36px;
20110
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
20111
+ font-size: inherit;
20112
+ height: 100%;
20113
+ max-width: 168px;
20114
+ min-width: 80px;
20115
+ text-transform: none;
20116
+ transition: inherit;
20117
+ width: auto;
20098
20118
  }
20099
-
20100
- .v-btn-group .v-btn {
20119
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
20101
20120
  border-radius: 0;
20102
- border-color: inherit;
20103
20121
  }
20104
- .v-btn-group .v-btn:not(:last-child) {
20105
- border-inline-end: none;
20122
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
20123
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
20124
+ transition: inherit;
20106
20125
  }
20107
- .v-btn-group .v-btn:not(:first-child) {
20108
- border-inline-start: none;
20126
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
20127
+ font-size: 1.5rem;
20109
20128
  }
20110
- .v-btn-group .v-btn:first-child {
20111
- border-start-start-radius: inherit;
20112
- border-end-start-radius: inherit;
20129
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
20130
+ flex-grow: 1;
20113
20131
  }
20114
- .v-btn-group .v-btn:last-child {
20115
- border-start-end-radius: inherit;
20116
- border-end-end-radius: inherit;
20132
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
20133
+ transition: inherit;
20134
+ opacity: 0;
20117
20135
  }
20118
- .v-btn-group--divided .v-btn:not(:last-child) {
20119
- border-inline-end-width: thin;
20120
- border-inline-end-style: solid;
20121
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
20136
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
20137
+ transform: translateY(0.5rem);
20138
+ }.v-checkbox.v-input {
20139
+ flex: 0 1 auto;
20122
20140
  }
20123
- .v-btn-group--tile {
20124
- border-radius: 0;
20141
+ .v-checkbox .v-selection-control {
20142
+ min-height: var(--v-input-control-height);
20125
20143
  }.v-card {
20126
20144
  display: block;
20127
20145
  overflow: hidden;
@@ -20430,19 +20448,6 @@ html.overflow-y-hidden {
20430
20448
  pointer-events: none;
20431
20449
  opacity: 0;
20432
20450
  transition: opacity 0.2s ease-in-out;
20433
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
20434
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
20435
- }
20436
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
20437
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
20438
- }
20439
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
20440
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20441
- }
20442
- @supports not selector(:focus-visible) {
20443
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
20444
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20445
- }
20446
20451
  }.v-chip-group {
20447
20452
  display: flex;
20448
20453
  max-width: 100%;
@@ -20526,11 +20531,6 @@ html.overflow-y-hidden {
20526
20531
  flex-direction: column;
20527
20532
  height: 100% !important;
20528
20533
  width: 50px;
20529
- }.v-checkbox.v-input {
20530
- flex: 0 1 auto;
20531
- }
20532
- .v-checkbox .v-selection-control {
20533
- min-height: var(--v-input-control-height);
20534
20534
  }.v-chip {
20535
20535
  align-items: center;
20536
20536
  display: inline-flex;
@@ -21728,276 +21728,60 @@ html.overflow-y-hidden {
21728
21728
  .v-combobox--active-menu .v-combobox__menu-icon {
21729
21729
  opacity: var(--v-high-emphasis-opacity);
21730
21730
  transform: rotate(180deg);
21731
- }.v-counter {
21732
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21733
- flex: 0 1 auto;
21734
- font-size: 12px;
21735
- transition-duration: 150ms;
21736
- }.v-date-picker-header {
21737
- align-items: flex-end;
21738
- height: 70px;
21739
- display: grid;
21740
- grid-template-areas: "prepend content append";
21741
- grid-template-columns: min-content minmax(0, 1fr) min-content;
21742
- overflow: hidden;
21743
- padding-inline: 24px 12px;
21744
- padding-bottom: 12px;
21745
- }
21746
-
21747
- .v-date-picker-header__append {
21748
- grid-area: append;
21731
+ }.v-data-table {
21732
+ width: 100%;
21749
21733
  }
21750
21734
 
21751
- .v-date-picker-header__prepend {
21752
- grid-area: prepend;
21753
- padding-inline-start: 8px;
21735
+ .v-data-table__table {
21736
+ width: 100%;
21737
+ border-collapse: separate;
21738
+ border-spacing: 0;
21754
21739
  }
21755
21740
 
21756
- .v-date-picker-header__content {
21757
- align-items: center;
21758
- display: inline-flex;
21759
- font-size: 32px;
21760
- line-height: 40px;
21761
- grid-area: content;
21762
- justify-content: space-between;
21741
+ .v-data-table__tr--focus {
21742
+ border: 1px dotted black;
21763
21743
  }
21764
- .v-date-picker-header--clickable .v-date-picker-header__content {
21744
+ .v-data-table__tr--clickable {
21765
21745
  cursor: pointer;
21766
21746
  }
21767
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21768
- opacity: 0.7;
21769
- }
21770
21747
 
21771
- .date-picker-header-transition-enter-active,
21772
- .date-picker-header-reverse-transition-enter-active {
21773
- transition-duration: 0.3s;
21774
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21748
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
21749
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
21750
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
21751
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
21752
+ text-align: end;
21775
21753
  }
21776
- .date-picker-header-transition-leave-active,
21777
- .date-picker-header-reverse-transition-leave-active {
21778
- transition-duration: 0.3s;
21779
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21754
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21755
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
21756
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21757
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
21758
+ flex-direction: row-reverse;
21780
21759
  }
21781
-
21782
- .date-picker-header-transition-enter-from {
21783
- transform: translate(0, 100%);
21760
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
21761
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
21762
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
21763
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
21764
+ text-align: center;
21784
21765
  }
21785
- .date-picker-header-transition-leave-to {
21786
- opacity: 0;
21787
- transform: translate(0, -100%);
21766
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21767
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
21768
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21769
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
21770
+ justify-content: center;
21788
21771
  }
21789
-
21790
- .date-picker-header-reverse-transition-enter-from {
21791
- transform: translate(0, -100%);
21772
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
21773
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
21774
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
21775
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
21776
+ padding: 0 8px;
21792
21777
  }
21793
- .date-picker-header-reverse-transition-leave-to {
21794
- opacity: 0;
21795
- transform: translate(0, 100%);
21796
- }.v-date-picker-months {
21797
- height: 288px;
21798
- }
21799
-
21800
- .v-date-picker-months__content {
21801
- align-items: center;
21802
- display: grid;
21803
- flex: 1 1;
21804
- height: inherit;
21805
- justify-content: space-around;
21806
- grid-template-columns: repeat(2, 1fr);
21807
- grid-gap: 0px 24px;
21808
- padding-inline-start: 36px;
21809
- padding-inline-end: 36px;
21810
- }
21811
- .v-date-picker-months__content .v-btn {
21812
- text-transform: none;
21813
- padding-inline-start: 8px;
21814
- padding-inline-end: 8px;
21815
- }.v-date-picker-month {
21816
- display: flex;
21817
- justify-content: center;
21818
- padding: 0 12px 8px;
21819
- --v-date-picker-month-day-diff: 4px;
21820
- }
21821
-
21822
- .v-date-picker-month__weeks {
21823
- display: grid;
21824
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21825
- column-gap: 4px;
21826
- font-size: 0.85rem;
21827
- }
21828
- .v-date-picker-month__weeks + .v-date-picker-month__days {
21829
- grid-row-gap: 0;
21830
- }
21831
-
21832
- .v-date-picker-month__weekday {
21833
- font-size: 0.85rem;
21834
- }
21835
-
21836
- .v-date-picker-month__days {
21837
- display: grid;
21838
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21839
- column-gap: 4px;
21840
- flex: 1 1;
21841
- justify-content: space-around;
21842
- }
21843
-
21844
- .v-date-picker-month__day {
21845
- align-items: center;
21846
- display: flex;
21847
- justify-content: center;
21848
- position: relative;
21849
- height: 40px;
21850
- width: 40px;
21851
- }
21852
- .v-date-picker-month__day--selected .v-btn {
21853
- background-color: rgb(var(--v-theme-surface-variant));
21854
- color: rgb(var(--v-theme-on-surface-variant));
21855
- }
21856
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21857
- --v-btn-height: 24px;
21858
- --v-btn-size: 0.85rem;
21859
- }
21860
- .v-date-picker-month__day--week {
21861
- font-size: var(--v-btn-size);
21862
- }
21863
-
21864
- .v-date-picker-month__day--adjacent {
21865
- opacity: 0.5;
21866
- }
21867
-
21868
- .v-date-picker-month__day--hide-adjacent {
21869
- opacity: 0;
21870
- }.v-date-picker-years {
21871
- height: 288px;
21872
- overflow-y: scroll;
21873
- }
21874
-
21875
- .v-date-picker-years__content {
21876
- display: grid;
21877
- flex: 1 1;
21878
- justify-content: space-around;
21879
- grid-template-columns: repeat(3, 1fr);
21880
- gap: 8px 24px;
21881
- padding-inline: 32px;
21882
- }
21883
- .v-date-picker-years__content .v-btn {
21884
- padding-inline: 8px;
21885
- }.v-date-picker {
21886
- overflow: hidden;
21887
- width: 328px;
21888
- }
21889
- .v-date-picker--show-week {
21890
- width: 368px;
21891
- }.v-date-picker-controls {
21892
- display: flex;
21893
- align-items: center;
21894
- justify-content: space-between;
21895
- font-size: 0.875rem;
21896
- padding-top: 4px;
21897
- padding-bottom: 4px;
21898
- padding-inline-start: 6px;
21899
- padding-inline-end: 12px;
21900
- }
21901
- .v-date-picker-controls > .v-btn:first-child {
21902
- text-transform: none;
21903
- font-weight: 400;
21904
- line-height: initial;
21905
- letter-spacing: initial;
21906
- }
21907
- .v-date-picker-controls--variant-classic {
21908
- padding-inline-start: 12px;
21909
- }
21910
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21911
- opacity: 0.7;
21912
- }
21913
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21914
- cursor: pointer;
21915
- }
21916
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21917
- opacity: 1;
21918
- }
21919
- .v-date-picker-controls .v-btn:last-child {
21920
- margin-inline-start: 4px;
21921
- }
21922
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21923
- transform: rotate(180deg);
21924
- }
21925
-
21926
- .v-date-picker-controls__date {
21927
- margin-inline-end: 4px;
21928
- }
21929
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21930
- margin: auto;
21931
- text-align: center;
21932
- }
21933
-
21934
- .v-date-picker-controls__month {
21935
- display: flex;
21936
- }
21937
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21938
- flex-direction: row-reverse;
21939
- }
21940
-
21941
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21942
- flex: 1 0 auto;
21943
- }
21944
-
21945
- .v-date-picker__title {
21946
- display: inline-block;
21947
- }.v-data-table {
21948
- width: 100%;
21949
- }
21950
-
21951
- .v-data-table__table {
21952
- width: 100%;
21953
- border-collapse: separate;
21954
- border-spacing: 0;
21955
- }
21956
-
21957
- .v-data-table__tr--focus {
21958
- border: 1px dotted black;
21959
- }
21960
- .v-data-table__tr--clickable {
21961
- cursor: pointer;
21962
- }
21963
-
21964
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
21965
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
21966
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
21967
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
21968
- text-align: end;
21969
- }
21970
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21971
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
21972
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
21973
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
21974
- flex-direction: row-reverse;
21975
- }
21976
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
21977
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
21978
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
21979
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
21980
- text-align: center;
21981
- }
21982
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21983
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
21984
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
21985
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
21986
- justify-content: center;
21987
- }
21988
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
21989
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
21990
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
21991
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
21992
- padding: 0 8px;
21993
- }
21994
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
21995
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
21996
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
21997
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
21998
- text-overflow: ellipsis;
21999
- text-wrap: nowrap;
22000
- overflow: hidden;
21778
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
21779
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
21780
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
21781
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
21782
+ text-overflow: ellipsis;
21783
+ text-wrap: nowrap;
21784
+ overflow: hidden;
22001
21785
  }
22002
21786
  .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
22003
21787
  .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
@@ -22162,125 +21946,222 @@ html.overflow-y-hidden {
22162
21946
  }
22163
21947
  .v-data-table-footer__page {
22164
21948
  padding: 0 8px;
22165
- }.v-divider {
22166
- display: block;
22167
- flex: 1 1 100%;
22168
- height: 0px;
22169
- max-height: 0px;
22170
- opacity: var(--v-border-opacity);
22171
- transition: inherit;
22172
- }
22173
- .v-divider {
22174
- border-style: solid;
22175
- border-width: thin 0 0 0;
21949
+ }.v-counter {
21950
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21951
+ flex: 0 1 auto;
21952
+ font-size: 12px;
21953
+ transition-duration: 150ms;
21954
+ }.v-date-picker {
21955
+ overflow: hidden;
21956
+ width: 328px;
22176
21957
  }
22177
- .v-divider--vertical {
22178
- align-self: stretch;
22179
- border-width: 0 thin 0 0;
22180
- display: inline-flex;
22181
- height: auto;
22182
- margin-left: -1px;
22183
- max-height: 100%;
22184
- max-width: 0px;
22185
- vertical-align: text-bottom;
22186
- width: 0px;
21958
+ .v-date-picker--show-week {
21959
+ width: 368px;
21960
+ }.v-date-picker-header {
21961
+ align-items: flex-end;
21962
+ height: 70px;
21963
+ display: grid;
21964
+ grid-template-areas: "prepend content append";
21965
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
21966
+ overflow: hidden;
21967
+ padding-inline: 24px 12px;
21968
+ padding-bottom: 12px;
22187
21969
  }
22188
- .v-divider--inset:not(.v-divider--vertical) {
22189
- max-width: calc(100% - 72px);
22190
- margin-inline-start: 72px;
21970
+
21971
+ .v-date-picker-header__append {
21972
+ grid-area: append;
22191
21973
  }
22192
- .v-divider--inset.v-divider--vertical {
22193
- margin-bottom: 8px;
22194
- margin-top: 8px;
22195
- max-height: calc(100% - 16px);
21974
+
21975
+ .v-date-picker-header__prepend {
21976
+ grid-area: prepend;
21977
+ padding-inline-start: 8px;
22196
21978
  }
22197
21979
 
22198
- .v-divider__content {
22199
- padding: 0 16px;
22200
- text-wrap: nowrap;
21980
+ .v-date-picker-header__content {
21981
+ align-items: center;
21982
+ display: inline-flex;
21983
+ font-size: 32px;
21984
+ line-height: 40px;
21985
+ grid-area: content;
21986
+ justify-content: space-between;
22201
21987
  }
22202
- .v-divider__wrapper--vertical .v-divider__content {
22203
- padding: 4px 0;
21988
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21989
+ cursor: pointer;
21990
+ }
21991
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21992
+ opacity: 0.7;
22204
21993
  }
22205
21994
 
22206
- .v-divider__wrapper {
21995
+ .date-picker-header-transition-enter-active,
21996
+ .date-picker-header-reverse-transition-enter-active {
21997
+ transition-duration: 0.3s;
21998
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21999
+ }
22000
+ .date-picker-header-transition-leave-active,
22001
+ .date-picker-header-reverse-transition-leave-active {
22002
+ transition-duration: 0.3s;
22003
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22004
+ }
22005
+
22006
+ .date-picker-header-transition-enter-from {
22007
+ transform: translate(0, 100%);
22008
+ }
22009
+ .date-picker-header-transition-leave-to {
22010
+ opacity: 0;
22011
+ transform: translate(0, -100%);
22012
+ }
22013
+
22014
+ .date-picker-header-reverse-transition-enter-from {
22015
+ transform: translate(0, -100%);
22016
+ }
22017
+ .date-picker-header-reverse-transition-leave-to {
22018
+ opacity: 0;
22019
+ transform: translate(0, 100%);
22020
+ }.v-date-picker-controls {
22207
22021
  display: flex;
22208
22022
  align-items: center;
22209
- justify-content: center;
22023
+ justify-content: space-between;
22024
+ font-size: 0.875rem;
22025
+ padding-top: 4px;
22026
+ padding-bottom: 4px;
22027
+ padding-inline-start: 6px;
22028
+ padding-inline-end: 12px;
22210
22029
  }
22211
- .v-divider__wrapper--vertical {
22212
- flex-direction: column;
22213
- height: 100%;
22030
+ .v-date-picker-controls > .v-btn:first-child {
22031
+ text-transform: none;
22032
+ font-weight: 400;
22033
+ line-height: initial;
22034
+ letter-spacing: initial;
22214
22035
  }
22215
- .v-divider__wrapper--vertical .v-divider {
22216
- margin: 0 auto;
22217
- }.v-empty-state {
22218
- align-items: center;
22219
- display: flex;
22220
- flex-direction: column;
22221
- justify-content: center;
22222
- min-height: 100%;
22223
- padding: 16px;
22036
+ .v-date-picker-controls--variant-classic {
22037
+ padding-inline-start: 12px;
22224
22038
  }
22225
- .v-empty-state--start {
22226
- align-items: flex-start;
22039
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
22040
+ opacity: 0.7;
22227
22041
  }
22228
- .v-empty-state--center {
22229
- align-items: center;
22042
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
22043
+ cursor: pointer;
22230
22044
  }
22231
- .v-empty-state--end {
22232
- align-items: flex-end;
22045
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
22046
+ opacity: 1;
22047
+ }
22048
+ .v-date-picker-controls .v-btn:last-child {
22049
+ margin-inline-start: 4px;
22050
+ }
22051
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
22052
+ transform: rotate(180deg);
22233
22053
  }
22234
22054
 
22235
- .v-empty-state__media {
22055
+ .v-date-picker-controls__date {
22056
+ margin-inline-end: 4px;
22057
+ }
22058
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
22059
+ margin: auto;
22236
22060
  text-align: center;
22237
- width: 100%;
22238
22061
  }
22239
- .v-empty-state__media .v-icon {
22240
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22062
+
22063
+ .v-date-picker-controls__month {
22064
+ display: flex;
22065
+ }
22066
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
22067
+ flex-direction: row-reverse;
22241
22068
  }
22242
22069
 
22243
- .v-empty-state__headline {
22244
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22245
- font-size: 3.75rem;
22246
- font-weight: 300;
22247
- line-height: 1;
22248
- text-align: center;
22249
- margin-bottom: 8px;
22070
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
22071
+ flex: 1 0 auto;
22250
22072
  }
22251
- .v-empty-state--mobile .v-empty-state__headline {
22252
- font-size: 2.125rem;
22073
+
22074
+ .v-date-picker__title {
22075
+ display: inline-block;
22076
+ }.v-date-picker-month {
22077
+ display: flex;
22078
+ justify-content: center;
22079
+ padding: 0 12px 8px;
22080
+ --v-date-picker-month-day-diff: 4px;
22253
22081
  }
22254
22082
 
22255
- .v-empty-state__title {
22256
- font-size: 1.25rem;
22257
- font-weight: 500;
22258
- line-height: 1.6;
22259
- margin-bottom: 4px;
22260
- text-align: center;
22083
+ .v-date-picker-month__weeks {
22084
+ display: grid;
22085
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
22086
+ column-gap: 4px;
22087
+ font-size: 0.85rem;
22088
+ }
22089
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
22090
+ grid-row-gap: 0;
22261
22091
  }
22262
22092
 
22263
- .v-empty-state__text {
22264
- font-size: 0.875rem;
22265
- font-weight: 400;
22266
- line-height: 1.425;
22267
- padding: 0 16px;
22268
- text-align: center;
22093
+ .v-date-picker-month__weekday {
22094
+ font-size: 0.85rem;
22269
22095
  }
22270
22096
 
22271
- .v-empty-state__content {
22272
- padding: 24px 0;
22097
+ .v-date-picker-month__days {
22098
+ display: grid;
22099
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
22100
+ column-gap: 4px;
22101
+ flex: 1 1;
22102
+ justify-content: space-around;
22273
22103
  }
22274
22104
 
22275
- .v-empty-state__actions {
22105
+ .v-date-picker-month__day {
22106
+ align-items: center;
22276
22107
  display: flex;
22277
- gap: 8px;
22278
- padding: 16px;
22108
+ justify-content: center;
22109
+ position: relative;
22110
+ height: 40px;
22111
+ width: 40px;
22112
+ }
22113
+ .v-date-picker-month__day--selected .v-btn {
22114
+ background-color: rgb(var(--v-theme-surface-variant));
22115
+ color: rgb(var(--v-theme-on-surface-variant));
22116
+ }
22117
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
22118
+ --v-btn-height: 24px;
22119
+ --v-btn-size: 0.85rem;
22120
+ }
22121
+ .v-date-picker-month__day--week {
22122
+ font-size: var(--v-btn-size);
22279
22123
  }
22280
22124
 
22281
- .v-empty-state__action-btn.v-btn {
22282
- background-color: initial;
22283
- color: initial;
22125
+ .v-date-picker-month__day--adjacent {
22126
+ opacity: 0.5;
22127
+ }
22128
+
22129
+ .v-date-picker-month__day--hide-adjacent {
22130
+ opacity: 0;
22131
+ }.v-date-picker-years {
22132
+ height: 288px;
22133
+ overflow-y: scroll;
22134
+ }
22135
+
22136
+ .v-date-picker-years__content {
22137
+ display: grid;
22138
+ flex: 1 1;
22139
+ justify-content: space-around;
22140
+ grid-template-columns: repeat(3, 1fr);
22141
+ gap: 8px 24px;
22142
+ padding-inline: 32px;
22143
+ }
22144
+ .v-date-picker-years__content .v-btn {
22145
+ padding-inline: 8px;
22146
+ }.v-date-picker-months {
22147
+ height: 288px;
22148
+ }
22149
+
22150
+ .v-date-picker-months__content {
22151
+ align-items: center;
22152
+ display: grid;
22153
+ flex: 1 1;
22154
+ height: inherit;
22155
+ justify-content: space-around;
22156
+ grid-template-columns: repeat(2, 1fr);
22157
+ grid-gap: 0px 24px;
22158
+ padding-inline-start: 36px;
22159
+ padding-inline-end: 36px;
22160
+ }
22161
+ .v-date-picker-months__content .v-btn {
22162
+ text-transform: none;
22163
+ padding-inline-start: 8px;
22164
+ padding-inline-end: 8px;
22284
22165
  }.v-dialog {
22285
22166
  align-items: center;
22286
22167
  justify-content: center;
@@ -22325,59 +22206,247 @@ html.overflow-y-hidden {
22325
22206
  .v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
22326
22207
  padding-top: 0;
22327
22208
  }
22328
- .v-dialog > .v-overlay__content > .v-card > .v-card-text,
22329
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
22330
- font-size: inherit;
22331
- letter-spacing: 0.03125em;
22332
- line-height: inherit;
22333
- padding: 16px 24px 24px;
22209
+ .v-dialog > .v-overlay__content > .v-card > .v-card-text,
22210
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
22211
+ font-size: inherit;
22212
+ letter-spacing: 0.03125em;
22213
+ line-height: inherit;
22214
+ padding: 16px 24px 24px;
22215
+ }
22216
+ .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
22217
+ .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
22218
+ justify-content: flex-end;
22219
+ }
22220
+
22221
+ .v-dialog--fullscreen {
22222
+ --v-scrollbar-offset: 0px;
22223
+ }
22224
+ .v-dialog--fullscreen > .v-overlay__content {
22225
+ border-radius: 0;
22226
+ margin: 0;
22227
+ padding: 0;
22228
+ width: 100%;
22229
+ height: 100%;
22230
+ max-width: 100%;
22231
+ max-height: 100%;
22232
+ overflow-y: auto;
22233
+ top: 0;
22234
+ left: 0;
22235
+ }
22236
+ .v-dialog--fullscreen > .v-overlay__content > .v-card,
22237
+ .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
22238
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
22239
+ .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
22240
+ min-height: 100%;
22241
+ min-width: 100%;
22242
+ border-radius: 0;
22243
+ }
22244
+
22245
+ .v-dialog--scrollable > .v-overlay__content,
22246
+ .v-dialog--scrollable > .v-overlay__content > form {
22247
+ display: flex;
22248
+ }
22249
+ .v-dialog--scrollable > .v-overlay__content > .v-card,
22250
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card {
22251
+ display: flex;
22252
+ flex: 1 1 100%;
22253
+ flex-direction: column;
22254
+ max-height: 100%;
22255
+ max-width: 100%;
22256
+ }
22257
+ .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
22258
+ .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
22259
+ -webkit-backface-visibility: hidden;
22260
+ backface-visibility: hidden;
22261
+ overflow-y: auto;
22262
+ }.v-divider {
22263
+ display: block;
22264
+ flex: 1 1 100%;
22265
+ height: 0px;
22266
+ max-height: 0px;
22267
+ opacity: var(--v-border-opacity);
22268
+ transition: inherit;
22269
+ }
22270
+ .v-divider {
22271
+ border-style: solid;
22272
+ border-width: thin 0 0 0;
22273
+ }
22274
+ .v-divider--vertical {
22275
+ align-self: stretch;
22276
+ border-width: 0 thin 0 0;
22277
+ display: inline-flex;
22278
+ height: auto;
22279
+ margin-left: -1px;
22280
+ max-height: 100%;
22281
+ max-width: 0px;
22282
+ vertical-align: text-bottom;
22283
+ width: 0px;
22284
+ }
22285
+ .v-divider--inset:not(.v-divider--vertical) {
22286
+ max-width: calc(100% - 72px);
22287
+ margin-inline-start: 72px;
22288
+ }
22289
+ .v-divider--inset.v-divider--vertical {
22290
+ margin-bottom: 8px;
22291
+ margin-top: 8px;
22292
+ max-height: calc(100% - 16px);
22293
+ }
22294
+
22295
+ .v-divider__content {
22296
+ padding: 0 16px;
22297
+ text-wrap: nowrap;
22298
+ }
22299
+ .v-divider__wrapper--vertical .v-divider__content {
22300
+ padding: 4px 0;
22301
+ }
22302
+
22303
+ .v-divider__wrapper {
22304
+ display: flex;
22305
+ align-items: center;
22306
+ justify-content: center;
22307
+ }
22308
+ .v-divider__wrapper--vertical {
22309
+ flex-direction: column;
22310
+ height: 100%;
22311
+ }
22312
+ .v-divider__wrapper--vertical .v-divider {
22313
+ margin: 0 auto;
22314
+ }.v-fab {
22315
+ align-items: center;
22316
+ display: inline-flex;
22317
+ flex: 1 1 auto;
22318
+ pointer-events: none;
22319
+ position: relative;
22320
+ transition-duration: 0.2s;
22321
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22322
+ vertical-align: middle;
22323
+ }
22324
+ .v-fab .v-btn {
22325
+ pointer-events: auto;
22326
+ }
22327
+ .v-fab .v-btn--variant-elevated {
22328
+ box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22329
+ }
22330
+ .v-fab--app, .v-fab--absolute {
22331
+ display: flex;
22332
+ }
22333
+ .v-fab--start, .v-fab--left {
22334
+ justify-content: flex-start;
22335
+ }
22336
+ .v-fab--center {
22337
+ align-items: center;
22338
+ justify-content: center;
22339
+ }
22340
+ .v-fab--end, .v-fab--right {
22341
+ justify-content: flex-end;
22342
+ }
22343
+ .v-fab--bottom {
22344
+ align-items: flex-end;
22345
+ }
22346
+ .v-fab--top {
22347
+ align-items: flex-start;
22348
+ }
22349
+ .v-fab--extended .v-btn {
22350
+ border-radius: 9999px !important;
22351
+ }
22352
+
22353
+ .v-fab__container {
22354
+ align-self: center;
22355
+ display: inline-flex;
22356
+ position: absolute;
22357
+ vertical-align: middle;
22358
+ }
22359
+ .v-fab--app .v-fab__container {
22360
+ margin: 12px;
22361
+ }
22362
+ .v-fab--absolute .v-fab__container {
22363
+ position: absolute;
22364
+ z-index: 4;
22365
+ }
22366
+ .v-fab--offset.v-fab--top .v-fab__container {
22367
+ transform: translateY(-50%);
22368
+ }
22369
+ .v-fab--offset.v-fab--bottom .v-fab__container {
22370
+ transform: translateY(50%);
22371
+ }
22372
+ .v-fab--top .v-fab__container {
22373
+ top: 0;
22374
+ }
22375
+ .v-fab--bottom .v-fab__container {
22376
+ bottom: 0;
22377
+ }
22378
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
22379
+ left: 0;
22380
+ }
22381
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
22382
+ right: 0;
22383
+ }.v-empty-state {
22384
+ align-items: center;
22385
+ display: flex;
22386
+ flex-direction: column;
22387
+ justify-content: center;
22388
+ min-height: 100%;
22389
+ padding: 16px;
22390
+ }
22391
+ .v-empty-state--start {
22392
+ align-items: flex-start;
22393
+ }
22394
+ .v-empty-state--center {
22395
+ align-items: center;
22396
+ }
22397
+ .v-empty-state--end {
22398
+ align-items: flex-end;
22399
+ }
22400
+
22401
+ .v-empty-state__media {
22402
+ text-align: center;
22403
+ width: 100%;
22334
22404
  }
22335
- .v-dialog > .v-overlay__content > .v-card > .v-card-actions,
22336
- .v-dialog > .v-overlay__content > form > .v-card > .v-card-actions {
22337
- justify-content: flex-end;
22405
+ .v-empty-state__media .v-icon {
22406
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22338
22407
  }
22339
22408
 
22340
- .v-dialog--fullscreen {
22341
- --v-scrollbar-offset: 0px;
22409
+ .v-empty-state__headline {
22410
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22411
+ font-size: 3.75rem;
22412
+ font-weight: 300;
22413
+ line-height: 1;
22414
+ text-align: center;
22415
+ margin-bottom: 8px;
22342
22416
  }
22343
- .v-dialog--fullscreen > .v-overlay__content {
22344
- border-radius: 0;
22345
- margin: 0;
22346
- padding: 0;
22347
- width: 100%;
22348
- height: 100%;
22349
- max-width: 100%;
22350
- max-height: 100%;
22351
- overflow-y: auto;
22352
- top: 0;
22353
- left: 0;
22417
+ .v-empty-state--mobile .v-empty-state__headline {
22418
+ font-size: 2.125rem;
22354
22419
  }
22355
- .v-dialog--fullscreen > .v-overlay__content > .v-card,
22356
- .v-dialog--fullscreen > .v-overlay__content > .v-sheet,
22357
- .v-dialog--fullscreen > .v-overlay__content > form > .v-card,
22358
- .v-dialog--fullscreen > .v-overlay__content > form > .v-sheet {
22359
- min-height: 100%;
22360
- min-width: 100%;
22361
- border-radius: 0;
22420
+
22421
+ .v-empty-state__title {
22422
+ font-size: 1.25rem;
22423
+ font-weight: 500;
22424
+ line-height: 1.6;
22425
+ margin-bottom: 4px;
22426
+ text-align: center;
22362
22427
  }
22363
22428
 
22364
- .v-dialog--scrollable > .v-overlay__content,
22365
- .v-dialog--scrollable > .v-overlay__content > form {
22366
- display: flex;
22429
+ .v-empty-state__text {
22430
+ font-size: 0.875rem;
22431
+ font-weight: 400;
22432
+ line-height: 1.425;
22433
+ padding: 0 16px;
22434
+ text-align: center;
22367
22435
  }
22368
- .v-dialog--scrollable > .v-overlay__content > .v-card,
22369
- .v-dialog--scrollable > .v-overlay__content > form > .v-card {
22436
+
22437
+ .v-empty-state__content {
22438
+ padding: 24px 0;
22439
+ }
22440
+
22441
+ .v-empty-state__actions {
22370
22442
  display: flex;
22371
- flex: 1 1 100%;
22372
- flex-direction: column;
22373
- max-height: 100%;
22374
- max-width: 100%;
22443
+ gap: 8px;
22444
+ padding: 16px;
22375
22445
  }
22376
- .v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
22377
- .v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
22378
- -webkit-backface-visibility: hidden;
22379
- backface-visibility: hidden;
22380
- overflow-y: auto;
22446
+
22447
+ .v-empty-state__action-btn.v-btn {
22448
+ background-color: initial;
22449
+ color: initial;
22381
22450
  }.v-expansion-panel {
22382
22451
  background-color: rgb(var(--v-theme-surface));
22383
22452
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -22594,35 +22663,6 @@ html.overflow-y-hidden {
22594
22663
  }
22595
22664
  .v-expansion-panels--tile > .v-expansion-panel {
22596
22665
  border-radius: 0;
22597
- }.v-file-input--hide.v-input .v-field,
22598
- .v-file-input--hide.v-input .v-input__control,
22599
- .v-file-input--hide.v-input .v-input__details {
22600
- display: none;
22601
- }
22602
- .v-file-input--hide.v-input .v-input__prepend {
22603
- grid-area: control;
22604
- margin: 0 auto;
22605
- }
22606
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22607
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22608
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22609
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22610
- top: 0px;
22611
- }
22612
- .v-file-input input[type=file] {
22613
- height: 100%;
22614
- left: 0;
22615
- opacity: 0;
22616
- position: absolute;
22617
- top: 0;
22618
- width: 100%;
22619
- z-index: 1;
22620
- }
22621
- .v-file-input .v-input__details {
22622
- padding-inline: 16px;
22623
- }
22624
- .v-input--plain-underlined.v-file-input .v-input__details {
22625
- padding-inline: 0;
22626
22666
  }/* region INPUT */
22627
22667
  .v-field {
22628
22668
  display: grid;
@@ -23206,189 +23246,71 @@ textarea.v-field__input::placeholder {
23206
23246
  opacity: 0;
23207
23247
  }
23208
23248
 
23209
- /* endregion */.v-footer {
23210
- align-items: center;
23211
- display: flex;
23212
- flex: 1 1 auto;
23213
- padding: 8px 16px;
23214
- position: relative;
23215
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23216
- transition-property: height, width, transform, max-width, left, right, top, bottom;
23217
- }
23218
- .v-footer {
23219
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23220
- border-style: solid;
23221
- border-width: 0;
23222
- }
23223
- .v-footer--border {
23224
- border-width: thin;
23225
- box-shadow: none;
23226
- }
23227
- .v-footer {
23228
- 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));
23229
- }
23230
- .v-footer--absolute {
23231
- position: absolute;
23232
- }
23233
- .v-footer--fixed {
23234
- position: fixed;
23235
- }
23236
- .v-footer {
23237
- border-radius: 0;
23238
- }
23239
- .v-footer {
23240
- background: rgb(var(--v-theme-surface));
23241
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23242
- }
23243
- .v-footer--rounded {
23244
- border-radius: 4px;
23245
- }.v-fab {
23246
- align-items: center;
23247
- display: inline-flex;
23248
- flex: 1 1 auto;
23249
- pointer-events: none;
23250
- position: relative;
23251
- transition-duration: 0.2s;
23252
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23253
- vertical-align: middle;
23254
- }
23255
- .v-fab .v-btn {
23256
- pointer-events: auto;
23257
- }
23258
- .v-fab .v-btn--variant-elevated {
23259
- box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23260
- }
23261
- .v-fab--app, .v-fab--absolute {
23262
- display: flex;
23263
- }
23264
- .v-fab--start, .v-fab--left {
23265
- justify-content: flex-start;
23266
- }
23267
- .v-fab--center {
23268
- align-items: center;
23269
- justify-content: center;
23270
- }
23271
- .v-fab--end, .v-fab--right {
23272
- justify-content: flex-end;
23273
- }
23274
- .v-fab--bottom {
23275
- align-items: flex-end;
23276
- }
23277
- .v-fab--top {
23278
- align-items: flex-start;
23279
- }
23280
- .v-fab--extended .v-btn {
23281
- border-radius: 9999px !important;
23282
- }
23283
-
23284
- .v-fab__container {
23285
- align-self: center;
23286
- display: inline-flex;
23287
- position: absolute;
23288
- vertical-align: middle;
23289
- }
23290
- .v-fab--app .v-fab__container {
23291
- margin: 12px;
23292
- }
23293
- .v-fab--absolute .v-fab__container {
23294
- position: absolute;
23295
- z-index: 4;
23296
- }
23297
- .v-fab--offset.v-fab--top .v-fab__container {
23298
- transform: translateY(-50%);
23299
- }
23300
- .v-fab--offset.v-fab--bottom .v-fab__container {
23301
- transform: translateY(50%);
23249
+ /* endregion */.v-file-input--hide.v-input .v-field,
23250
+ .v-file-input--hide.v-input .v-input__control,
23251
+ .v-file-input--hide.v-input .v-input__details {
23252
+ display: none;
23302
23253
  }
23303
- .v-fab--top .v-fab__container {
23304
- top: 0;
23254
+ .v-file-input--hide.v-input .v-input__prepend {
23255
+ grid-area: control;
23256
+ margin: 0 auto;
23305
23257
  }
23306
- .v-fab--bottom .v-fab__container {
23307
- bottom: 0;
23258
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
23259
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
23260
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
23261
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
23262
+ top: 0px;
23308
23263
  }
23309
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
23264
+ .v-file-input input[type=file] {
23265
+ height: 100%;
23310
23266
  left: 0;
23267
+ opacity: 0;
23268
+ position: absolute;
23269
+ top: 0;
23270
+ width: 100%;
23271
+ z-index: 1;
23311
23272
  }
23312
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
23313
- right: 0;
23314
- }.v-icon {
23315
- --v-icon-size-multiplier: 1;
23316
- align-items: center;
23317
- display: inline-flex;
23318
- font-feature-settings: "liga";
23319
- height: 1em;
23320
- justify-content: center;
23321
- letter-spacing: normal;
23322
- line-height: 1;
23323
- position: relative;
23324
- text-indent: 0;
23325
- text-align: center;
23326
- -webkit-user-select: none;
23327
- user-select: none;
23328
- vertical-align: middle;
23329
- width: 1em;
23330
- min-width: 1em;
23331
- }
23332
- .v-icon--clickable {
23333
- cursor: pointer;
23334
- }
23335
- .v-icon--disabled {
23336
- pointer-events: none;
23337
- opacity: 0.38;
23338
- }
23339
- .v-icon--size-x-small {
23340
- font-size: calc(var(--v-icon-size-multiplier) * 1em);
23341
- }
23342
- .v-icon--size-small {
23343
- font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
23344
- }
23345
- .v-icon--size-default {
23346
- font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
23273
+ .v-file-input .v-input__details {
23274
+ padding-inline: 16px;
23347
23275
  }
23348
- .v-icon--size-large {
23349
- font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
23276
+ .v-input--plain-underlined.v-file-input .v-input__details {
23277
+ padding-inline: 0;
23278
+ }.v-footer {
23279
+ align-items: center;
23280
+ display: flex;
23281
+ flex: 1 1 auto;
23282
+ padding: 8px 16px;
23283
+ position: relative;
23284
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23285
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
23350
23286
  }
23351
- .v-icon--size-x-large {
23352
- font-size: calc(var(--v-icon-size-multiplier) * 2em);
23287
+ .v-footer {
23288
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23289
+ border-style: solid;
23290
+ border-width: 0;
23353
23291
  }
23354
-
23355
- .v-icon__svg {
23356
- fill: currentColor;
23357
- width: 100%;
23358
- height: 100%;
23292
+ .v-footer--border {
23293
+ border-width: thin;
23294
+ box-shadow: none;
23359
23295
  }
23360
-
23361
- .v-icon--start {
23362
- margin-inline-end: 8px;
23296
+ .v-footer {
23297
+ 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));
23363
23298
  }
23364
-
23365
- .v-icon--end {
23366
- margin-inline-start: 8px;
23367
- }.v-infinite-scroll--horizontal {
23368
- display: flex;
23369
- flex-direction: row;
23370
- overflow-x: auto;
23299
+ .v-footer--absolute {
23300
+ position: absolute;
23371
23301
  }
23372
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
23373
- height: 100%;
23374
- width: 1px;
23302
+ .v-footer--fixed {
23303
+ position: fixed;
23375
23304
  }
23376
-
23377
- .v-infinite-scroll--vertical {
23378
- display: flex;
23379
- flex-direction: column;
23380
- overflow-y: auto;
23305
+ .v-footer {
23306
+ border-radius: 0;
23381
23307
  }
23382
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
23383
- height: 1px;
23384
- width: 100%;
23308
+ .v-footer {
23309
+ background: rgb(var(--v-theme-surface));
23310
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23385
23311
  }
23386
-
23387
- .v-infinite-scroll__side {
23388
- align-items: center;
23389
- display: flex;
23390
- justify-content: center;
23391
- padding: 8px;
23312
+ .v-footer--rounded {
23313
+ border-radius: 4px;
23392
23314
  }.v-img {
23393
23315
  --v-theme-overlay-multiplier: 3;
23394
23316
  z-index: 0;
@@ -23440,6 +23362,59 @@ textarea.v-field__input::placeholder {
23440
23362
 
23441
23363
  .v-img__gradient {
23442
23364
  background-repeat: no-repeat;
23365
+ }.v-icon {
23366
+ --v-icon-size-multiplier: 1;
23367
+ align-items: center;
23368
+ display: inline-flex;
23369
+ font-feature-settings: "liga";
23370
+ height: 1em;
23371
+ justify-content: center;
23372
+ letter-spacing: normal;
23373
+ line-height: 1;
23374
+ position: relative;
23375
+ text-indent: 0;
23376
+ text-align: center;
23377
+ -webkit-user-select: none;
23378
+ user-select: none;
23379
+ vertical-align: middle;
23380
+ width: 1em;
23381
+ min-width: 1em;
23382
+ }
23383
+ .v-icon--clickable {
23384
+ cursor: pointer;
23385
+ }
23386
+ .v-icon--disabled {
23387
+ pointer-events: none;
23388
+ opacity: 0.38;
23389
+ }
23390
+ .v-icon--size-x-small {
23391
+ font-size: calc(var(--v-icon-size-multiplier) * 1em);
23392
+ }
23393
+ .v-icon--size-small {
23394
+ font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
23395
+ }
23396
+ .v-icon--size-default {
23397
+ font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
23398
+ }
23399
+ .v-icon--size-large {
23400
+ font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
23401
+ }
23402
+ .v-icon--size-x-large {
23403
+ font-size: calc(var(--v-icon-size-multiplier) * 2em);
23404
+ }
23405
+
23406
+ .v-icon__svg {
23407
+ fill: currentColor;
23408
+ width: 100%;
23409
+ height: 100%;
23410
+ }
23411
+
23412
+ .v-icon--start {
23413
+ margin-inline-end: 8px;
23414
+ }
23415
+
23416
+ .v-icon--end {
23417
+ margin-inline-start: 8px;
23443
23418
  }.v-input {
23444
23419
  display: grid;
23445
23420
  flex: 1 1 auto;
@@ -23546,62 +23521,225 @@ textarea.v-field__input::placeholder {
23546
23521
  align-items: center;
23547
23522
  padding-top: 0;
23548
23523
  }
23549
-
23550
- .v-input__prepend {
23551
- grid-area: prepend;
23524
+
23525
+ .v-input__prepend {
23526
+ grid-area: prepend;
23527
+ }
23528
+
23529
+ .v-input__append {
23530
+ grid-area: append;
23531
+ }
23532
+
23533
+ .v-input__control {
23534
+ display: flex;
23535
+ grid-area: control;
23536
+ }
23537
+
23538
+ .v-input--hide-spin-buttons input::-webkit-outer-spin-button,
23539
+ .v-input--hide-spin-buttons input::-webkit-inner-spin-button {
23540
+ -webkit-appearance: none;
23541
+ margin: 0;
23542
+ }
23543
+ .v-input--hide-spin-buttons input[type=number] {
23544
+ -moz-appearance: textfield;
23545
+ }
23546
+ .v-input--plain-underlined .v-input__prepend,
23547
+ .v-input--plain-underlined .v-input__append {
23548
+ align-items: flex-start;
23549
+ }
23550
+ .v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
23551
+ padding-top: calc(var(--v-input-padding-top) + 4px);
23552
+ }
23553
+
23554
+ .v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
23555
+ padding-top: calc(var(--v-input-padding-top) + 2px);
23556
+ }
23557
+
23558
+ .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
23559
+ padding-top: calc(var(--v-input-padding-top) + 0px);
23560
+ }.v-infinite-scroll--horizontal {
23561
+ display: flex;
23562
+ flex-direction: row;
23563
+ overflow-x: auto;
23564
+ }
23565
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
23566
+ height: 100%;
23567
+ width: var(--v-infinite-margin-size, 1px);
23568
+ }
23569
+
23570
+ .v-infinite-scroll--vertical {
23571
+ display: flex;
23572
+ flex-direction: column;
23573
+ overflow-y: auto;
23574
+ }
23575
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
23576
+ height: 1px;
23577
+ width: 100%;
23578
+ }
23579
+
23580
+ .v-infinite-scroll-intersect {
23581
+ pointer-events: none;
23582
+ margin-top: var(--v-infinite-margin);
23583
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
23584
+ }
23585
+ .v-infinite-scroll-intersect:nth-child(2) {
23586
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
23587
+ }
23588
+ .v-infinite-scroll-intersect:nth-last-child(2) {
23589
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
23590
+ }
23591
+
23592
+ .v-infinite-scroll__side {
23593
+ align-items: center;
23594
+ display: flex;
23595
+ justify-content: center;
23596
+ padding: 8px;
23597
+ }.v-item-group {
23598
+ flex: 0 1 auto;
23599
+ max-width: 100%;
23600
+ position: relative;
23601
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23602
+ }.v-layout-item {
23603
+ position: absolute;
23604
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23605
+ }
23606
+
23607
+ .v-layout-item--absolute {
23608
+ position: absolute;
23609
+ }.v-layout {
23610
+ --v-scrollbar-offset: 0px;
23611
+ display: flex;
23612
+ flex: 1 1 auto;
23613
+ }
23614
+ .v-layout--full-height {
23615
+ --v-scrollbar-offset: inherit;
23616
+ height: 100%;
23617
+ }.v-label {
23618
+ align-items: center;
23619
+ color: inherit;
23620
+ display: inline-flex;
23621
+ font-size: 1rem;
23622
+ letter-spacing: 0.009375em;
23623
+ min-width: 0;
23624
+ opacity: var(--v-medium-emphasis-opacity);
23625
+ overflow: hidden;
23626
+ text-overflow: ellipsis;
23627
+ white-space: nowrap;
23628
+ }
23629
+
23630
+ .v-label--clickable {
23631
+ cursor: pointer;
23632
+ }.v-locale-provider {
23633
+ display: contents;
23634
+ }.v-list {
23635
+ overflow: auto;
23636
+ padding: 8px 0;
23637
+ position: relative;
23638
+ outline: none;
23639
+ }
23640
+ .v-list {
23641
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23642
+ border-style: solid;
23643
+ border-width: 0;
23644
+ }
23645
+ .v-list--border {
23646
+ border-width: thin;
23647
+ box-shadow: none;
23648
+ }
23649
+ .v-list {
23650
+ 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));
23651
+ }
23652
+ .v-list {
23653
+ border-radius: 0;
23654
+ }
23655
+ .v-list {
23656
+ background: rgba(var(--v-theme-surface));
23657
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23658
+ }
23659
+ .v-list--disabled {
23660
+ pointer-events: none;
23661
+ -webkit-user-select: none;
23662
+ user-select: none;
23663
+ }
23664
+ .v-list--nav {
23665
+ padding-inline: 8px;
23552
23666
  }
23553
-
23554
- .v-input__append {
23555
- grid-area: append;
23667
+ .v-list--rounded {
23668
+ border-radius: 4px;
23669
+ }
23670
+ .v-list--subheader {
23671
+ padding-top: 0;
23556
23672
  }
23557
23673
 
23558
- .v-input__control {
23674
+ .v-list-img {
23675
+ border-radius: inherit;
23559
23676
  display: flex;
23560
- grid-area: control;
23677
+ height: 100%;
23678
+ left: 0;
23679
+ overflow: hidden;
23680
+ position: absolute;
23681
+ top: 0;
23682
+ width: 100%;
23683
+ z-index: -1;
23561
23684
  }
23562
23685
 
23563
- .v-input--hide-spin-buttons input::-webkit-outer-spin-button,
23564
- .v-input--hide-spin-buttons input::-webkit-inner-spin-button {
23565
- -webkit-appearance: none;
23566
- margin: 0;
23686
+ .v-list-subheader {
23687
+ align-items: center;
23688
+ background: inherit;
23689
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23690
+ display: flex;
23691
+ font-size: 0.875rem;
23692
+ font-weight: 400;
23693
+ line-height: 1.375rem;
23694
+ padding-inline-end: 16px;
23695
+ min-height: 40px;
23696
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
23567
23697
  }
23568
- .v-input--hide-spin-buttons input[type=number] {
23569
- -moz-appearance: textfield;
23698
+ .v-list-subheader__text {
23699
+ overflow: hidden;
23700
+ text-overflow: ellipsis;
23701
+ white-space: nowrap;
23570
23702
  }
23571
- .v-input--plain-underlined .v-input__prepend,
23572
- .v-input--plain-underlined .v-input__append {
23573
- align-items: flex-start;
23703
+ .v-list--density-default .v-list-subheader {
23704
+ min-height: 40px;
23705
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23574
23706
  }
23575
- .v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
23576
- padding-top: calc(var(--v-input-padding-top) + 4px);
23707
+
23708
+ .v-list--density-comfortable .v-list-subheader {
23709
+ min-height: 36px;
23710
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23577
23711
  }
23578
23712
 
23579
- .v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
23580
- padding-top: calc(var(--v-input-padding-top) + 2px);
23713
+ .v-list--density-compact .v-list-subheader {
23714
+ min-height: 32px;
23715
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
23581
23716
  }
23582
23717
 
23583
- .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
23584
- padding-top: calc(var(--v-input-padding-top) + 0px);
23585
- }.v-item-group {
23586
- flex: 0 1 auto;
23587
- max-width: 100%;
23588
- position: relative;
23589
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23590
- }.v-label {
23591
- align-items: center;
23592
- color: inherit;
23593
- display: inline-flex;
23594
- font-size: 1rem;
23595
- letter-spacing: 0.009375em;
23596
- min-width: 0;
23597
- opacity: var(--v-medium-emphasis-opacity);
23598
- overflow: hidden;
23599
- text-overflow: ellipsis;
23600
- white-space: nowrap;
23718
+ .v-list-subheader--inset {
23719
+ --indent-padding: 56px;
23720
+ }
23721
+ .v-list--nav .v-list-subheader {
23722
+ font-size: 0.75rem;
23723
+ }
23724
+ .v-list-subheader--sticky {
23725
+ background: inherit;
23726
+ left: 0;
23727
+ position: sticky;
23728
+ top: 0;
23729
+ z-index: 1;
23601
23730
  }
23602
23731
 
23603
- .v-label--clickable {
23604
- cursor: pointer;
23732
+ .v-list__overlay {
23733
+ background-color: currentColor;
23734
+ border-radius: inherit;
23735
+ bottom: 0;
23736
+ left: 0;
23737
+ opacity: 0;
23738
+ pointer-events: none;
23739
+ position: absolute;
23740
+ right: 0;
23741
+ top: 0;
23742
+ transition: opacity 0.2s ease-in-out;
23605
23743
  }.v-list-item {
23606
23744
  align-items: center;
23607
23745
  display: grid;
@@ -23996,177 +24134,25 @@ textarea.v-field__input::placeholder {
23996
24134
  .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line {
23997
24135
  padding-inline: 16px;
23998
24136
  }
23999
- .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line {
24000
- padding-inline: 16px;
24001
- }
24002
- .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line {
24003
- padding-inline: 16px;
24004
- }
24005
-
24006
- .v-list-item--nav {
24007
- padding-inline: 8px;
24008
- }
24009
- .v-list .v-list-item--nav:not(:only-child) {
24010
- margin-bottom: 4px;
24011
- }
24012
-
24013
- .v-list-item__underlay {
24014
- position: absolute;
24015
- }
24016
-
24017
- .v-list-item__overlay {
24018
- background-color: currentColor;
24019
- border-radius: inherit;
24020
- bottom: 0;
24021
- left: 0;
24022
- opacity: 0;
24023
- pointer-events: none;
24024
- position: absolute;
24025
- right: 0;
24026
- top: 0;
24027
- transition: opacity 0.2s ease-in-out;
24028
- }
24029
- .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
24030
- --v-theme-overlay-multiplier: 0;
24031
- }
24032
-
24033
- .v-list {
24034
- --indent-padding: 0px;
24035
- }
24036
- .v-list--nav {
24037
- --indent-padding: -8px;
24038
- }
24039
-
24040
- .v-list-group {
24041
- --list-indent-size: 16px;
24042
- --parent-padding: var(--indent-padding);
24043
- --prepend-width: 40px;
24044
- }
24045
- .v-list--slim .v-list-group {
24046
- --prepend-width: 28px;
24047
- }
24048
- .v-list-group--fluid {
24049
- --list-indent-size: 0px;
24050
- }
24051
- .v-list-group--prepend {
24052
- --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
24053
- }
24054
- .v-list-group--fluid.v-list-group--prepend {
24055
- --parent-padding: var(--indent-padding);
24056
- }
24057
-
24058
- .v-list-group__items {
24059
- --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
24060
- }
24061
-
24062
- .v-list-group__items .v-list-item {
24063
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
24064
- }
24065
-
24066
- .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
24067
- opacity: 0;
24068
- }
24069
- .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
24070
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24071
- }.v-list {
24072
- overflow: auto;
24073
- padding: 8px 0;
24074
- position: relative;
24075
- outline: none;
24076
- }
24077
- .v-list {
24078
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24079
- border-style: solid;
24080
- border-width: 0;
24081
- }
24082
- .v-list--border {
24083
- border-width: thin;
24084
- box-shadow: none;
24085
- }
24086
- .v-list {
24087
- 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));
24088
- }
24089
- .v-list {
24090
- border-radius: 0;
24091
- }
24092
- .v-list {
24093
- background: rgba(var(--v-theme-surface));
24094
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24095
- }
24096
- .v-list--disabled {
24097
- pointer-events: none;
24098
- -webkit-user-select: none;
24099
- user-select: none;
24100
- }
24101
- .v-list--nav {
24102
- padding-inline: 8px;
24103
- }
24104
- .v-list--rounded {
24105
- border-radius: 4px;
24106
- }
24107
- .v-list--subheader {
24108
- padding-top: 0;
24109
- }
24110
-
24111
- .v-list-img {
24112
- border-radius: inherit;
24113
- display: flex;
24114
- height: 100%;
24115
- left: 0;
24116
- overflow: hidden;
24117
- position: absolute;
24118
- top: 0;
24119
- width: 100%;
24120
- z-index: -1;
24121
- }
24122
-
24123
- .v-list-subheader {
24124
- align-items: center;
24125
- background: inherit;
24126
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
24127
- display: flex;
24128
- font-size: 0.875rem;
24129
- font-weight: 400;
24130
- line-height: 1.375rem;
24131
- padding-inline-end: 16px;
24132
- min-height: 40px;
24133
- transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
24134
- }
24135
- .v-list-subheader__text {
24136
- overflow: hidden;
24137
- text-overflow: ellipsis;
24138
- white-space: nowrap;
24139
- }
24140
- .v-list--density-default .v-list-subheader {
24141
- min-height: 40px;
24142
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
24143
- }
24144
-
24145
- .v-list--density-comfortable .v-list-subheader {
24146
- min-height: 36px;
24147
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
24148
- }
24149
-
24150
- .v-list--density-compact .v-list-subheader {
24151
- min-height: 32px;
24152
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
24137
+ .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--two-line {
24138
+ padding-inline: 16px;
24139
+ }
24140
+ .v-list-item--density-compact:not(.v-list-item--nav).v-list-item--three-line {
24141
+ padding-inline: 16px;
24153
24142
  }
24154
24143
 
24155
- .v-list-subheader--inset {
24156
- --indent-padding: 56px;
24144
+ .v-list-item--nav {
24145
+ padding-inline: 8px;
24157
24146
  }
24158
- .v-list--nav .v-list-subheader {
24159
- font-size: 0.75rem;
24147
+ .v-list .v-list-item--nav:not(:only-child) {
24148
+ margin-bottom: 4px;
24160
24149
  }
24161
- .v-list-subheader--sticky {
24162
- background: inherit;
24163
- left: 0;
24164
- position: sticky;
24165
- top: 0;
24166
- z-index: 1;
24150
+
24151
+ .v-list-item__underlay {
24152
+ position: absolute;
24167
24153
  }
24168
24154
 
24169
- .v-list__overlay {
24155
+ .v-list-item__overlay {
24170
24156
  background-color: currentColor;
24171
24157
  border-radius: inherit;
24172
24158
  bottom: 0;
@@ -24177,23 +24163,68 @@ textarea.v-field__input::placeholder {
24177
24163
  right: 0;
24178
24164
  top: 0;
24179
24165
  transition: opacity 0.2s ease-in-out;
24180
- }.v-locale-provider {
24181
- display: contents;
24182
- }.v-layout-item {
24183
- position: absolute;
24184
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24166
+ }
24167
+ .v-list-item--active.v-list-item--variant-elevated .v-list-item__overlay {
24168
+ --v-theme-overlay-multiplier: 0;
24185
24169
  }
24186
24170
 
24187
- .v-layout-item--absolute {
24188
- position: absolute;
24189
- }.v-layout {
24190
- --v-scrollbar-offset: 0px;
24171
+ .v-list {
24172
+ --indent-padding: 0px;
24173
+ }
24174
+ .v-list--nav {
24175
+ --indent-padding: -8px;
24176
+ }
24177
+
24178
+ .v-list-group {
24179
+ --list-indent-size: 16px;
24180
+ --parent-padding: var(--indent-padding);
24181
+ --prepend-width: 40px;
24182
+ }
24183
+ .v-list--slim .v-list-group {
24184
+ --prepend-width: 28px;
24185
+ }
24186
+ .v-list-group--fluid {
24187
+ --list-indent-size: 0px;
24188
+ }
24189
+ .v-list-group--prepend {
24190
+ --parent-padding: calc(var(--indent-padding) + var(--prepend-width));
24191
+ }
24192
+ .v-list-group--fluid.v-list-group--prepend {
24193
+ --parent-padding: var(--indent-padding);
24194
+ }
24195
+
24196
+ .v-list-group__items {
24197
+ --indent-padding: calc(var(--parent-padding) + var(--list-indent-size));
24198
+ }
24199
+
24200
+ .v-list-group__items .v-list-item {
24201
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
24202
+ }
24203
+
24204
+ .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:not(:focus-visible) .v-list-item__overlay {
24205
+ opacity: 0;
24206
+ }
24207
+ .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
24208
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24209
+ }.v-menu > .v-overlay__content {
24191
24210
  display: flex;
24192
- flex: 1 1 auto;
24211
+ flex-direction: column;
24193
24212
  }
24194
- .v-layout--full-height {
24195
- --v-scrollbar-offset: inherit;
24213
+ .v-menu > .v-overlay__content {
24214
+ border-radius: 4px;
24215
+ }
24216
+ .v-menu > .v-overlay__content > .v-card,
24217
+ .v-menu > .v-overlay__content > .v-sheet,
24218
+ .v-menu > .v-overlay__content > .v-list {
24219
+ background: rgb(var(--v-theme-surface));
24220
+ border-radius: inherit;
24221
+ overflow: auto;
24196
24222
  height: 100%;
24223
+ }
24224
+ .v-menu > .v-overlay__content > .v-card,
24225
+ .v-menu > .v-overlay__content > .v-sheet,
24226
+ .v-menu > .v-overlay__content > .v-list {
24227
+ 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));
24197
24228
  }.v-main {
24198
24229
  flex: 1 0 auto;
24199
24230
  max-width: 100%;
@@ -24224,25 +24255,6 @@ textarea.v-field__input::placeholder {
24224
24255
  --v-layout-right: 0px;
24225
24256
  --v-layout-top: 0px;
24226
24257
  --v-layout-bottom: 0px;
24227
- }.v-menu > .v-overlay__content {
24228
- display: flex;
24229
- flex-direction: column;
24230
- }
24231
- .v-menu > .v-overlay__content {
24232
- border-radius: 4px;
24233
- }
24234
- .v-menu > .v-overlay__content > .v-card,
24235
- .v-menu > .v-overlay__content > .v-sheet,
24236
- .v-menu > .v-overlay__content > .v-list {
24237
- background: rgb(var(--v-theme-surface));
24238
- border-radius: inherit;
24239
- overflow: auto;
24240
- height: 100%;
24241
- }
24242
- .v-menu > .v-overlay__content > .v-card,
24243
- .v-menu > .v-overlay__content > .v-sheet,
24244
- .v-menu > .v-overlay__content > .v-list {
24245
- 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));
24246
24258
  }.v-navigation-drawer {
24247
24259
  -webkit-overflow-scrolling: touch;
24248
24260
  background: rgb(var(--v-theme-surface));
@@ -24409,6 +24421,14 @@ textarea.v-field__input::placeholder {
24409
24421
  }
24410
24422
  .v-otp-input__loader .v-progress-linear {
24411
24423
  position: absolute;
24424
+ }.v-pagination__list {
24425
+ display: inline-flex;
24426
+ list-style-type: none;
24427
+ justify-content: center;
24428
+ width: 100%;
24429
+ }
24430
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
24431
+ margin: 0.3rem;
24412
24432
  }.v-messages {
24413
24433
  flex: 1 1 auto;
24414
24434
  font-size: 12px;
@@ -24527,14 +24547,6 @@ textarea.v-field__input::placeholder {
24527
24547
  100% {
24528
24548
  transform: rotate(270deg);
24529
24549
  }
24530
- }.v-pagination__list {
24531
- display: inline-flex;
24532
- list-style-type: none;
24533
- justify-content: center;
24534
- width: 100%;
24535
- }
24536
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
24537
- margin: 0.3rem;
24538
24550
  }.v-overlay-container {
24539
24551
  contain: layout;
24540
24552
  left: 0;
@@ -24598,6 +24610,69 @@ html.v-overlay-scroll-blocked {
24598
24610
 
24599
24611
  .v-overlay--scroll-blocked {
24600
24612
  padding-inline-end: var(--v-scrollbar-offset);
24613
+ }.v-parallax {
24614
+ position: relative;
24615
+ overflow: hidden;
24616
+ }
24617
+ .v-parallax--active > .v-img__img {
24618
+ will-change: transform;
24619
+ }.v-slider .v-slider__container input {
24620
+ cursor: default;
24621
+ padding: 0;
24622
+ width: 100%;
24623
+ display: none;
24624
+ }
24625
+ .v-slider > .v-input__append,
24626
+ .v-slider > .v-input__prepend {
24627
+ padding: 0;
24628
+ }
24629
+
24630
+ .v-slider__container {
24631
+ position: relative;
24632
+ min-height: inherit;
24633
+ width: 100%;
24634
+ height: 100%;
24635
+ display: flex;
24636
+ justify-content: center;
24637
+ align-items: center;
24638
+ cursor: pointer;
24639
+ }
24640
+ .v-input--disabled .v-slider__container {
24641
+ opacity: var(--v-disabled-opacity);
24642
+ }
24643
+ .v-input--error:not(.v-input--disabled) .v-slider__container {
24644
+ color: rgb(var(--v-theme-error));
24645
+ }
24646
+
24647
+ .v-slider.v-input--horizontal {
24648
+ align-items: center;
24649
+ margin-inline: 8px 8px;
24650
+ }
24651
+ .v-slider.v-input--horizontal > .v-input__control {
24652
+ min-height: 32px;
24653
+ display: flex;
24654
+ align-items: center;
24655
+ }
24656
+
24657
+ .v-slider.v-input--vertical {
24658
+ justify-content: center;
24659
+ margin-top: 12px;
24660
+ margin-bottom: 12px;
24661
+ }
24662
+ .v-slider.v-input--vertical > .v-input__control {
24663
+ min-height: 300px;
24664
+ }
24665
+
24666
+ .v-slider.v-input--disabled {
24667
+ pointer-events: none;
24668
+ }
24669
+
24670
+ .v-slider--has-labels > .v-input__control {
24671
+ margin-bottom: 4px;
24672
+ }
24673
+
24674
+ .v-slider__label {
24675
+ margin-inline-end: 12px;
24601
24676
  }.v-progress-linear {
24602
24677
  background: transparent;
24603
24678
  overflow: hidden;
@@ -24826,69 +24901,59 @@ html.v-overlay-scroll-blocked {
24826
24901
  0% {
24827
24902
  background-position-x: var(--v-progress-linear-height);
24828
24903
  }
24829
- }.v-parallax {
24830
- position: relative;
24831
- overflow: hidden;
24832
- }
24833
- .v-parallax--active > .v-img__img {
24834
- will-change: transform;
24835
- }.v-slider .v-slider__container input {
24836
- cursor: default;
24837
- padding: 0;
24838
- width: 100%;
24839
- display: none;
24904
+ }.v-rating {
24905
+ max-width: 100%;
24906
+ display: inline-flex;
24907
+ white-space: nowrap;
24840
24908
  }
24841
- .v-slider > .v-input__append,
24842
- .v-slider > .v-input__prepend {
24843
- padding: 0;
24909
+ .v-rating--readonly {
24910
+ pointer-events: none;
24844
24911
  }
24845
24912
 
24846
- .v-slider__container {
24847
- position: relative;
24848
- min-height: inherit;
24849
- width: 100%;
24850
- height: 100%;
24851
- display: flex;
24852
- justify-content: center;
24913
+ .v-rating__wrapper {
24853
24914
  align-items: center;
24854
- cursor: pointer;
24855
- }
24856
- .v-input--disabled .v-slider__container {
24857
- opacity: var(--v-disabled-opacity);
24915
+ display: inline-flex;
24916
+ flex-direction: column;
24858
24917
  }
24859
- .v-input--error:not(.v-input--disabled) .v-slider__container {
24860
- color: rgb(var(--v-theme-error));
24918
+ .v-rating__wrapper--bottom {
24919
+ flex-direction: column-reverse;
24861
24920
  }
24862
24921
 
24863
- .v-slider.v-input--horizontal {
24864
- align-items: center;
24865
- margin-inline: 8px 8px;
24922
+ .v-rating__item {
24923
+ display: inline-flex;
24924
+ position: relative;
24866
24925
  }
24867
- .v-slider.v-input--horizontal > .v-input__control {
24868
- min-height: 32px;
24869
- display: flex;
24870
- align-items: center;
24926
+ .v-rating__item label {
24927
+ cursor: pointer;
24871
24928
  }
24872
-
24873
- .v-slider.v-input--vertical {
24874
- justify-content: center;
24875
- margin-top: 12px;
24876
- margin-bottom: 12px;
24929
+ .v-rating__item .v-btn--variant-plain {
24930
+ opacity: 1;
24931
+ }
24932
+ .v-rating__item .v-btn {
24933
+ transition-property: transform;
24934
+ }
24935
+ .v-rating__item .v-btn .v-icon {
24936
+ transition: inherit;
24937
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24877
24938
  }
24878
- .v-slider.v-input--vertical > .v-input__control {
24879
- min-height: 300px;
24939
+ .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24940
+ transform: scale(1.25);
24880
24941
  }
24881
-
24882
- .v-slider.v-input--disabled {
24883
- pointer-events: none;
24942
+ .v-rating__item--half {
24943
+ overflow: hidden;
24944
+ position: absolute;
24945
+ clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24946
+ z-index: 1;
24884
24947
  }
24885
-
24886
- .v-slider--has-labels > .v-input__control {
24887
- margin-bottom: 4px;
24948
+ .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24949
+ opacity: 0;
24888
24950
  }
24889
24951
 
24890
- .v-slider__label {
24891
- margin-inline-end: 12px;
24952
+ .v-rating__hidden {
24953
+ height: 0;
24954
+ opacity: 0;
24955
+ position: absolute;
24956
+ width: 0;
24892
24957
  }.v-radio-group > .v-input__control {
24893
24958
  flex-direction: column;
24894
24959
  }
@@ -24901,6 +24966,42 @@ html.v-overlay-scroll-blocked {
24901
24966
  }
24902
24967
  .v-radio-group .v-input__details {
24903
24968
  padding-inline: 16px;
24969
+ }.v-sheet {
24970
+ display: block;
24971
+ }
24972
+ .v-sheet {
24973
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24974
+ border-style: solid;
24975
+ border-width: 0;
24976
+ }
24977
+ .v-sheet--border {
24978
+ border-width: thin;
24979
+ box-shadow: none;
24980
+ }
24981
+ .v-sheet {
24982
+ 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));
24983
+ }
24984
+ .v-sheet--absolute {
24985
+ position: absolute;
24986
+ }
24987
+ .v-sheet--fixed {
24988
+ position: fixed;
24989
+ }
24990
+ .v-sheet--relative {
24991
+ position: relative;
24992
+ }
24993
+ .v-sheet--sticky {
24994
+ position: sticky;
24995
+ }
24996
+ .v-sheet {
24997
+ border-radius: 0;
24998
+ }
24999
+ .v-sheet {
25000
+ background: rgb(var(--v-theme-surface));
25001
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25002
+ }
25003
+ .v-sheet--rounded {
25004
+ border-radius: 4px;
24904
25005
  }.v-responsive {
24905
25006
  display: flex;
24906
25007
  flex: 1 0 auto;
@@ -24979,59 +25080,61 @@ html.v-overlay-scroll-blocked {
24979
25080
  .v-select--active-menu .v-select__menu-icon {
24980
25081
  opacity: var(--v-high-emphasis-opacity);
24981
25082
  transform: rotate(180deg);
24982
- }.v-rating {
24983
- max-width: 100%;
24984
- display: inline-flex;
24985
- white-space: nowrap;
24986
- }
24987
- .v-rating--readonly {
24988
- pointer-events: none;
25083
+ }.v-slide-group {
25084
+ display: flex;
25085
+ overflow: hidden;
24989
25086
  }
24990
25087
 
24991
- .v-rating__wrapper {
25088
+ .v-slide-group__next,
25089
+ .v-slide-group__prev {
24992
25090
  align-items: center;
24993
- display: inline-flex;
24994
- flex-direction: column;
25091
+ display: flex;
25092
+ flex: 0 1 52px;
25093
+ justify-content: center;
25094
+ min-width: 52px;
25095
+ cursor: pointer;
24995
25096
  }
24996
- .v-rating__wrapper--bottom {
24997
- flex-direction: column-reverse;
25097
+ .v-slide-group__next--disabled,
25098
+ .v-slide-group__prev--disabled {
25099
+ pointer-events: none;
25100
+ opacity: var(--v-disabled-opacity);
24998
25101
  }
24999
25102
 
25000
- .v-rating__item {
25001
- display: inline-flex;
25103
+ .v-slide-group__content {
25104
+ display: flex;
25105
+ flex: 1 0 auto;
25002
25106
  position: relative;
25107
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
25108
+ white-space: nowrap;
25003
25109
  }
25004
- .v-rating__item label {
25005
- cursor: pointer;
25006
- }
25007
- .v-rating__item .v-btn--variant-plain {
25008
- opacity: 1;
25009
- }
25010
- .v-rating__item .v-btn {
25011
- transition-property: transform;
25110
+ .v-slide-group__content > * {
25111
+ white-space: initial;
25012
25112
  }
25013
- .v-rating__item .v-btn .v-icon {
25014
- transition: inherit;
25015
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25113
+
25114
+ .v-slide-group__container {
25115
+ contain: content;
25116
+ display: flex;
25117
+ flex: 1 1 auto;
25118
+ overflow-x: auto;
25119
+ overflow-y: hidden;
25120
+ scrollbar-width: none;
25121
+ scrollbar-color: rgba(0, 0, 0, 0);
25016
25122
  }
25017
- .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
25018
- transform: scale(1.25);
25123
+ .v-slide-group__container::-webkit-scrollbar {
25124
+ display: none;
25019
25125
  }
25020
- .v-rating__item--half {
25021
- overflow: hidden;
25022
- position: absolute;
25023
- clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
25024
- z-index: 1;
25126
+
25127
+ .v-slide-group--vertical {
25128
+ max-height: inherit;
25025
25129
  }
25026
- .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
25027
- opacity: 0;
25130
+ .v-slide-group--vertical,
25131
+ .v-slide-group--vertical .v-slide-group__container,
25132
+ .v-slide-group--vertical .v-slide-group__content {
25133
+ flex-direction: column;
25028
25134
  }
25029
-
25030
- .v-rating__hidden {
25031
- height: 0;
25032
- opacity: 0;
25033
- position: absolute;
25034
- width: 0;
25135
+ .v-slide-group--vertical .v-slide-group__container {
25136
+ overflow-x: hidden;
25137
+ overflow-y: auto;
25035
25138
  }.v-selection-control {
25036
25139
  align-items: center;
25037
25140
  contain: layout;
@@ -25135,42 +25238,154 @@ html.v-overlay-scroll-blocked {
25135
25238
  }
25136
25239
  .v-selection-control--focus-visible .v-selection-control__input::before {
25137
25240
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25138
- }.v-sheet {
25139
- display: block;
25241
+ }.v-selection-control-group {
25242
+ grid-area: control;
25243
+ display: flex;
25244
+ flex-direction: column;
25245
+ }
25246
+ .v-selection-control-group--inline {
25247
+ flex-direction: row;
25248
+ flex-wrap: wrap;
25249
+ }.v-snackbar {
25250
+ justify-content: center;
25251
+ z-index: 10000;
25252
+ margin: 8px;
25253
+ margin-inline-end: calc(8px + var(--v-scrollbar-offset));
25254
+ padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
25255
+ }
25256
+ .v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
25257
+ align-items: flex-end;
25258
+ }
25259
+ .v-snackbar__wrapper {
25260
+ align-items: center;
25261
+ display: flex;
25262
+ max-width: 672px;
25263
+ min-height: 48px;
25264
+ min-width: 344px;
25265
+ overflow: hidden;
25266
+ padding: 0;
25267
+ }
25268
+ .v-snackbar__wrapper {
25269
+ border-radius: 4px;
25270
+ }
25271
+ .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
25272
+ background: transparent;
25273
+ color: inherit;
25274
+ }
25275
+ .v-snackbar--variant-plain {
25276
+ opacity: 0.62;
25277
+ }
25278
+ .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
25279
+ opacity: 1;
25280
+ }
25281
+ .v-snackbar--variant-plain .v-snackbar__overlay {
25282
+ display: none;
25283
+ }
25284
+ .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
25285
+ background: rgb(var(--v-theme-surface-variant));
25286
+ color: rgb(var(--v-theme-on-surface-variant));
25287
+ }
25288
+ .v-snackbar--variant-elevated {
25289
+ box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25290
+ }
25291
+ .v-snackbar--variant-flat {
25292
+ 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));
25293
+ }
25294
+ .v-snackbar--variant-outlined {
25295
+ border: thin solid currentColor;
25296
+ }
25297
+ .v-snackbar--variant-text .v-snackbar__overlay {
25298
+ background: currentColor;
25299
+ }
25300
+ .v-snackbar--variant-tonal .v-snackbar__underlay {
25301
+ background: currentColor;
25302
+ opacity: var(--v-activated-opacity);
25303
+ border-radius: inherit;
25304
+ top: 0;
25305
+ right: 0;
25306
+ bottom: 0;
25307
+ left: 0;
25308
+ pointer-events: none;
25309
+ }
25310
+ .v-snackbar .v-snackbar__underlay {
25311
+ position: absolute;
25312
+ }
25313
+
25314
+ .v-snackbar__content {
25315
+ flex-grow: 1;
25316
+ font-size: 0.875rem;
25317
+ font-weight: 400;
25318
+ letter-spacing: 0.0178571429em;
25319
+ line-height: 1.425;
25320
+ margin-right: auto;
25321
+ padding: 14px 16px;
25322
+ text-align: initial;
25323
+ }
25324
+ .v-snackbar__actions {
25325
+ align-items: center;
25326
+ align-self: center;
25327
+ display: flex;
25328
+ margin-inline-end: 8px;
25329
+ }
25330
+ .v-snackbar__actions > .v-btn {
25331
+ padding: 0 8px;
25332
+ min-width: auto;
25333
+ }
25334
+ .v-snackbar__timer {
25335
+ width: 100%;
25336
+ position: absolute;
25337
+ top: 0;
25338
+ }
25339
+ .v-snackbar__timer .v-progress-linear {
25340
+ transition: 0.2s linear;
25341
+ }
25342
+ .v-snackbar--absolute {
25343
+ position: absolute;
25344
+ z-index: 1;
25345
+ }
25346
+ .v-snackbar--multi-line .v-snackbar__wrapper {
25347
+ min-height: 68px;
25348
+ }
25349
+ .v-snackbar--vertical .v-snackbar__wrapper {
25350
+ flex-direction: column;
25140
25351
  }
25141
- .v-sheet {
25142
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25143
- border-style: solid;
25144
- border-width: 0;
25352
+ .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
25353
+ align-self: flex-end;
25354
+ margin-bottom: 8px;
25145
25355
  }
25146
- .v-sheet--border {
25147
- border-width: thin;
25148
- box-shadow: none;
25356
+ .v-snackbar--center {
25357
+ align-items: center;
25358
+ justify-content: center;
25149
25359
  }
25150
- .v-sheet {
25151
- 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));
25360
+ .v-snackbar--top {
25361
+ align-items: flex-start;
25152
25362
  }
25153
- .v-sheet--absolute {
25154
- position: absolute;
25363
+ .v-snackbar--bottom {
25364
+ align-items: flex-end;
25155
25365
  }
25156
- .v-sheet--fixed {
25157
- position: fixed;
25366
+ .v-snackbar--left, .v-snackbar--start {
25367
+ justify-content: flex-start;
25158
25368
  }
25159
- .v-sheet--relative {
25160
- position: relative;
25369
+ .v-snackbar--right, .v-snackbar--end {
25370
+ justify-content: flex-end;
25161
25371
  }
25162
- .v-sheet--sticky {
25163
- position: sticky;
25372
+
25373
+ .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
25374
+ transition-duration: 0.15s;
25375
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25164
25376
  }
25165
- .v-sheet {
25166
- border-radius: 0;
25377
+ .v-snackbar-transition-enter-active {
25378
+ transition-property: opacity, transform;
25167
25379
  }
25168
- .v-sheet {
25169
- background: rgb(var(--v-theme-surface));
25170
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25380
+ .v-snackbar-transition-enter-from {
25381
+ opacity: 0;
25382
+ transform: scale(0.8);
25171
25383
  }
25172
- .v-sheet--rounded {
25173
- border-radius: 4px;
25384
+ .v-snackbar-transition-leave-active {
25385
+ transition-property: opacity;
25386
+ }
25387
+ .v-snackbar-transition-leave-to {
25388
+ opacity: 0;
25174
25389
  }.v-skeleton-loader {
25175
25390
  align-items: center;
25176
25391
  background: rgb(var(--v-theme-surface));
@@ -25437,209 +25652,6 @@ html.v-overlay-scroll-blocked {
25437
25652
  }
25438
25653
  .v-speed-dial__content > *:nth-child(10) {
25439
25654
  transition-delay: 0.45s;
25440
- }.v-slide-group {
25441
- display: flex;
25442
- overflow: hidden;
25443
- }
25444
-
25445
- .v-slide-group__next,
25446
- .v-slide-group__prev {
25447
- align-items: center;
25448
- display: flex;
25449
- flex: 0 1 52px;
25450
- justify-content: center;
25451
- min-width: 52px;
25452
- cursor: pointer;
25453
- }
25454
- .v-slide-group__next--disabled,
25455
- .v-slide-group__prev--disabled {
25456
- pointer-events: none;
25457
- opacity: var(--v-disabled-opacity);
25458
- }
25459
-
25460
- .v-slide-group__content {
25461
- display: flex;
25462
- flex: 1 0 auto;
25463
- position: relative;
25464
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
25465
- white-space: nowrap;
25466
- }
25467
- .v-slide-group__content > * {
25468
- white-space: initial;
25469
- }
25470
-
25471
- .v-slide-group__container {
25472
- contain: content;
25473
- display: flex;
25474
- flex: 1 1 auto;
25475
- overflow-x: auto;
25476
- overflow-y: hidden;
25477
- scrollbar-width: none;
25478
- scrollbar-color: rgba(0, 0, 0, 0);
25479
- }
25480
- .v-slide-group__container::-webkit-scrollbar {
25481
- display: none;
25482
- }
25483
-
25484
- .v-slide-group--vertical {
25485
- max-height: inherit;
25486
- }
25487
- .v-slide-group--vertical,
25488
- .v-slide-group--vertical .v-slide-group__container,
25489
- .v-slide-group--vertical .v-slide-group__content {
25490
- flex-direction: column;
25491
- }
25492
- .v-slide-group--vertical .v-slide-group__container {
25493
- overflow-x: hidden;
25494
- overflow-y: auto;
25495
- }.v-selection-control-group {
25496
- grid-area: control;
25497
- display: flex;
25498
- flex-direction: column;
25499
- }
25500
- .v-selection-control-group--inline {
25501
- flex-direction: row;
25502
- flex-wrap: wrap;
25503
- }.v-snackbar {
25504
- justify-content: center;
25505
- z-index: 10000;
25506
- margin: 8px;
25507
- margin-inline-end: calc(8px + var(--v-scrollbar-offset));
25508
- padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
25509
- }
25510
- .v-snackbar:not(.v-snackbar--center):not(.v-snackbar--top) {
25511
- align-items: flex-end;
25512
- }
25513
- .v-snackbar__wrapper {
25514
- align-items: center;
25515
- display: flex;
25516
- max-width: 672px;
25517
- min-height: 48px;
25518
- min-width: 344px;
25519
- overflow: hidden;
25520
- padding: 0;
25521
- }
25522
- .v-snackbar__wrapper {
25523
- border-radius: 4px;
25524
- }
25525
- .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
25526
- background: transparent;
25527
- color: inherit;
25528
- }
25529
- .v-snackbar--variant-plain {
25530
- opacity: 0.62;
25531
- }
25532
- .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
25533
- opacity: 1;
25534
- }
25535
- .v-snackbar--variant-plain .v-snackbar__overlay {
25536
- display: none;
25537
- }
25538
- .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
25539
- background: rgb(var(--v-theme-surface-variant));
25540
- color: rgb(var(--v-theme-on-surface-variant));
25541
- }
25542
- .v-snackbar--variant-elevated {
25543
- box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
25544
- }
25545
- .v-snackbar--variant-flat {
25546
- 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));
25547
- }
25548
- .v-snackbar--variant-outlined {
25549
- border: thin solid currentColor;
25550
- }
25551
- .v-snackbar--variant-text .v-snackbar__overlay {
25552
- background: currentColor;
25553
- }
25554
- .v-snackbar--variant-tonal .v-snackbar__underlay {
25555
- background: currentColor;
25556
- opacity: var(--v-activated-opacity);
25557
- border-radius: inherit;
25558
- top: 0;
25559
- right: 0;
25560
- bottom: 0;
25561
- left: 0;
25562
- pointer-events: none;
25563
- }
25564
- .v-snackbar .v-snackbar__underlay {
25565
- position: absolute;
25566
- }
25567
-
25568
- .v-snackbar__content {
25569
- flex-grow: 1;
25570
- font-size: 0.875rem;
25571
- font-weight: 400;
25572
- letter-spacing: 0.0178571429em;
25573
- line-height: 1.425;
25574
- margin-right: auto;
25575
- padding: 14px 16px;
25576
- text-align: initial;
25577
- }
25578
- .v-snackbar__actions {
25579
- align-items: center;
25580
- align-self: center;
25581
- display: flex;
25582
- margin-inline-end: 8px;
25583
- }
25584
- .v-snackbar__actions > .v-btn {
25585
- padding: 0 8px;
25586
- min-width: auto;
25587
- }
25588
- .v-snackbar__timer {
25589
- width: 100%;
25590
- position: absolute;
25591
- top: 0;
25592
- }
25593
- .v-snackbar__timer .v-progress-linear {
25594
- transition: 0.2s linear;
25595
- }
25596
- .v-snackbar--absolute {
25597
- position: absolute;
25598
- z-index: 1;
25599
- }
25600
- .v-snackbar--multi-line .v-snackbar__wrapper {
25601
- min-height: 68px;
25602
- }
25603
- .v-snackbar--vertical .v-snackbar__wrapper {
25604
- flex-direction: column;
25605
- }
25606
- .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
25607
- align-self: flex-end;
25608
- margin-bottom: 8px;
25609
- }
25610
- .v-snackbar--center {
25611
- align-items: center;
25612
- justify-content: center;
25613
- }
25614
- .v-snackbar--top {
25615
- align-items: flex-start;
25616
- }
25617
- .v-snackbar--bottom {
25618
- align-items: flex-end;
25619
- }
25620
- .v-snackbar--left, .v-snackbar--start {
25621
- justify-content: flex-start;
25622
- }
25623
- .v-snackbar--right, .v-snackbar--end {
25624
- justify-content: flex-end;
25625
- }
25626
-
25627
- .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
25628
- transition-duration: 0.15s;
25629
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25630
- }
25631
- .v-snackbar-transition-enter-active {
25632
- transition-property: opacity, transform;
25633
- }
25634
- .v-snackbar-transition-enter-from {
25635
- opacity: 0;
25636
- transform: scale(0.8);
25637
- }
25638
- .v-snackbar-transition-leave-active {
25639
- transition-property: opacity;
25640
- }
25641
- .v-snackbar-transition-leave-to {
25642
- opacity: 0;
25643
25655
  }.v-stepper-item {
25644
25656
  align-items: center;
25645
25657
  align-self: stretch;
@@ -25759,6 +25771,49 @@ html.v-overlay-scroll-blocked {
25759
25771
  left: 0;
25760
25772
  width: 100%;
25761
25773
  height: 100%;
25774
+ }.v-system-bar {
25775
+ align-items: center;
25776
+ display: flex;
25777
+ flex: 1 1 auto;
25778
+ height: 24px;
25779
+ justify-content: flex-end;
25780
+ max-width: 100%;
25781
+ padding-inline: 8px;
25782
+ position: relative;
25783
+ text-align: end;
25784
+ width: 100%;
25785
+ }
25786
+ .v-system-bar .v-icon {
25787
+ opacity: var(--v-medium-emphasis-opacity);
25788
+ }
25789
+ .v-system-bar {
25790
+ 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));
25791
+ }
25792
+ .v-system-bar--absolute {
25793
+ position: absolute;
25794
+ }
25795
+ .v-system-bar--fixed {
25796
+ position: fixed;
25797
+ }
25798
+ .v-system-bar {
25799
+ background: rgba(var(--v-theme-surface-light));
25800
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25801
+ }
25802
+ .v-system-bar {
25803
+ font-size: 0.75rem;
25804
+ font-weight: 400;
25805
+ letter-spacing: 0.0333333333em;
25806
+ line-height: 1.667;
25807
+ text-transform: none;
25808
+ }
25809
+ .v-system-bar--rounded {
25810
+ border-radius: 0;
25811
+ }
25812
+ .v-system-bar--window {
25813
+ height: 32px;
25814
+ }
25815
+ .v-system-bar:not(.v-system-bar--absolute) {
25816
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25762
25817
  }.v-stepper.v-sheet {
25763
25818
  overflow: hidden;
25764
25819
  }
@@ -25815,49 +25870,6 @@ html.v-overlay-scroll-blocked {
25815
25870
  }
25816
25871
  .v-stepper-window-item .v-stepper-actions {
25817
25872
  padding: 1.5rem 0 0;
25818
- }.v-system-bar {
25819
- align-items: center;
25820
- display: flex;
25821
- flex: 1 1 auto;
25822
- height: 24px;
25823
- justify-content: flex-end;
25824
- max-width: 100%;
25825
- padding-inline: 8px;
25826
- position: relative;
25827
- text-align: end;
25828
- width: 100%;
25829
- }
25830
- .v-system-bar .v-icon {
25831
- opacity: var(--v-medium-emphasis-opacity);
25832
- }
25833
- .v-system-bar {
25834
- 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));
25835
- }
25836
- .v-system-bar--absolute {
25837
- position: absolute;
25838
- }
25839
- .v-system-bar--fixed {
25840
- position: fixed;
25841
- }
25842
- .v-system-bar {
25843
- background: rgba(var(--v-theme-surface-light));
25844
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25845
- }
25846
- .v-system-bar {
25847
- font-size: 0.75rem;
25848
- font-weight: 400;
25849
- letter-spacing: 0.0333333333em;
25850
- line-height: 1.667;
25851
- text-transform: none;
25852
- }
25853
- .v-system-bar--rounded {
25854
- border-radius: 0;
25855
- }
25856
- .v-system-bar--window {
25857
- height: 32px;
25858
- }
25859
- .v-system-bar:not(.v-system-bar--absolute) {
25860
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25861
25873
  }.v-tab.v-tab.v-btn {
25862
25874
  height: var(--v-tabs-height);
25863
25875
  border-radius: 0;
@@ -26188,241 +26200,95 @@ html.v-overlay-scroll-blocked {
26188
26200
  transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
26189
26201
  }
26190
26202
 
26191
- .v-switch.v-input {
26192
- flex: 0 1 auto;
26193
- }
26194
- .v-switch .v-selection-control {
26195
- min-height: var(--v-input-control-height);
26196
- }
26197
- .v-switch .v-selection-control__input {
26198
- border-radius: 50%;
26199
- transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
26200
- position: absolute;
26201
- }
26202
- .v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
26203
- transform: translateX(-10px);
26204
- }
26205
-
26206
- .v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
26207
- transform: translateX(10px);
26208
- }
26209
-
26210
- .v-switch .v-selection-control__input .v-icon {
26211
- position: absolute;
26212
- }
26213
- .v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
26214
- transform: translateX(10px);
26215
- }
26216
-
26217
- .v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
26218
- transform: translateX(-10px);
26219
- }
26220
-
26221
- .v-switch.v-switch--indeterminate .v-selection-control__input {
26222
- transform: scale(0.8);
26223
- }
26224
- .v-switch.v-switch--indeterminate .v-switch__thumb {
26225
- transform: scale(0.75);
26226
- box-shadow: none;
26227
- }
26228
- .v-switch.v-switch--inset .v-selection-control__wrapper {
26229
- width: auto;
26230
- }
26231
- .v-switch.v-input--vertical .v-label {
26232
- min-width: max-content;
26233
- }
26234
- .v-switch.v-input--vertical .v-selection-control__wrapper {
26235
- transform: rotate(-90deg);
26236
- }
26237
-
26238
- @media (forced-colors: active) {
26239
- .v-switch .v-switch__loader .v-progress-circular {
26240
- color: currentColor;
26241
- }
26242
- .v-switch .v-switch__thumb {
26243
- background-color: buttontext;
26244
- }
26245
- .v-switch .v-switch__track,
26246
- .v-switch .v-switch__thumb {
26247
- border: 1px solid;
26248
- color: buttontext;
26249
- }
26250
- .v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
26251
- background-color: highlight;
26252
- }
26253
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
26254
- background-color: highlight;
26255
- }
26256
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
26257
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
26258
- color: highlight;
26259
- }
26260
- .v-switch.v-switch--inset .v-switch__track {
26261
- border-width: 2px;
26262
- }
26263
- .v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
26264
- background-color: highlighttext;
26265
- color: highlighttext;
26266
- }
26267
- .v-switch.v-input--disabled .v-switch__thumb {
26268
- background-color: graytext;
26269
- }
26270
- .v-switch.v-input--disabled .v-switch__track,
26271
- .v-switch.v-input--disabled .v-switch__thumb {
26272
- color: graytext;
26273
- }
26274
- .v-switch.v-switch--loading .v-switch__thumb {
26275
- background-color: canvas;
26276
- }
26277
- .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
26278
- border-width: 0;
26279
- }
26280
- }.v-theme-provider {
26281
- background: rgb(var(--v-theme-background));
26282
- color: rgb(var(--v-theme-on-background));
26283
- }.v-toolbar {
26284
- align-items: flex-start;
26285
- display: flex;
26286
- flex: none;
26287
- flex-direction: column;
26288
- justify-content: space-between;
26289
- max-width: 100%;
26290
- position: relative;
26291
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26292
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
26293
- width: 100%;
26294
- }
26295
- .v-toolbar {
26296
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26297
- border-style: solid;
26298
- border-width: 0;
26299
- }
26300
- .v-toolbar--border {
26301
- border-width: thin;
26302
- box-shadow: none;
26303
- }
26304
- .v-toolbar {
26305
- 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));
26306
- }
26307
- .v-toolbar {
26308
- border-radius: 0;
26309
- }
26310
- .v-toolbar {
26311
- background: rgb(var(--v-theme-surface-light));
26312
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26313
- }
26314
- .v-toolbar--absolute {
26315
- position: absolute;
26316
- }
26317
- .v-toolbar--collapse {
26318
- max-width: 112px;
26319
- overflow: hidden;
26320
- border-end-end-radius: 24px;
26321
- }
26322
- .v-toolbar--collapse .v-toolbar-title {
26323
- display: none;
26324
- }
26325
- .v-toolbar--flat {
26326
- 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));
26327
- }
26328
- .v-toolbar--floating {
26329
- display: inline-flex;
26330
- }
26331
- .v-toolbar--rounded {
26332
- border-radius: 4px;
26333
- }
26334
-
26335
- .v-toolbar__content,
26336
- .v-toolbar__extension {
26337
- align-items: center;
26338
- display: flex;
26339
- flex: 0 0 auto;
26340
- position: relative;
26341
- transition: inherit;
26342
- width: 100%;
26343
- }
26344
-
26345
- .v-toolbar__content {
26346
- overflow: hidden;
26347
- }
26348
- .v-toolbar__content > .v-btn:first-child {
26349
- margin-inline-start: 4px;
26350
- }
26351
- .v-toolbar__content > .v-btn:last-child {
26352
- margin-inline-end: 4px;
26353
- }
26354
- .v-toolbar__content > .v-toolbar-title {
26355
- margin-inline-start: 20px;
26356
- }
26357
- .v-toolbar--density-prominent .v-toolbar__content {
26358
- align-items: flex-start;
26359
- }
26360
-
26361
- .v-toolbar__image {
26362
- display: flex;
26363
- opacity: var(--v-toolbar-image-opacity, 1);
26364
- transition-property: opacity;
26203
+ .v-switch.v-input {
26204
+ flex: 0 1 auto;
26365
26205
  }
26366
- .v-toolbar__image {
26206
+ .v-switch .v-selection-control {
26207
+ min-height: var(--v-input-control-height);
26208
+ }
26209
+ .v-switch .v-selection-control__input {
26210
+ border-radius: 50%;
26211
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
26367
26212
  position: absolute;
26368
- top: 0;
26369
- left: 0;
26370
- width: 100%;
26371
- height: 100%;
26213
+ }
26214
+ .v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
26215
+ transform: translateX(-10px);
26372
26216
  }
26373
26217
 
26374
- .v-toolbar__prepend,
26375
- .v-toolbar__append {
26376
- align-items: center;
26377
- align-self: stretch;
26378
- display: flex;
26218
+ .v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
26219
+ transform: translateX(10px);
26379
26220
  }
26380
26221
 
26381
- .v-toolbar__prepend {
26382
- margin-inline: 4px auto;
26222
+ .v-switch .v-selection-control__input .v-icon {
26223
+ position: absolute;
26224
+ }
26225
+ .v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
26226
+ transform: translateX(10px);
26383
26227
  }
26384
26228
 
26385
- .v-toolbar__append {
26386
- margin-inline: auto 4px;
26229
+ .v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
26230
+ transform: translateX(-10px);
26387
26231
  }
26388
26232
 
26389
- .v-toolbar-title {
26390
- flex: 1 1;
26391
- font-size: 1.25rem;
26392
- min-width: 0;
26233
+ .v-switch.v-switch--indeterminate .v-selection-control__input {
26234
+ transform: scale(0.8);
26393
26235
  }
26394
- .v-toolbar-title {
26395
- font-size: 1.25rem;
26396
- font-weight: 400;
26397
- letter-spacing: 0;
26398
- line-height: 1.75rem;
26399
- text-transform: none;
26236
+ .v-switch.v-switch--indeterminate .v-switch__thumb {
26237
+ transform: scale(0.75);
26238
+ box-shadow: none;
26400
26239
  }
26401
- .v-toolbar--density-prominent .v-toolbar-title {
26402
- align-self: flex-end;
26403
- padding-bottom: 6px;
26240
+ .v-switch.v-switch--inset .v-selection-control__wrapper {
26241
+ width: auto;
26404
26242
  }
26405
- .v-toolbar--density-prominent .v-toolbar-title {
26406
- font-size: 1.5rem;
26407
- font-weight: 400;
26408
- letter-spacing: 0;
26409
- line-height: 2.25rem;
26410
- text-transform: none;
26243
+ .v-switch.v-input--vertical .v-label {
26244
+ min-width: max-content;
26411
26245
  }
26412
-
26413
- .v-toolbar-title__placeholder {
26414
- overflow: hidden;
26415
- text-overflow: ellipsis;
26416
- white-space: nowrap;
26246
+ .v-switch.v-input--vertical .v-selection-control__wrapper {
26247
+ transform: rotate(-90deg);
26417
26248
  }
26418
26249
 
26419
- .v-toolbar-items {
26420
- display: flex;
26421
- height: inherit;
26422
- align-self: stretch;
26423
- }
26424
- .v-toolbar-items > .v-btn {
26425
- border-radius: 0;
26250
+ @media (forced-colors: active) {
26251
+ .v-switch .v-switch__loader .v-progress-circular {
26252
+ color: currentColor;
26253
+ }
26254
+ .v-switch .v-switch__thumb {
26255
+ background-color: buttontext;
26256
+ }
26257
+ .v-switch .v-switch__track,
26258
+ .v-switch .v-switch__thumb {
26259
+ border: 1px solid;
26260
+ color: buttontext;
26261
+ }
26262
+ .v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
26263
+ background-color: highlight;
26264
+ }
26265
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
26266
+ background-color: highlight;
26267
+ }
26268
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
26269
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
26270
+ color: highlight;
26271
+ }
26272
+ .v-switch.v-switch--inset .v-switch__track {
26273
+ border-width: 2px;
26274
+ }
26275
+ .v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
26276
+ background-color: highlighttext;
26277
+ color: highlighttext;
26278
+ }
26279
+ .v-switch.v-input--disabled .v-switch__thumb {
26280
+ background-color: graytext;
26281
+ }
26282
+ .v-switch.v-input--disabled .v-switch__track,
26283
+ .v-switch.v-input--disabled .v-switch__thumb {
26284
+ color: graytext;
26285
+ }
26286
+ .v-switch.v-switch--loading .v-switch__thumb {
26287
+ background-color: canvas;
26288
+ }
26289
+ .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
26290
+ border-width: 0;
26291
+ }
26426
26292
  }/* region BLOCK */
26427
26293
  .v-text-field input {
26428
26294
  color: inherit;
@@ -26529,6 +26395,9 @@ html.v-overlay-scroll-blocked {
26529
26395
  }
26530
26396
  .v-textarea textarea:invalid {
26531
26397
  box-shadow: none;
26398
+ }.v-theme-provider {
26399
+ background: rgb(var(--v-theme-background));
26400
+ color: rgb(var(--v-theme-on-background));
26532
26401
  }.v-timeline .v-timeline-divider__dot {
26533
26402
  background: rgb(var(--v-theme-surface-light));
26534
26403
  }
@@ -26917,36 +26786,188 @@ html.v-overlay-scroll-blocked {
26917
26786
  .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26918
26787
  height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26919
26788
  }
26920
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26921
- height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26789
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26790
+ height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26791
+ }
26792
+
26793
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
26794
+ display: none;
26795
+ }
26796
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
26797
+ --v-timeline-line-size-offset: 12px;
26798
+ }
26799
+ .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26800
+ padding-block-start: 0;
26801
+ }
26802
+
26803
+ .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26804
+ padding-inline-start: 0;
26805
+ }
26806
+
26807
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
26808
+ display: none;
26809
+ }
26810
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
26811
+ --v-timeline-line-size-offset: 12px;
26812
+ }
26813
+ .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26814
+ padding-block-end: 0;
26815
+ }
26816
+
26817
+ .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 {
26818
+ padding-inline-end: 0;
26819
+ }.v-toolbar {
26820
+ align-items: flex-start;
26821
+ display: flex;
26822
+ flex: none;
26823
+ flex-direction: column;
26824
+ justify-content: space-between;
26825
+ max-width: 100%;
26826
+ position: relative;
26827
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26828
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
26829
+ width: 100%;
26830
+ }
26831
+ .v-toolbar {
26832
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26833
+ border-style: solid;
26834
+ border-width: 0;
26835
+ }
26836
+ .v-toolbar--border {
26837
+ border-width: thin;
26838
+ box-shadow: none;
26839
+ }
26840
+ .v-toolbar {
26841
+ 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));
26842
+ }
26843
+ .v-toolbar {
26844
+ border-radius: 0;
26845
+ }
26846
+ .v-toolbar {
26847
+ background: rgb(var(--v-theme-surface-light));
26848
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26849
+ }
26850
+ .v-toolbar--absolute {
26851
+ position: absolute;
26852
+ }
26853
+ .v-toolbar--collapse {
26854
+ max-width: 112px;
26855
+ overflow: hidden;
26856
+ border-end-end-radius: 24px;
26857
+ }
26858
+ .v-toolbar--collapse .v-toolbar-title {
26859
+ display: none;
26860
+ }
26861
+ .v-toolbar--flat {
26862
+ 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));
26863
+ }
26864
+ .v-toolbar--floating {
26865
+ display: inline-flex;
26866
+ }
26867
+ .v-toolbar--rounded {
26868
+ border-radius: 4px;
26869
+ }
26870
+
26871
+ .v-toolbar__content,
26872
+ .v-toolbar__extension {
26873
+ align-items: center;
26874
+ display: flex;
26875
+ flex: 0 0 auto;
26876
+ position: relative;
26877
+ transition: inherit;
26878
+ width: 100%;
26879
+ }
26880
+
26881
+ .v-toolbar__content {
26882
+ overflow: hidden;
26883
+ }
26884
+ .v-toolbar__content > .v-btn:first-child {
26885
+ margin-inline-start: 4px;
26886
+ }
26887
+ .v-toolbar__content > .v-btn:last-child {
26888
+ margin-inline-end: 4px;
26889
+ }
26890
+ .v-toolbar__content > .v-toolbar-title {
26891
+ margin-inline-start: 20px;
26892
+ }
26893
+ .v-toolbar--density-prominent .v-toolbar__content {
26894
+ align-items: flex-start;
26895
+ }
26896
+
26897
+ .v-toolbar__image {
26898
+ display: flex;
26899
+ opacity: var(--v-toolbar-image-opacity, 1);
26900
+ transition-property: opacity;
26901
+ }
26902
+ .v-toolbar__image {
26903
+ position: absolute;
26904
+ top: 0;
26905
+ left: 0;
26906
+ width: 100%;
26907
+ height: 100%;
26908
+ }
26909
+
26910
+ .v-toolbar__prepend,
26911
+ .v-toolbar__append {
26912
+ align-items: center;
26913
+ align-self: stretch;
26914
+ display: flex;
26915
+ }
26916
+
26917
+ .v-toolbar__prepend {
26918
+ margin-inline: 4px auto;
26919
+ }
26920
+
26921
+ .v-toolbar__append {
26922
+ margin-inline: auto 4px;
26922
26923
  }
26923
26924
 
26924
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
26925
- display: none;
26925
+ .v-toolbar-title {
26926
+ flex: 1 1;
26927
+ font-size: 1.25rem;
26928
+ min-width: 0;
26926
26929
  }
26927
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
26928
- --v-timeline-line-size-offset: 12px;
26930
+ .v-toolbar-title {
26931
+ font-size: 1.25rem;
26932
+ font-weight: 400;
26933
+ letter-spacing: 0;
26934
+ line-height: 1.75rem;
26935
+ text-transform: none;
26929
26936
  }
26930
- .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26931
- padding-block-start: 0;
26937
+ .v-toolbar--density-prominent .v-toolbar-title {
26938
+ align-self: flex-end;
26939
+ padding-bottom: 6px;
26932
26940
  }
26933
-
26934
- .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26935
- padding-inline-start: 0;
26941
+ .v-toolbar--density-prominent .v-toolbar-title {
26942
+ font-size: 1.5rem;
26943
+ font-weight: 400;
26944
+ letter-spacing: 0;
26945
+ line-height: 2.25rem;
26946
+ text-transform: none;
26936
26947
  }
26937
26948
 
26938
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
26939
- display: none;
26949
+ .v-toolbar-title__placeholder {
26950
+ overflow: hidden;
26951
+ text-overflow: ellipsis;
26952
+ white-space: nowrap;
26940
26953
  }
26941
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
26942
- --v-timeline-line-size-offset: 12px;
26954
+
26955
+ .v-toolbar-items {
26956
+ display: flex;
26957
+ height: inherit;
26958
+ align-self: stretch;
26943
26959
  }
26944
- .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26945
- padding-block-end: 0;
26960
+ .v-toolbar-items > .v-btn {
26961
+ border-radius: 0;
26962
+ }.v-virtual-scroll {
26963
+ display: block;
26964
+ flex: 1 1 auto;
26965
+ max-width: 100%;
26966
+ overflow: auto;
26967
+ position: relative;
26946
26968
  }
26947
-
26948
- .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 {
26949
- padding-inline-end: 0;
26969
+ .v-virtual-scroll__container {
26970
+ display: block;
26950
26971
  }.v-tooltip > .v-overlay__content {
26951
26972
  background: rgb(var(--v-theme-surface-variant));
26952
26973
  color: rgb(var(--v-theme-on-surface-variant));
@@ -27039,15 +27060,6 @@ html.v-overlay-scroll-blocked {
27039
27060
  }
27040
27061
  .v-window-y-reverse-transition-leave-to {
27041
27062
  transform: translateY(100%);
27042
- }.v-virtual-scroll {
27043
- display: block;
27044
- flex: 1 1 auto;
27045
- max-width: 100%;
27046
- overflow: auto;
27047
- position: relative;
27048
- }
27049
- .v-virtual-scroll__container {
27050
- display: block;
27051
27063
  }.v-color-picker-canvas {
27052
27064
  display: flex;
27053
27065
  position: relative;
@@ -27098,41 +27110,6 @@ html.v-overlay-scroll-blocked {
27098
27110
  }
27099
27111
  .v-color-picker-edit__input span {
27100
27112
  font-size: 0.75rem;
27101
- }.v-color-picker-swatches {
27102
- overflow-y: auto;
27103
- }
27104
- .v-color-picker-swatches > div {
27105
- display: flex;
27106
- flex-wrap: wrap;
27107
- justify-content: center;
27108
- padding: 8px;
27109
- }
27110
-
27111
- .v-color-picker-swatches__swatch {
27112
- display: flex;
27113
- flex-direction: column;
27114
- margin-bottom: 10px;
27115
- }
27116
-
27117
- .v-color-picker-swatches__color {
27118
- position: relative;
27119
- height: 18px;
27120
- max-height: 18px;
27121
- width: 45px;
27122
- margin: 2px 4px;
27123
- border-radius: 2px;
27124
- -webkit-user-select: none;
27125
- user-select: none;
27126
- overflow: hidden;
27127
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
27128
- cursor: pointer;
27129
- }
27130
- .v-color-picker-swatches__color > div {
27131
- display: flex;
27132
- align-items: center;
27133
- justify-content: center;
27134
- width: 100%;
27135
- height: 100%;
27136
27113
  }.v-color-picker-preview__alpha .v-slider-track__background {
27137
27114
  background-color: transparent !important;
27138
27115
  }
@@ -27163,205 +27140,81 @@ html.v-overlay-scroll-blocked {
27163
27140
  padding-inline-end: 16px;
27164
27141
  }
27165
27142
 
27166
- .v-color-picker-preview__dot {
27167
- position: relative;
27168
- height: 30px;
27169
- width: 30px;
27170
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
27171
- border-radius: 50%;
27172
- overflow: hidden;
27173
- margin-inline-end: 24px;
27174
- }
27175
- .v-color-picker-preview__dot > div {
27176
- width: 100%;
27177
- height: 100%;
27178
- }
27179
-
27180
- .v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
27181
- background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
27182
- }
27183
-
27184
- .v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
27185
- background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
27186
- }
27187
-
27188
- .v-color-picker-preview__track {
27189
- position: relative;
27190
- width: 100%;
27191
- margin: 0 !important;
27192
- }
27193
- .v-color-picker-preview__track .v-slider-track__fill {
27194
- display: none;
27195
- }
27196
-
27197
- .v-color-picker-preview {
27198
- align-items: center;
27199
- display: flex;
27200
- margin-bottom: 0;
27201
- }
27202
-
27203
- .v-color-picker-preview__eye-dropper {
27204
- position: relative;
27205
- margin-right: 12px;
27206
- }.v-slider-thumb {
27207
- touch-action: none;
27208
- color: rgb(var(--v-theme-surface-variant));
27209
- }
27210
- .v-input--error:not(.v-input--disabled) .v-slider-thumb {
27211
- color: inherit;
27212
- }
27213
-
27214
- .v-slider-thumb__label {
27215
- background: rgba(var(--v-theme-surface-variant), 0.7);
27216
- color: rgb(var(--v-theme-on-surface-variant));
27217
- }
27218
- .v-slider-thumb__label::before {
27219
- color: rgba(var(--v-theme-surface-variant), 0.7);
27220
- }
27221
-
27222
- .v-slider-thumb {
27223
- outline: none;
27224
- position: absolute;
27225
- transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
27226
- }
27227
-
27228
- .v-slider-thumb__surface {
27229
- cursor: pointer;
27230
- width: var(--v-slider-thumb-size);
27231
- height: var(--v-slider-thumb-size);
27232
- border-radius: 50%;
27233
- -webkit-user-select: none;
27234
- user-select: none;
27235
- background-color: currentColor;
27236
- }
27237
- @media (forced-colors: active) {
27238
- .v-slider-thumb__surface {
27239
- background-color: highlight;
27240
- }
27241
- }
27242
- .v-slider-thumb__surface::before {
27243
- transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
27244
- content: "";
27245
- color: inherit;
27246
- top: 0;
27247
- left: 0;
27248
- width: 100%;
27249
- height: 100%;
27250
- border-radius: 50%;
27251
- background: currentColor;
27252
- position: absolute;
27253
- pointer-events: none;
27254
- opacity: 0;
27255
- }
27256
- .v-slider-thumb__surface::after {
27257
- content: "";
27258
- width: 42px;
27259
- height: 42px;
27260
- position: absolute;
27261
- top: 50%;
27262
- left: 50%;
27263
- transform: translate(-50%, -50%);
27264
- }
27265
-
27266
- .v-slider-thumb__label-container {
27267
- position: absolute;
27268
- transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
27269
- }
27270
-
27271
- .v-slider-thumb__label {
27272
- display: flex;
27273
- align-items: center;
27274
- justify-content: center;
27275
- font-size: 0.75rem;
27276
- min-width: 35px;
27277
- height: 25px;
27278
- border-radius: 4px;
27279
- padding: 6px;
27280
- position: absolute;
27281
- -webkit-user-select: none;
27282
- user-select: none;
27283
- transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
27284
- }
27285
- .v-slider-thumb__label::before {
27286
- content: "";
27287
- width: 0;
27288
- height: 0;
27289
- position: absolute;
27290
- }
27291
-
27292
- .v-slider-thumb__ripple {
27293
- position: absolute;
27294
- left: calc(var(--v-slider-thumb-size) / -2);
27295
- top: calc(var(--v-slider-thumb-size) / -2);
27296
- width: calc(var(--v-slider-thumb-size) * 2);
27297
- height: calc(var(--v-slider-thumb-size) * 2);
27298
- background: inherit;
27299
- }
27300
-
27301
- .v-slider.v-input--horizontal .v-slider-thumb {
27302
- top: 50%;
27303
- transform: translateY(-50%);
27304
- inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
27305
- }
27306
- .v-slider.v-input--horizontal .v-slider-thumb__label-container {
27307
- left: calc(var(--v-slider-thumb-size) / 2);
27308
- top: 0;
27309
- }
27310
- .v-slider.v-input--horizontal .v-slider-thumb__label {
27311
- bottom: calc(var(--v-slider-thumb-size) / 2);
27312
- }
27313
- .v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
27314
- transform: translateX(-50%);
27315
- }
27316
-
27317
- .v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
27318
- transform: translateX(50%);
27143
+ .v-color-picker-preview__dot {
27144
+ position: relative;
27145
+ height: 30px;
27146
+ width: 30px;
27147
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
27148
+ border-radius: 50%;
27149
+ overflow: hidden;
27150
+ margin-inline-end: 24px;
27319
27151
  }
27320
-
27321
- .v-slider.v-input--horizontal .v-slider-thumb__label::before {
27322
- border-left: 6px solid transparent;
27323
- border-right: 6px solid transparent;
27324
- border-top: 6px solid currentColor;
27325
- bottom: -6px;
27152
+ .v-color-picker-preview__dot > div {
27153
+ width: 100%;
27154
+ height: 100%;
27326
27155
  }
27327
27156
 
27328
- .v-slider.v-input--vertical .v-slider-thumb {
27329
- top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
27157
+ .v-locale--is-ltr.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-ltr .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
27158
+ background: linear-gradient(to right, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
27330
27159
  }
27331
- .v-slider.v-input--vertical .v-slider-thumb__label-container {
27332
- top: calc(var(--v-slider-thumb-size) / 2);
27333
- right: 0;
27160
+
27161
+ .v-locale--is-rtl.v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background, .v-locale--is-rtl .v-color-picker-preview__hue:not(.v-input--is-disabled) .v-slider-track__background {
27162
+ background: linear-gradient(to left, #F00 0%, #FF0 16.66%, #0F0 33.33%, #0FF 50%, #00F 66.66%, #F0F 83.33%, #F00 100%);
27334
27163
  }
27335
- .v-slider.v-input--vertical .v-slider-thumb__label {
27336
- top: -12.5px;
27337
- left: calc(var(--v-slider-thumb-size) / 2);
27164
+
27165
+ .v-color-picker-preview__track {
27166
+ position: relative;
27167
+ width: 100%;
27168
+ margin: 0 !important;
27338
27169
  }
27339
- .v-slider.v-input--vertical .v-slider-thumb__label::before {
27340
- border-right: 6px solid currentColor;
27341
- border-top: 6px solid transparent;
27342
- border-bottom: 6px solid transparent;
27343
- left: -6px;
27170
+ .v-color-picker-preview__track .v-slider-track__fill {
27171
+ display: none;
27344
27172
  }
27345
27173
 
27346
- .v-slider-thumb--focused .v-slider-thumb__surface::before {
27347
- transform: scale(2);
27348
- opacity: var(--v-focus-opacity);
27174
+ .v-color-picker-preview {
27175
+ align-items: center;
27176
+ display: flex;
27177
+ margin-bottom: 0;
27349
27178
  }
27350
27179
 
27351
- .v-slider-thumb--pressed {
27352
- transition: none;
27180
+ .v-color-picker-preview__eye-dropper {
27181
+ position: relative;
27182
+ margin-right: 12px;
27183
+ }.v-color-picker-swatches {
27184
+ overflow-y: auto;
27353
27185
  }
27354
- .v-slider-thumb--pressed .v-slider-thumb__surface::before {
27355
- opacity: var(--v-pressed-opacity);
27186
+ .v-color-picker-swatches > div {
27187
+ display: flex;
27188
+ flex-wrap: wrap;
27189
+ justify-content: center;
27190
+ padding: 8px;
27356
27191
  }
27357
27192
 
27358
- @media (hover: hover) {
27359
- .v-slider-thumb:hover .v-slider-thumb__surface::before {
27360
- transform: scale(2);
27361
- }
27362
- .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
27363
- opacity: var(--v-hover-opacity);
27364
- }
27193
+ .v-color-picker-swatches__swatch {
27194
+ display: flex;
27195
+ flex-direction: column;
27196
+ margin-bottom: 10px;
27197
+ }
27198
+
27199
+ .v-color-picker-swatches__color {
27200
+ position: relative;
27201
+ height: 18px;
27202
+ max-height: 18px;
27203
+ width: 45px;
27204
+ margin: 2px 4px;
27205
+ border-radius: 2px;
27206
+ -webkit-user-select: none;
27207
+ user-select: none;
27208
+ overflow: hidden;
27209
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
27210
+ cursor: pointer;
27211
+ }
27212
+ .v-color-picker-swatches__color > div {
27213
+ display: flex;
27214
+ align-items: center;
27215
+ justify-content: center;
27216
+ width: 100%;
27217
+ height: 100%;
27365
27218
  }.v-slider-track__background {
27366
27219
  background-color: rgb(var(--v-theme-surface-variant));
27367
27220
  }
@@ -27540,4 +27393,163 @@ html.v-overlay-scroll-blocked {
27540
27393
 
27541
27394
  .v-slider-track__background--opacity {
27542
27395
  opacity: 0.38;
27396
+ }.v-slider-thumb {
27397
+ touch-action: none;
27398
+ color: rgb(var(--v-theme-surface-variant));
27399
+ }
27400
+ .v-input--error:not(.v-input--disabled) .v-slider-thumb {
27401
+ color: inherit;
27402
+ }
27403
+
27404
+ .v-slider-thumb__label {
27405
+ background: rgba(var(--v-theme-surface-variant), 0.7);
27406
+ color: rgb(var(--v-theme-on-surface-variant));
27407
+ }
27408
+ .v-slider-thumb__label::before {
27409
+ color: rgba(var(--v-theme-surface-variant), 0.7);
27410
+ }
27411
+
27412
+ .v-slider-thumb {
27413
+ outline: none;
27414
+ position: absolute;
27415
+ transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
27416
+ }
27417
+
27418
+ .v-slider-thumb__surface {
27419
+ cursor: pointer;
27420
+ width: var(--v-slider-thumb-size);
27421
+ height: var(--v-slider-thumb-size);
27422
+ border-radius: 50%;
27423
+ -webkit-user-select: none;
27424
+ user-select: none;
27425
+ background-color: currentColor;
27426
+ }
27427
+ @media (forced-colors: active) {
27428
+ .v-slider-thumb__surface {
27429
+ background-color: highlight;
27430
+ }
27431
+ }
27432
+ .v-slider-thumb__surface::before {
27433
+ transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
27434
+ content: "";
27435
+ color: inherit;
27436
+ top: 0;
27437
+ left: 0;
27438
+ width: 100%;
27439
+ height: 100%;
27440
+ border-radius: 50%;
27441
+ background: currentColor;
27442
+ position: absolute;
27443
+ pointer-events: none;
27444
+ opacity: 0;
27445
+ }
27446
+ .v-slider-thumb__surface::after {
27447
+ content: "";
27448
+ width: 42px;
27449
+ height: 42px;
27450
+ position: absolute;
27451
+ top: 50%;
27452
+ left: 50%;
27453
+ transform: translate(-50%, -50%);
27454
+ }
27455
+
27456
+ .v-slider-thumb__label-container {
27457
+ position: absolute;
27458
+ transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
27459
+ }
27460
+
27461
+ .v-slider-thumb__label {
27462
+ display: flex;
27463
+ align-items: center;
27464
+ justify-content: center;
27465
+ font-size: 0.75rem;
27466
+ min-width: 35px;
27467
+ height: 25px;
27468
+ border-radius: 4px;
27469
+ padding: 6px;
27470
+ position: absolute;
27471
+ -webkit-user-select: none;
27472
+ user-select: none;
27473
+ transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
27474
+ }
27475
+ .v-slider-thumb__label::before {
27476
+ content: "";
27477
+ width: 0;
27478
+ height: 0;
27479
+ position: absolute;
27480
+ }
27481
+
27482
+ .v-slider-thumb__ripple {
27483
+ position: absolute;
27484
+ left: calc(var(--v-slider-thumb-size) / -2);
27485
+ top: calc(var(--v-slider-thumb-size) / -2);
27486
+ width: calc(var(--v-slider-thumb-size) * 2);
27487
+ height: calc(var(--v-slider-thumb-size) * 2);
27488
+ background: inherit;
27489
+ }
27490
+
27491
+ .v-slider.v-input--horizontal .v-slider-thumb {
27492
+ top: 50%;
27493
+ transform: translateY(-50%);
27494
+ inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
27495
+ }
27496
+ .v-slider.v-input--horizontal .v-slider-thumb__label-container {
27497
+ left: calc(var(--v-slider-thumb-size) / 2);
27498
+ top: 0;
27499
+ }
27500
+ .v-slider.v-input--horizontal .v-slider-thumb__label {
27501
+ bottom: calc(var(--v-slider-thumb-size) / 2);
27502
+ }
27503
+ .v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
27504
+ transform: translateX(-50%);
27505
+ }
27506
+
27507
+ .v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
27508
+ transform: translateX(50%);
27509
+ }
27510
+
27511
+ .v-slider.v-input--horizontal .v-slider-thumb__label::before {
27512
+ border-left: 6px solid transparent;
27513
+ border-right: 6px solid transparent;
27514
+ border-top: 6px solid currentColor;
27515
+ bottom: -6px;
27516
+ }
27517
+
27518
+ .v-slider.v-input--vertical .v-slider-thumb {
27519
+ top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
27520
+ }
27521
+ .v-slider.v-input--vertical .v-slider-thumb__label-container {
27522
+ top: calc(var(--v-slider-thumb-size) / 2);
27523
+ right: 0;
27524
+ }
27525
+ .v-slider.v-input--vertical .v-slider-thumb__label {
27526
+ top: -12.5px;
27527
+ left: calc(var(--v-slider-thumb-size) / 2);
27528
+ }
27529
+ .v-slider.v-input--vertical .v-slider-thumb__label::before {
27530
+ border-right: 6px solid currentColor;
27531
+ border-top: 6px solid transparent;
27532
+ border-bottom: 6px solid transparent;
27533
+ left: -6px;
27534
+ }
27535
+
27536
+ .v-slider-thumb--focused .v-slider-thumb__surface::before {
27537
+ transform: scale(2);
27538
+ opacity: var(--v-focus-opacity);
27539
+ }
27540
+
27541
+ .v-slider-thumb--pressed {
27542
+ transition: none;
27543
+ }
27544
+ .v-slider-thumb--pressed .v-slider-thumb__surface::before {
27545
+ opacity: var(--v-pressed-opacity);
27546
+ }
27547
+
27548
+ @media (hover: hover) {
27549
+ .v-slider-thumb:hover .v-slider-thumb__surface::before {
27550
+ transform: scale(2);
27551
+ }
27552
+ .v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
27553
+ opacity: var(--v-hover-opacity);
27554
+ }
27543
27555
  }