@vuetify/nightly 3.6.4-master.2024-05-09 → 3.6.4-master.2024-05-10

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.6.4-master.2024-05-09
2
+ * Vuetify v3.6.4-master.2024-05-10
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17899,6 +17899,48 @@ html.overflow-y-hidden {
17899
17899
  }
17900
17900
  .v-calendar-weekly .v-calendar__container.days__0 {
17901
17901
  grid-template-columns: repeat(1, 1fr);
17902
+ }.v-calendar-day__row-with-label {
17903
+ display: grid;
17904
+ grid-template-columns: 48px 8px 1fr;
17905
+ border-right: thin solid #e0e0e0;
17906
+ }
17907
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
17908
+ position: relative;
17909
+ border-right: thin solid #e0e0e0;
17910
+ }
17911
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
17912
+ content: "";
17913
+ border-bottom: thin solid #e0e0e0;
17914
+ position: absolute;
17915
+ width: 100%;
17916
+ margin-top: -1px;
17917
+ z-index: 3;
17918
+ pointer-events: none;
17919
+ }
17920
+ .v-calendar-day__row-with-label .v-calendar-day__row-label {
17921
+ font-size: 10px;
17922
+ text-align: center;
17923
+ position: relative;
17924
+ top: -8px;
17925
+ }
17926
+ .v-calendar-day__row-with-label .v-calendar-day__row-content {
17927
+ border-bottom: thin solid #e0e0e0;
17928
+ }
17929
+ .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17930
+ border-bottom: none;
17931
+ }
17932
+
17933
+ .v-calendar-day__row-without-label {
17934
+ display: grid;
17935
+ grid-template-columns: 1fr;
17936
+ border-right: thin solid #e0e0e0;
17937
+ }
17938
+ .v-calendar-day__row-without-label .v-calendar-day__row-content {
17939
+ overflow: hidden;
17940
+ border-bottom: thin solid #e0e0e0;
17941
+ }
17942
+ .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17943
+ border-bottom: none;
17902
17944
  }.v-calendar-month__day {
17903
17945
  position: relative;
17904
17946
  display: flex;
@@ -17962,66 +18004,62 @@ html.overflow-y-hidden {
17962
18004
 
17963
18005
  .v-calendar-weekly__day-alldayevents-container {
17964
18006
  min-height: 24px;
17965
- }.v-calendar-day__row-with-label {
17966
- display: grid;
17967
- grid-template-columns: 48px 8px 1fr;
17968
- border-right: thin solid #e0e0e0;
18007
+ }.v-calendar-header {
18008
+ align-items: center;
18009
+ display: flex;
18010
+ min-height: 64px;
17969
18011
  }
17970
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
17971
- position: relative;
17972
- border-right: thin solid #e0e0e0;
18012
+
18013
+ .v-calendar-header__today {
18014
+ margin-inline-end: 24px;
17973
18015
  }
17974
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
17975
- content: "";
17976
- border-bottom: thin solid #e0e0e0;
17977
- position: absolute;
17978
- width: 100%;
17979
- margin-top: -1px;
17980
- z-index: 3;
17981
- pointer-events: none;
18016
+
18017
+ .v-calendar-header__title {
18018
+ font-size: 1.5rem;
18019
+ margin-inline-start: 24px;
18020
+ }.v-number-input input[type=number] {
18021
+ -moz-appearance: textfield;
17982
18022
  }
17983
- .v-calendar-day__row-with-label .v-calendar-day__row-label {
17984
- font-size: 10px;
18023
+ .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
18024
+ -webkit-appearance: none;
18025
+ }
18026
+ .v-number-input .v-field {
18027
+ padding-inline-end: 0;
18028
+ padding-inline-start: 0;
18029
+ }
18030
+ .v-number-input--inset .v-divider {
18031
+ height: 55%;
18032
+ width: 55%;
18033
+ align-self: center;
18034
+ }
18035
+ .v-number-input--split .v-field__input {
17985
18036
  text-align: center;
17986
- position: relative;
17987
- top: -8px;
17988
18037
  }
17989
- .v-calendar-day__row-with-label .v-calendar-day__row-content {
17990
- border-bottom: thin solid #e0e0e0;
18038
+ .v-number-input--stacked .v-number-input__control {
18039
+ flex-direction: column-reverse;
17991
18040
  }
17992
- .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17993
- border-bottom: none;
18041
+ .v-number-input--stacked .v-number-input__control .v-btn {
18042
+ flex: 1;
17994
18043
  }
17995
-
17996
- .v-calendar-day__row-without-label {
17997
- display: grid;
17998
- grid-template-columns: 1fr;
17999
- border-right: thin solid #e0e0e0;
18044
+ .v-number-input--hide-input .v-field {
18045
+ flex: none;
18000
18046
  }
18001
- .v-calendar-day__row-without-label .v-calendar-day__row-content {
18002
- overflow: hidden;
18003
- border-bottom: thin solid #e0e0e0;
18047
+ .v-number-input--hide-input .v-field__input {
18048
+ width: 0;
18049
+ padding-inline: 0;
18004
18050
  }
18005
- .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
18006
- border-bottom: none;
18051
+ .v-number-input__control {
18052
+ display: flex;
18053
+ height: 100%;
18054
+ }
18055
+ .v-number-input__control .v-btn {
18056
+ background-color: transparent;
18057
+ border-radius: 0;
18007
18058
  }.v-calendar-internal-event {
18008
18059
  overflow: hidden;
18009
18060
  padding: 4px;
18010
18061
  text-overflow: ellipsis;
18011
18062
  white-space: nowrap;
18012
- }.v-calendar-header {
18013
- align-items: center;
18014
- display: flex;
18015
- min-height: 64px;
18016
- }
18017
-
18018
- .v-calendar-header__today {
18019
- margin-inline-end: 24px;
18020
- }
18021
-
18022
- .v-calendar-header__title {
18023
- font-size: 1.5rem;
18024
- margin-inline-start: 24px;
18025
18063
  }.v-picker.v-sheet {
18026
18064
  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));
18027
18065
  border-radius: 4px;
@@ -18075,6 +18113,39 @@ html.overflow-y-hidden {
18075
18113
  padding-bottom: 16px;
18076
18114
  font-weight: 400;
18077
18115
  letter-spacing: 0.1666666667em;
18116
+ }.v-pull-to-refresh {
18117
+ overflow: hidden;
18118
+ position: relative;
18119
+ }
18120
+ .v-pull-to-refresh__pull-down {
18121
+ position: absolute;
18122
+ width: 100%;
18123
+ transition: top 0.3s ease-out;
18124
+ }
18125
+ .v-pull-to-refresh__pull-down--touching {
18126
+ transition: none;
18127
+ }
18128
+ .v-pull-to-refresh__pull-down-default {
18129
+ display: flex;
18130
+ width: 100%;
18131
+ height: 100%;
18132
+ justify-content: center;
18133
+ align-items: flex-end;
18134
+ padding-bottom: 10px;
18135
+ }
18136
+ .v-pull-to-refresh__scroll-container {
18137
+ position: relative;
18138
+ transition: top 0.3s ease-out;
18139
+ }
18140
+ .v-pull-to-refresh__scroll-container--touching {
18141
+ transition: none;
18142
+ }.v-time-picker.v-picker {
18143
+ padding: 24px;
18144
+ width: 328px;
18145
+ }
18146
+ .v-time-picker.v-picker .v-picker-title {
18147
+ padding: 0;
18148
+ margin-bottom: 20px;
18078
18149
  }.v-time-picker-controls {
18079
18150
  display: flex;
18080
18151
  align-items: center;
@@ -18178,13 +18249,6 @@ html.overflow-y-hidden {
18178
18249
  }
18179
18250
  .v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
18180
18251
  text-align: center;
18181
- }.v-time-picker.v-picker {
18182
- padding: 24px;
18183
- width: 328px;
18184
- }
18185
- .v-time-picker.v-picker .v-picker-title {
18186
- padding: 0;
18187
- margin-bottom: 20px;
18188
18252
  }.v-time-picker-clock {
18189
18253
  background: rgb(var(--v-theme-background));
18190
18254
  color: rgb(var(--v-theme-on-background));
@@ -18316,70 +18380,6 @@ html.overflow-y-hidden {
18316
18380
 
18317
18381
  .v-picker--landscape .v-time-picker-clock__container {
18318
18382
  flex-direction: row;
18319
- }.v-number-input input[type=number] {
18320
- -moz-appearance: textfield;
18321
- }
18322
- .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
18323
- -webkit-appearance: none;
18324
- }
18325
- .v-number-input .v-field {
18326
- padding-inline-end: 0;
18327
- padding-inline-start: 0;
18328
- }
18329
- .v-number-input--inset .v-divider {
18330
- height: 55%;
18331
- width: 55%;
18332
- align-self: center;
18333
- }
18334
- .v-number-input--split .v-field__input {
18335
- text-align: center;
18336
- }
18337
- .v-number-input--stacked .v-number-input__control {
18338
- flex-direction: column-reverse;
18339
- }
18340
- .v-number-input--stacked .v-number-input__control .v-btn {
18341
- flex: 1;
18342
- }
18343
- .v-number-input--hide-input .v-field {
18344
- flex: none;
18345
- }
18346
- .v-number-input--hide-input .v-field__input {
18347
- width: 0;
18348
- padding-inline: 0;
18349
- }
18350
- .v-number-input__control {
18351
- display: flex;
18352
- height: 100%;
18353
- }
18354
- .v-number-input__control .v-btn {
18355
- background-color: transparent;
18356
- border-radius: 0;
18357
- }.v-pull-to-refresh {
18358
- overflow: hidden;
18359
- position: relative;
18360
- }
18361
- .v-pull-to-refresh__pull-down {
18362
- position: absolute;
18363
- width: 100%;
18364
- transition: top 0.3s ease-out;
18365
- }
18366
- .v-pull-to-refresh__pull-down--touching {
18367
- transition: none;
18368
- }
18369
- .v-pull-to-refresh__pull-down-default {
18370
- display: flex;
18371
- width: 100%;
18372
- height: 100%;
18373
- justify-content: center;
18374
- align-items: flex-end;
18375
- padding-bottom: 10px;
18376
- }
18377
- .v-pull-to-refresh__scroll-container {
18378
- position: relative;
18379
- transition: top 0.3s ease-out;
18380
- }
18381
- .v-pull-to-refresh__scroll-container--touching {
18382
- transition: none;
18383
18383
  }.v-treeview-item--filtered {
18384
18384
  display: none;
18385
18385
  }
@@ -18636,103 +18636,22 @@ html.overflow-y-hidden {
18636
18636
  min-height: 100vh;
18637
18637
  min-height: 100dvh;
18638
18638
  position: relative;
18639
- }.v-autocomplete .v-field .v-text-field__prefix,
18640
- .v-autocomplete .v-field .v-text-field__suffix,
18641
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18642
- cursor: text;
18639
+ }.v-avatar {
18640
+ flex: none;
18641
+ align-items: center;
18642
+ display: inline-flex;
18643
+ justify-content: center;
18644
+ line-height: normal;
18645
+ overflow: hidden;
18646
+ position: relative;
18647
+ text-align: center;
18648
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18649
+ transition-property: width, height;
18650
+ vertical-align: middle;
18651
+ border-radius: 50%;
18643
18652
  }
18644
- .v-autocomplete .v-field .v-field__input > input {
18645
- flex: 1 1;
18646
- }
18647
- .v-autocomplete .v-field input {
18648
- min-width: 64px;
18649
- }
18650
- .v-autocomplete .v-field:not(.v-field--focused) input {
18651
- min-width: 0;
18652
- }
18653
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18654
- margin-inline-end: 2px;
18655
- }
18656
- .v-autocomplete .v-autocomplete__selection-text {
18657
- overflow: hidden;
18658
- text-overflow: ellipsis;
18659
- white-space: nowrap;
18660
- }
18661
-
18662
- .v-autocomplete__content {
18663
- overflow: hidden;
18664
- 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));
18665
- border-radius: 4px;
18666
- }
18667
- .v-autocomplete__mask {
18668
- background: rgb(var(--v-theme-surface-light));
18669
- }
18670
- .v-autocomplete__selection {
18671
- display: inline-flex;
18672
- align-items: center;
18673
- height: 1.5rem;
18674
- letter-spacing: inherit;
18675
- line-height: inherit;
18676
- max-width: calc(100% - 2px - 2px);
18677
- }
18678
- .v-autocomplete__selection:first-child {
18679
- margin-inline-start: 0;
18680
- }
18681
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18682
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18683
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18684
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18685
- top: 0px;
18686
- }
18687
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18688
- opacity: var(--v-medium-emphasis-opacity);
18689
- }
18690
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18691
- opacity: 1;
18692
- }
18693
- .v-autocomplete--selecting-index .v-field__input > input {
18694
- caret-color: transparent;
18695
- }
18696
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18697
- flex: 1 1;
18698
- position: absolute;
18699
- left: 0;
18700
- right: 0;
18701
- width: 100%;
18702
- padding-inline: inherit;
18703
- }
18704
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18705
- transition: none;
18706
- }
18707
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18708
- opacity: 0;
18709
- }
18710
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18711
- opacity: 0;
18712
- }
18713
- .v-autocomplete__menu-icon {
18714
- margin-inline-start: 4px;
18715
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18716
- }
18717
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18718
- opacity: var(--v-high-emphasis-opacity);
18719
- transform: rotate(180deg);
18720
- }.v-avatar {
18721
- flex: none;
18722
- align-items: center;
18723
- display: inline-flex;
18724
- justify-content: center;
18725
- line-height: normal;
18726
- overflow: hidden;
18727
- position: relative;
18728
- text-align: center;
18729
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18730
- transition-property: width, height;
18731
- vertical-align: middle;
18732
- border-radius: 50%;
18733
- }
18734
- .v-avatar.v-avatar--size-x-small {
18735
- --v-avatar-height: 24px;
18653
+ .v-avatar.v-avatar--size-x-small {
18654
+ --v-avatar-height: 24px;
18736
18655
  }
18737
18656
  .v-avatar.v-avatar--size-small {
18738
18657
  --v-avatar-height: 32px;
@@ -18969,134 +18888,87 @@ html.overflow-y-hidden {
18969
18888
  }
18970
18889
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18971
18890
  align-self: flex-start;
18972
- }.v-badge {
18973
- display: inline-block;
18974
- line-height: 1;
18891
+ }.v-autocomplete .v-field .v-text-field__prefix,
18892
+ .v-autocomplete .v-field .v-text-field__suffix,
18893
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18894
+ cursor: text;
18975
18895
  }
18976
-
18977
- .v-badge__badge {
18978
- align-items: center;
18979
- display: inline-flex;
18980
- border-radius: 10px;
18981
- font-size: 0.75rem;
18982
- font-weight: 500;
18983
- height: 1.25rem;
18984
- justify-content: center;
18985
- min-width: 20px;
18986
- padding: 4px 6px;
18987
- pointer-events: auto;
18988
- position: absolute;
18989
- text-align: center;
18990
- text-indent: 0;
18991
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18992
- white-space: nowrap;
18993
- background: rgb(var(--v-theme-surface-variant));
18994
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18896
+ .v-autocomplete .v-field .v-field__input > input {
18897
+ flex: 1 1;
18995
18898
  }
18996
- .v-badge--bordered .v-badge__badge::after {
18997
- border-radius: inherit;
18998
- border-style: solid;
18999
- border-width: 2px;
19000
- bottom: 0;
19001
- color: rgb(var(--v-theme-background));
19002
- content: "";
19003
- left: 0;
19004
- position: absolute;
19005
- right: 0;
19006
- top: 0;
19007
- transform: scale(1.05);
18899
+ .v-autocomplete .v-field input {
18900
+ min-width: 64px;
19008
18901
  }
19009
- .v-badge--dot .v-badge__badge {
19010
- border-radius: 4.5px;
19011
- height: 9px;
18902
+ .v-autocomplete .v-field:not(.v-field--focused) input {
19012
18903
  min-width: 0;
19013
- padding: 0;
19014
- width: 9px;
19015
- }
19016
- .v-badge--dot .v-badge__badge::after {
19017
- border-width: 1.5px;
19018
- }
19019
- .v-badge--inline .v-badge__badge {
19020
- position: relative;
19021
- vertical-align: middle;
19022
18904
  }
19023
- .v-badge__badge .v-icon {
19024
- color: inherit;
19025
- font-size: 0.75rem;
19026
- margin: 0 -2px;
18905
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18906
+ margin-inline-end: 2px;
19027
18907
  }
19028
- .v-badge__badge img,
19029
- .v-badge__badge .v-img {
19030
- height: 100%;
19031
- width: 100%;
18908
+ .v-autocomplete .v-autocomplete__selection-text {
18909
+ overflow: hidden;
18910
+ text-overflow: ellipsis;
18911
+ white-space: nowrap;
19032
18912
  }
19033
18913
 
19034
- .v-badge__wrapper {
19035
- display: flex;
19036
- position: relative;
18914
+ .v-autocomplete__content {
18915
+ overflow: hidden;
18916
+ 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));
18917
+ border-radius: 4px;
19037
18918
  }
19038
- .v-badge--inline .v-badge__wrapper {
19039
- align-items: center;
18919
+ .v-autocomplete__mask {
18920
+ background: rgb(var(--v-theme-surface-light));
18921
+ }
18922
+ .v-autocomplete__selection {
19040
18923
  display: inline-flex;
19041
- justify-content: center;
19042
- margin: 0 4px;
19043
- }.v-breadcrumbs {
19044
- display: flex;
19045
18924
  align-items: center;
19046
- line-height: 1.6;
19047
- padding: 16px 12px;
18925
+ height: 1.5rem;
18926
+ letter-spacing: inherit;
18927
+ line-height: inherit;
18928
+ max-width: calc(100% - 2px - 2px);
19048
18929
  }
19049
- .v-breadcrumbs--rounded {
19050
- border-radius: 4px;
18930
+ .v-autocomplete__selection:first-child {
18931
+ margin-inline-start: 0;
19051
18932
  }
19052
- .v-breadcrumbs--density-default {
19053
- padding-top: 16px;
19054
- padding-bottom: 16px;
18933
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18934
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18935
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18936
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18937
+ top: 0px;
19055
18938
  }
19056
-
19057
- .v-breadcrumbs--density-comfortable {
19058
- padding-top: 12px;
19059
- padding-bottom: 12px;
18939
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
18940
+ opacity: var(--v-medium-emphasis-opacity);
19060
18941
  }
19061
-
19062
- .v-breadcrumbs--density-compact {
19063
- padding-top: 8px;
19064
- padding-bottom: 8px;
18942
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18943
+ opacity: 1;
19065
18944
  }
19066
-
19067
- .v-breadcrumbs__prepend {
19068
- align-items: center;
19069
- display: inline-flex;
18945
+ .v-autocomplete--selecting-index .v-field__input > input {
18946
+ caret-color: transparent;
19070
18947
  }
19071
-
19072
- .v-breadcrumbs-item {
19073
- align-items: center;
19074
- color: inherit;
19075
- display: inline-flex;
19076
- padding: 0 4px;
19077
- text-decoration: none;
19078
- vertical-align: middle;
18948
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18949
+ flex: 1 1;
18950
+ position: absolute;
18951
+ left: 0;
18952
+ right: 0;
18953
+ width: 100%;
18954
+ padding-inline: inherit;
19079
18955
  }
19080
- .v-breadcrumbs-item--disabled {
19081
- opacity: var(--v-disabled-opacity);
19082
- pointer-events: none;
18956
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18957
+ transition: none;
19083
18958
  }
19084
- .v-breadcrumbs-item--link {
19085
- color: inherit;
19086
- text-decoration: none;
18959
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18960
+ opacity: 0;
19087
18961
  }
19088
- .v-breadcrumbs-item--link:hover {
19089
- text-decoration: underline;
18962
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18963
+ opacity: 0;
19090
18964
  }
19091
- .v-breadcrumbs-item .v-icon {
19092
- font-size: 1rem;
19093
- margin-inline: -4px 2px;
18965
+ .v-autocomplete__menu-icon {
18966
+ margin-inline-start: 4px;
18967
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
19094
18968
  }
19095
-
19096
- .v-breadcrumbs-divider {
19097
- display: inline-block;
19098
- padding: 0 8px;
19099
- vertical-align: middle;
18969
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18970
+ opacity: var(--v-high-emphasis-opacity);
18971
+ transform: rotate(180deg);
19100
18972
  }.v-bottom-navigation {
19101
18973
  display: flex;
19102
18974
  max-width: 100%;
@@ -19152,8 +19024,224 @@ html.overflow-y-hidden {
19152
19024
  }
19153
19025
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
19154
19026
  transform: translateY(0.5rem);
19155
- }.v-btn {
19156
- align-items: center;
19027
+ }.v-badge {
19028
+ display: inline-block;
19029
+ line-height: 1;
19030
+ }
19031
+
19032
+ .v-badge__badge {
19033
+ align-items: center;
19034
+ display: inline-flex;
19035
+ border-radius: 10px;
19036
+ font-size: 0.75rem;
19037
+ font-weight: 500;
19038
+ height: 1.25rem;
19039
+ justify-content: center;
19040
+ min-width: 20px;
19041
+ padding: 4px 6px;
19042
+ pointer-events: auto;
19043
+ position: absolute;
19044
+ text-align: center;
19045
+ text-indent: 0;
19046
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
19047
+ white-space: nowrap;
19048
+ background: rgb(var(--v-theme-surface-variant));
19049
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
19050
+ }
19051
+ .v-badge--bordered .v-badge__badge::after {
19052
+ border-radius: inherit;
19053
+ border-style: solid;
19054
+ border-width: 2px;
19055
+ bottom: 0;
19056
+ color: rgb(var(--v-theme-background));
19057
+ content: "";
19058
+ left: 0;
19059
+ position: absolute;
19060
+ right: 0;
19061
+ top: 0;
19062
+ transform: scale(1.05);
19063
+ }
19064
+ .v-badge--dot .v-badge__badge {
19065
+ border-radius: 4.5px;
19066
+ height: 9px;
19067
+ min-width: 0;
19068
+ padding: 0;
19069
+ width: 9px;
19070
+ }
19071
+ .v-badge--dot .v-badge__badge::after {
19072
+ border-width: 1.5px;
19073
+ }
19074
+ .v-badge--inline .v-badge__badge {
19075
+ position: relative;
19076
+ vertical-align: middle;
19077
+ }
19078
+ .v-badge__badge .v-icon {
19079
+ color: inherit;
19080
+ font-size: 0.75rem;
19081
+ margin: 0 -2px;
19082
+ }
19083
+ .v-badge__badge img,
19084
+ .v-badge__badge .v-img {
19085
+ height: 100%;
19086
+ width: 100%;
19087
+ }
19088
+
19089
+ .v-badge__wrapper {
19090
+ display: flex;
19091
+ position: relative;
19092
+ }
19093
+ .v-badge--inline .v-badge__wrapper {
19094
+ align-items: center;
19095
+ display: inline-flex;
19096
+ justify-content: center;
19097
+ margin: 0 4px;
19098
+ }.bottom-sheet-transition-enter-from {
19099
+ transform: translateY(100%);
19100
+ }
19101
+ .bottom-sheet-transition-leave-to {
19102
+ transform: translateY(100%);
19103
+ }
19104
+
19105
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19106
+ align-self: flex-end;
19107
+ border-radius: 0;
19108
+ flex: 0 1 auto;
19109
+ left: 0;
19110
+ right: 0;
19111
+ margin-inline: 0;
19112
+ margin-bottom: 0;
19113
+ transition-duration: 0.2s;
19114
+ width: 100%;
19115
+ max-width: 100%;
19116
+ overflow: visible;
19117
+ box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19118
+ }
19119
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
19120
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
19121
+ border-radius: 0;
19122
+ }
19123
+ .v-bottom-sheet.v-bottom-sheet--inset {
19124
+ max-width: none;
19125
+ }
19126
+ @media (min-width: 600px) {
19127
+ .v-bottom-sheet.v-bottom-sheet--inset {
19128
+ max-width: 70%;
19129
+ }
19130
+ }.v-breadcrumbs {
19131
+ display: flex;
19132
+ align-items: center;
19133
+ line-height: 1.6;
19134
+ padding: 16px 12px;
19135
+ }
19136
+ .v-breadcrumbs--rounded {
19137
+ border-radius: 4px;
19138
+ }
19139
+ .v-breadcrumbs--density-default {
19140
+ padding-top: 16px;
19141
+ padding-bottom: 16px;
19142
+ }
19143
+
19144
+ .v-breadcrumbs--density-comfortable {
19145
+ padding-top: 12px;
19146
+ padding-bottom: 12px;
19147
+ }
19148
+
19149
+ .v-breadcrumbs--density-compact {
19150
+ padding-top: 8px;
19151
+ padding-bottom: 8px;
19152
+ }
19153
+
19154
+ .v-breadcrumbs__prepend {
19155
+ align-items: center;
19156
+ display: inline-flex;
19157
+ }
19158
+
19159
+ .v-breadcrumbs-item {
19160
+ align-items: center;
19161
+ color: inherit;
19162
+ display: inline-flex;
19163
+ padding: 0 4px;
19164
+ text-decoration: none;
19165
+ vertical-align: middle;
19166
+ }
19167
+ .v-breadcrumbs-item--disabled {
19168
+ opacity: var(--v-disabled-opacity);
19169
+ pointer-events: none;
19170
+ }
19171
+ .v-breadcrumbs-item--link {
19172
+ color: inherit;
19173
+ text-decoration: none;
19174
+ }
19175
+ .v-breadcrumbs-item--link:hover {
19176
+ text-decoration: underline;
19177
+ }
19178
+ .v-breadcrumbs-item .v-icon {
19179
+ font-size: 1rem;
19180
+ margin-inline: -4px 2px;
19181
+ }
19182
+
19183
+ .v-breadcrumbs-divider {
19184
+ display: inline-block;
19185
+ padding: 0 8px;
19186
+ vertical-align: middle;
19187
+ }.v-btn-group {
19188
+ display: inline-flex;
19189
+ flex-wrap: nowrap;
19190
+ max-width: 100%;
19191
+ min-width: 0;
19192
+ overflow: hidden;
19193
+ vertical-align: middle;
19194
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19195
+ border-style: solid;
19196
+ border-width: 0;
19197
+ 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));
19198
+ border-radius: 4px;
19199
+ background: transparent;
19200
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19201
+ }
19202
+ .v-btn-group--border {
19203
+ border-width: thin;
19204
+ box-shadow: none;
19205
+ }
19206
+ .v-btn-group--density-default.v-btn-group {
19207
+ height: 48px;
19208
+ }
19209
+
19210
+ .v-btn-group--density-comfortable.v-btn-group {
19211
+ height: 40px;
19212
+ }
19213
+
19214
+ .v-btn-group--density-compact.v-btn-group {
19215
+ height: 36px;
19216
+ }
19217
+
19218
+ .v-btn-group .v-btn {
19219
+ border-radius: 0;
19220
+ border-color: inherit;
19221
+ }
19222
+ .v-btn-group .v-btn:not(:last-child) {
19223
+ border-inline-end: none;
19224
+ }
19225
+ .v-btn-group .v-btn:not(:first-child) {
19226
+ border-inline-start: none;
19227
+ }
19228
+ .v-btn-group .v-btn:first-child {
19229
+ border-start-start-radius: inherit;
19230
+ border-end-start-radius: inherit;
19231
+ }
19232
+ .v-btn-group .v-btn:last-child {
19233
+ border-start-end-radius: inherit;
19234
+ border-end-end-radius: inherit;
19235
+ }
19236
+ .v-btn-group--divided .v-btn:not(:last-child) {
19237
+ border-inline-end-width: thin;
19238
+ border-inline-end-style: solid;
19239
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19240
+ }
19241
+ .v-btn-group--tile {
19242
+ border-radius: 0;
19243
+ }.v-btn {
19244
+ align-items: center;
19157
19245
  border-radius: 4px;
19158
19246
  display: inline-grid;
19159
19247
  grid-template-areas: "prepend content append";
@@ -19564,94 +19652,74 @@ html.overflow-y-hidden {
19564
19652
  }
19565
19653
  .v-pagination__item--is-active .v-btn__overlay {
19566
19654
  opacity: var(--v-border-opacity);
19567
- }.bottom-sheet-transition-enter-from {
19568
- transform: translateY(100%);
19655
+ }.v-checkbox.v-input {
19656
+ flex: 0 1 auto;
19569
19657
  }
19570
- .bottom-sheet-transition-leave-to {
19571
- transform: translateY(100%);
19658
+ .v-checkbox .v-selection-control {
19659
+ min-height: var(--v-input-control-height);
19660
+ }.v-carousel {
19661
+ overflow: hidden;
19662
+ position: relative;
19663
+ width: 100%;
19572
19664
  }
19573
-
19574
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19575
- align-self: flex-end;
19576
- border-radius: 0;
19577
- flex: 0 1 auto;
19578
- left: 0;
19579
- right: 0;
19580
- margin-inline: 0;
19581
- margin-bottom: 0;
19582
- transition-duration: 0.2s;
19665
+ .v-carousel__controls {
19666
+ align-items: center;
19667
+ bottom: 0;
19668
+ display: flex;
19669
+ height: 50px;
19670
+ justify-content: center;
19671
+ list-style-type: none;
19672
+ position: absolute;
19583
19673
  width: 100%;
19584
- max-width: 100%;
19585
- overflow: visible;
19586
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19674
+ z-index: 1;
19675
+ background: rgba(var(--v-theme-surface-variant), 0.3);
19676
+ color: rgb(var(--v-theme-on-surface-variant));
19587
19677
  }
19588
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
19589
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
19590
- border-radius: 0;
19678
+ .v-carousel__controls > .v-item-group {
19679
+ flex: 0 1 auto;
19591
19680
  }
19592
- .v-bottom-sheet.v-bottom-sheet--inset {
19593
- max-width: none;
19681
+ .v-carousel__controls__item {
19682
+ margin: 0 8px;
19594
19683
  }
19595
- @media (min-width: 600px) {
19596
- .v-bottom-sheet.v-bottom-sheet--inset {
19597
- max-width: 70%;
19598
- }
19599
- }.v-btn-group {
19600
- display: inline-flex;
19601
- flex-wrap: nowrap;
19602
- max-width: 100%;
19603
- min-width: 0;
19604
- overflow: hidden;
19605
- vertical-align: middle;
19606
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19607
- border-style: solid;
19608
- border-width: 0;
19609
- 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));
19610
- border-radius: 4px;
19611
- background: transparent;
19612
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19684
+ .v-carousel__controls__item .v-icon {
19685
+ opacity: 0.5;
19613
19686
  }
19614
- .v-btn-group--border {
19615
- border-width: thin;
19616
- box-shadow: none;
19687
+ .v-carousel__controls__item--active .v-icon {
19688
+ opacity: 1;
19689
+ vertical-align: middle;
19617
19690
  }
19618
- .v-btn-group--density-default.v-btn-group {
19619
- height: 48px;
19691
+ .v-carousel__controls__item:hover {
19692
+ background: none;
19620
19693
  }
19621
-
19622
- .v-btn-group--density-comfortable.v-btn-group {
19623
- height: 40px;
19694
+ .v-carousel__controls__item:hover .v-icon {
19695
+ opacity: 0.8;
19624
19696
  }
19625
19697
 
19626
- .v-btn-group--density-compact.v-btn-group {
19627
- height: 36px;
19698
+ .v-carousel__progress {
19699
+ margin: 0;
19700
+ position: absolute;
19701
+ bottom: 0;
19702
+ left: 0;
19703
+ right: 0;
19628
19704
  }
19629
19705
 
19630
- .v-btn-group .v-btn {
19631
- border-radius: 0;
19632
- border-color: inherit;
19633
- }
19634
- .v-btn-group .v-btn:not(:last-child) {
19635
- border-inline-end: none;
19636
- }
19637
- .v-btn-group .v-btn:not(:first-child) {
19638
- border-inline-start: none;
19639
- }
19640
- .v-btn-group .v-btn:first-child {
19641
- border-start-start-radius: inherit;
19642
- border-end-start-radius: inherit;
19706
+ .v-carousel-item {
19707
+ display: block;
19708
+ height: inherit;
19709
+ text-decoration: none;
19643
19710
  }
19644
- .v-btn-group .v-btn:last-child {
19645
- border-start-end-radius: inherit;
19646
- border-end-end-radius: inherit;
19711
+ .v-carousel-item > .v-img {
19712
+ height: inherit;
19647
19713
  }
19648
- .v-btn-group--divided .v-btn:not(:last-child) {
19649
- border-inline-end-width: thin;
19650
- border-inline-end-style: solid;
19651
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19714
+
19715
+ .v-carousel--hide-delimiter-background .v-carousel__controls {
19716
+ background: transparent;
19652
19717
  }
19653
- .v-btn-group--tile {
19654
- border-radius: 0;
19718
+
19719
+ .v-carousel--vertical-delimiters .v-carousel__controls {
19720
+ flex-direction: column;
19721
+ height: 100% !important;
19722
+ width: 50px;
19655
19723
  }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19656
19724
  opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19657
19725
  }
@@ -19665,92 +19733,305 @@ html.overflow-y-hidden {
19665
19733
  .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19666
19734
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19667
19735
  }
19668
- }.v-carousel {
19736
+ }.v-card {
19737
+ display: block;
19669
19738
  overflow: hidden;
19739
+ overflow-wrap: break-word;
19670
19740
  position: relative;
19671
- width: 100%;
19741
+ padding: 0;
19742
+ text-decoration: none;
19743
+ transition-duration: 0.28s;
19744
+ transition-property: box-shadow, opacity, background;
19745
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19746
+ z-index: 0;
19747
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19748
+ border-style: solid;
19749
+ border-width: 0;
19750
+ border-radius: 4px;
19672
19751
  }
19673
- .v-carousel__controls {
19674
- align-items: center;
19675
- bottom: 0;
19676
- display: flex;
19677
- height: 50px;
19678
- justify-content: center;
19679
- list-style-type: none;
19752
+ .v-card--border {
19753
+ border-width: thin;
19754
+ box-shadow: none;
19755
+ }
19756
+ .v-card--absolute {
19680
19757
  position: absolute;
19681
- width: 100%;
19682
- z-index: 1;
19683
- background: rgba(var(--v-theme-surface-variant), 0.3);
19684
- color: rgb(var(--v-theme-on-surface-variant));
19685
19758
  }
19686
- .v-carousel__controls > .v-item-group {
19687
- flex: 0 1 auto;
19759
+ .v-card--fixed {
19760
+ position: fixed;
19688
19761
  }
19689
- .v-carousel__controls__item {
19690
- margin: 0 8px;
19762
+ .v-card:hover > .v-card__overlay {
19763
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
19691
19764
  }
19692
- .v-carousel__controls__item .v-icon {
19693
- opacity: 0.5;
19765
+ .v-card:focus-visible > .v-card__overlay {
19766
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19694
19767
  }
19695
- .v-carousel__controls__item--active .v-icon {
19768
+ @supports not selector(:focus-visible) {
19769
+ .v-card:focus > .v-card__overlay {
19770
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19771
+ }
19772
+ }
19773
+ .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
19774
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19775
+ }
19776
+ .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
19777
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19778
+ }
19779
+ .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
19780
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19781
+ }
19782
+ @supports not selector(:focus-visible) {
19783
+ .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
19784
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19785
+ }
19786
+ }
19787
+ .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
19788
+ background: transparent;
19789
+ color: inherit;
19790
+ }
19791
+ .v-card--variant-plain {
19792
+ opacity: 0.62;
19793
+ }
19794
+ .v-card--variant-plain:focus, .v-card--variant-plain:hover {
19696
19795
  opacity: 1;
19697
- vertical-align: middle;
19698
19796
  }
19699
- .v-carousel__controls__item:hover {
19700
- background: none;
19797
+ .v-card--variant-plain .v-card__overlay {
19798
+ display: none;
19701
19799
  }
19702
- .v-carousel__controls__item:hover .v-icon {
19703
- opacity: 0.8;
19800
+ .v-card--variant-elevated, .v-card--variant-flat {
19801
+ background: rgb(var(--v-theme-surface));
19802
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19704
19803
  }
19705
-
19706
- .v-carousel__progress {
19707
- margin: 0;
19804
+ .v-card--variant-elevated {
19805
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19806
+ }
19807
+ .v-card--variant-flat {
19808
+ 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));
19809
+ }
19810
+ .v-card--variant-outlined {
19811
+ border: thin solid currentColor;
19812
+ }
19813
+ .v-card--variant-text .v-card__overlay {
19814
+ background: currentColor;
19815
+ }
19816
+ .v-card--variant-tonal .v-card__underlay {
19817
+ background: currentColor;
19818
+ opacity: var(--v-activated-opacity);
19819
+ border-radius: inherit;
19820
+ top: 0;
19821
+ right: 0;
19822
+ bottom: 0;
19823
+ left: 0;
19824
+ pointer-events: none;
19825
+ }
19826
+ .v-card .v-card__underlay {
19708
19827
  position: absolute;
19828
+ }
19829
+ .v-card--disabled {
19830
+ pointer-events: none;
19831
+ -webkit-user-select: none;
19832
+ user-select: none;
19833
+ }
19834
+ .v-card--disabled > :not(.v-card__loader) {
19835
+ opacity: 0.6;
19836
+ }
19837
+ .v-card--flat {
19838
+ box-shadow: none;
19839
+ }
19840
+ .v-card--hover {
19841
+ cursor: pointer;
19842
+ }
19843
+ .v-card--hover::before, .v-card--hover::after {
19844
+ border-radius: inherit;
19709
19845
  bottom: 0;
19846
+ content: "";
19847
+ display: block;
19710
19848
  left: 0;
19849
+ pointer-events: none;
19850
+ position: absolute;
19711
19851
  right: 0;
19852
+ top: 0;
19853
+ transition: inherit;
19854
+ }
19855
+ .v-card--hover::before {
19856
+ opacity: 1;
19857
+ z-index: -1;
19858
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
19859
+ }
19860
+ .v-card--hover::after {
19861
+ z-index: 1;
19862
+ opacity: 0;
19863
+ 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));
19864
+ }
19865
+ .v-card--hover:hover::after {
19866
+ opacity: 1;
19867
+ }
19868
+ .v-card--hover:hover::before {
19869
+ opacity: 0;
19870
+ }
19871
+ .v-card--hover:hover {
19872
+ 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));
19873
+ }
19874
+ .v-card--link {
19875
+ cursor: pointer;
19712
19876
  }
19713
19877
 
19714
- .v-carousel-item {
19878
+ .v-card-actions {
19879
+ align-items: center;
19880
+ display: flex;
19881
+ flex: none;
19882
+ min-height: 52px;
19883
+ padding: 0.5rem;
19884
+ }
19885
+
19886
+ .v-card-item {
19887
+ align-items: center;
19888
+ display: grid;
19889
+ flex: none;
19890
+ grid-template-areas: "prepend content append";
19891
+ grid-template-columns: max-content auto max-content;
19892
+ padding: 0.625rem 1rem;
19893
+ }
19894
+ .v-card-item + .v-card-text {
19895
+ padding-top: 0;
19896
+ }
19897
+ .v-card-item__prepend, .v-card-item__append {
19898
+ align-items: center;
19899
+ display: flex;
19900
+ }
19901
+ .v-card-item__prepend {
19902
+ grid-area: prepend;
19903
+ padding-inline-end: 0.5rem;
19904
+ }
19905
+ .v-card-item__append {
19906
+ grid-area: append;
19907
+ padding-inline-start: 0.5rem;
19908
+ }
19909
+
19910
+ .v-card-item__content {
19911
+ align-self: center;
19912
+ grid-area: content;
19913
+ overflow: hidden;
19914
+ }
19915
+
19916
+ .v-card-title {
19715
19917
  display: block;
19716
- height: inherit;
19717
- text-decoration: none;
19918
+ flex: none;
19919
+ font-size: 1.25rem;
19920
+ font-weight: 500;
19921
+ -webkit-hyphens: auto;
19922
+ hyphens: auto;
19923
+ letter-spacing: 0.0125em;
19924
+ min-width: 0;
19925
+ overflow-wrap: normal;
19926
+ overflow: hidden;
19927
+ padding: 0.5rem 1rem;
19928
+ text-overflow: ellipsis;
19929
+ text-transform: none;
19930
+ white-space: nowrap;
19931
+ word-break: normal;
19932
+ word-wrap: break-word;
19718
19933
  }
19719
- .v-carousel-item > .v-img {
19720
- height: inherit;
19934
+ .v-card .v-card-title {
19935
+ line-height: 1.6;
19936
+ }
19937
+ .v-card--density-comfortable .v-card-title {
19938
+ line-height: 1.75rem;
19939
+ }
19940
+ .v-card--density-compact .v-card-title {
19941
+ line-height: 1.55rem;
19942
+ }
19943
+ .v-card-item .v-card-title {
19944
+ padding: 0;
19945
+ }
19946
+ .v-card-title + .v-card-text,
19947
+ .v-card-title + .v-card-actions {
19948
+ padding-top: 0;
19721
19949
  }
19722
19950
 
19723
- .v-carousel--hide-delimiter-background .v-carousel__controls {
19724
- background: transparent;
19951
+ .v-card-subtitle {
19952
+ display: block;
19953
+ flex: none;
19954
+ font-size: 0.875rem;
19955
+ font-weight: 400;
19956
+ letter-spacing: 0.0178571429em;
19957
+ opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
19958
+ overflow: hidden;
19959
+ padding: 0 1rem;
19960
+ text-overflow: ellipsis;
19961
+ text-transform: none;
19962
+ white-space: nowrap;
19963
+ }
19964
+ .v-card .v-card-subtitle {
19965
+ line-height: 1.425;
19966
+ }
19967
+ .v-card--density-comfortable .v-card-subtitle {
19968
+ line-height: 1.125rem;
19969
+ }
19970
+ .v-card--density-compact .v-card-subtitle {
19971
+ line-height: 1rem;
19972
+ }
19973
+ .v-card-item .v-card-subtitle {
19974
+ padding: 0 0 0.25rem;
19725
19975
  }
19726
19976
 
19727
- .v-carousel--vertical-delimiters .v-carousel__controls {
19728
- flex-direction: column;
19729
- height: 100% !important;
19730
- width: 50px;
19731
- }.v-checkbox.v-input {
19732
- flex: 0 1 auto;
19977
+ .v-card-text {
19978
+ flex: 1 1 auto;
19979
+ font-size: 0.875rem;
19980
+ font-weight: 400;
19981
+ letter-spacing: 0.0178571429em;
19982
+ opacity: var(--v-card-text-opacity, 1);
19983
+ padding: 1rem;
19984
+ text-transform: none;
19733
19985
  }
19734
- .v-checkbox .v-selection-control {
19735
- min-height: var(--v-input-control-height);
19736
- }.v-chip-group {
19986
+ .v-card .v-card-text {
19987
+ line-height: 1.425;
19988
+ }
19989
+ .v-card--density-comfortable .v-card-text {
19990
+ line-height: 1.2rem;
19991
+ }
19992
+ .v-card--density-compact .v-card-text {
19993
+ line-height: 1.15rem;
19994
+ }
19995
+
19996
+ .v-card__image {
19737
19997
  display: flex;
19738
- max-width: 100%;
19739
- min-width: 0;
19740
- overflow-x: auto;
19741
- padding: 4px 0;
19998
+ height: 100%;
19999
+ flex: 1 1 auto;
20000
+ left: 0;
20001
+ overflow: hidden;
20002
+ position: absolute;
20003
+ top: 0;
20004
+ width: 100%;
20005
+ z-index: -1;
19742
20006
  }
19743
- .v-chip-group .v-chip {
19744
- margin: 4px 8px 4px 0;
20007
+
20008
+ .v-card__content {
20009
+ border-radius: inherit;
20010
+ overflow: hidden;
20011
+ position: relative;
19745
20012
  }
19746
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19747
- opacity: var(--v-activated-opacity);
20013
+
20014
+ .v-card__loader {
20015
+ bottom: auto;
20016
+ top: 0;
20017
+ left: 0;
20018
+ position: absolute;
20019
+ right: 0;
20020
+ width: 100%;
20021
+ z-index: 1;
19748
20022
  }
19749
20023
 
19750
- .v-chip-group--column .v-slide-group__content {
19751
- white-space: normal;
19752
- flex-wrap: wrap;
19753
- max-width: 100%;
20024
+ .v-card__overlay {
20025
+ background-color: currentColor;
20026
+ border-radius: inherit;
20027
+ position: absolute;
20028
+ top: 0;
20029
+ right: 0;
20030
+ bottom: 0;
20031
+ left: 0;
20032
+ pointer-events: none;
20033
+ opacity: 0;
20034
+ transition: opacity 0.2s ease-in-out;
19754
20035
  }.v-chip {
19755
20036
  align-items: center;
19756
20037
  display: inline-flex;
@@ -20163,330 +20444,105 @@ html.overflow-y-hidden {
20163
20444
 
20164
20445
  .v-chip--label {
20165
20446
  border-radius: 4px;
20166
- }.v-color-picker {
20167
- align-self: flex-start;
20168
- contain: content;
20169
- }
20170
- .v-color-picker.v-sheet {
20171
- 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));
20172
- border-radius: 4px;
20173
- }
20174
-
20175
- .v-color-picker__controls {
20447
+ }.v-chip-group {
20176
20448
  display: flex;
20177
- flex-direction: column;
20178
- padding: 16px;
20179
- }
20180
-
20181
- .v-color-picker--flat {
20182
- 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));
20183
- }
20184
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20185
- 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));
20186
- }.v-card {
20187
- display: block;
20188
- overflow: hidden;
20189
- overflow-wrap: break-word;
20190
- position: relative;
20191
- padding: 0;
20192
- text-decoration: none;
20193
- transition-duration: 0.28s;
20194
- transition-property: box-shadow, opacity, background;
20195
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20196
- z-index: 0;
20197
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20198
- border-style: solid;
20199
- border-width: 0;
20200
- border-radius: 4px;
20201
- }
20202
- .v-card--border {
20203
- border-width: thin;
20204
- box-shadow: none;
20205
- }
20206
- .v-card--absolute {
20207
- position: absolute;
20208
- }
20209
- .v-card--fixed {
20210
- position: fixed;
20211
- }
20212
- .v-card:hover > .v-card__overlay {
20213
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
20214
- }
20215
- .v-card:focus-visible > .v-card__overlay {
20216
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20217
- }
20218
- @supports not selector(:focus-visible) {
20219
- .v-card:focus > .v-card__overlay {
20220
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20221
- }
20222
- }
20223
- .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
20224
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
20225
- }
20226
- .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
20227
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
20228
- }
20229
- .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
20230
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20231
- }
20232
- @supports not selector(:focus-visible) {
20233
- .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
20234
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20235
- }
20236
- }
20237
- .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
20238
- background: transparent;
20239
- color: inherit;
20240
- }
20241
- .v-card--variant-plain {
20242
- opacity: 0.62;
20243
- }
20244
- .v-card--variant-plain:focus, .v-card--variant-plain:hover {
20245
- opacity: 1;
20246
- }
20247
- .v-card--variant-plain .v-card__overlay {
20248
- display: none;
20249
- }
20250
- .v-card--variant-elevated, .v-card--variant-flat {
20251
- background: rgb(var(--v-theme-surface));
20252
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20253
- }
20254
- .v-card--variant-elevated {
20255
- box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
20256
- }
20257
- .v-card--variant-flat {
20258
- 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));
20259
- }
20260
- .v-card--variant-outlined {
20261
- border: thin solid currentColor;
20449
+ max-width: 100%;
20450
+ min-width: 0;
20451
+ overflow-x: auto;
20452
+ padding: 4px 0;
20262
20453
  }
20263
- .v-card--variant-text .v-card__overlay {
20264
- background: currentColor;
20454
+ .v-chip-group .v-chip {
20455
+ margin: 4px 8px 4px 0;
20265
20456
  }
20266
- .v-card--variant-tonal .v-card__underlay {
20267
- background: currentColor;
20457
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20268
20458
  opacity: var(--v-activated-opacity);
20269
- border-radius: inherit;
20270
- top: 0;
20271
- right: 0;
20272
- bottom: 0;
20273
- left: 0;
20274
- pointer-events: none;
20275
- }
20276
- .v-card .v-card__underlay {
20277
- position: absolute;
20278
- }
20279
- .v-card--disabled {
20280
- pointer-events: none;
20281
- -webkit-user-select: none;
20282
- user-select: none;
20283
- }
20284
- .v-card--disabled > :not(.v-card__loader) {
20285
- opacity: 0.6;
20286
- }
20287
- .v-card--flat {
20288
- box-shadow: none;
20289
- }
20290
- .v-card--hover {
20291
- cursor: pointer;
20292
- }
20293
- .v-card--hover::before, .v-card--hover::after {
20294
- border-radius: inherit;
20295
- bottom: 0;
20296
- content: "";
20297
- display: block;
20298
- left: 0;
20299
- pointer-events: none;
20300
- position: absolute;
20301
- right: 0;
20302
- top: 0;
20303
- transition: inherit;
20304
- }
20305
- .v-card--hover::before {
20306
- opacity: 1;
20307
- z-index: -1;
20308
- box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
20309
- }
20310
- .v-card--hover::after {
20311
- z-index: 1;
20312
- opacity: 0;
20313
- 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));
20314
- }
20315
- .v-card--hover:hover::after {
20316
- opacity: 1;
20317
- }
20318
- .v-card--hover:hover::before {
20319
- opacity: 0;
20320
- }
20321
- .v-card--hover:hover {
20322
- 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));
20323
- }
20324
- .v-card--link {
20325
- cursor: pointer;
20326
- }
20327
-
20328
- .v-card-actions {
20329
- align-items: center;
20330
- display: flex;
20331
- flex: none;
20332
- min-height: 52px;
20333
- padding: 0.5rem;
20334
- }
20335
-
20336
- .v-card-item {
20337
- align-items: center;
20338
- display: grid;
20339
- flex: none;
20340
- grid-template-areas: "prepend content append";
20341
- grid-template-columns: max-content auto max-content;
20342
- padding: 0.625rem 1rem;
20343
- }
20344
- .v-card-item + .v-card-text {
20345
- padding-top: 0;
20346
- }
20347
- .v-card-item__prepend, .v-card-item__append {
20348
- align-items: center;
20349
- display: flex;
20350
- }
20351
- .v-card-item__prepend {
20352
- grid-area: prepend;
20353
- padding-inline-end: 0.5rem;
20354
- }
20355
- .v-card-item__append {
20356
- grid-area: append;
20357
- padding-inline-start: 0.5rem;
20358
- }
20359
-
20360
- .v-card-item__content {
20361
- align-self: center;
20362
- grid-area: content;
20363
- overflow: hidden;
20364
20459
  }
20365
20460
 
20366
- .v-card-title {
20367
- display: block;
20368
- flex: none;
20369
- font-size: 1.25rem;
20370
- font-weight: 500;
20371
- -webkit-hyphens: auto;
20372
- hyphens: auto;
20373
- letter-spacing: 0.0125em;
20374
- min-width: 0;
20375
- overflow-wrap: normal;
20376
- overflow: hidden;
20377
- padding: 0.5rem 1rem;
20378
- text-overflow: ellipsis;
20379
- text-transform: none;
20380
- white-space: nowrap;
20381
- word-break: normal;
20382
- word-wrap: break-word;
20383
- }
20384
- .v-card .v-card-title {
20385
- line-height: 1.6;
20461
+ .v-chip-group--column .v-slide-group__content {
20462
+ white-space: normal;
20463
+ flex-wrap: wrap;
20464
+ max-width: 100%;
20465
+ }.v-combobox .v-field .v-text-field__prefix,
20466
+ .v-combobox .v-field .v-text-field__suffix,
20467
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20468
+ cursor: text;
20386
20469
  }
20387
- .v-card--density-comfortable .v-card-title {
20388
- line-height: 1.75rem;
20470
+ .v-combobox .v-field .v-field__input > input {
20471
+ flex: 1 1;
20389
20472
  }
20390
- .v-card--density-compact .v-card-title {
20391
- line-height: 1.55rem;
20473
+ .v-combobox .v-field input {
20474
+ min-width: 64px;
20392
20475
  }
20393
- .v-card-item .v-card-title {
20394
- padding: 0;
20476
+ .v-combobox .v-field:not(.v-field--focused) input {
20477
+ min-width: 0;
20395
20478
  }
20396
- .v-card-title + .v-card-text,
20397
- .v-card-title + .v-card-actions {
20398
- padding-top: 0;
20479
+ .v-combobox .v-field--dirty .v-combobox__selection {
20480
+ margin-inline-end: 2px;
20399
20481
  }
20400
-
20401
- .v-card-subtitle {
20402
- display: block;
20403
- flex: none;
20404
- font-size: 0.875rem;
20405
- font-weight: 400;
20406
- letter-spacing: 0.0178571429em;
20407
- opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
20482
+ .v-combobox .v-combobox__selection-text {
20408
20483
  overflow: hidden;
20409
- padding: 0 1rem;
20410
20484
  text-overflow: ellipsis;
20411
- text-transform: none;
20412
20485
  white-space: nowrap;
20413
20486
  }
20414
- .v-card .v-card-subtitle {
20415
- line-height: 1.425;
20487
+
20488
+ .v-combobox__content {
20489
+ overflow: hidden;
20490
+ 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));
20491
+ border-radius: 4px;
20416
20492
  }
20417
- .v-card--density-comfortable .v-card-subtitle {
20418
- line-height: 1.125rem;
20493
+ .v-combobox__mask {
20494
+ background: rgb(var(--v-theme-surface-light));
20419
20495
  }
20420
- .v-card--density-compact .v-card-subtitle {
20421
- line-height: 1rem;
20496
+ .v-combobox__selection {
20497
+ display: inline-flex;
20498
+ align-items: center;
20499
+ height: 1.5rem;
20500
+ letter-spacing: inherit;
20501
+ line-height: inherit;
20502
+ max-width: calc(100% - 2px - 2px);
20422
20503
  }
20423
- .v-card-item .v-card-subtitle {
20424
- padding: 0 0 0.25rem;
20504
+ .v-combobox__selection:first-child {
20505
+ margin-inline-start: 0;
20425
20506
  }
20426
-
20427
- .v-card-text {
20428
- flex: 1 1 auto;
20429
- font-size: 0.875rem;
20430
- font-weight: 400;
20431
- letter-spacing: 0.0178571429em;
20432
- opacity: var(--v-card-text-opacity, 1);
20433
- padding: 1rem;
20434
- text-transform: none;
20507
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20508
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20509
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20510
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20511
+ top: 0px;
20435
20512
  }
20436
- .v-card .v-card-text {
20437
- line-height: 1.425;
20513
+ .v-combobox--selecting-index .v-combobox__selection {
20514
+ opacity: var(--v-medium-emphasis-opacity);
20438
20515
  }
20439
- .v-card--density-comfortable .v-card-text {
20440
- line-height: 1.2rem;
20516
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20517
+ opacity: 1;
20441
20518
  }
20442
- .v-card--density-compact .v-card-text {
20443
- line-height: 1.15rem;
20519
+ .v-combobox--selecting-index .v-field__input > input {
20520
+ caret-color: transparent;
20444
20521
  }
20445
-
20446
- .v-card__image {
20447
- display: flex;
20448
- height: 100%;
20449
- flex: 1 1 auto;
20450
- left: 0;
20451
- overflow: hidden;
20522
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20523
+ flex: 1 1;
20452
20524
  position: absolute;
20453
- top: 0;
20454
- width: 100%;
20455
- z-index: -1;
20456
- }
20457
-
20458
- .v-card__content {
20459
- border-radius: inherit;
20460
- overflow: hidden;
20461
- position: relative;
20462
- }
20463
-
20464
- .v-card__loader {
20465
- bottom: auto;
20466
- top: 0;
20467
20525
  left: 0;
20468
- position: absolute;
20469
20526
  right: 0;
20470
20527
  width: 100%;
20471
- z-index: 1;
20528
+ padding-inline: inherit;
20472
20529
  }
20473
-
20474
- .v-card__overlay {
20475
- background-color: currentColor;
20476
- border-radius: inherit;
20477
- position: absolute;
20478
- top: 0;
20479
- right: 0;
20480
- bottom: 0;
20481
- left: 0;
20482
- pointer-events: none;
20530
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20531
+ transition: none;
20532
+ }
20533
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20483
20534
  opacity: 0;
20484
- transition: opacity 0.2s ease-in-out;
20485
- }.v-counter {
20486
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20487
- flex: 0 1 auto;
20488
- font-size: 12px;
20489
- transition-duration: 150ms;
20535
+ }
20536
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20537
+ opacity: 0;
20538
+ }
20539
+ .v-combobox__menu-icon {
20540
+ margin-inline-start: 4px;
20541
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20542
+ }
20543
+ .v-combobox--active-menu .v-combobox__menu-icon {
20544
+ opacity: var(--v-high-emphasis-opacity);
20545
+ transform: rotate(180deg);
20490
20546
  }.v-container {
20491
20547
  width: 100%;
20492
20548
  padding: 16px;
@@ -21159,93 +21215,97 @@ html.overflow-y-hidden {
21159
21215
  .offset-xxl-11 {
21160
21216
  margin-inline-start: 91.6666666667%;
21161
21217
  }
21162
- }.v-combobox .v-field .v-text-field__prefix,
21163
- .v-combobox .v-field .v-text-field__suffix,
21164
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
21165
- cursor: text;
21218
+ }.v-color-picker {
21219
+ align-self: flex-start;
21220
+ contain: content;
21166
21221
  }
21167
- .v-combobox .v-field .v-field__input > input {
21168
- flex: 1 1;
21222
+ .v-color-picker.v-sheet {
21223
+ 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));
21224
+ border-radius: 4px;
21169
21225
  }
21170
- .v-combobox .v-field input {
21171
- min-width: 64px;
21226
+
21227
+ .v-color-picker__controls {
21228
+ display: flex;
21229
+ flex-direction: column;
21230
+ padding: 16px;
21172
21231
  }
21173
- .v-combobox .v-field:not(.v-field--focused) input {
21174
- min-width: 0;
21232
+
21233
+ .v-color-picker--flat {
21234
+ 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));
21175
21235
  }
21176
- .v-combobox .v-field--dirty .v-combobox__selection {
21177
- margin-inline-end: 2px;
21236
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
21237
+ 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));
21238
+ }.v-counter {
21239
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21240
+ flex: 0 1 auto;
21241
+ font-size: 12px;
21242
+ transition-duration: 150ms;
21243
+ }.v-date-picker {
21244
+ overflow: hidden;
21245
+ width: 328px;
21178
21246
  }
21179
- .v-combobox .v-combobox__selection-text {
21247
+ .v-date-picker--show-week {
21248
+ width: 368px;
21249
+ }.v-date-picker-header {
21250
+ align-items: flex-end;
21251
+ height: 70px;
21252
+ display: grid;
21253
+ grid-template-areas: "prepend content append";
21254
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
21180
21255
  overflow: hidden;
21181
- text-overflow: ellipsis;
21182
- white-space: nowrap;
21256
+ padding-inline: 24px 12px;
21257
+ padding-bottom: 12px;
21183
21258
  }
21184
21259
 
21185
- .v-combobox__content {
21186
- overflow: hidden;
21187
- 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));
21188
- border-radius: 4px;
21260
+ .v-date-picker-header__append {
21261
+ grid-area: append;
21189
21262
  }
21190
- .v-combobox__mask {
21191
- background: rgb(var(--v-theme-surface-light));
21263
+
21264
+ .v-date-picker-header__prepend {
21265
+ grid-area: prepend;
21266
+ padding-inline-start: 8px;
21192
21267
  }
21193
- .v-combobox__selection {
21194
- display: inline-flex;
21268
+
21269
+ .v-date-picker-header__content {
21195
21270
  align-items: center;
21196
- height: 1.5rem;
21197
- letter-spacing: inherit;
21198
- line-height: inherit;
21199
- max-width: calc(100% - 2px - 2px);
21200
- }
21201
- .v-combobox__selection:first-child {
21202
- margin-inline-start: 0;
21203
- }
21204
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21205
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21206
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21207
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21208
- top: 0px;
21209
- }
21210
- .v-combobox--selecting-index .v-combobox__selection {
21211
- opacity: var(--v-medium-emphasis-opacity);
21271
+ display: inline-flex;
21272
+ font-size: 32px;
21273
+ line-height: 40px;
21274
+ grid-area: content;
21275
+ justify-content: space-between;
21212
21276
  }
21213
- .v-combobox--selecting-index .v-combobox__selection--selected {
21214
- opacity: 1;
21277
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21278
+ cursor: pointer;
21215
21279
  }
21216
- .v-combobox--selecting-index .v-field__input > input {
21217
- caret-color: transparent;
21280
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21281
+ opacity: 0.7;
21218
21282
  }
21219
- .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
21220
- flex: 1 1;
21221
- position: absolute;
21222
- left: 0;
21223
- right: 0;
21224
- width: 100%;
21225
- padding-inline: inherit;
21283
+
21284
+ .date-picker-header-transition-enter-active,
21285
+ .date-picker-header-reverse-transition-enter-active {
21286
+ transition-duration: 0.3s;
21287
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21226
21288
  }
21227
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
21228
- transition: none;
21289
+ .date-picker-header-transition-leave-active,
21290
+ .date-picker-header-reverse-transition-leave-active {
21291
+ transition-duration: 0.3s;
21292
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21229
21293
  }
21230
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
21231
- opacity: 0;
21294
+
21295
+ .date-picker-header-transition-enter-from {
21296
+ transform: translate(0, 100%);
21232
21297
  }
21233
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
21298
+ .date-picker-header-transition-leave-to {
21234
21299
  opacity: 0;
21300
+ transform: translate(0, -100%);
21235
21301
  }
21236
- .v-combobox__menu-icon {
21237
- margin-inline-start: 4px;
21238
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21239
- }
21240
- .v-combobox--active-menu .v-combobox__menu-icon {
21241
- opacity: var(--v-high-emphasis-opacity);
21242
- transform: rotate(180deg);
21243
- }.v-date-picker {
21244
- overflow: hidden;
21245
- width: 328px;
21302
+
21303
+ .date-picker-header-reverse-transition-enter-from {
21304
+ transform: translate(0, -100%);
21246
21305
  }
21247
- .v-date-picker--show-week {
21248
- width: 368px;
21306
+ .date-picker-header-reverse-transition-leave-to {
21307
+ opacity: 0;
21308
+ transform: translate(0, 100%);
21249
21309
  }.v-date-picker-controls {
21250
21310
  display: flex;
21251
21311
  align-items: center;
@@ -21376,66 +21436,6 @@ html.overflow-y-hidden {
21376
21436
  text-transform: none;
21377
21437
  padding-inline-start: 8px;
21378
21438
  padding-inline-end: 8px;
21379
- }.v-date-picker-header {
21380
- align-items: flex-end;
21381
- height: 70px;
21382
- display: grid;
21383
- grid-template-areas: "prepend content append";
21384
- grid-template-columns: min-content minmax(0, 1fr) min-content;
21385
- overflow: hidden;
21386
- padding-inline: 24px 12px;
21387
- padding-bottom: 12px;
21388
- }
21389
-
21390
- .v-date-picker-header__append {
21391
- grid-area: append;
21392
- }
21393
-
21394
- .v-date-picker-header__prepend {
21395
- grid-area: prepend;
21396
- padding-inline-start: 8px;
21397
- }
21398
-
21399
- .v-date-picker-header__content {
21400
- align-items: center;
21401
- display: inline-flex;
21402
- font-size: 32px;
21403
- line-height: 40px;
21404
- grid-area: content;
21405
- justify-content: space-between;
21406
- }
21407
- .v-date-picker-header--clickable .v-date-picker-header__content {
21408
- cursor: pointer;
21409
- }
21410
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21411
- opacity: 0.7;
21412
- }
21413
-
21414
- .date-picker-header-transition-enter-active,
21415
- .date-picker-header-reverse-transition-enter-active {
21416
- transition-duration: 0.3s;
21417
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21418
- }
21419
- .date-picker-header-transition-leave-active,
21420
- .date-picker-header-reverse-transition-leave-active {
21421
- transition-duration: 0.3s;
21422
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21423
- }
21424
-
21425
- .date-picker-header-transition-enter-from {
21426
- transform: translate(0, 100%);
21427
- }
21428
- .date-picker-header-transition-leave-to {
21429
- opacity: 0;
21430
- transform: translate(0, -100%);
21431
- }
21432
-
21433
- .date-picker-header-reverse-transition-enter-from {
21434
- transform: translate(0, -100%);
21435
- }
21436
- .date-picker-header-reverse-transition-leave-to {
21437
- opacity: 0;
21438
- transform: translate(0, 100%);
21439
21439
  }.v-date-picker-years {
21440
21440
  height: 288px;
21441
21441
  overflow-y: scroll;
@@ -21451,37 +21451,6 @@ html.overflow-y-hidden {
21451
21451
  }
21452
21452
  .v-date-picker-years__content .v-btn {
21453
21453
  padding-inline: 8px;
21454
- }.v-data-table-footer {
21455
- align-items: center;
21456
- display: flex;
21457
- flex-wrap: wrap;
21458
- justify-content: flex-end;
21459
- padding: 8px 4px;
21460
- }
21461
- .v-data-table-footer__items-per-page {
21462
- align-items: center;
21463
- display: flex;
21464
- justify-content: center;
21465
- }
21466
- .v-data-table-footer__items-per-page > span {
21467
- padding-inline-end: 8px;
21468
- }
21469
- .v-data-table-footer__items-per-page > .v-select {
21470
- width: 90px;
21471
- }
21472
- .v-data-table-footer__info {
21473
- display: flex;
21474
- justify-content: flex-end;
21475
- min-width: 116px;
21476
- padding: 0 16px;
21477
- }
21478
- .v-data-table-footer__paginationz {
21479
- align-items: center;
21480
- display: flex;
21481
- margin-inline-start: 16px;
21482
- }
21483
- .v-data-table-footer__page {
21484
- padding: 0 8px;
21485
21454
  }.v-data-table {
21486
21455
  width: 100%;
21487
21456
  }
@@ -21664,55 +21633,37 @@ html.overflow-y-hidden {
21664
21633
  }
21665
21634
  .v-data-table__td-sort-icon-active {
21666
21635
  color: rgba(var(--v-theme-on-surface));
21667
- }.v-divider {
21668
- display: block;
21669
- flex: 1 1 100%;
21670
- height: 0px;
21671
- max-height: 0px;
21672
- opacity: var(--v-border-opacity);
21673
- transition: inherit;
21674
- border-style: solid;
21675
- border-width: thin 0 0 0;
21636
+ }.v-data-table-footer {
21637
+ align-items: center;
21638
+ display: flex;
21639
+ flex-wrap: wrap;
21640
+ justify-content: flex-end;
21641
+ padding: 8px 4px;
21676
21642
  }
21677
- .v-divider--vertical {
21678
- align-self: stretch;
21679
- border-width: 0 thin 0 0;
21680
- display: inline-flex;
21681
- height: 100%;
21682
- margin-left: -1px;
21683
- max-height: 100%;
21684
- max-width: 0px;
21685
- vertical-align: text-bottom;
21686
- width: 0px;
21643
+ .v-data-table-footer__items-per-page {
21644
+ align-items: center;
21645
+ display: flex;
21646
+ justify-content: center;
21687
21647
  }
21688
- .v-divider--inset:not(.v-divider--vertical) {
21689
- max-width: calc(100% - 72px);
21690
- margin-inline-start: 72px;
21648
+ .v-data-table-footer__items-per-page > span {
21649
+ padding-inline-end: 8px;
21691
21650
  }
21692
- .v-divider--inset.v-divider--vertical {
21693
- margin-bottom: 8px;
21694
- margin-top: 8px;
21695
- max-height: calc(100% - 16px);
21651
+ .v-data-table-footer__items-per-page > .v-select {
21652
+ width: 90px;
21696
21653
  }
21697
-
21698
- .v-divider__content {
21654
+ .v-data-table-footer__info {
21655
+ display: flex;
21656
+ justify-content: flex-end;
21657
+ min-width: 116px;
21699
21658
  padding: 0 16px;
21700
21659
  }
21701
- .v-divider__wrapper--vertical .v-divider__content {
21702
- padding: 4px 0;
21703
- }
21704
-
21705
- .v-divider__wrapper {
21706
- display: flex;
21660
+ .v-data-table-footer__paginationz {
21707
21661
  align-items: center;
21708
- justify-content: center;
21709
- }
21710
- .v-divider__wrapper--vertical {
21711
- flex-direction: column;
21712
- height: 100%;
21662
+ display: flex;
21663
+ margin-inline-start: 16px;
21713
21664
  }
21714
- .v-divider__wrapper--vertical .v-divider {
21715
- margin: 0 auto;
21665
+ .v-data-table-footer__page {
21666
+ padding: 0 8px;
21716
21667
  }.v-dialog {
21717
21668
  align-items: center;
21718
21669
  justify-content: center;
@@ -22109,48 +22060,154 @@ html.overflow-y-hidden {
22109
22060
  margin-inline-start: auto;
22110
22061
  }
22111
22062
 
22112
- .v-expansion-panel-text {
22063
+ .v-expansion-panel-text {
22064
+ display: flex;
22065
+ }
22066
+ .v-expansion-panel-text__wrapper {
22067
+ padding: 8px 24px 16px;
22068
+ flex: 1 1 auto;
22069
+ max-width: 100%;
22070
+ }
22071
+
22072
+ .v-expansion-panels--variant-accordion > .v-expansion-panel {
22073
+ margin-top: 0;
22074
+ }
22075
+ .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
22076
+ opacity: 1;
22077
+ }
22078
+
22079
+ .v-expansion-panels--variant-popout > .v-expansion-panel {
22080
+ max-width: calc(100% - 32px);
22081
+ }
22082
+ .v-expansion-panels--variant-popout > .v-expansion-panel--active {
22083
+ max-width: calc(100% + 16px);
22084
+ }
22085
+
22086
+ .v-expansion-panels--variant-inset > .v-expansion-panel {
22087
+ max-width: 100%;
22088
+ }
22089
+ .v-expansion-panels--variant-inset > .v-expansion-panel--active {
22090
+ max-width: calc(100% - 32px);
22091
+ }
22092
+
22093
+ .v-expansion-panels--flat > .v-expansion-panel::after {
22094
+ border-top: none;
22095
+ }
22096
+ .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
22097
+ display: none;
22098
+ }
22099
+
22100
+ .v-expansion-panels--tile {
22101
+ border-radius: 0;
22102
+ }
22103
+ .v-expansion-panels--tile > .v-expansion-panel {
22104
+ border-radius: 0;
22105
+ }.v-divider {
22106
+ display: block;
22107
+ flex: 1 1 100%;
22108
+ height: 0px;
22109
+ max-height: 0px;
22110
+ opacity: var(--v-border-opacity);
22111
+ transition: inherit;
22112
+ border-style: solid;
22113
+ border-width: thin 0 0 0;
22114
+ }
22115
+ .v-divider--vertical {
22116
+ align-self: stretch;
22117
+ border-width: 0 thin 0 0;
22118
+ display: inline-flex;
22119
+ height: 100%;
22120
+ margin-left: -1px;
22121
+ max-height: 100%;
22122
+ max-width: 0px;
22123
+ vertical-align: text-bottom;
22124
+ width: 0px;
22125
+ }
22126
+ .v-divider--inset:not(.v-divider--vertical) {
22127
+ max-width: calc(100% - 72px);
22128
+ margin-inline-start: 72px;
22129
+ }
22130
+ .v-divider--inset.v-divider--vertical {
22131
+ margin-bottom: 8px;
22132
+ margin-top: 8px;
22133
+ max-height: calc(100% - 16px);
22134
+ }
22135
+
22136
+ .v-divider__content {
22137
+ padding: 0 16px;
22138
+ }
22139
+ .v-divider__wrapper--vertical .v-divider__content {
22140
+ padding: 4px 0;
22141
+ }
22142
+
22143
+ .v-divider__wrapper {
22113
22144
  display: flex;
22145
+ align-items: center;
22146
+ justify-content: center;
22114
22147
  }
22115
- .v-expansion-panel-text__wrapper {
22116
- padding: 8px 24px 16px;
22117
- flex: 1 1 auto;
22118
- max-width: 100%;
22148
+ .v-divider__wrapper--vertical {
22149
+ flex-direction: column;
22150
+ height: 100%;
22119
22151
  }
22120
-
22121
- .v-expansion-panels--variant-accordion > .v-expansion-panel {
22122
- margin-top: 0;
22152
+ .v-divider__wrapper--vertical .v-divider {
22153
+ margin: 0 auto;
22154
+ }.v-footer {
22155
+ align-items: center;
22156
+ display: flex;
22157
+ flex: 1 1 auto;
22158
+ padding: 8px 16px;
22159
+ position: relative;
22160
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22161
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
22162
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22163
+ border-style: solid;
22164
+ border-width: 0;
22165
+ 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));
22166
+ border-radius: 0;
22167
+ background: rgb(var(--v-theme-surface));
22168
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22123
22169
  }
22124
- .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
22125
- opacity: 1;
22170
+ .v-footer--border {
22171
+ border-width: thin;
22172
+ box-shadow: none;
22126
22173
  }
22127
-
22128
- .v-expansion-panels--variant-popout > .v-expansion-panel {
22129
- max-width: calc(100% - 32px);
22174
+ .v-footer--absolute {
22175
+ position: absolute;
22130
22176
  }
22131
- .v-expansion-panels--variant-popout > .v-expansion-panel--active {
22132
- max-width: calc(100% + 16px);
22177
+ .v-footer--fixed {
22178
+ position: fixed;
22133
22179
  }
22134
-
22135
- .v-expansion-panels--variant-inset > .v-expansion-panel {
22136
- max-width: 100%;
22180
+ .v-footer--rounded {
22181
+ border-radius: 4px;
22182
+ }.v-file-input--hide.v-input .v-field,
22183
+ .v-file-input--hide.v-input .v-input__control,
22184
+ .v-file-input--hide.v-input .v-input__details {
22185
+ display: none;
22137
22186
  }
22138
- .v-expansion-panels--variant-inset > .v-expansion-panel--active {
22139
- max-width: calc(100% - 32px);
22187
+ .v-file-input--hide.v-input .v-input__prepend {
22188
+ grid-area: control;
22189
+ margin: 0 auto;
22140
22190
  }
22141
-
22142
- .v-expansion-panels--flat > .v-expansion-panel::after {
22143
- border-top: none;
22191
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22192
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22193
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22194
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22195
+ top: 0px;
22144
22196
  }
22145
- .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
22146
- display: none;
22197
+ .v-file-input input[type=file] {
22198
+ height: 100%;
22199
+ left: 0;
22200
+ opacity: 0;
22201
+ position: absolute;
22202
+ top: 0;
22203
+ width: 100%;
22204
+ z-index: 1;
22147
22205
  }
22148
-
22149
- .v-expansion-panels--tile {
22150
- border-radius: 0;
22206
+ .v-file-input .v-input__details {
22207
+ padding-inline: 16px;
22151
22208
  }
22152
- .v-expansion-panels--tile > .v-expansion-panel {
22153
- border-radius: 0;
22209
+ .v-input--plain-underlined.v-file-input .v-input__details {
22210
+ padding-inline: 0;
22154
22211
  }/* region INPUT */
22155
22212
  .v-field {
22156
22213
  display: grid;
@@ -22721,64 +22778,7 @@ textarea.v-field__input::placeholder {
22721
22778
  opacity: 0;
22722
22779
  }
22723
22780
 
22724
- /* endregion */.v-file-input--hide.v-input .v-field,
22725
- .v-file-input--hide.v-input .v-input__control,
22726
- .v-file-input--hide.v-input .v-input__details {
22727
- display: none;
22728
- }
22729
- .v-file-input--hide.v-input .v-input__prepend {
22730
- grid-area: control;
22731
- margin: 0 auto;
22732
- }
22733
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22734
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22735
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22736
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22737
- top: 0px;
22738
- }
22739
- .v-file-input input[type=file] {
22740
- height: 100%;
22741
- left: 0;
22742
- opacity: 0;
22743
- position: absolute;
22744
- top: 0;
22745
- width: 100%;
22746
- z-index: 1;
22747
- }
22748
- .v-file-input .v-input__details {
22749
- padding-inline: 16px;
22750
- }
22751
- .v-input--plain-underlined.v-file-input .v-input__details {
22752
- padding-inline: 0;
22753
- }.v-footer {
22754
- align-items: center;
22755
- display: flex;
22756
- flex: 1 1 auto;
22757
- padding: 8px 16px;
22758
- position: relative;
22759
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22760
- transition-property: height, width, transform, max-width, left, right, top, bottom;
22761
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22762
- border-style: solid;
22763
- border-width: 0;
22764
- 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));
22765
- border-radius: 0;
22766
- background: rgb(var(--v-theme-surface));
22767
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22768
- }
22769
- .v-footer--border {
22770
- border-width: thin;
22771
- box-shadow: none;
22772
- }
22773
- .v-footer--absolute {
22774
- position: absolute;
22775
- }
22776
- .v-footer--fixed {
22777
- position: fixed;
22778
- }
22779
- .v-footer--rounded {
22780
- border-radius: 4px;
22781
- }.v-icon {
22781
+ /* endregion */.v-icon {
22782
22782
  --v-icon-size-multiplier: 1;
22783
22783
  align-items: center;
22784
22784
  display: inline-flex;
@@ -22831,6 +22831,31 @@ textarea.v-field__input::placeholder {
22831
22831
 
22832
22832
  .v-icon--end {
22833
22833
  margin-inline-start: 8px;
22834
+ }.v-infinite-scroll--horizontal {
22835
+ display: flex;
22836
+ flex-direction: row;
22837
+ overflow-x: auto;
22838
+ }
22839
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22840
+ height: 100%;
22841
+ width: 1px;
22842
+ }
22843
+
22844
+ .v-infinite-scroll--vertical {
22845
+ display: flex;
22846
+ flex-direction: column;
22847
+ overflow-y: auto;
22848
+ }
22849
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22850
+ height: 1px;
22851
+ width: 100%;
22852
+ }
22853
+
22854
+ .v-infinite-scroll__side {
22855
+ align-items: center;
22856
+ display: flex;
22857
+ justify-content: center;
22858
+ padding: 8px;
22834
22859
  }.v-input {
22835
22860
  display: grid;
22836
22861
  flex: 1 1 auto;
@@ -23009,46 +23034,6 @@ textarea.v-field__input::placeholder {
23009
23034
 
23010
23035
  .v-img__gradient {
23011
23036
  background-repeat: no-repeat;
23012
- }.v-infinite-scroll--horizontal {
23013
- display: flex;
23014
- flex-direction: row;
23015
- overflow-x: auto;
23016
- }
23017
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
23018
- height: 100%;
23019
- width: 1px;
23020
- }
23021
-
23022
- .v-infinite-scroll--vertical {
23023
- display: flex;
23024
- flex-direction: column;
23025
- overflow-y: auto;
23026
- }
23027
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
23028
- height: 1px;
23029
- width: 100%;
23030
- }
23031
-
23032
- .v-infinite-scroll__side {
23033
- align-items: center;
23034
- display: flex;
23035
- justify-content: center;
23036
- padding: 8px;
23037
- }.v-layout {
23038
- --v-scrollbar-offset: 0px;
23039
- display: flex;
23040
- flex: 1 1 auto;
23041
- }
23042
- .v-layout--full-height {
23043
- --v-scrollbar-offset: inherit;
23044
- height: 100%;
23045
- }.v-layout-item {
23046
- position: absolute;
23047
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23048
- }
23049
-
23050
- .v-layout-item--absolute {
23051
- position: absolute;
23052
23037
  }.v-item-group {
23053
23038
  flex: 0 1 auto;
23054
23039
  max-width: 100%;
@@ -23069,6 +23054,21 @@ textarea.v-field__input::placeholder {
23069
23054
 
23070
23055
  .v-label--clickable {
23071
23056
  cursor: pointer;
23057
+ }.v-layout {
23058
+ --v-scrollbar-offset: 0px;
23059
+ display: flex;
23060
+ flex: 1 1 auto;
23061
+ }
23062
+ .v-layout--full-height {
23063
+ --v-scrollbar-offset: inherit;
23064
+ height: 100%;
23065
+ }.v-layout-item {
23066
+ position: absolute;
23067
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23068
+ }
23069
+
23070
+ .v-layout-item--absolute {
23071
+ position: absolute;
23072
23072
  }.v-list {
23073
23073
  overflow: auto;
23074
23074
  padding: 8px 0;
@@ -23623,40 +23623,9 @@ textarea.v-field__input::placeholder {
23623
23623
 
23624
23624
  .v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
23625
23625
  opacity: 0;
23626
- }
23627
- .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
23628
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23629
- }.v-menu > .v-overlay__content {
23630
- display: flex;
23631
- flex-direction: column;
23632
- border-radius: 4px;
23633
- }
23634
- .v-menu > .v-overlay__content > .v-card,
23635
- .v-menu > .v-overlay__content > .v-sheet,
23636
- .v-menu > .v-overlay__content > .v-list {
23637
- background: rgb(var(--v-theme-surface));
23638
- border-radius: inherit;
23639
- overflow: auto;
23640
- height: 100%;
23641
- 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));
23642
- }.v-locale-provider {
23643
- display: contents;
23644
- }.v-messages {
23645
- flex: 1 1 auto;
23646
- font-size: 12px;
23647
- min-height: 14px;
23648
- min-width: 1px;
23649
- opacity: var(--v-medium-emphasis-opacity);
23650
- position: relative;
23651
- }
23652
- .v-messages__message {
23653
- line-height: 12px;
23654
- word-break: break-word;
23655
- overflow-wrap: break-word;
23656
- word-wrap: break-word;
23657
- -webkit-hyphens: auto;
23658
- hyphens: auto;
23659
- transition-duration: 150ms;
23626
+ }
23627
+ .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
23628
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23660
23629
  }.v-main {
23661
23630
  flex: 1 0 auto;
23662
23631
  max-width: 100%;
@@ -23685,6 +23654,8 @@ textarea.v-field__input::placeholder {
23685
23654
  --v-layout-right: 0px;
23686
23655
  --v-layout-top: 0px;
23687
23656
  --v-layout-bottom: 0px;
23657
+ }.v-locale-provider {
23658
+ display: contents;
23688
23659
  }.v-navigation-drawer {
23689
23660
  -webkit-overflow-scrolling: touch;
23690
23661
  background: rgb(var(--v-theme-surface));
@@ -23787,6 +23758,98 @@ textarea.v-field__input::placeholder {
23787
23758
  .v-navigation-drawer__append {
23788
23759
  flex: none;
23789
23760
  overflow: hidden;
23761
+ }.v-messages {
23762
+ flex: 1 1 auto;
23763
+ font-size: 12px;
23764
+ min-height: 14px;
23765
+ min-width: 1px;
23766
+ opacity: var(--v-medium-emphasis-opacity);
23767
+ position: relative;
23768
+ }
23769
+ .v-messages__message {
23770
+ line-height: 12px;
23771
+ word-break: break-word;
23772
+ overflow-wrap: break-word;
23773
+ word-wrap: break-word;
23774
+ -webkit-hyphens: auto;
23775
+ hyphens: auto;
23776
+ transition-duration: 150ms;
23777
+ }.v-menu > .v-overlay__content {
23778
+ display: flex;
23779
+ flex-direction: column;
23780
+ border-radius: 4px;
23781
+ }
23782
+ .v-menu > .v-overlay__content > .v-card,
23783
+ .v-menu > .v-overlay__content > .v-sheet,
23784
+ .v-menu > .v-overlay__content > .v-list {
23785
+ background: rgb(var(--v-theme-surface));
23786
+ border-radius: inherit;
23787
+ overflow: auto;
23788
+ height: 100%;
23789
+ 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));
23790
+ }.v-overlay-container {
23791
+ contain: layout;
23792
+ left: 0;
23793
+ pointer-events: none;
23794
+ position: absolute;
23795
+ top: 0;
23796
+ display: contents;
23797
+ }
23798
+
23799
+ .v-overlay-scroll-blocked {
23800
+ padding-inline-end: var(--v-scrollbar-offset);
23801
+ }
23802
+ .v-overlay-scroll-blocked:not(html) {
23803
+ overflow-y: hidden !important;
23804
+ }
23805
+ html.v-overlay-scroll-blocked {
23806
+ position: fixed;
23807
+ top: var(--v-body-scroll-y);
23808
+ left: var(--v-body-scroll-x);
23809
+ width: 100%;
23810
+ height: 100%;
23811
+ }
23812
+
23813
+ .v-overlay {
23814
+ border-radius: inherit;
23815
+ display: flex;
23816
+ left: 0;
23817
+ pointer-events: none;
23818
+ position: fixed;
23819
+ top: 0;
23820
+ bottom: 0;
23821
+ right: 0;
23822
+ }
23823
+
23824
+ .v-overlay__content {
23825
+ outline: none;
23826
+ position: absolute;
23827
+ pointer-events: auto;
23828
+ contain: layout;
23829
+ }
23830
+
23831
+ .v-overlay__scrim {
23832
+ pointer-events: auto;
23833
+ background: rgb(var(--v-theme-on-surface));
23834
+ border-radius: inherit;
23835
+ bottom: 0;
23836
+ left: 0;
23837
+ opacity: var(--v-overlay-opacity, 0.32);
23838
+ position: fixed;
23839
+ right: 0;
23840
+ top: 0;
23841
+ }
23842
+
23843
+ .v-overlay--absolute {
23844
+ position: absolute;
23845
+ }
23846
+
23847
+ .v-overlay--contained .v-overlay__scrim {
23848
+ position: absolute;
23849
+ }
23850
+
23851
+ .v-overlay--scroll-blocked {
23852
+ padding-inline-end: var(--v-scrollbar-offset);
23790
23853
  }.v-otp-input {
23791
23854
  border-radius: 4px;
23792
23855
  align-items: center;
@@ -23826,196 +23889,37 @@ textarea.v-field__input::placeholder {
23826
23889
  text-align: center;
23827
23890
  width: 100%;
23828
23891
  }
23829
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23830
- -webkit-appearance: none;
23831
- margin: 0;
23832
- }
23833
- .v-otp-input__field[type=number] {
23834
- -moz-appearance: textfield;
23835
- }
23836
-
23837
- .v-otp-input__loader {
23838
- align-items: center;
23839
- display: flex;
23840
- height: 100%;
23841
- justify-content: center;
23842
- width: 100%;
23843
- }
23844
- .v-otp-input__loader .v-progress-linear {
23845
- position: absolute;
23846
- }.v-pagination__list {
23847
- display: inline-flex;
23848
- list-style-type: none;
23849
- justify-content: center;
23850
- width: 100%;
23851
- }
23852
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23853
- margin: 0.3rem;
23854
- }.v-progress-circular {
23855
- align-items: center;
23856
- display: inline-flex;
23857
- justify-content: center;
23858
- position: relative;
23859
- vertical-align: middle;
23860
- }
23861
- .v-progress-circular > svg {
23862
- width: 100%;
23863
- height: 100%;
23864
- margin: auto;
23865
- position: absolute;
23866
- top: 0;
23867
- bottom: 0;
23868
- left: 0;
23869
- right: 0;
23870
- z-index: 0;
23871
- }
23872
-
23873
- .v-progress-circular__content {
23874
- align-items: center;
23875
- display: flex;
23876
- justify-content: center;
23877
- }
23878
-
23879
- .v-progress-circular__underlay {
23880
- color: rgba(var(--v-border-color), var(--v-border-opacity));
23881
- stroke: currentColor;
23882
- z-index: 1;
23883
- }
23884
-
23885
- .v-progress-circular__overlay {
23886
- stroke: currentColor;
23887
- transition: all 0.2s ease-in-out, stroke-width 0s;
23888
- z-index: 2;
23889
- }
23890
-
23891
- .v-progress-circular--size-x-small {
23892
- height: 16px;
23893
- width: 16px;
23894
- }
23895
- .v-progress-circular--size-small {
23896
- height: 24px;
23897
- width: 24px;
23898
- }
23899
- .v-progress-circular--size-default {
23900
- height: 32px;
23901
- width: 32px;
23902
- }
23903
- .v-progress-circular--size-large {
23904
- height: 48px;
23905
- width: 48px;
23906
- }
23907
- .v-progress-circular--size-x-large {
23908
- height: 64px;
23909
- width: 64px;
23910
- }
23911
-
23912
- .v-progress-circular--indeterminate > svg {
23913
- animation: progress-circular-rotate 1.4s linear infinite;
23914
- transform-origin: center center;
23915
- transition: all 0.2s ease-in-out;
23916
- }
23917
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
23918
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
23919
- stroke-dasharray: 25, 200;
23920
- stroke-dashoffset: 0;
23921
- stroke-linecap: round;
23922
- transform-origin: center center;
23923
- transform: rotate(-90deg);
23924
- }
23925
-
23926
- .v-progress-circular--disable-shrink > svg {
23927
- animation-duration: 0.7s;
23928
- }
23929
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
23930
- animation: none;
23931
- }
23932
-
23933
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
23934
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
23935
- animation-play-state: paused !important;
23936
- }
23937
-
23938
- @keyframes progress-circular-dash {
23939
- 0% {
23940
- stroke-dasharray: 1, 200;
23941
- stroke-dashoffset: 0px;
23942
- }
23943
- 50% {
23944
- stroke-dasharray: 100, 200;
23945
- stroke-dashoffset: -15px;
23946
- }
23947
- 100% {
23948
- stroke-dasharray: 100, 200;
23949
- stroke-dashoffset: -124px;
23950
- }
23951
- }
23952
- @keyframes progress-circular-rotate {
23953
- 100% {
23954
- transform: rotate(270deg);
23955
- }
23956
- }.v-overlay-container {
23957
- contain: layout;
23958
- left: 0;
23959
- pointer-events: none;
23960
- position: absolute;
23961
- top: 0;
23962
- display: contents;
23963
- }
23964
-
23965
- .v-overlay-scroll-blocked {
23966
- padding-inline-end: var(--v-scrollbar-offset);
23967
- }
23968
- .v-overlay-scroll-blocked:not(html) {
23969
- overflow-y: hidden !important;
23970
- }
23971
- html.v-overlay-scroll-blocked {
23972
- position: fixed;
23973
- top: var(--v-body-scroll-y);
23974
- left: var(--v-body-scroll-x);
23975
- width: 100%;
23976
- height: 100%;
23977
- }
23978
-
23979
- .v-overlay {
23980
- border-radius: inherit;
23981
- display: flex;
23982
- left: 0;
23983
- pointer-events: none;
23984
- position: fixed;
23985
- top: 0;
23986
- bottom: 0;
23987
- right: 0;
23892
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
23893
+ -webkit-appearance: none;
23894
+ margin: 0;
23988
23895
  }
23989
-
23990
- .v-overlay__content {
23991
- outline: none;
23992
- position: absolute;
23993
- pointer-events: auto;
23994
- contain: layout;
23896
+ .v-otp-input__field[type=number] {
23897
+ -moz-appearance: textfield;
23995
23898
  }
23996
23899
 
23997
- .v-overlay__scrim {
23998
- pointer-events: auto;
23999
- background: rgb(var(--v-theme-on-surface));
24000
- border-radius: inherit;
24001
- bottom: 0;
24002
- left: 0;
24003
- opacity: var(--v-overlay-opacity, 0.32);
24004
- position: fixed;
24005
- right: 0;
24006
- top: 0;
23900
+ .v-otp-input__loader {
23901
+ align-items: center;
23902
+ display: flex;
23903
+ height: 100%;
23904
+ justify-content: center;
23905
+ width: 100%;
24007
23906
  }
24008
-
24009
- .v-overlay--absolute {
23907
+ .v-otp-input__loader .v-progress-linear {
24010
23908
  position: absolute;
23909
+ }.v-pagination__list {
23910
+ display: inline-flex;
23911
+ list-style-type: none;
23912
+ justify-content: center;
23913
+ width: 100%;
24011
23914
  }
24012
-
24013
- .v-overlay--contained .v-overlay__scrim {
24014
- position: absolute;
23915
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23916
+ margin: 0.3rem;
23917
+ }.v-parallax {
23918
+ position: relative;
23919
+ overflow: hidden;
24015
23920
  }
24016
-
24017
- .v-overlay--scroll-blocked {
24018
- padding-inline-end: var(--v-scrollbar-offset);
23921
+ .v-parallax--active > .v-img__img {
23922
+ will-change: transform;
24019
23923
  }.v-progress-linear {
24020
23924
  background: transparent;
24021
23925
  overflow: hidden;
@@ -24227,6 +24131,108 @@ html.v-overlay-scroll-blocked {
24227
24131
  0% {
24228
24132
  background-position-x: var(--v-progress-linear-height);
24229
24133
  }
24134
+ }.v-progress-circular {
24135
+ align-items: center;
24136
+ display: inline-flex;
24137
+ justify-content: center;
24138
+ position: relative;
24139
+ vertical-align: middle;
24140
+ }
24141
+ .v-progress-circular > svg {
24142
+ width: 100%;
24143
+ height: 100%;
24144
+ margin: auto;
24145
+ position: absolute;
24146
+ top: 0;
24147
+ bottom: 0;
24148
+ left: 0;
24149
+ right: 0;
24150
+ z-index: 0;
24151
+ }
24152
+
24153
+ .v-progress-circular__content {
24154
+ align-items: center;
24155
+ display: flex;
24156
+ justify-content: center;
24157
+ }
24158
+
24159
+ .v-progress-circular__underlay {
24160
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
24161
+ stroke: currentColor;
24162
+ z-index: 1;
24163
+ }
24164
+
24165
+ .v-progress-circular__overlay {
24166
+ stroke: currentColor;
24167
+ transition: all 0.2s ease-in-out, stroke-width 0s;
24168
+ z-index: 2;
24169
+ }
24170
+
24171
+ .v-progress-circular--size-x-small {
24172
+ height: 16px;
24173
+ width: 16px;
24174
+ }
24175
+ .v-progress-circular--size-small {
24176
+ height: 24px;
24177
+ width: 24px;
24178
+ }
24179
+ .v-progress-circular--size-default {
24180
+ height: 32px;
24181
+ width: 32px;
24182
+ }
24183
+ .v-progress-circular--size-large {
24184
+ height: 48px;
24185
+ width: 48px;
24186
+ }
24187
+ .v-progress-circular--size-x-large {
24188
+ height: 64px;
24189
+ width: 64px;
24190
+ }
24191
+
24192
+ .v-progress-circular--indeterminate > svg {
24193
+ animation: progress-circular-rotate 1.4s linear infinite;
24194
+ transform-origin: center center;
24195
+ transition: all 0.2s ease-in-out;
24196
+ }
24197
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
24198
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
24199
+ stroke-dasharray: 25, 200;
24200
+ stroke-dashoffset: 0;
24201
+ stroke-linecap: round;
24202
+ transform-origin: center center;
24203
+ transform: rotate(-90deg);
24204
+ }
24205
+
24206
+ .v-progress-circular--disable-shrink > svg {
24207
+ animation-duration: 0.7s;
24208
+ }
24209
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
24210
+ animation: none;
24211
+ }
24212
+
24213
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
24214
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
24215
+ animation-play-state: paused !important;
24216
+ }
24217
+
24218
+ @keyframes progress-circular-dash {
24219
+ 0% {
24220
+ stroke-dasharray: 1, 200;
24221
+ stroke-dashoffset: 0px;
24222
+ }
24223
+ 50% {
24224
+ stroke-dasharray: 100, 200;
24225
+ stroke-dashoffset: -15px;
24226
+ }
24227
+ 100% {
24228
+ stroke-dasharray: 100, 200;
24229
+ stroke-dashoffset: -124px;
24230
+ }
24231
+ }
24232
+ @keyframes progress-circular-rotate {
24233
+ 100% {
24234
+ transform: rotate(270deg);
24235
+ }
24230
24236
  }.v-radio-group > .v-input__control {
24231
24237
  flex-direction: column;
24232
24238
  }
@@ -24239,66 +24245,187 @@ html.v-overlay-scroll-blocked {
24239
24245
  }
24240
24246
  .v-radio-group .v-input__details {
24241
24247
  padding-inline: 16px;
24242
- }.v-parallax {
24248
+ }.v-rating {
24249
+ max-width: 100%;
24250
+ display: inline-flex;
24251
+ white-space: nowrap;
24252
+ }
24253
+ .v-rating--readonly {
24254
+ pointer-events: none;
24255
+ }
24256
+
24257
+ .v-rating__wrapper {
24258
+ align-items: center;
24259
+ display: inline-flex;
24260
+ flex-direction: column;
24261
+ }
24262
+ .v-rating__wrapper--bottom {
24263
+ flex-direction: column-reverse;
24264
+ }
24265
+
24266
+ .v-rating__item {
24267
+ display: inline-flex;
24243
24268
  position: relative;
24269
+ }
24270
+ .v-rating__item label {
24271
+ cursor: pointer;
24272
+ }
24273
+ .v-rating__item .v-btn--variant-plain {
24274
+ opacity: 1;
24275
+ }
24276
+ .v-rating__item .v-btn {
24277
+ transition-property: transform;
24278
+ }
24279
+ .v-rating__item .v-btn .v-icon {
24280
+ transition: inherit;
24281
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24282
+ }
24283
+ .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24284
+ transform: scale(1.25);
24285
+ }
24286
+ .v-rating__item--half {
24287
+ overflow: hidden;
24288
+ position: absolute;
24289
+ -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24290
+ clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24291
+ z-index: 1;
24292
+ }
24293
+ .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24294
+ opacity: 0;
24295
+ }
24296
+
24297
+ .v-rating__hidden {
24298
+ height: 0;
24299
+ opacity: 0;
24300
+ position: absolute;
24301
+ width: 0;
24302
+ }.v-responsive {
24303
+ display: flex;
24304
+ flex: 1 0 auto;
24305
+ max-height: 100%;
24306
+ max-width: 100%;
24244
24307
  overflow: hidden;
24308
+ position: relative;
24245
24309
  }
24246
- .v-parallax--active > .v-img__img {
24247
- will-change: transform;
24248
- }.v-rating {
24310
+ .v-responsive--inline {
24311
+ display: inline-flex;
24312
+ flex: 0 0 auto;
24313
+ }
24314
+
24315
+ .v-responsive__content {
24316
+ flex: 1 0 0px;
24249
24317
  max-width: 100%;
24318
+ }
24319
+
24320
+ .v-responsive__sizer ~ .v-responsive__content {
24321
+ margin-inline-start: -100%;
24322
+ }
24323
+
24324
+ .v-responsive__sizer {
24325
+ flex: 1 0 0px;
24326
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24327
+ pointer-events: none;
24328
+ }.v-selection-control {
24329
+ align-items: center;
24330
+ contain: layout;
24331
+ display: flex;
24332
+ flex: 1 0;
24333
+ grid-area: control;
24334
+ position: relative;
24335
+ -webkit-user-select: none;
24336
+ user-select: none;
24337
+ }
24338
+ .v-selection-control .v-label {
24339
+ white-space: normal;
24340
+ word-break: break-word;
24341
+ height: 100%;
24342
+ }
24343
+ .v-selection-control--disabled {
24344
+ opacity: var(--v-disabled-opacity);
24345
+ pointer-events: none;
24346
+ }
24347
+ .v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
24348
+ opacity: 1;
24349
+ }
24350
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
24351
+ color: rgb(var(--v-theme-error));
24352
+ }
24353
+ .v-selection-control--inline {
24250
24354
  display: inline-flex;
24251
- white-space: nowrap;
24355
+ flex: 0 0 auto;
24356
+ min-width: 0;
24357
+ max-width: 100%;
24252
24358
  }
24253
- .v-rating--readonly {
24254
- pointer-events: none;
24359
+ .v-selection-control--inline .v-label {
24360
+ width: auto;
24361
+ }
24362
+ .v-selection-control--density-default {
24363
+ --v-selection-control-size: 40px;
24255
24364
  }
24256
24365
 
24257
- .v-rating__wrapper {
24258
- align-items: center;
24259
- display: inline-flex;
24260
- flex-direction: column;
24366
+ .v-selection-control--density-comfortable {
24367
+ --v-selection-control-size: 36px;
24261
24368
  }
24262
- .v-rating__wrapper--bottom {
24263
- flex-direction: column-reverse;
24369
+
24370
+ .v-selection-control--density-compact {
24371
+ --v-selection-control-size: 28px;
24264
24372
  }
24265
24373
 
24266
- .v-rating__item {
24374
+ .v-selection-control__wrapper {
24375
+ width: var(--v-selection-control-size);
24376
+ height: var(--v-selection-control-size);
24267
24377
  display: inline-flex;
24378
+ align-items: center;
24268
24379
  position: relative;
24380
+ justify-content: center;
24381
+ flex: none;
24269
24382
  }
24270
- .v-rating__item label {
24271
- cursor: pointer;
24383
+
24384
+ .v-selection-control__input {
24385
+ width: var(--v-selection-control-size);
24386
+ height: var(--v-selection-control-size);
24387
+ align-items: center;
24388
+ display: flex;
24389
+ flex: none;
24390
+ justify-content: center;
24391
+ position: relative;
24392
+ border-radius: 50%;
24272
24393
  }
24273
- .v-rating__item .v-btn--variant-plain {
24274
- opacity: 1;
24394
+ .v-selection-control__input input {
24395
+ cursor: pointer;
24396
+ position: absolute;
24397
+ left: 0;
24398
+ top: 0;
24399
+ width: 100%;
24400
+ height: 100%;
24401
+ opacity: 0;
24275
24402
  }
24276
- .v-rating__item .v-btn {
24277
- transition-property: transform;
24403
+ .v-selection-control__input::before {
24404
+ content: "";
24405
+ position: absolute;
24406
+ top: 0;
24407
+ left: 0;
24408
+ width: 100%;
24409
+ height: 100%;
24410
+ border-radius: 100%;
24411
+ background-color: currentColor;
24412
+ opacity: 0;
24413
+ pointer-events: none;
24278
24414
  }
24279
- .v-rating__item .v-btn .v-icon {
24280
- transition: inherit;
24281
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24415
+ .v-selection-control__input:hover::before {
24416
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24282
24417
  }
24283
- .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
24284
- transform: scale(1.25);
24418
+ .v-selection-control__input > .v-icon {
24419
+ opacity: var(--v-medium-emphasis-opacity);
24285
24420
  }
24286
- .v-rating__item--half {
24287
- overflow: hidden;
24288
- position: absolute;
24289
- -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24290
- clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
24291
- z-index: 1;
24421
+ .v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
24422
+ opacity: 1;
24292
24423
  }
24293
- .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
24294
- opacity: 0;
24424
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
24425
+ color: rgb(var(--v-theme-error));
24295
24426
  }
24296
-
24297
- .v-rating__hidden {
24298
- height: 0;
24299
- opacity: 0;
24300
- position: absolute;
24301
- width: 0;
24427
+ .v-selection-control--focus-visible .v-selection-control__input::before {
24428
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24302
24429
  }.v-slider .v-slider__container input {
24303
24430
  cursor: default;
24304
24431
  padding: 0;
@@ -24356,6 +24483,14 @@ html.v-overlay-scroll-blocked {
24356
24483
 
24357
24484
  .v-slider__label {
24358
24485
  margin-inline-end: 12px;
24486
+ }.v-selection-control-group {
24487
+ grid-area: control;
24488
+ display: flex;
24489
+ flex-direction: column;
24490
+ }
24491
+ .v-selection-control-group--inline {
24492
+ flex-direction: row;
24493
+ flex-wrap: wrap;
24359
24494
  }.v-select .v-field .v-text-field__prefix,
24360
24495
  .v-select .v-field .v-text-field__suffix,
24361
24496
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -24404,133 +24539,89 @@ html.v-overlay-scroll-blocked {
24404
24539
  .v-select--active-menu .v-select__menu-icon {
24405
24540
  opacity: var(--v-high-emphasis-opacity);
24406
24541
  transform: rotate(180deg);
24407
- }.v-responsive {
24408
- display: flex;
24409
- flex: 1 0 auto;
24410
- max-height: 100%;
24411
- max-width: 100%;
24412
- overflow: hidden;
24413
- position: relative;
24542
+ }.v-sheet {
24543
+ display: block;
24544
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24545
+ border-style: solid;
24546
+ border-width: 0;
24547
+ 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));
24548
+ border-radius: 0;
24549
+ background: rgb(var(--v-theme-surface));
24550
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24414
24551
  }
24415
- .v-responsive--inline {
24416
- display: inline-flex;
24417
- flex: 0 0 auto;
24552
+ .v-sheet--border {
24553
+ border-width: thin;
24554
+ box-shadow: none;
24418
24555
  }
24419
-
24420
- .v-responsive__content {
24421
- flex: 1 0 0px;
24422
- max-width: 100%;
24556
+ .v-sheet--absolute {
24557
+ position: absolute;
24423
24558
  }
24424
-
24425
- .v-responsive__sizer ~ .v-responsive__content {
24426
- margin-inline-start: -100%;
24559
+ .v-sheet--fixed {
24560
+ position: fixed;
24427
24561
  }
24428
-
24429
- .v-responsive__sizer {
24430
- flex: 1 0 0px;
24431
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24432
- pointer-events: none;
24433
- }.v-selection-control {
24434
- align-items: center;
24435
- contain: layout;
24436
- display: flex;
24437
- flex: 1 0;
24438
- grid-area: control;
24562
+ .v-sheet--relative {
24439
24563
  position: relative;
24440
- -webkit-user-select: none;
24441
- user-select: none;
24442
- }
24443
- .v-selection-control .v-label {
24444
- white-space: normal;
24445
- word-break: break-word;
24446
- height: 100%;
24447
- }
24448
- .v-selection-control--disabled {
24449
- opacity: var(--v-disabled-opacity);
24450
- pointer-events: none;
24451
- }
24452
- .v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
24453
- opacity: 1;
24454
24564
  }
24455
- .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
24456
- color: rgb(var(--v-theme-error));
24457
- }
24458
- .v-selection-control--inline {
24459
- display: inline-flex;
24460
- flex: 0 0 auto;
24461
- min-width: 0;
24462
- max-width: 100%;
24463
- }
24464
- .v-selection-control--inline .v-label {
24465
- width: auto;
24466
- }
24467
- .v-selection-control--density-default {
24468
- --v-selection-control-size: 40px;
24469
- }
24470
-
24471
- .v-selection-control--density-comfortable {
24472
- --v-selection-control-size: 36px;
24565
+ .v-sheet--sticky {
24566
+ position: sticky;
24473
24567
  }
24474
-
24475
- .v-selection-control--density-compact {
24476
- --v-selection-control-size: 28px;
24568
+ .v-sheet--rounded {
24569
+ border-radius: 4px;
24570
+ }.v-slide-group {
24571
+ display: flex;
24572
+ overflow: hidden;
24477
24573
  }
24478
24574
 
24479
- .v-selection-control__wrapper {
24480
- width: var(--v-selection-control-size);
24481
- height: var(--v-selection-control-size);
24482
- display: inline-flex;
24575
+ .v-slide-group__next,
24576
+ .v-slide-group__prev {
24483
24577
  align-items: center;
24484
- position: relative;
24578
+ display: flex;
24579
+ flex: 0 1 52px;
24485
24580
  justify-content: center;
24486
- flex: none;
24581
+ min-width: 52px;
24582
+ cursor: pointer;
24583
+ }
24584
+ .v-slide-group__next--disabled,
24585
+ .v-slide-group__prev--disabled {
24586
+ pointer-events: none;
24587
+ opacity: var(--v-disabled-opacity);
24487
24588
  }
24488
24589
 
24489
- .v-selection-control__input {
24490
- width: var(--v-selection-control-size);
24491
- height: var(--v-selection-control-size);
24492
- align-items: center;
24590
+ .v-slide-group__content {
24493
24591
  display: flex;
24494
- flex: none;
24495
- justify-content: center;
24592
+ flex: 1 0 auto;
24496
24593
  position: relative;
24497
- border-radius: 50%;
24498
- }
24499
- .v-selection-control__input input {
24500
- cursor: pointer;
24501
- position: absolute;
24502
- left: 0;
24503
- top: 0;
24504
- width: 100%;
24505
- height: 100%;
24506
- opacity: 0;
24594
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24595
+ white-space: nowrap;
24507
24596
  }
24508
- .v-selection-control__input::before {
24509
- content: "";
24510
- position: absolute;
24511
- top: 0;
24512
- left: 0;
24513
- width: 100%;
24514
- height: 100%;
24515
- border-radius: 100%;
24516
- background-color: currentColor;
24517
- opacity: 0;
24518
- pointer-events: none;
24597
+ .v-slide-group__content > * {
24598
+ white-space: initial;
24519
24599
  }
24520
- .v-selection-control__input:hover::before {
24521
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24600
+
24601
+ .v-slide-group__container {
24602
+ contain: content;
24603
+ display: flex;
24604
+ flex: 1 1 auto;
24605
+ overflow-x: auto;
24606
+ overflow-y: hidden;
24607
+ scrollbar-width: none;
24608
+ scrollbar-color: rgba(0, 0, 0, 0);
24522
24609
  }
24523
- .v-selection-control__input > .v-icon {
24524
- opacity: var(--v-medium-emphasis-opacity);
24610
+ .v-slide-group__container::-webkit-scrollbar {
24611
+ display: none;
24525
24612
  }
24526
- .v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
24527
- opacity: 1;
24613
+
24614
+ .v-slide-group--vertical {
24615
+ max-height: inherit;
24528
24616
  }
24529
- .v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
24530
- color: rgb(var(--v-theme-error));
24617
+ .v-slide-group--vertical,
24618
+ .v-slide-group--vertical .v-slide-group__container,
24619
+ .v-slide-group--vertical .v-slide-group__content {
24620
+ flex-direction: column;
24531
24621
  }
24532
- .v-selection-control--focus-visible .v-selection-control__input::before {
24533
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24622
+ .v-slide-group--vertical .v-slide-group__container {
24623
+ overflow-x: hidden;
24624
+ overflow-y: auto;
24534
24625
  }.v-skeleton-loader {
24535
24626
  align-items: center;
24536
24627
  background: rgb(var(--v-theme-surface));
@@ -24754,97 +24845,47 @@ html.v-overlay-scroll-blocked {
24754
24845
  100% {
24755
24846
  transform: translateX(100%);
24756
24847
  }
24757
- }.v-selection-control-group {
24758
- grid-area: control;
24759
- display: flex;
24760
- flex-direction: column;
24848
+ }.v-speed-dial__content {
24849
+ gap: 8px;
24761
24850
  }
24762
- .v-selection-control-group--inline {
24851
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24763
24852
  flex-direction: row;
24764
- flex-wrap: wrap;
24765
- }.v-slide-group {
24766
- display: flex;
24767
- overflow: hidden;
24768
- }
24769
-
24770
- .v-slide-group__next,
24771
- .v-slide-group__prev {
24772
- align-items: center;
24773
- display: flex;
24774
- flex: 0 1 52px;
24775
- justify-content: center;
24776
- min-width: 52px;
24777
- cursor: pointer;
24778
- }
24779
- .v-slide-group__next--disabled,
24780
- .v-slide-group__prev--disabled {
24781
- pointer-events: none;
24782
- opacity: var(--v-disabled-opacity);
24783
- }
24784
-
24785
- .v-slide-group__content {
24786
- display: flex;
24787
- flex: 1 0 auto;
24788
- position: relative;
24789
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24790
- white-space: nowrap;
24791
24853
  }
24792
- .v-slide-group__content > * {
24793
- white-space: initial;
24854
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24855
+ flex-direction: row-reverse;
24794
24856
  }
24795
-
24796
- .v-slide-group__container {
24797
- contain: content;
24798
- display: flex;
24799
- flex: 1 1 auto;
24800
- overflow-x: auto;
24801
- overflow-y: hidden;
24802
- scrollbar-width: none;
24803
- scrollbar-color: rgba(0, 0, 0, 0);
24857
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24858
+ flex-direction: column-reverse;
24804
24859
  }
24805
- .v-slide-group__container::-webkit-scrollbar {
24806
- display: none;
24860
+ .v-speed-dial__content > *:nth-child(1) {
24861
+ transition-delay: 0s;
24807
24862
  }
24808
-
24809
- .v-slide-group--vertical {
24810
- max-height: inherit;
24863
+ .v-speed-dial__content > *:nth-child(2) {
24864
+ transition-delay: 0.05s;
24811
24865
  }
24812
- .v-slide-group--vertical,
24813
- .v-slide-group--vertical .v-slide-group__container,
24814
- .v-slide-group--vertical .v-slide-group__content {
24815
- flex-direction: column;
24866
+ .v-speed-dial__content > *:nth-child(3) {
24867
+ transition-delay: 0.1s;
24816
24868
  }
24817
- .v-slide-group--vertical .v-slide-group__container {
24818
- overflow-x: hidden;
24819
- overflow-y: auto;
24820
- }.v-sheet {
24821
- display: block;
24822
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24823
- border-style: solid;
24824
- border-width: 0;
24825
- 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));
24826
- border-radius: 0;
24827
- background: rgb(var(--v-theme-surface));
24828
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24869
+ .v-speed-dial__content > *:nth-child(4) {
24870
+ transition-delay: 0.15s;
24829
24871
  }
24830
- .v-sheet--border {
24831
- border-width: thin;
24832
- box-shadow: none;
24872
+ .v-speed-dial__content > *:nth-child(5) {
24873
+ transition-delay: 0.2s;
24833
24874
  }
24834
- .v-sheet--absolute {
24835
- position: absolute;
24875
+ .v-speed-dial__content > *:nth-child(6) {
24876
+ transition-delay: 0.25s;
24836
24877
  }
24837
- .v-sheet--fixed {
24838
- position: fixed;
24878
+ .v-speed-dial__content > *:nth-child(7) {
24879
+ transition-delay: 0.3s;
24839
24880
  }
24840
- .v-sheet--relative {
24841
- position: relative;
24881
+ .v-speed-dial__content > *:nth-child(8) {
24882
+ transition-delay: 0.35s;
24842
24883
  }
24843
- .v-sheet--sticky {
24844
- position: sticky;
24884
+ .v-speed-dial__content > *:nth-child(9) {
24885
+ transition-delay: 0.4s;
24845
24886
  }
24846
- .v-sheet--rounded {
24847
- border-radius: 4px;
24887
+ .v-speed-dial__content > *:nth-child(10) {
24888
+ transition-delay: 0.45s;
24848
24889
  }.v-snackbar {
24849
24890
  justify-content: center;
24850
24891
  z-index: 10000;
@@ -24924,65 +24965,240 @@ html.v-overlay-scroll-blocked {
24924
24965
  display: flex;
24925
24966
  margin-inline-end: 8px;
24926
24967
  }
24927
- .v-snackbar__actions > .v-btn {
24928
- padding: 0 8px;
24929
- min-width: auto;
24968
+ .v-snackbar__actions > .v-btn {
24969
+ padding: 0 8px;
24970
+ min-width: auto;
24971
+ }
24972
+ .v-snackbar__timer {
24973
+ width: 100%;
24974
+ position: absolute;
24975
+ top: 0;
24976
+ }
24977
+ .v-snackbar__timer .v-progress-linear {
24978
+ transition: 0.2s linear;
24979
+ }
24980
+ .v-snackbar--absolute {
24981
+ position: absolute;
24982
+ z-index: 1;
24983
+ }
24984
+ .v-snackbar--multi-line .v-snackbar__wrapper {
24985
+ min-height: 68px;
24986
+ }
24987
+ .v-snackbar--vertical .v-snackbar__wrapper {
24988
+ flex-direction: column;
24989
+ }
24990
+ .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
24991
+ align-self: flex-end;
24992
+ margin-bottom: 8px;
24993
+ }
24994
+ .v-snackbar--center {
24995
+ align-items: center;
24996
+ justify-content: center;
24997
+ }
24998
+ .v-snackbar--top {
24999
+ align-items: flex-start;
25000
+ }
25001
+ .v-snackbar--bottom {
25002
+ align-items: flex-end;
25003
+ }
25004
+ .v-snackbar--left, .v-snackbar--start {
25005
+ justify-content: flex-start;
25006
+ }
25007
+ .v-snackbar--right, .v-snackbar--end {
25008
+ justify-content: flex-end;
25009
+ }
25010
+
25011
+ .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
25012
+ transition-duration: 0.15s;
25013
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25014
+ }
25015
+ .v-snackbar-transition-enter-active {
25016
+ transition-property: opacity, transform;
25017
+ }
25018
+ .v-snackbar-transition-enter-from {
25019
+ opacity: 0;
25020
+ transform: scale(0.8);
25021
+ }
25022
+ .v-snackbar-transition-leave-active {
25023
+ transition-property: opacity;
25024
+ }
25025
+ .v-snackbar-transition-leave-to {
25026
+ opacity: 0;
25027
+ }.v-system-bar {
25028
+ align-items: center;
25029
+ display: flex;
25030
+ flex: 1 1 auto;
25031
+ height: 24px;
25032
+ justify-content: flex-end;
25033
+ max-width: 100%;
25034
+ padding-inline: 8px;
25035
+ position: relative;
25036
+ text-align: end;
25037
+ width: 100%;
25038
+ 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));
25039
+ background: rgba(var(--v-theme-surface-light));
25040
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25041
+ font-size: 0.75rem;
25042
+ font-weight: 400;
25043
+ letter-spacing: 0.0333333333em;
25044
+ line-height: 1.667;
25045
+ text-transform: none;
25046
+ }
25047
+ .v-system-bar .v-icon {
25048
+ opacity: var(--v-medium-emphasis-opacity);
25049
+ }
25050
+ .v-system-bar--absolute {
25051
+ position: absolute;
25052
+ }
25053
+ .v-system-bar--fixed {
25054
+ position: fixed;
25055
+ }
25056
+ .v-system-bar--rounded {
25057
+ border-radius: 0;
25058
+ }
25059
+ .v-system-bar--window {
25060
+ height: 32px;
25061
+ }
25062
+ .v-system-bar:not(.v-system-bar--absolute) {
25063
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25064
+ }.v-table {
25065
+ background: rgb(var(--v-theme-surface));
25066
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25067
+ font-size: 0.875rem;
25068
+ transition-duration: 0.28s;
25069
+ transition-property: box-shadow, opacity, background, height;
25070
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25071
+ }
25072
+ .v-table .v-table-divider {
25073
+ border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25074
+ }
25075
+ .v-table .v-table__wrapper > table > thead > tr > th {
25076
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25077
+ }
25078
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25079
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25080
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25081
+ }
25082
+ .v-table .v-table__wrapper > table > tfoot > tr > td,
25083
+ .v-table .v-table__wrapper > table > tfoot > tr > th {
25084
+ border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25085
+ }
25086
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25087
+ position: relative;
25088
+ }
25089
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25090
+ content: "";
25091
+ position: absolute;
25092
+ top: 0;
25093
+ left: 0;
25094
+ width: 100%;
25095
+ height: 100%;
25096
+ background: rgba(var(--v-border-color), var(--v-hover-opacity));
25097
+ pointer-events: none;
25098
+ }
25099
+ .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25100
+ background: rgb(var(--v-theme-surface));
25101
+ box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25102
+ z-index: 1;
25103
+ }
25104
+ .v-table.v-table--fixed-footer > tfoot > tr > th,
25105
+ .v-table.v-table--fixed-footer > tfoot > tr > td {
25106
+ background: rgb(var(--v-theme-surface));
25107
+ box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25108
+ }
25109
+
25110
+ .v-table {
25111
+ border-radius: inherit;
25112
+ line-height: 1.5;
25113
+ max-width: 100%;
25114
+ display: flex;
25115
+ flex-direction: column;
24930
25116
  }
24931
- .v-snackbar__timer {
25117
+ .v-table > .v-table__wrapper > table {
24932
25118
  width: 100%;
24933
- position: absolute;
24934
- top: 0;
25119
+ border-spacing: 0;
24935
25120
  }
24936
- .v-snackbar__timer .v-progress-linear {
24937
- transition: 0.2s linear;
25121
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25122
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25123
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25124
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25125
+ .v-table > .v-table__wrapper > table > tfoot > tr > td,
25126
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25127
+ padding: 0 16px;
25128
+ transition-duration: 0.28s;
25129
+ transition-property: box-shadow, opacity, background, height;
25130
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
24938
25131
  }
24939
- .v-snackbar--absolute {
24940
- position: absolute;
24941
- z-index: 1;
25132
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25133
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25134
+ .v-table > .v-table__wrapper > table > tfoot > tr > td {
25135
+ height: var(--v-table-row-height);
24942
25136
  }
24943
- .v-snackbar--multi-line .v-snackbar__wrapper {
24944
- min-height: 68px;
25137
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25138
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25139
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25140
+ height: var(--v-table-header-height);
25141
+ font-weight: 500;
25142
+ -webkit-user-select: none;
25143
+ user-select: none;
25144
+ text-align: start;
24945
25145
  }
24946
- .v-snackbar--vertical .v-snackbar__wrapper {
24947
- flex-direction: column;
25146
+ .v-table--density-default {
25147
+ --v-table-header-height: 56px;
25148
+ --v-table-row-height: 52px;
24948
25149
  }
24949
- .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
24950
- align-self: flex-end;
24951
- margin-bottom: 8px;
25150
+
25151
+ .v-table--density-comfortable {
25152
+ --v-table-header-height: 48px;
25153
+ --v-table-row-height: 44px;
24952
25154
  }
24953
- .v-snackbar--center {
24954
- align-items: center;
24955
- justify-content: center;
25155
+
25156
+ .v-table--density-compact {
25157
+ --v-table-header-height: 40px;
25158
+ --v-table-row-height: 36px;
24956
25159
  }
24957
- .v-snackbar--top {
24958
- align-items: flex-start;
25160
+
25161
+ .v-table__wrapper {
25162
+ border-radius: inherit;
25163
+ overflow: auto;
25164
+ flex: 1 1 auto;
24959
25165
  }
24960
- .v-snackbar--bottom {
24961
- align-items: flex-end;
25166
+
25167
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25168
+ border-top-left-radius: 0;
24962
25169
  }
24963
- .v-snackbar--left, .v-snackbar--start {
24964
- justify-content: flex-start;
25170
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25171
+ border-top-right-radius: 0;
24965
25172
  }
24966
- .v-snackbar--right, .v-snackbar--end {
24967
- justify-content: flex-end;
25173
+
25174
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25175
+ border-bottom-left-radius: 0;
25176
+ }
25177
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25178
+ border-bottom-right-radius: 0;
24968
25179
  }
24969
25180
 
24970
- .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
24971
- transition-duration: 0.15s;
24972
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25181
+ .v-table--fixed-height > .v-table__wrapper {
25182
+ overflow-y: auto;
24973
25183
  }
24974
- .v-snackbar-transition-enter-active {
24975
- transition-property: opacity, transform;
25184
+
25185
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25186
+ position: sticky;
25187
+ top: 0;
25188
+ z-index: 2;
24976
25189
  }
24977
- .v-snackbar-transition-enter-from {
24978
- opacity: 0;
24979
- transform: scale(0.8);
25190
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25191
+ border-bottom: 0px !important;
24980
25192
  }
24981
- .v-snackbar-transition-leave-active {
24982
- transition-property: opacity;
25193
+
25194
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25195
+ position: sticky;
25196
+ bottom: 0;
25197
+ z-index: 1;
24983
25198
  }
24984
- .v-snackbar-transition-leave-to {
24985
- opacity: 0;
25199
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25200
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25201
+ border-top: 0px !important;
24986
25202
  }.v-stepper.v-sheet {
24987
25203
  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));
24988
25204
  border-radius: 4px;
@@ -25143,145 +25359,9 @@ html.v-overlay-scroll-blocked {
25143
25359
  position: absolute;
25144
25360
  top: 0;
25145
25361
  left: 0;
25146
- width: 100%;
25147
- height: 100%;
25148
- pointer-events: none;
25149
- }.v-speed-dial__content {
25150
- gap: 8px;
25151
- }
25152
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
25153
- flex-direction: row;
25154
- }
25155
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
25156
- flex-direction: row-reverse;
25157
- }
25158
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
25159
- flex-direction: column-reverse;
25160
- }
25161
- .v-speed-dial__content > *:nth-child(1) {
25162
- transition-delay: 0s;
25163
- }
25164
- .v-speed-dial__content > *:nth-child(2) {
25165
- transition-delay: 0.05s;
25166
- }
25167
- .v-speed-dial__content > *:nth-child(3) {
25168
- transition-delay: 0.1s;
25169
- }
25170
- .v-speed-dial__content > *:nth-child(4) {
25171
- transition-delay: 0.15s;
25172
- }
25173
- .v-speed-dial__content > *:nth-child(5) {
25174
- transition-delay: 0.2s;
25175
- }
25176
- .v-speed-dial__content > *:nth-child(6) {
25177
- transition-delay: 0.25s;
25178
- }
25179
- .v-speed-dial__content > *:nth-child(7) {
25180
- transition-delay: 0.3s;
25181
- }
25182
- .v-speed-dial__content > *:nth-child(8) {
25183
- transition-delay: 0.35s;
25184
- }
25185
- .v-speed-dial__content > *:nth-child(9) {
25186
- transition-delay: 0.4s;
25187
- }
25188
- .v-speed-dial__content > *:nth-child(10) {
25189
- transition-delay: 0.45s;
25190
- }.v-tab.v-tab.v-btn {
25191
- height: var(--v-tabs-height);
25192
- border-radius: 0;
25193
- min-width: 90px;
25194
- }
25195
- .v-slide-group--horizontal .v-tab {
25196
- max-width: 360px;
25197
- }
25198
- .v-slide-group--vertical .v-tab {
25199
- justify-content: start;
25200
- }
25201
-
25202
- .v-tab__slider {
25203
- position: absolute;
25204
- bottom: 0;
25205
- left: 0;
25206
- height: 2px;
25207
- width: 100%;
25208
- background: currentColor;
25209
- pointer-events: none;
25210
- opacity: 0;
25211
- }
25212
- .v-tab--selected .v-tab__slider {
25213
- opacity: 1;
25214
- }
25215
- .v-slide-group--vertical .v-tab__slider {
25216
- top: 0;
25217
- height: 100%;
25218
- width: 2px;
25219
- }.v-tabs {
25220
- display: flex;
25221
- height: var(--v-tabs-height);
25222
- }
25223
- .v-tabs--density-default {
25224
- --v-tabs-height: 48px;
25225
- }
25226
- .v-tabs--density-default.v-tabs--stacked {
25227
- --v-tabs-height: 72px;
25228
- }
25229
-
25230
- .v-tabs--density-comfortable {
25231
- --v-tabs-height: 44px;
25232
- }
25233
- .v-tabs--density-comfortable.v-tabs--stacked {
25234
- --v-tabs-height: 68px;
25235
- }
25236
-
25237
- .v-tabs--density-compact {
25238
- --v-tabs-height: 36px;
25239
- }
25240
- .v-tabs--density-compact.v-tabs--stacked {
25241
- --v-tabs-height: 60px;
25242
- }
25243
-
25244
- .v-tabs.v-slide-group--vertical {
25245
- height: auto;
25246
- flex: none;
25247
- --v-tabs-height: 48px;
25248
- }
25249
-
25250
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25251
- margin-inline-start: 42px;
25252
- }
25253
-
25254
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25255
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25256
- margin-inline-end: auto;
25257
- }
25258
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25259
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25260
- margin-inline-start: auto;
25261
- }
25262
-
25263
- .v-tabs--grow {
25264
- flex-grow: 1;
25265
- }
25266
- .v-tabs--grow .v-tab {
25267
- flex: 1 0 auto;
25268
- max-width: none;
25269
- }
25270
-
25271
- .v-tabs--align-tabs-end .v-tab:first-child {
25272
- margin-inline-start: auto;
25273
- }
25274
- .v-tabs--align-tabs-end .v-tab:last-child {
25275
- margin-inline-end: 0;
25276
- }
25277
-
25278
- @media (max-width: 1279.98px) {
25279
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25280
- margin-inline-start: 52px;
25281
- }
25282
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25283
- margin-inline-end: 52px;
25284
- }
25362
+ width: 100%;
25363
+ height: 100%;
25364
+ pointer-events: none;
25285
25365
  }.v-switch .v-label {
25286
25366
  padding-inline-start: 10px;
25287
25367
  }
@@ -25418,45 +25498,101 @@ html.v-overlay-scroll-blocked {
25418
25498
  }
25419
25499
  .v-switch.v-input--vertical .v-selection-control__wrapper {
25420
25500
  transform: rotate(-90deg);
25421
- }.v-textarea .v-field {
25422
- --v-textarea-control-height: var(--v-input-control-height);
25501
+ }.v-tab.v-tab.v-btn {
25502
+ height: var(--v-tabs-height);
25503
+ border-radius: 0;
25504
+ min-width: 90px;
25423
25505
  }
25424
- .v-textarea .v-field__field {
25425
- --v-input-control-height: var(--v-textarea-control-height);
25506
+ .v-slide-group--horizontal .v-tab {
25507
+ max-width: 360px;
25426
25508
  }
25427
- .v-textarea .v-field__input {
25428
- flex: 1 1 auto;
25429
- outline: none;
25430
- -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25431
- mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25509
+ .v-slide-group--vertical .v-tab {
25510
+ justify-content: start;
25432
25511
  }
25433
- .v-textarea .v-field__input.v-textarea__sizer {
25434
- visibility: hidden;
25512
+
25513
+ .v-tab__slider {
25435
25514
  position: absolute;
25436
- top: 0;
25515
+ bottom: 0;
25437
25516
  left: 0;
25438
- height: 0 !important;
25439
- min-height: 0 !important;
25517
+ height: 2px;
25518
+ width: 100%;
25519
+ background: currentColor;
25440
25520
  pointer-events: none;
25521
+ opacity: 0;
25441
25522
  }
25442
- .v-textarea--no-resize .v-field__input {
25443
- resize: none;
25444
- }
25445
- .v-textarea .v-field--no-label textarea,
25446
- .v-textarea .v-field--active textarea {
25523
+ .v-tab--selected .v-tab__slider {
25447
25524
  opacity: 1;
25448
25525
  }
25449
- .v-textarea textarea {
25450
- opacity: 0;
25451
- flex: 1;
25452
- min-width: 0;
25453
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25526
+ .v-slide-group--vertical .v-tab__slider {
25527
+ top: 0;
25528
+ height: 100%;
25529
+ width: 2px;
25530
+ }.v-tabs {
25531
+ display: flex;
25532
+ height: var(--v-tabs-height);
25454
25533
  }
25455
- .v-textarea textarea:focus, .v-textarea textarea:active {
25456
- outline: none;
25534
+ .v-tabs--density-default {
25535
+ --v-tabs-height: 48px;
25457
25536
  }
25458
- .v-textarea textarea:invalid {
25459
- box-shadow: none;
25537
+ .v-tabs--density-default.v-tabs--stacked {
25538
+ --v-tabs-height: 72px;
25539
+ }
25540
+
25541
+ .v-tabs--density-comfortable {
25542
+ --v-tabs-height: 44px;
25543
+ }
25544
+ .v-tabs--density-comfortable.v-tabs--stacked {
25545
+ --v-tabs-height: 68px;
25546
+ }
25547
+
25548
+ .v-tabs--density-compact {
25549
+ --v-tabs-height: 36px;
25550
+ }
25551
+ .v-tabs--density-compact.v-tabs--stacked {
25552
+ --v-tabs-height: 60px;
25553
+ }
25554
+
25555
+ .v-tabs.v-slide-group--vertical {
25556
+ height: auto;
25557
+ flex: none;
25558
+ --v-tabs-height: 48px;
25559
+ }
25560
+
25561
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
25562
+ margin-inline-start: 42px;
25563
+ }
25564
+
25565
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
25566
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
25567
+ margin-inline-end: auto;
25568
+ }
25569
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
25570
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
25571
+ margin-inline-start: auto;
25572
+ }
25573
+
25574
+ .v-tabs--grow {
25575
+ flex-grow: 1;
25576
+ }
25577
+ .v-tabs--grow .v-tab {
25578
+ flex: 1 0 auto;
25579
+ max-width: none;
25580
+ }
25581
+
25582
+ .v-tabs--align-tabs-end .v-tab:first-child {
25583
+ margin-inline-start: auto;
25584
+ }
25585
+ .v-tabs--align-tabs-end .v-tab:last-child {
25586
+ margin-inline-end: 0;
25587
+ }
25588
+
25589
+ @media (max-width: 1279.98px) {
25590
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
25591
+ margin-inline-start: 52px;
25592
+ }
25593
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25594
+ margin-inline-end: 52px;
25595
+ }
25460
25596
  }/* region BLOCK */
25461
25597
  .v-text-field input {
25462
25598
  color: inherit;
@@ -25500,205 +25636,94 @@ html.v-overlay-scroll-blocked {
25500
25636
  /* endregion */
25501
25637
  /* region ELEMENTS */
25502
25638
  .v-text-field__prefix, .v-text-field__suffix {
25503
- align-items: center;
25504
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
25505
- cursor: default;
25506
- display: flex;
25507
- opacity: 0;
25508
- transition: inherit;
25509
- white-space: nowrap;
25510
- min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
25511
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
25512
- padding-bottom: var(--v-field-padding-bottom, 6px);
25513
- }
25514
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
25515
- opacity: 1;
25516
- }
25517
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
25518
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
25519
- }
25520
- .v-text-field__prefix {
25521
- padding-inline-start: var(--v-field-padding-start);
25522
- }
25523
- .v-text-field__suffix {
25524
- padding-inline-end: var(--v-field-padding-end);
25525
- }
25526
-
25527
- /* endregion */.v-system-bar {
25528
- align-items: center;
25529
- display: flex;
25530
- flex: 1 1 auto;
25531
- height: 24px;
25532
- justify-content: flex-end;
25533
- max-width: 100%;
25534
- padding-inline: 8px;
25535
- position: relative;
25536
- text-align: end;
25537
- width: 100%;
25538
- 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));
25539
- background: rgba(var(--v-theme-surface-light));
25540
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25541
- font-size: 0.75rem;
25542
- font-weight: 400;
25543
- letter-spacing: 0.0333333333em;
25544
- line-height: 1.667;
25545
- text-transform: none;
25546
- }
25547
- .v-system-bar .v-icon {
25548
- opacity: var(--v-medium-emphasis-opacity);
25549
- }
25550
- .v-system-bar--absolute {
25551
- position: absolute;
25552
- }
25553
- .v-system-bar--fixed {
25554
- position: fixed;
25555
- }
25556
- .v-system-bar--rounded {
25557
- border-radius: 0;
25558
- }
25559
- .v-system-bar--window {
25560
- height: 32px;
25561
- }
25562
- .v-system-bar:not(.v-system-bar--absolute) {
25563
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25564
- }.v-table {
25565
- background: rgb(var(--v-theme-surface));
25566
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25567
- font-size: 0.875rem;
25568
- transition-duration: 0.28s;
25569
- transition-property: box-shadow, opacity, background, height;
25570
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25571
- }
25572
- .v-table .v-table-divider {
25573
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25574
- }
25575
- .v-table .v-table__wrapper > table > thead > tr > th {
25576
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25577
- }
25578
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25579
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25580
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25581
- }
25582
- .v-table .v-table__wrapper > table > tfoot > tr > td,
25583
- .v-table .v-table__wrapper > table > tfoot > tr > th {
25584
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25585
- }
25586
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25587
- position: relative;
25588
- }
25589
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25590
- content: "";
25591
- position: absolute;
25592
- top: 0;
25593
- left: 0;
25594
- width: 100%;
25595
- height: 100%;
25596
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
25597
- pointer-events: none;
25598
- }
25599
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25600
- background: rgb(var(--v-theme-surface));
25601
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25602
- z-index: 1;
25603
- }
25604
- .v-table.v-table--fixed-footer > tfoot > tr > th,
25605
- .v-table.v-table--fixed-footer > tfoot > tr > td {
25606
- background: rgb(var(--v-theme-surface));
25607
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25608
- }
25609
-
25610
- .v-table {
25611
- border-radius: inherit;
25612
- line-height: 1.5;
25613
- max-width: 100%;
25614
- display: flex;
25615
- flex-direction: column;
25616
- }
25617
- .v-table > .v-table__wrapper > table {
25618
- width: 100%;
25619
- border-spacing: 0;
25620
- }
25621
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25622
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25623
- .v-table > .v-table__wrapper > table > thead > tr > td,
25624
- .v-table > .v-table__wrapper > table > thead > tr > th,
25625
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
25626
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25627
- padding: 0 16px;
25628
- transition-duration: 0.28s;
25629
- transition-property: box-shadow, opacity, background, height;
25630
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25631
- }
25632
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25633
- .v-table > .v-table__wrapper > table > thead > tr > td,
25634
- .v-table > .v-table__wrapper > table > tfoot > tr > td {
25635
- height: var(--v-table-row-height);
25636
- }
25637
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25638
- .v-table > .v-table__wrapper > table > thead > tr > th,
25639
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25640
- height: var(--v-table-header-height);
25641
- font-weight: 500;
25642
- -webkit-user-select: none;
25643
- user-select: none;
25644
- text-align: start;
25639
+ align-items: center;
25640
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
25641
+ cursor: default;
25642
+ display: flex;
25643
+ opacity: 0;
25644
+ transition: inherit;
25645
+ white-space: nowrap;
25646
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
25647
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
25648
+ padding-bottom: var(--v-field-padding-bottom, 6px);
25645
25649
  }
25646
- .v-table--density-default {
25647
- --v-table-header-height: 56px;
25648
- --v-table-row-height: 52px;
25650
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
25651
+ opacity: 1;
25649
25652
  }
25650
-
25651
- .v-table--density-comfortable {
25652
- --v-table-header-height: 48px;
25653
- --v-table-row-height: 44px;
25653
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
25654
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
25654
25655
  }
25655
-
25656
- .v-table--density-compact {
25657
- --v-table-header-height: 40px;
25658
- --v-table-row-height: 36px;
25656
+ .v-text-field__prefix {
25657
+ padding-inline-start: var(--v-field-padding-start);
25659
25658
  }
25660
-
25661
- .v-table__wrapper {
25662
- border-radius: inherit;
25663
- overflow: auto;
25664
- flex: 1 1 auto;
25659
+ .v-text-field__suffix {
25660
+ padding-inline-end: var(--v-field-padding-end);
25665
25661
  }
25666
25662
 
25667
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25668
- border-top-left-radius: 0;
25663
+ /* endregion */.v-theme-provider {
25664
+ background: rgb(var(--v-theme-background));
25665
+ color: rgb(var(--v-theme-on-background));
25666
+ }.v-tooltip > .v-overlay__content {
25667
+ background: rgb(var(--v-theme-surface-variant));
25668
+ color: rgb(var(--v-theme-on-surface-variant));
25669
+ border-radius: 4px;
25670
+ font-size: 0.875rem;
25671
+ line-height: 1.6;
25672
+ display: inline-block;
25673
+ padding: 5px 16px;
25674
+ text-transform: initial;
25675
+ width: auto;
25676
+ opacity: 1;
25677
+ pointer-events: none;
25678
+ transition-property: opacity, transform;
25679
+ overflow-wrap: break-word;
25669
25680
  }
25670
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25671
- border-top-right-radius: 0;
25681
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
25682
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
25683
+ transition-duration: 150ms;
25672
25684
  }
25673
-
25674
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25675
- border-bottom-left-radius: 0;
25685
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
25686
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
25687
+ transition-duration: 75ms;
25688
+ }.v-textarea .v-field {
25689
+ --v-textarea-control-height: var(--v-input-control-height);
25676
25690
  }
25677
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25678
- border-bottom-right-radius: 0;
25691
+ .v-textarea .v-field__field {
25692
+ --v-input-control-height: var(--v-textarea-control-height);
25679
25693
  }
25680
-
25681
- .v-table--fixed-height > .v-table__wrapper {
25682
- overflow-y: auto;
25694
+ .v-textarea .v-field__input {
25695
+ flex: 1 1 auto;
25696
+ outline: none;
25697
+ -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25698
+ mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25683
25699
  }
25684
-
25685
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25686
- position: sticky;
25700
+ .v-textarea .v-field__input.v-textarea__sizer {
25701
+ visibility: hidden;
25702
+ position: absolute;
25687
25703
  top: 0;
25688
- z-index: 2;
25704
+ left: 0;
25705
+ height: 0 !important;
25706
+ min-height: 0 !important;
25707
+ pointer-events: none;
25689
25708
  }
25690
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25691
- border-bottom: 0px !important;
25709
+ .v-textarea--no-resize .v-field__input {
25710
+ resize: none;
25692
25711
  }
25693
-
25694
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25695
- position: sticky;
25696
- bottom: 0;
25697
- z-index: 1;
25712
+ .v-textarea .v-field--no-label textarea,
25713
+ .v-textarea .v-field--active textarea {
25714
+ opacity: 1;
25698
25715
  }
25699
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25700
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25701
- border-top: 0px !important;
25716
+ .v-textarea textarea {
25717
+ opacity: 0;
25718
+ flex: 1;
25719
+ min-width: 0;
25720
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25721
+ }
25722
+ .v-textarea textarea:focus, .v-textarea textarea:active {
25723
+ outline: none;
25724
+ }
25725
+ .v-textarea textarea:invalid {
25726
+ box-shadow: none;
25702
25727
  }.v-timeline .v-timeline-divider__dot {
25703
25728
  background: rgb(var(--v-theme-surface-light));
25704
25729
  }
@@ -26115,31 +26140,6 @@ html.v-overlay-scroll-blocked {
26115
26140
 
26116
26141
  .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 {
26117
26142
  padding-inline-end: 0;
26118
- }.v-tooltip > .v-overlay__content {
26119
- background: rgb(var(--v-theme-surface-variant));
26120
- color: rgb(var(--v-theme-on-surface-variant));
26121
- border-radius: 4px;
26122
- font-size: 0.875rem;
26123
- line-height: 1.6;
26124
- display: inline-block;
26125
- padding: 5px 16px;
26126
- text-transform: initial;
26127
- width: auto;
26128
- opacity: 1;
26129
- pointer-events: none;
26130
- transition-property: opacity, transform;
26131
- overflow-wrap: break-word;
26132
- }
26133
- .v-tooltip > .v-overlay__content[class*=enter-active] {
26134
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
26135
- transition-duration: 150ms;
26136
- }
26137
- .v-tooltip > .v-overlay__content[class*=leave-active] {
26138
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26139
- transition-duration: 75ms;
26140
- }.v-theme-provider {
26141
- background: rgb(var(--v-theme-background));
26142
- color: rgb(var(--v-theme-on-background));
26143
26143
  }.v-window {
26144
26144
  overflow: hidden;
26145
26145
  }
@@ -26210,6 +26210,15 @@ html.v-overlay-scroll-blocked {
26210
26210
  }
26211
26211
  .v-window-y-reverse-transition-leave-to {
26212
26212
  transform: translateY(100%);
26213
+ }.v-virtual-scroll {
26214
+ display: block;
26215
+ flex: 1 1 auto;
26216
+ max-width: 100%;
26217
+ overflow: auto;
26218
+ position: relative;
26219
+ }
26220
+ .v-virtual-scroll__container {
26221
+ display: block;
26213
26222
  }.v-toolbar {
26214
26223
  align-items: flex-start;
26215
26224
  display: flex;
@@ -26339,65 +26348,6 @@ html.v-overlay-scroll-blocked {
26339
26348
  }
26340
26349
  .v-toolbar-items > .v-btn {
26341
26350
  border-radius: 0;
26342
- }.v-virtual-scroll {
26343
- display: block;
26344
- flex: 1 1 auto;
26345
- max-width: 100%;
26346
- overflow: auto;
26347
- position: relative;
26348
- }
26349
- .v-virtual-scroll__container {
26350
- display: block;
26351
- }.v-color-picker-edit {
26352
- display: flex;
26353
- margin-top: 24px;
26354
- }
26355
-
26356
- .v-color-picker-edit__input {
26357
- width: 100%;
26358
- display: flex;
26359
- flex-wrap: wrap;
26360
- justify-content: center;
26361
- text-align: center;
26362
- }
26363
- .v-color-picker-edit__input:not(:last-child) {
26364
- margin-inline-end: 8px;
26365
- }
26366
- .v-color-picker-edit__input input {
26367
- border-radius: 4px;
26368
- margin-bottom: 8px;
26369
- min-width: 0;
26370
- outline: none;
26371
- text-align: center;
26372
- width: 100%;
26373
- height: 32px;
26374
- background: rgba(var(--v-theme-surface-variant), 0.2);
26375
- color: rgba(var(--v-theme-on-surface));
26376
- }
26377
- .v-color-picker-edit__input span {
26378
- font-size: 0.75rem;
26379
- }.v-color-picker-canvas {
26380
- display: flex;
26381
- position: relative;
26382
- overflow: hidden;
26383
- contain: content;
26384
- touch-action: none;
26385
- }
26386
- .v-color-picker-canvas__dot {
26387
- position: absolute;
26388
- top: 0;
26389
- left: 0;
26390
- width: 15px;
26391
- height: 15px;
26392
- background: transparent;
26393
- border-radius: 50%;
26394
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26395
- }
26396
- .v-color-picker-canvas__dot--disabled {
26397
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26398
- }
26399
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26400
- will-change: transform;
26401
26351
  }.v-color-picker-preview__alpha .v-slider-track__background {
26402
26352
  background-color: transparent !important;
26403
26353
  }
@@ -26468,6 +26418,56 @@ html.v-overlay-scroll-blocked {
26468
26418
  .v-color-picker-preview__eye-dropper {
26469
26419
  position: relative;
26470
26420
  margin-right: 12px;
26421
+ }.v-color-picker-canvas {
26422
+ display: flex;
26423
+ position: relative;
26424
+ overflow: hidden;
26425
+ contain: content;
26426
+ touch-action: none;
26427
+ }
26428
+ .v-color-picker-canvas__dot {
26429
+ position: absolute;
26430
+ top: 0;
26431
+ left: 0;
26432
+ width: 15px;
26433
+ height: 15px;
26434
+ background: transparent;
26435
+ border-radius: 50%;
26436
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26437
+ }
26438
+ .v-color-picker-canvas__dot--disabled {
26439
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26440
+ }
26441
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26442
+ will-change: transform;
26443
+ }.v-color-picker-edit {
26444
+ display: flex;
26445
+ margin-top: 24px;
26446
+ }
26447
+
26448
+ .v-color-picker-edit__input {
26449
+ width: 100%;
26450
+ display: flex;
26451
+ flex-wrap: wrap;
26452
+ justify-content: center;
26453
+ text-align: center;
26454
+ }
26455
+ .v-color-picker-edit__input:not(:last-child) {
26456
+ margin-inline-end: 8px;
26457
+ }
26458
+ .v-color-picker-edit__input input {
26459
+ border-radius: 4px;
26460
+ margin-bottom: 8px;
26461
+ min-width: 0;
26462
+ outline: none;
26463
+ text-align: center;
26464
+ width: 100%;
26465
+ height: 32px;
26466
+ background: rgba(var(--v-theme-surface-variant), 0.2);
26467
+ color: rgba(var(--v-theme-on-surface));
26468
+ }
26469
+ .v-color-picker-edit__input span {
26470
+ font-size: 0.75rem;
26471
26471
  }.v-color-picker-swatches {
26472
26472
  overflow-y: auto;
26473
26473
  }