@vuetify/nightly 3.7.2-master.2024-10-09 → 3.7.2-master.2024-10-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.7.2-master.2024-10-09
2
+ * Vuetify v3.7.2-master.2024-10-10
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17978,44 +17978,6 @@ html.overflow-y-hidden {
17978
17978
  }
17979
17979
  .v-kbd {
17980
17980
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
17981
- }.v-number-input input[type=number] {
17982
- -moz-appearance: textfield;
17983
- }
17984
- .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
17985
- -webkit-appearance: none;
17986
- }
17987
- .v-number-input .v-field {
17988
- padding-inline-end: 0;
17989
- padding-inline-start: 0;
17990
- }
17991
- .v-number-input--inset .v-divider {
17992
- height: 55%;
17993
- width: 55%;
17994
- align-self: center;
17995
- }
17996
- .v-number-input--split .v-field__input {
17997
- text-align: center;
17998
- }
17999
- .v-number-input--stacked .v-number-input__control {
18000
- flex-direction: column-reverse;
18001
- }
18002
- .v-number-input--stacked .v-number-input__control .v-btn {
18003
- flex: 1;
18004
- }
18005
- .v-number-input--hide-input .v-field {
18006
- flex: none;
18007
- }
18008
- .v-number-input--hide-input .v-field__input {
18009
- width: 0;
18010
- padding-inline: 0;
18011
- }
18012
- .v-number-input__control {
18013
- display: flex;
18014
- height: 100%;
18015
- }
18016
- .v-number-input__control .v-btn {
18017
- background-color: transparent;
18018
- border-radius: 0;
18019
17981
  }.v-calendar {
18020
17982
  background: rgb(var(--v-theme-background));
18021
17983
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
@@ -18275,11 +18237,6 @@ html.overflow-y-hidden {
18275
18237
  }
18276
18238
  .v-calendar-weekly .v-calendar__container.days__0 {
18277
18239
  grid-template-columns: repeat(1, 1fr);
18278
- }.v-calendar-internal-event {
18279
- overflow: hidden;
18280
- padding: 4px;
18281
- text-overflow: ellipsis;
18282
- white-space: nowrap;
18283
18240
  }.v-calendar-header {
18284
18241
  align-items: center;
18285
18242
  display: flex;
@@ -18293,6 +18250,148 @@ html.overflow-y-hidden {
18293
18250
  .v-calendar-header__title {
18294
18251
  font-size: 1.5rem;
18295
18252
  margin-inline-start: 24px;
18253
+ }.v-number-input input[type=number] {
18254
+ -moz-appearance: textfield;
18255
+ }
18256
+ .v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
18257
+ -webkit-appearance: none;
18258
+ }
18259
+ .v-number-input .v-field {
18260
+ padding-inline-end: 0;
18261
+ padding-inline-start: 0;
18262
+ }
18263
+ .v-number-input--inset .v-divider {
18264
+ height: 55%;
18265
+ width: 55%;
18266
+ align-self: center;
18267
+ }
18268
+ .v-number-input--split .v-field__input {
18269
+ text-align: center;
18270
+ }
18271
+ .v-number-input--stacked .v-number-input__control {
18272
+ flex-direction: column-reverse;
18273
+ }
18274
+ .v-number-input--stacked .v-number-input__control .v-btn {
18275
+ flex: 1;
18276
+ }
18277
+ .v-number-input--hide-input .v-field {
18278
+ flex: none;
18279
+ }
18280
+ .v-number-input--hide-input .v-field__input {
18281
+ width: 0;
18282
+ padding-inline: 0;
18283
+ }
18284
+ .v-number-input__control {
18285
+ display: flex;
18286
+ height: 100%;
18287
+ }
18288
+ .v-number-input__control .v-btn {
18289
+ background-color: transparent;
18290
+ border-radius: 0;
18291
+ }.v-calendar-internal-event {
18292
+ overflow: hidden;
18293
+ padding: 4px;
18294
+ text-overflow: ellipsis;
18295
+ white-space: nowrap;
18296
+ }.v-calendar-day__row-with-label {
18297
+ display: grid;
18298
+ grid-template-columns: 48px 8px 1fr;
18299
+ border-right: thin solid #e0e0e0;
18300
+ }
18301
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
18302
+ position: relative;
18303
+ border-right: thin solid #e0e0e0;
18304
+ }
18305
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
18306
+ content: "";
18307
+ border-bottom: thin solid #e0e0e0;
18308
+ position: absolute;
18309
+ width: 100%;
18310
+ margin-top: -1px;
18311
+ z-index: 3;
18312
+ pointer-events: none;
18313
+ }
18314
+ .v-calendar-day__row-with-label .v-calendar-day__row-label {
18315
+ font-size: 10px;
18316
+ text-align: center;
18317
+ position: relative;
18318
+ top: -8px;
18319
+ }
18320
+ .v-calendar-day__row-with-label .v-calendar-day__row-content {
18321
+ border-bottom: thin solid #e0e0e0;
18322
+ }
18323
+ .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
18324
+ border-bottom: none;
18325
+ }
18326
+
18327
+ .v-calendar-day__row-without-label {
18328
+ display: grid;
18329
+ grid-template-columns: 1fr;
18330
+ border-right: thin solid #e0e0e0;
18331
+ }
18332
+ .v-calendar-day__row-without-label .v-calendar-day__row-content {
18333
+ overflow: hidden;
18334
+ border-bottom: thin solid #e0e0e0;
18335
+ }
18336
+ .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
18337
+ border-bottom: none;
18338
+ }.v-picker.v-sheet {
18339
+ display: grid;
18340
+ grid-auto-rows: min-content;
18341
+ grid-template-areas: "title" "header" "body";
18342
+ overflow: hidden;
18343
+ }
18344
+ .v-picker.v-sheet {
18345
+ 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));
18346
+ }
18347
+ .v-picker.v-sheet {
18348
+ border-radius: 4px;
18349
+ }
18350
+ .v-picker.v-sheet.v-picker--with-actions {
18351
+ grid-template-areas: "title" "header" "body" "actions";
18352
+ }
18353
+
18354
+ .v-picker__body {
18355
+ grid-area: body;
18356
+ overflow: hidden;
18357
+ position: relative;
18358
+ }
18359
+
18360
+ .v-picker__header {
18361
+ grid-area: header;
18362
+ }
18363
+
18364
+ .v-picker__actions {
18365
+ grid-area: actions;
18366
+ padding: 0 12px 12px;
18367
+ display: flex;
18368
+ align-items: center;
18369
+ justify-content: flex-end;
18370
+ }
18371
+ .v-picker__actions .v-btn {
18372
+ min-width: 48px;
18373
+ }
18374
+ .v-picker__actions .v-btn:not(:last-child) {
18375
+ margin-inline-end: 8px;
18376
+ }
18377
+
18378
+ .v-picker--landscape {
18379
+ grid-template-areas: "title" "header body" "header body";
18380
+ }
18381
+
18382
+ .v-picker--landscape.v-picker--with-actions {
18383
+ grid-template-areas: "title" "header body" "header actions";
18384
+ }
18385
+
18386
+ .v-picker-title {
18387
+ text-transform: uppercase;
18388
+ font-size: 0.75rem;
18389
+ grid-area: title;
18390
+ padding-inline: 24px 12px;
18391
+ padding-top: 16px;
18392
+ padding-bottom: 16px;
18393
+ font-weight: 400;
18394
+ letter-spacing: 0.1666666667em;
18296
18395
  }.v-calendar-month__day {
18297
18396
  position: relative;
18298
18397
  display: flex;
@@ -18356,48 +18455,32 @@ html.overflow-y-hidden {
18356
18455
 
18357
18456
  .v-calendar-weekly__day-alldayevents-container {
18358
18457
  min-height: 24px;
18359
- }.v-calendar-day__row-with-label {
18360
- display: grid;
18361
- grid-template-columns: 48px 8px 1fr;
18362
- border-right: thin solid #e0e0e0;
18363
- }
18364
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
18458
+ }.v-pull-to-refresh {
18459
+ overflow: hidden;
18365
18460
  position: relative;
18366
- border-right: thin solid #e0e0e0;
18367
18461
  }
18368
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
18369
- content: "";
18370
- border-bottom: thin solid #e0e0e0;
18462
+ .v-pull-to-refresh__pull-down {
18371
18463
  position: absolute;
18372
18464
  width: 100%;
18373
- margin-top: -1px;
18374
- z-index: 3;
18375
- pointer-events: none;
18376
- }
18377
- .v-calendar-day__row-with-label .v-calendar-day__row-label {
18378
- font-size: 10px;
18379
- text-align: center;
18380
- position: relative;
18381
- top: -8px;
18382
- }
18383
- .v-calendar-day__row-with-label .v-calendar-day__row-content {
18384
- border-bottom: thin solid #e0e0e0;
18465
+ transition: top 0.3s ease-out;
18385
18466
  }
18386
- .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
18387
- border-bottom: none;
18467
+ .v-pull-to-refresh__pull-down--touching {
18468
+ transition: none;
18388
18469
  }
18389
-
18390
- .v-calendar-day__row-without-label {
18391
- display: grid;
18392
- grid-template-columns: 1fr;
18393
- border-right: thin solid #e0e0e0;
18470
+ .v-pull-to-refresh__pull-down-default {
18471
+ display: flex;
18472
+ width: 100%;
18473
+ height: 100%;
18474
+ justify-content: center;
18475
+ align-items: flex-end;
18476
+ padding-bottom: 10px;
18394
18477
  }
18395
- .v-calendar-day__row-without-label .v-calendar-day__row-content {
18396
- overflow: hidden;
18397
- border-bottom: thin solid #e0e0e0;
18478
+ .v-pull-to-refresh__scroll-container {
18479
+ position: relative;
18480
+ transition: top 0.3s ease-out;
18398
18481
  }
18399
- .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
18400
- border-bottom: none;
18482
+ .v-pull-to-refresh__scroll-container--touching {
18483
+ transition: none;
18401
18484
  }.v-stepper-vertical-item {
18402
18485
  position: relative;
18403
18486
  transition-duration: 0.2s;
@@ -18466,99 +18549,16 @@ html.overflow-y-hidden {
18466
18549
  justify-content: flex-end;
18467
18550
  padding: 24px 0 0;
18468
18551
  flex-direction: row-reverse;
18469
- }.v-picker.v-sheet {
18470
- display: grid;
18471
- grid-auto-rows: min-content;
18472
- grid-template-areas: "title" "header" "body";
18473
- overflow: hidden;
18474
- }
18475
- .v-picker.v-sheet {
18476
- 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));
18552
+ }.v-time-picker.v-picker {
18553
+ padding: 24px;
18554
+ width: 328px;
18477
18555
  }
18478
- .v-picker.v-sheet {
18479
- border-radius: 4px;
18480
- }
18481
- .v-picker.v-sheet.v-picker--with-actions {
18482
- grid-template-areas: "title" "header" "body" "actions";
18483
- }
18484
-
18485
- .v-picker__body {
18486
- grid-area: body;
18487
- overflow: hidden;
18488
- position: relative;
18489
- }
18490
-
18491
- .v-picker__header {
18492
- grid-area: header;
18493
- }
18494
-
18495
- .v-picker__actions {
18496
- grid-area: actions;
18497
- padding: 0 12px 12px;
18498
- display: flex;
18499
- align-items: center;
18500
- justify-content: flex-end;
18501
- }
18502
- .v-picker__actions .v-btn {
18503
- min-width: 48px;
18504
- }
18505
- .v-picker__actions .v-btn:not(:last-child) {
18506
- margin-inline-end: 8px;
18507
- }
18508
-
18509
- .v-picker--landscape {
18510
- grid-template-areas: "title" "header body" "header body";
18511
- }
18512
-
18513
- .v-picker--landscape.v-picker--with-actions {
18514
- grid-template-areas: "title" "header body" "header actions";
18515
- }
18516
-
18517
- .v-picker-title {
18518
- text-transform: uppercase;
18519
- font-size: 0.75rem;
18520
- grid-area: title;
18521
- padding-inline: 24px 12px;
18522
- padding-top: 16px;
18523
- padding-bottom: 16px;
18524
- font-weight: 400;
18525
- letter-spacing: 0.1666666667em;
18526
- }.v-pull-to-refresh {
18527
- overflow: hidden;
18528
- position: relative;
18529
- }
18530
- .v-pull-to-refresh__pull-down {
18531
- position: absolute;
18532
- width: 100%;
18533
- transition: top 0.3s ease-out;
18534
- }
18535
- .v-pull-to-refresh__pull-down--touching {
18536
- transition: none;
18537
- }
18538
- .v-pull-to-refresh__pull-down-default {
18539
- display: flex;
18540
- width: 100%;
18541
- height: 100%;
18542
- justify-content: center;
18543
- align-items: flex-end;
18544
- padding-bottom: 10px;
18545
- }
18546
- .v-pull-to-refresh__scroll-container {
18547
- position: relative;
18548
- transition: top 0.3s ease-out;
18549
- }
18550
- .v-pull-to-refresh__scroll-container--touching {
18551
- transition: none;
18552
- }.v-time-picker.v-picker {
18553
- padding: 24px;
18554
- width: 328px;
18555
- }
18556
- .v-time-picker.v-picker .v-picker-title {
18557
- padding: 0;
18558
- margin-bottom: 20px;
18559
- }.v-time-picker-clock {
18560
- background: rgb(var(--v-theme-background));
18561
- color: rgb(var(--v-theme-on-background));
18556
+ .v-time-picker.v-picker .v-picker-title {
18557
+ padding: 0;
18558
+ margin-bottom: 20px;
18559
+ }.v-time-picker-clock {
18560
+ background: rgb(var(--v-theme-background));
18561
+ color: rgb(var(--v-theme-on-background));
18562
18562
  }
18563
18563
  .v-time-picker-clock:after {
18564
18564
  color: rgb(var(--v-theme-primary));
@@ -18818,22 +18818,6 @@ html.overflow-y-hidden {
18818
18818
  }
18819
18819
  .v-app-bar:not(.v-toolbar--absolute) {
18820
18820
  padding-inline-end: var(--v-scrollbar-offset);
18821
- }.v-application {
18822
- display: flex;
18823
- background: rgb(var(--v-theme-background));
18824
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
18825
- }
18826
-
18827
- .v-application__wrap {
18828
- -webkit-backface-visibility: hidden;
18829
- backface-visibility: hidden;
18830
- display: flex;
18831
- flex-direction: column;
18832
- flex: 1 1 auto;
18833
- max-width: 100%;
18834
- min-height: 100vh;
18835
- min-height: 100dvh;
18836
- position: relative;
18837
18821
  }.v-alert {
18838
18822
  display: grid;
18839
18823
  flex: 1 1;
@@ -19113,125 +19097,6 @@ html.overflow-y-hidden {
19113
19097
  }
19114
19098
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
19115
19099
  transform: translateY(0.5rem);
19116
- }.v-autocomplete .v-field .v-text-field__prefix,
19117
- .v-autocomplete .v-field .v-text-field__suffix,
19118
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
19119
- cursor: text;
19120
- }
19121
- .v-autocomplete .v-field .v-field__input > input {
19122
- flex: 1 1;
19123
- }
19124
- .v-autocomplete .v-field input {
19125
- min-width: 64px;
19126
- }
19127
- .v-autocomplete .v-field:not(.v-field--focused) input {
19128
- min-width: 0;
19129
- }
19130
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
19131
- margin-inline-end: 2px;
19132
- }
19133
- .v-autocomplete .v-autocomplete__selection-text {
19134
- overflow: hidden;
19135
- text-overflow: ellipsis;
19136
- white-space: nowrap;
19137
- }
19138
-
19139
- .v-autocomplete__content {
19140
- overflow: hidden;
19141
- }
19142
- .v-autocomplete__content {
19143
- 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));
19144
- }
19145
- .v-autocomplete__content {
19146
- border-radius: 4px;
19147
- }
19148
- .v-autocomplete__mask {
19149
- background: rgb(var(--v-theme-surface-light));
19150
- }
19151
- .v-autocomplete__selection {
19152
- display: inline-flex;
19153
- align-items: center;
19154
- height: 1.5rem;
19155
- letter-spacing: inherit;
19156
- line-height: inherit;
19157
- max-width: calc(100% - 2px - 2px);
19158
- }
19159
- .v-autocomplete__selection:first-child {
19160
- margin-inline-start: 0;
19161
- }
19162
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
19163
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
19164
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
19165
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
19166
- top: 0px;
19167
- }
19168
- .v-autocomplete--selecting-index .v-autocomplete__selection {
19169
- opacity: var(--v-medium-emphasis-opacity);
19170
- }
19171
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
19172
- opacity: 1;
19173
- }
19174
- .v-autocomplete--selecting-index .v-field__input > input {
19175
- caret-color: transparent;
19176
- }
19177
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
19178
- flex: 1 1;
19179
- position: absolute;
19180
- left: 0;
19181
- right: 0;
19182
- width: 100%;
19183
- padding-inline: inherit;
19184
- }
19185
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
19186
- transition: none;
19187
- }
19188
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
19189
- opacity: 0;
19190
- }
19191
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
19192
- opacity: 0;
19193
- }
19194
- .v-autocomplete__menu-icon {
19195
- margin-inline-start: 4px;
19196
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
19197
- }
19198
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
19199
- opacity: var(--v-high-emphasis-opacity);
19200
- transform: rotate(180deg);
19201
- }.bottom-sheet-transition-enter-from {
19202
- transform: translateY(100%);
19203
- }
19204
- .bottom-sheet-transition-leave-to {
19205
- transform: translateY(100%);
19206
- }
19207
-
19208
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19209
- align-self: flex-end;
19210
- border-radius: 0;
19211
- flex: 0 1 auto;
19212
- left: 0;
19213
- right: 0;
19214
- margin-inline: 0;
19215
- margin-bottom: 0;
19216
- transition-duration: 0.2s;
19217
- width: 100%;
19218
- max-width: 100%;
19219
- overflow: visible;
19220
- }
19221
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19222
- 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));
19223
- }
19224
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
19225
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
19226
- border-radius: 0;
19227
- }
19228
- .v-bottom-sheet.v-bottom-sheet--inset {
19229
- max-width: none;
19230
- }
19231
- @media (min-width: 600px) {
19232
- .v-bottom-sheet.v-bottom-sheet--inset {
19233
- max-width: 70%;
19234
- }
19235
19100
  }.v-avatar {
19236
19101
  flex: none;
19237
19102
  align-items: center;
@@ -19338,79 +19203,56 @@ html.overflow-y-hidden {
19338
19203
  .v-avatar .v-img {
19339
19204
  height: 100%;
19340
19205
  width: 100%;
19341
- }.v-badge {
19342
- display: inline-block;
19343
- line-height: 1;
19206
+ }.v-application {
19207
+ display: flex;
19208
+ background: rgb(var(--v-theme-background));
19209
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
19344
19210
  }
19345
19211
 
19346
- .v-badge__badge {
19347
- align-items: center;
19348
- display: inline-flex;
19349
- border-radius: 10px;
19350
- font-size: 0.75rem;
19351
- font-weight: 500;
19352
- height: 1.25rem;
19353
- justify-content: center;
19354
- min-width: 20px;
19355
- padding: 4px 6px;
19356
- pointer-events: auto;
19357
- position: absolute;
19358
- text-align: center;
19359
- text-indent: 0;
19360
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
19361
- white-space: nowrap;
19362
- }
19363
- .v-badge__badge {
19364
- background: rgb(var(--v-theme-surface-variant));
19365
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
19212
+ .v-application__wrap {
19213
+ -webkit-backface-visibility: hidden;
19214
+ backface-visibility: hidden;
19215
+ display: flex;
19216
+ flex-direction: column;
19217
+ flex: 1 1 auto;
19218
+ max-width: 100%;
19219
+ min-height: 100vh;
19220
+ min-height: 100dvh;
19221
+ position: relative;
19222
+ }.bottom-sheet-transition-enter-from {
19223
+ transform: translateY(100%);
19366
19224
  }
19367
- .v-badge--bordered .v-badge__badge::after {
19368
- border-radius: inherit;
19369
- border-style: solid;
19370
- border-width: 2px;
19371
- bottom: 0;
19372
- color: rgb(var(--v-theme-background));
19373
- content: "";
19225
+ .bottom-sheet-transition-leave-to {
19226
+ transform: translateY(100%);
19227
+ }
19228
+
19229
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19230
+ align-self: flex-end;
19231
+ border-radius: 0;
19232
+ flex: 0 1 auto;
19374
19233
  left: 0;
19375
- position: absolute;
19376
19234
  right: 0;
19377
- top: 0;
19378
- transform: scale(1.05);
19379
- }
19380
- .v-badge--dot .v-badge__badge {
19381
- border-radius: 4.5px;
19382
- height: 9px;
19383
- min-width: 0;
19384
- padding: 0;
19385
- width: 9px;
19386
- }
19387
- .v-badge--dot .v-badge__badge::after {
19388
- border-width: 1.5px;
19389
- }
19390
- .v-badge--inline .v-badge__badge {
19391
- position: relative;
19392
- vertical-align: middle;
19235
+ margin-inline: 0;
19236
+ margin-bottom: 0;
19237
+ transition-duration: 0.2s;
19238
+ width: 100%;
19239
+ max-width: 100%;
19240
+ overflow: visible;
19393
19241
  }
19394
- .v-badge__badge .v-icon {
19395
- color: inherit;
19396
- font-size: 0.75rem;
19397
- margin: 0 -2px;
19242
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
19243
+ 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));
19398
19244
  }
19399
- .v-badge__badge img,
19400
- .v-badge__badge .v-img {
19401
- height: 100%;
19402
- width: 100%;
19245
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
19246
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
19247
+ border-radius: 0;
19403
19248
  }
19404
-
19405
- .v-badge__wrapper {
19406
- display: flex;
19407
- position: relative;
19249
+ .v-bottom-sheet.v-bottom-sheet--inset {
19250
+ max-width: none;
19408
19251
  }
19409
- .v-badge--inline .v-badge__wrapper {
19410
- align-items: center;
19411
- display: inline-flex;
19412
- justify-content: center;
19413
- margin: 0 4px;
19252
+ @media (min-width: 600px) {
19253
+ .v-bottom-sheet.v-bottom-sheet--inset {
19254
+ max-width: 70%;
19255
+ }
19414
19256
  }.v-banner {
19415
19257
  display: grid;
19416
19258
  flex: 1 1;
@@ -19577,19 +19419,6 @@ html.overflow-y-hidden {
19577
19419
  }
19578
19420
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
19579
19421
  align-self: flex-start;
19580
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19581
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19582
- }
19583
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19584
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19585
- }
19586
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19587
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19588
- }
19589
- @supports not selector(:focus-visible) {
19590
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19591
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19592
- }
19593
19422
  }.v-btn {
19594
19423
  align-items: center;
19595
19424
  border-radius: 4px;
@@ -20071,6 +19900,104 @@ html.overflow-y-hidden {
20071
19900
  display: inline-block;
20072
19901
  padding: 0 8px;
20073
19902
  vertical-align: middle;
19903
+ }.v-autocomplete .v-field .v-text-field__prefix,
19904
+ .v-autocomplete .v-field .v-text-field__suffix,
19905
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
19906
+ cursor: text;
19907
+ }
19908
+ .v-autocomplete .v-field .v-field__input > input {
19909
+ flex: 1 1;
19910
+ }
19911
+ .v-autocomplete .v-field input {
19912
+ min-width: 64px;
19913
+ }
19914
+ .v-autocomplete .v-field:not(.v-field--focused) input {
19915
+ min-width: 0;
19916
+ }
19917
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
19918
+ margin-inline-end: 2px;
19919
+ }
19920
+ .v-autocomplete .v-autocomplete__selection-text {
19921
+ overflow: hidden;
19922
+ text-overflow: ellipsis;
19923
+ white-space: nowrap;
19924
+ }
19925
+
19926
+ .v-autocomplete__content {
19927
+ overflow: hidden;
19928
+ }
19929
+ .v-autocomplete__content {
19930
+ 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));
19931
+ }
19932
+ .v-autocomplete__content {
19933
+ border-radius: 4px;
19934
+ }
19935
+ .v-autocomplete__mask {
19936
+ background: rgb(var(--v-theme-surface-light));
19937
+ }
19938
+ .v-autocomplete__selection {
19939
+ display: inline-flex;
19940
+ align-items: center;
19941
+ height: 1.5rem;
19942
+ letter-spacing: inherit;
19943
+ line-height: inherit;
19944
+ max-width: calc(100% - 2px - 2px);
19945
+ }
19946
+ .v-autocomplete__selection:first-child {
19947
+ margin-inline-start: 0;
19948
+ }
19949
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
19950
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
19951
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
19952
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
19953
+ top: 0px;
19954
+ }
19955
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
19956
+ opacity: var(--v-medium-emphasis-opacity);
19957
+ }
19958
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
19959
+ opacity: 1;
19960
+ }
19961
+ .v-autocomplete--selecting-index .v-field__input > input {
19962
+ caret-color: transparent;
19963
+ }
19964
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
19965
+ flex: 1 1;
19966
+ position: absolute;
19967
+ left: 0;
19968
+ right: 0;
19969
+ width: 100%;
19970
+ padding-inline: inherit;
19971
+ }
19972
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
19973
+ transition: none;
19974
+ }
19975
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
19976
+ opacity: 0;
19977
+ }
19978
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
19979
+ opacity: 0;
19980
+ }
19981
+ .v-autocomplete__menu-icon {
19982
+ margin-inline-start: 4px;
19983
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
19984
+ }
19985
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
19986
+ opacity: var(--v-high-emphasis-opacity);
19987
+ transform: rotate(180deg);
19988
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19989
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19990
+ }
19991
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19992
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19993
+ }
19994
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19995
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19996
+ }
19997
+ @supports not selector(:focus-visible) {
19998
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19999
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20000
+ }
20074
20001
  }.v-btn-group {
20075
20002
  display: inline-flex;
20076
20003
  flex-wrap: nowrap;
@@ -20135,64 +20062,146 @@ html.overflow-y-hidden {
20135
20062
  }
20136
20063
  .v-btn-group--tile {
20137
20064
  border-radius: 0;
20138
- }.v-checkbox.v-input {
20139
- flex: 0 1 auto;
20140
- }
20141
- .v-checkbox .v-selection-control {
20142
- min-height: var(--v-input-control-height);
20143
- }.v-card {
20144
- display: block;
20065
+ }.v-carousel {
20145
20066
  overflow: hidden;
20146
- overflow-wrap: break-word;
20147
20067
  position: relative;
20148
- padding: 0;
20149
- text-decoration: none;
20150
- transition-duration: 0.28s;
20151
- transition-property: box-shadow, opacity, background;
20152
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20153
- z-index: 0;
20154
- }
20155
- .v-card {
20156
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20157
- border-style: solid;
20158
- border-width: 0;
20159
- }
20160
- .v-card--border {
20161
- border-width: thin;
20162
- box-shadow: none;
20068
+ width: 100%;
20163
20069
  }
20164
- .v-card--absolute {
20070
+ .v-carousel__controls {
20071
+ align-items: center;
20072
+ bottom: 0;
20073
+ display: flex;
20074
+ height: 50px;
20075
+ justify-content: center;
20076
+ list-style-type: none;
20165
20077
  position: absolute;
20078
+ width: 100%;
20079
+ z-index: 1;
20166
20080
  }
20167
- .v-card--fixed {
20168
- position: fixed;
20081
+ .v-carousel__controls {
20082
+ background: rgba(var(--v-theme-surface-variant), 0.3);
20083
+ color: rgb(var(--v-theme-on-surface-variant));
20169
20084
  }
20170
- .v-card {
20171
- border-radius: 4px;
20085
+ .v-carousel__controls > .v-item-group {
20086
+ flex: 0 1 auto;
20172
20087
  }
20173
- .v-card:hover > .v-card__overlay {
20174
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
20088
+ .v-carousel__controls__item {
20089
+ margin: 0 8px;
20175
20090
  }
20176
- .v-card:focus-visible > .v-card__overlay {
20177
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20091
+ .v-carousel__controls__item .v-icon {
20092
+ opacity: 0.5;
20178
20093
  }
20179
- @supports not selector(:focus-visible) {
20180
- .v-card:focus > .v-card__overlay {
20181
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20182
- }
20094
+ .v-carousel__controls__item--active .v-icon {
20095
+ opacity: 1;
20096
+ vertical-align: middle;
20183
20097
  }
20184
- .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
20185
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
20098
+ .v-carousel__controls__item:hover {
20099
+ background: none;
20186
20100
  }
20187
- .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
20188
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
20101
+ .v-carousel__controls__item:hover .v-icon {
20102
+ opacity: 0.8;
20189
20103
  }
20190
- .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
20191
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20104
+
20105
+ .v-carousel__progress {
20106
+ margin: 0;
20107
+ position: absolute;
20108
+ bottom: 0;
20109
+ left: 0;
20110
+ right: 0;
20192
20111
  }
20193
- @supports not selector(:focus-visible) {
20194
- .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
20195
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20112
+
20113
+ .v-carousel-item {
20114
+ display: block;
20115
+ height: inherit;
20116
+ text-decoration: none;
20117
+ }
20118
+ .v-carousel-item > .v-img {
20119
+ height: inherit;
20120
+ }
20121
+
20122
+ .v-carousel--hide-delimiter-background .v-carousel__controls {
20123
+ background: transparent;
20124
+ }
20125
+
20126
+ .v-carousel--vertical-delimiters .v-carousel__controls {
20127
+ flex-direction: column;
20128
+ height: 100% !important;
20129
+ width: 50px;
20130
+ }.v-color-picker {
20131
+ align-self: flex-start;
20132
+ contain: content;
20133
+ }
20134
+ .v-color-picker.v-sheet {
20135
+ 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));
20136
+ }
20137
+ .v-color-picker.v-sheet {
20138
+ border-radius: 4px;
20139
+ }
20140
+
20141
+ .v-color-picker__controls {
20142
+ display: flex;
20143
+ flex-direction: column;
20144
+ padding: 16px;
20145
+ }
20146
+
20147
+ .v-color-picker--flat {
20148
+ 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));
20149
+ }
20150
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20151
+ 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));
20152
+ }.v-card {
20153
+ display: block;
20154
+ overflow: hidden;
20155
+ overflow-wrap: break-word;
20156
+ position: relative;
20157
+ padding: 0;
20158
+ text-decoration: none;
20159
+ transition-duration: 0.28s;
20160
+ transition-property: box-shadow, opacity, background;
20161
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20162
+ z-index: 0;
20163
+ }
20164
+ .v-card {
20165
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20166
+ border-style: solid;
20167
+ border-width: 0;
20168
+ }
20169
+ .v-card--border {
20170
+ border-width: thin;
20171
+ box-shadow: none;
20172
+ }
20173
+ .v-card--absolute {
20174
+ position: absolute;
20175
+ }
20176
+ .v-card--fixed {
20177
+ position: fixed;
20178
+ }
20179
+ .v-card {
20180
+ border-radius: 4px;
20181
+ }
20182
+ .v-card:hover > .v-card__overlay {
20183
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
20184
+ }
20185
+ .v-card:focus-visible > .v-card__overlay {
20186
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20187
+ }
20188
+ @supports not selector(:focus-visible) {
20189
+ .v-card:focus > .v-card__overlay {
20190
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20191
+ }
20192
+ }
20193
+ .v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
20194
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
20195
+ }
20196
+ .v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
20197
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
20198
+ }
20199
+ .v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
20200
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20201
+ }
20202
+ @supports not selector(:focus-visible) {
20203
+ .v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
20204
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20196
20205
  }
20197
20206
  }
20198
20207
  .v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
@@ -20448,89 +20457,114 @@ html.overflow-y-hidden {
20448
20457
  pointer-events: none;
20449
20458
  opacity: 0;
20450
20459
  transition: opacity 0.2s ease-in-out;
20451
- }.v-carousel {
20452
- overflow: hidden;
20453
- position: relative;
20454
- width: 100%;
20455
- }
20456
- .v-carousel__controls {
20457
- align-items: center;
20458
- bottom: 0;
20460
+ }.v-chip-group {
20459
20461
  display: flex;
20460
- height: 50px;
20461
- justify-content: center;
20462
- list-style-type: none;
20463
- position: absolute;
20464
- width: 100%;
20465
- z-index: 1;
20462
+ max-width: 100%;
20463
+ min-width: 0;
20464
+ overflow-x: auto;
20465
+ padding: 4px 0;
20466
20466
  }
20467
- .v-carousel__controls {
20468
- background: rgba(var(--v-theme-surface-variant), 0.3);
20469
- color: rgb(var(--v-theme-on-surface-variant));
20467
+ .v-chip-group .v-chip {
20468
+ margin: 4px 8px 4px 0;
20470
20469
  }
20471
- .v-carousel__controls > .v-item-group {
20470
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20471
+ opacity: var(--v-activated-opacity);
20472
+ }
20473
+
20474
+ .v-chip-group--column .v-slide-group__content {
20475
+ white-space: normal;
20476
+ flex-wrap: wrap;
20477
+ max-width: 100%;
20478
+ }.v-checkbox.v-input {
20472
20479
  flex: 0 1 auto;
20473
20480
  }
20474
- .v-carousel__controls__item {
20475
- margin: 0 8px;
20481
+ .v-checkbox .v-selection-control {
20482
+ min-height: var(--v-input-control-height);
20483
+ }.v-combobox .v-field .v-text-field__prefix,
20484
+ .v-combobox .v-field .v-text-field__suffix,
20485
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20486
+ cursor: text;
20476
20487
  }
20477
- .v-carousel__controls__item .v-icon {
20478
- opacity: 0.5;
20488
+ .v-combobox .v-field .v-field__input > input {
20489
+ flex: 1 1;
20479
20490
  }
20480
- .v-carousel__controls__item--active .v-icon {
20481
- opacity: 1;
20482
- vertical-align: middle;
20491
+ .v-combobox .v-field input {
20492
+ min-width: 64px;
20483
20493
  }
20484
- .v-carousel__controls__item:hover {
20485
- background: none;
20494
+ .v-combobox .v-field:not(.v-field--focused) input {
20495
+ min-width: 0;
20486
20496
  }
20487
- .v-carousel__controls__item:hover .v-icon {
20488
- opacity: 0.8;
20497
+ .v-combobox .v-field--dirty .v-combobox__selection {
20498
+ margin-inline-end: 2px;
20499
+ }
20500
+ .v-combobox .v-combobox__selection-text {
20501
+ overflow: hidden;
20502
+ text-overflow: ellipsis;
20503
+ white-space: nowrap;
20489
20504
  }
20490
20505
 
20491
- .v-carousel__progress {
20492
- margin: 0;
20506
+ .v-combobox__content {
20507
+ overflow: hidden;
20508
+ }
20509
+ .v-combobox__content {
20510
+ 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));
20511
+ }
20512
+ .v-combobox__content {
20513
+ border-radius: 4px;
20514
+ }
20515
+ .v-combobox__mask {
20516
+ background: rgb(var(--v-theme-surface-light));
20517
+ }
20518
+ .v-combobox__selection {
20519
+ display: inline-flex;
20520
+ align-items: center;
20521
+ height: 1.5rem;
20522
+ letter-spacing: inherit;
20523
+ line-height: inherit;
20524
+ max-width: calc(100% - 2px - 2px);
20525
+ }
20526
+ .v-combobox__selection:first-child {
20527
+ margin-inline-start: 0;
20528
+ }
20529
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20530
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20531
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20532
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20533
+ top: 0px;
20534
+ }
20535
+ .v-combobox--selecting-index .v-combobox__selection {
20536
+ opacity: var(--v-medium-emphasis-opacity);
20537
+ }
20538
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20539
+ opacity: 1;
20540
+ }
20541
+ .v-combobox--selecting-index .v-field__input > input {
20542
+ caret-color: transparent;
20543
+ }
20544
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20545
+ flex: 1 1;
20493
20546
  position: absolute;
20494
- bottom: 0;
20495
20547
  left: 0;
20496
20548
  right: 0;
20549
+ width: 100%;
20550
+ padding-inline: inherit;
20497
20551
  }
20498
-
20499
- .v-carousel-item {
20500
- display: block;
20501
- height: inherit;
20502
- text-decoration: none;
20503
- }
20504
- .v-carousel-item > .v-img {
20505
- height: inherit;
20506
- }
20507
-
20508
- .v-carousel--hide-delimiter-background .v-carousel__controls {
20509
- background: transparent;
20552
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20553
+ transition: none;
20510
20554
  }
20511
-
20512
- .v-carousel--vertical-delimiters .v-carousel__controls {
20513
- flex-direction: column;
20514
- height: 100% !important;
20515
- width: 50px;
20516
- }.v-chip-group {
20517
- display: flex;
20518
- max-width: 100%;
20519
- min-width: 0;
20520
- overflow-x: auto;
20521
- padding: 4px 0;
20555
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20556
+ opacity: 0;
20522
20557
  }
20523
- .v-chip-group .v-chip {
20524
- margin: 4px 8px 4px 0;
20558
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20559
+ opacity: 0;
20525
20560
  }
20526
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20527
- opacity: var(--v-activated-opacity);
20561
+ .v-combobox__menu-icon {
20562
+ margin-inline-start: 4px;
20563
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20528
20564
  }
20529
-
20530
- .v-chip-group--column .v-slide-group__content {
20531
- white-space: normal;
20532
- flex-wrap: wrap;
20533
- max-width: 100%;
20565
+ .v-combobox--active-menu .v-combobox__menu-icon {
20566
+ opacity: var(--v-high-emphasis-opacity);
20567
+ transform: rotate(180deg);
20534
20568
  }.v-chip {
20535
20569
  align-items: center;
20536
20570
  display: inline-flex;
@@ -20949,229 +20983,11 @@ html.overflow-y-hidden {
20949
20983
 
20950
20984
  .v-chip--label {
20951
20985
  border-radius: 4px;
20952
- }.v-data-table {
20986
+ }.v-container {
20953
20987
  width: 100%;
20954
- }
20955
-
20956
- .v-data-table__table {
20957
- width: 100%;
20958
- border-collapse: separate;
20959
- border-spacing: 0;
20960
- }
20961
-
20962
- .v-data-table__tr--focus {
20963
- border: 1px dotted black;
20964
- }
20965
- .v-data-table__tr--clickable {
20966
- cursor: pointer;
20967
- }
20968
-
20969
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
20970
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
20971
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
20972
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
20973
- text-align: end;
20974
- }
20975
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
20976
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
20977
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
20978
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
20979
- flex-direction: row-reverse;
20980
- }
20981
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
20982
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
20983
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
20984
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
20985
- text-align: center;
20986
- }
20987
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
20988
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
20989
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
20990
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
20991
- justify-content: center;
20992
- }
20993
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
20994
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
20995
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
20996
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
20997
- padding: 0 8px;
20998
- }
20999
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
21000
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
21001
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
21002
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
21003
- text-overflow: ellipsis;
21004
- text-wrap: nowrap;
21005
- overflow: hidden;
21006
- }
21007
- .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
21008
- .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
21009
- .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
21010
- .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
21011
- display: contents;
21012
- }
21013
- .v-data-table .v-table__wrapper > table > thead > tr > th,
21014
- .v-data-table .v-table__wrapper > table tbody > tr > th {
21015
- align-items: center;
21016
- }
21017
- .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
21018
- .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
21019
- position: sticky;
21020
- }
21021
- .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
21022
- .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
21023
- cursor: pointer;
21024
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21025
- }
21026
- .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
21027
- .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
21028
- opacity: 0;
21029
- }
21030
- .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
21031
- .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
21032
- opacity: 0.5;
21033
- }
21034
- .v-data-table .v-table__wrapper > table > thead > tr.v-data-table__tr--mobile > td,
21035
- .v-data-table .v-table__wrapper > table tbody > tr.v-data-table__tr--mobile > td {
21036
- height: -moz-fit-content;
21037
- height: fit-content;
21038
- }
21039
-
21040
- .v-data-table-column--fixed,
21041
- .v-data-table__th--sticky {
21042
- background: rgb(var(--v-theme-surface));
21043
- position: sticky !important;
21044
- left: 0;
21045
- z-index: 1;
21046
- }
21047
-
21048
- .v-data-table-column--last-fixed {
21049
- border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
21050
- }
21051
-
21052
- .v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
21053
- z-index: 2;
21054
- }
21055
-
21056
- .v-data-table-group-header-row td {
21057
- background: rgba(var(--v-theme-surface));
21058
- color: rgba(var(--v-theme-on-surface));
21059
- }
21060
- .v-data-table-group-header-row td > span {
21061
- padding-left: 5px;
21062
- }
21063
-
21064
- .v-data-table--loading .v-data-table__td {
21065
- opacity: var(--v-disabled-opacity);
21066
- }
21067
-
21068
- .v-data-table-group-header-row__column {
21069
- padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
21070
- }
21071
-
21072
- .v-data-table-header__content {
21073
- display: flex;
21074
- align-items: center;
21075
- }
21076
-
21077
- .v-data-table-header__sort-badge {
21078
- display: inline-flex;
21079
- justify-content: center;
21080
- align-items: center;
21081
- font-size: 0.875rem;
21082
- padding: 4px;
21083
- border-radius: 50%;
21084
- background: rgba(var(--v-border-color), var(--v-border-opacity));
21085
- min-width: 20px;
21086
- min-height: 20px;
21087
- width: 20px;
21088
- height: 20px;
21089
- }
21090
-
21091
- .v-data-table-progress > th {
21092
- border: none !important;
21093
- height: auto !important;
21094
- padding: 0 !important;
21095
- }
21096
-
21097
- .v-data-table-progress__loader {
21098
- position: relative;
21099
- }
21100
-
21101
- .v-data-table-rows-loading,
21102
- .v-data-table-rows-no-data {
21103
- text-align: center;
21104
- }
21105
-
21106
- .v-data-table__tr--mobile > .v-data-table__td--expanded-row {
21107
- grid-template-columns: 0;
21108
- justify-content: center;
21109
- }
21110
- .v-data-table__tr--mobile > .v-data-table__td--select-row {
21111
- grid-template-columns: 0;
21112
- justify-content: end;
21113
- }
21114
- .v-data-table__tr--mobile > td {
21115
- align-items: center;
21116
- column-gap: 4px;
21117
- display: grid;
21118
- grid-template-columns: repeat(2, 1fr);
21119
- min-height: var(--v-table-row-height);
21120
- }
21121
- .v-data-table__tr--mobile > td:not(:last-child) {
21122
- border-bottom: 0 !important;
21123
- }
21124
-
21125
- .v-data-table__td-title {
21126
- font-weight: 500;
21127
- text-align: left;
21128
- }
21129
-
21130
- .v-data-table__td-value {
21131
- text-align: right;
21132
- }
21133
-
21134
- .v-data-table__td-sort-icon {
21135
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
21136
- }
21137
- .v-data-table__td-sort-icon-active {
21138
- color: rgba(var(--v-theme-on-surface));
21139
- }.v-data-table-footer {
21140
- align-items: center;
21141
- display: flex;
21142
- flex-wrap: wrap;
21143
- justify-content: flex-end;
21144
- padding: 8px 4px;
21145
- }
21146
- .v-data-table-footer__items-per-page {
21147
- align-items: center;
21148
- display: flex;
21149
- justify-content: center;
21150
- }
21151
- .v-data-table-footer__items-per-page > span {
21152
- padding-inline-end: 8px;
21153
- }
21154
- .v-data-table-footer__items-per-page > .v-select {
21155
- width: 90px;
21156
- }
21157
- .v-data-table-footer__info {
21158
- display: flex;
21159
- justify-content: flex-end;
21160
- min-width: 116px;
21161
- padding: 0 16px;
21162
- }
21163
- .v-data-table-footer__paginationz {
21164
- align-items: center;
21165
- display: flex;
21166
- margin-inline-start: 16px;
21167
- }
21168
- .v-data-table-footer__page {
21169
- padding: 0 8px;
21170
- }.v-container {
21171
- width: 100%;
21172
- padding: 16px;
21173
- margin-right: auto;
21174
- margin-left: auto;
20988
+ padding: 16px;
20989
+ margin-right: auto;
20990
+ margin-left: auto;
21175
20991
  }
21176
20992
  @media (min-width: 960px) {
21177
20993
  .v-container {
@@ -21839,113 +21655,222 @@ html.overflow-y-hidden {
21839
21655
  .offset-xxl-11 {
21840
21656
  margin-inline-start: 91.6666666667%;
21841
21657
  }
21842
- }.v-combobox .v-field .v-text-field__prefix,
21843
- .v-combobox .v-field .v-text-field__suffix,
21844
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
21845
- cursor: text;
21658
+ }.v-date-picker-controls {
21659
+ display: flex;
21660
+ align-items: center;
21661
+ justify-content: space-between;
21662
+ font-size: 0.875rem;
21663
+ padding-top: 4px;
21664
+ padding-bottom: 4px;
21665
+ padding-inline-start: 6px;
21666
+ padding-inline-end: 12px;
21846
21667
  }
21847
- .v-combobox .v-field .v-field__input > input {
21848
- flex: 1 1;
21668
+ .v-date-picker-controls > .v-btn:first-child {
21669
+ text-transform: none;
21670
+ font-weight: 400;
21671
+ line-height: initial;
21672
+ letter-spacing: initial;
21849
21673
  }
21850
- .v-combobox .v-field input {
21851
- min-width: 64px;
21674
+ .v-date-picker-controls--variant-classic {
21675
+ padding-inline-start: 12px;
21852
21676
  }
21853
- .v-combobox .v-field:not(.v-field--focused) input {
21854
- min-width: 0;
21677
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
21678
+ opacity: 0.7;
21855
21679
  }
21856
- .v-combobox .v-field--dirty .v-combobox__selection {
21857
- margin-inline-end: 2px;
21680
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
21681
+ cursor: pointer;
21858
21682
  }
21859
- .v-combobox .v-combobox__selection-text {
21860
- overflow: hidden;
21861
- text-overflow: ellipsis;
21862
- white-space: nowrap;
21683
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
21684
+ opacity: 1;
21863
21685
  }
21864
-
21865
- .v-combobox__content {
21866
- overflow: hidden;
21686
+ .v-date-picker-controls .v-btn:last-child {
21687
+ margin-inline-start: 4px;
21867
21688
  }
21868
- .v-combobox__content {
21869
- 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));
21689
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
21690
+ transform: rotate(180deg);
21870
21691
  }
21871
- .v-combobox__content {
21872
- border-radius: 4px;
21692
+
21693
+ .v-date-picker-controls__date {
21694
+ margin-inline-end: 4px;
21873
21695
  }
21874
- .v-combobox__mask {
21875
- background: rgb(var(--v-theme-surface-light));
21696
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
21697
+ margin: auto;
21698
+ text-align: center;
21876
21699
  }
21877
- .v-combobox__selection {
21878
- display: inline-flex;
21879
- align-items: center;
21880
- height: 1.5rem;
21881
- letter-spacing: inherit;
21882
- line-height: inherit;
21883
- max-width: calc(100% - 2px - 2px);
21700
+
21701
+ .v-date-picker-controls__month {
21702
+ display: flex;
21884
21703
  }
21885
- .v-combobox__selection:first-child {
21886
- margin-inline-start: 0;
21704
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
21705
+ flex-direction: row-reverse;
21887
21706
  }
21888
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21889
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21890
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21891
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21892
- top: 0px;
21707
+
21708
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
21709
+ flex: 1 0 auto;
21893
21710
  }
21894
- .v-combobox--selecting-index .v-combobox__selection {
21895
- opacity: var(--v-medium-emphasis-opacity);
21711
+
21712
+ .v-date-picker__title {
21713
+ display: inline-block;
21714
+ }.v-date-picker-header {
21715
+ align-items: flex-end;
21716
+ height: 70px;
21717
+ display: grid;
21718
+ grid-template-areas: "prepend content append";
21719
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
21720
+ overflow: hidden;
21721
+ padding-inline: 24px 12px;
21722
+ padding-bottom: 12px;
21896
21723
  }
21897
- .v-combobox--selecting-index .v-combobox__selection--selected {
21898
- opacity: 1;
21724
+
21725
+ .v-date-picker-header__append {
21726
+ grid-area: append;
21899
21727
  }
21900
- .v-combobox--selecting-index .v-field__input > input {
21901
- caret-color: transparent;
21728
+
21729
+ .v-date-picker-header__prepend {
21730
+ grid-area: prepend;
21731
+ padding-inline-start: 8px;
21902
21732
  }
21903
- .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
21904
- flex: 1 1;
21905
- position: absolute;
21906
- left: 0;
21907
- right: 0;
21908
- width: 100%;
21909
- padding-inline: inherit;
21733
+
21734
+ .v-date-picker-header__content {
21735
+ align-items: center;
21736
+ display: inline-flex;
21737
+ font-size: 32px;
21738
+ line-height: 40px;
21739
+ grid-area: content;
21740
+ justify-content: space-between;
21910
21741
  }
21911
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
21912
- transition: none;
21742
+ .v-date-picker-header--clickable .v-date-picker-header__content {
21743
+ cursor: pointer;
21913
21744
  }
21914
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
21745
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
21746
+ opacity: 0.7;
21747
+ }
21748
+
21749
+ .date-picker-header-transition-enter-active,
21750
+ .date-picker-header-reverse-transition-enter-active {
21751
+ transition-duration: 0.3s;
21752
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21753
+ }
21754
+ .date-picker-header-transition-leave-active,
21755
+ .date-picker-header-reverse-transition-leave-active {
21756
+ transition-duration: 0.3s;
21757
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21758
+ }
21759
+
21760
+ .date-picker-header-transition-enter-from {
21761
+ transform: translate(0, 100%);
21762
+ }
21763
+ .date-picker-header-transition-leave-to {
21915
21764
  opacity: 0;
21765
+ transform: translate(0, -100%);
21916
21766
  }
21917
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
21767
+
21768
+ .date-picker-header-reverse-transition-enter-from {
21769
+ transform: translate(0, -100%);
21770
+ }
21771
+ .date-picker-header-reverse-transition-leave-to {
21918
21772
  opacity: 0;
21773
+ transform: translate(0, 100%);
21774
+ }.v-date-picker {
21775
+ overflow: hidden;
21776
+ width: 328px;
21919
21777
  }
21920
- .v-combobox__menu-icon {
21921
- margin-inline-start: 4px;
21922
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21778
+ .v-date-picker--show-week {
21779
+ width: 368px;
21780
+ }.v-date-picker-month {
21781
+ display: flex;
21782
+ justify-content: center;
21783
+ padding: 0 12px 8px;
21784
+ --v-date-picker-month-day-diff: 4px;
21923
21785
  }
21924
- .v-combobox--active-menu .v-combobox__menu-icon {
21925
- opacity: var(--v-high-emphasis-opacity);
21926
- transform: rotate(180deg);
21927
- }.v-color-picker {
21928
- align-self: flex-start;
21929
- contain: content;
21786
+
21787
+ .v-date-picker-month__weeks {
21788
+ display: grid;
21789
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
21790
+ column-gap: 4px;
21791
+ font-size: 0.85rem;
21930
21792
  }
21931
- .v-color-picker.v-sheet {
21932
- 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));
21793
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
21794
+ grid-row-gap: 0;
21933
21795
  }
21934
- .v-color-picker.v-sheet {
21935
- border-radius: 4px;
21796
+
21797
+ .v-date-picker-month__weekday {
21798
+ font-size: 0.85rem;
21936
21799
  }
21937
21800
 
21938
- .v-color-picker__controls {
21801
+ .v-date-picker-month__days {
21802
+ display: grid;
21803
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
21804
+ column-gap: 4px;
21805
+ flex: 1 1;
21806
+ justify-content: space-around;
21807
+ }
21808
+
21809
+ .v-date-picker-month__day {
21810
+ align-items: center;
21939
21811
  display: flex;
21940
- flex-direction: column;
21941
- padding: 16px;
21812
+ justify-content: center;
21813
+ position: relative;
21814
+ height: 40px;
21815
+ width: 40px;
21816
+ }
21817
+ .v-date-picker-month__day--selected .v-btn {
21818
+ background-color: rgb(var(--v-theme-surface-variant));
21819
+ color: rgb(var(--v-theme-on-surface-variant));
21820
+ }
21821
+ .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
21822
+ --v-btn-height: 24px;
21823
+ --v-btn-size: 0.85rem;
21824
+ }
21825
+ .v-date-picker-month__day--week {
21826
+ font-size: var(--v-btn-size);
21942
21827
  }
21943
21828
 
21944
- .v-color-picker--flat {
21945
- 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));
21829
+ .v-date-picker-month__day--adjacent {
21830
+ opacity: 0.5;
21946
21831
  }
21947
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
21948
- 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));
21832
+
21833
+ .v-date-picker-month__day--hide-adjacent {
21834
+ opacity: 0;
21835
+ }.v-date-picker-years {
21836
+ height: 288px;
21837
+ overflow-y: scroll;
21838
+ }
21839
+
21840
+ .v-date-picker-years__content {
21841
+ display: grid;
21842
+ flex: 1 1;
21843
+ justify-content: space-around;
21844
+ grid-template-columns: repeat(3, 1fr);
21845
+ gap: 8px 24px;
21846
+ padding-inline: 32px;
21847
+ }
21848
+ .v-date-picker-years__content .v-btn {
21849
+ padding-inline: 8px;
21850
+ }.v-date-picker-months {
21851
+ height: 288px;
21852
+ }
21853
+
21854
+ .v-date-picker-months__content {
21855
+ align-items: center;
21856
+ display: grid;
21857
+ flex: 1 1;
21858
+ height: inherit;
21859
+ justify-content: space-around;
21860
+ grid-template-columns: repeat(2, 1fr);
21861
+ grid-gap: 0px 24px;
21862
+ padding-inline-start: 36px;
21863
+ padding-inline-end: 36px;
21864
+ }
21865
+ .v-date-picker-months__content .v-btn {
21866
+ text-transform: none;
21867
+ padding-inline-start: 8px;
21868
+ padding-inline-end: 8px;
21869
+ }.v-counter {
21870
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21871
+ flex: 0 1 auto;
21872
+ font-size: 12px;
21873
+ transition-duration: 150ms;
21949
21874
  }.v-dialog {
21950
21875
  align-items: center;
21951
21876
  justify-content: center;
@@ -22046,284 +21971,16 @@ html.overflow-y-hidden {
22046
21971
  -webkit-backface-visibility: hidden;
22047
21972
  backface-visibility: hidden;
22048
21973
  overflow-y: auto;
22049
- }.v-counter {
22050
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22051
- flex: 0 1 auto;
22052
- font-size: 12px;
22053
- transition-duration: 150ms;
22054
- }.v-divider {
22055
- display: block;
22056
- flex: 1 1 100%;
22057
- height: 0px;
22058
- max-height: 0px;
22059
- opacity: var(--v-border-opacity);
22060
- transition: inherit;
22061
- }
22062
- .v-divider {
22063
- border-style: solid;
22064
- border-width: thin 0 0 0;
21974
+ }.v-empty-state {
21975
+ align-items: center;
21976
+ display: flex;
21977
+ flex-direction: column;
21978
+ justify-content: center;
21979
+ min-height: 100%;
21980
+ padding: 16px;
22065
21981
  }
22066
- .v-divider--vertical {
22067
- align-self: stretch;
22068
- border-width: 0 thin 0 0;
22069
- display: inline-flex;
22070
- height: auto;
22071
- margin-left: -1px;
22072
- max-height: 100%;
22073
- max-width: 0px;
22074
- vertical-align: text-bottom;
22075
- width: 0px;
22076
- }
22077
- .v-divider--inset:not(.v-divider--vertical) {
22078
- max-width: calc(100% - 72px);
22079
- margin-inline-start: 72px;
22080
- }
22081
- .v-divider--inset.v-divider--vertical {
22082
- margin-bottom: 8px;
22083
- margin-top: 8px;
22084
- max-height: calc(100% - 16px);
22085
- }
22086
-
22087
- .v-divider__content {
22088
- padding: 0 16px;
22089
- text-wrap: nowrap;
22090
- }
22091
- .v-divider__wrapper--vertical .v-divider__content {
22092
- padding: 4px 0;
22093
- }
22094
-
22095
- .v-divider__wrapper {
22096
- display: flex;
22097
- align-items: center;
22098
- justify-content: center;
22099
- }
22100
- .v-divider__wrapper--vertical {
22101
- flex-direction: column;
22102
- height: 100%;
22103
- }
22104
- .v-divider__wrapper--vertical .v-divider {
22105
- margin: 0 auto;
22106
- }.v-date-picker {
22107
- overflow: hidden;
22108
- width: 328px;
22109
- }
22110
- .v-date-picker--show-week {
22111
- width: 368px;
22112
- }.v-date-picker-controls {
22113
- display: flex;
22114
- align-items: center;
22115
- justify-content: space-between;
22116
- font-size: 0.875rem;
22117
- padding-top: 4px;
22118
- padding-bottom: 4px;
22119
- padding-inline-start: 6px;
22120
- padding-inline-end: 12px;
22121
- }
22122
- .v-date-picker-controls > .v-btn:first-child {
22123
- text-transform: none;
22124
- font-weight: 400;
22125
- line-height: initial;
22126
- letter-spacing: initial;
22127
- }
22128
- .v-date-picker-controls--variant-classic {
22129
- padding-inline-start: 12px;
22130
- }
22131
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
22132
- opacity: 0.7;
22133
- }
22134
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
22135
- cursor: pointer;
22136
- }
22137
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
22138
- opacity: 1;
22139
- }
22140
- .v-date-picker-controls .v-btn:last-child {
22141
- margin-inline-start: 4px;
22142
- }
22143
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
22144
- transform: rotate(180deg);
22145
- }
22146
-
22147
- .v-date-picker-controls__date {
22148
- margin-inline-end: 4px;
22149
- }
22150
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
22151
- margin: auto;
22152
- text-align: center;
22153
- }
22154
-
22155
- .v-date-picker-controls__month {
22156
- display: flex;
22157
- }
22158
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
22159
- flex-direction: row-reverse;
22160
- }
22161
-
22162
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
22163
- flex: 1 0 auto;
22164
- }
22165
-
22166
- .v-date-picker__title {
22167
- display: inline-block;
22168
- }.v-date-picker-header {
22169
- align-items: flex-end;
22170
- height: 70px;
22171
- display: grid;
22172
- grid-template-areas: "prepend content append";
22173
- grid-template-columns: min-content minmax(0, 1fr) min-content;
22174
- overflow: hidden;
22175
- padding-inline: 24px 12px;
22176
- padding-bottom: 12px;
22177
- }
22178
-
22179
- .v-date-picker-header__append {
22180
- grid-area: append;
22181
- }
22182
-
22183
- .v-date-picker-header__prepend {
22184
- grid-area: prepend;
22185
- padding-inline-start: 8px;
22186
- }
22187
-
22188
- .v-date-picker-header__content {
22189
- align-items: center;
22190
- display: inline-flex;
22191
- font-size: 32px;
22192
- line-height: 40px;
22193
- grid-area: content;
22194
- justify-content: space-between;
22195
- }
22196
- .v-date-picker-header--clickable .v-date-picker-header__content {
22197
- cursor: pointer;
22198
- }
22199
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
22200
- opacity: 0.7;
22201
- }
22202
-
22203
- .date-picker-header-transition-enter-active,
22204
- .date-picker-header-reverse-transition-enter-active {
22205
- transition-duration: 0.3s;
22206
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22207
- }
22208
- .date-picker-header-transition-leave-active,
22209
- .date-picker-header-reverse-transition-leave-active {
22210
- transition-duration: 0.3s;
22211
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22212
- }
22213
-
22214
- .date-picker-header-transition-enter-from {
22215
- transform: translate(0, 100%);
22216
- }
22217
- .date-picker-header-transition-leave-to {
22218
- opacity: 0;
22219
- transform: translate(0, -100%);
22220
- }
22221
-
22222
- .date-picker-header-reverse-transition-enter-from {
22223
- transform: translate(0, -100%);
22224
- }
22225
- .date-picker-header-reverse-transition-leave-to {
22226
- opacity: 0;
22227
- transform: translate(0, 100%);
22228
- }.v-date-picker-month {
22229
- display: flex;
22230
- justify-content: center;
22231
- padding: 0 12px 8px;
22232
- --v-date-picker-month-day-diff: 4px;
22233
- }
22234
-
22235
- .v-date-picker-month__weeks {
22236
- display: grid;
22237
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
22238
- column-gap: 4px;
22239
- font-size: 0.85rem;
22240
- }
22241
- .v-date-picker-month__weeks + .v-date-picker-month__days {
22242
- grid-row-gap: 0;
22243
- }
22244
-
22245
- .v-date-picker-month__weekday {
22246
- font-size: 0.85rem;
22247
- }
22248
-
22249
- .v-date-picker-month__days {
22250
- display: grid;
22251
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
22252
- column-gap: 4px;
22253
- flex: 1 1;
22254
- justify-content: space-around;
22255
- }
22256
-
22257
- .v-date-picker-month__day {
22258
- align-items: center;
22259
- display: flex;
22260
- justify-content: center;
22261
- position: relative;
22262
- height: 40px;
22263
- width: 40px;
22264
- }
22265
- .v-date-picker-month__day--selected .v-btn {
22266
- background-color: rgb(var(--v-theme-surface-variant));
22267
- color: rgb(var(--v-theme-on-surface-variant));
22268
- }
22269
- .v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
22270
- --v-btn-height: 24px;
22271
- --v-btn-size: 0.85rem;
22272
- }
22273
- .v-date-picker-month__day--week {
22274
- font-size: var(--v-btn-size);
22275
- }
22276
-
22277
- .v-date-picker-month__day--adjacent {
22278
- opacity: 0.5;
22279
- }
22280
-
22281
- .v-date-picker-month__day--hide-adjacent {
22282
- opacity: 0;
22283
- }.v-date-picker-years {
22284
- height: 288px;
22285
- overflow-y: scroll;
22286
- }
22287
-
22288
- .v-date-picker-years__content {
22289
- display: grid;
22290
- flex: 1 1;
22291
- justify-content: space-around;
22292
- grid-template-columns: repeat(3, 1fr);
22293
- gap: 8px 24px;
22294
- padding-inline: 32px;
22295
- }
22296
- .v-date-picker-years__content .v-btn {
22297
- padding-inline: 8px;
22298
- }.v-date-picker-months {
22299
- height: 288px;
22300
- }
22301
-
22302
- .v-date-picker-months__content {
22303
- align-items: center;
22304
- display: grid;
22305
- flex: 1 1;
22306
- height: inherit;
22307
- justify-content: space-around;
22308
- grid-template-columns: repeat(2, 1fr);
22309
- grid-gap: 0px 24px;
22310
- padding-inline-start: 36px;
22311
- padding-inline-end: 36px;
22312
- }
22313
- .v-date-picker-months__content .v-btn {
22314
- text-transform: none;
22315
- padding-inline-start: 8px;
22316
- padding-inline-end: 8px;
22317
- }.v-empty-state {
22318
- align-items: center;
22319
- display: flex;
22320
- flex-direction: column;
22321
- justify-content: center;
22322
- min-height: 100%;
22323
- padding: 16px;
22324
- }
22325
- .v-empty-state--start {
22326
- align-items: flex-start;
21982
+ .v-empty-state--start {
21983
+ align-items: flex-start;
22327
21984
  }
22328
21985
  .v-empty-state--center {
22329
21986
  align-items: center;
@@ -22381,75 +22038,224 @@ html.overflow-y-hidden {
22381
22038
  .v-empty-state__action-btn.v-btn {
22382
22039
  background-color: initial;
22383
22040
  color: initial;
22384
- }.v-fab {
22385
- align-items: center;
22386
- display: inline-flex;
22387
- flex: 1 1 auto;
22388
- pointer-events: none;
22389
- position: relative;
22390
- transition-duration: 0.2s;
22391
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22392
- vertical-align: middle;
22041
+ }.v-data-table {
22042
+ width: 100%;
22393
22043
  }
22394
- .v-fab .v-btn {
22395
- pointer-events: auto;
22044
+
22045
+ .v-data-table__table {
22046
+ width: 100%;
22047
+ border-collapse: separate;
22048
+ border-spacing: 0;
22396
22049
  }
22397
- .v-fab .v-btn--variant-elevated {
22398
- box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22050
+
22051
+ .v-data-table__tr--focus {
22052
+ border: 1px dotted black;
22399
22053
  }
22400
- .v-fab--app, .v-fab--absolute {
22401
- display: flex;
22054
+ .v-data-table__tr--clickable {
22055
+ cursor: pointer;
22402
22056
  }
22403
- .v-fab--start, .v-fab--left {
22404
- justify-content: flex-start;
22057
+
22058
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
22059
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
22060
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
22061
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
22062
+ text-align: end;
22405
22063
  }
22406
- .v-fab--center {
22407
- align-items: center;
22064
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
22065
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
22066
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
22067
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
22068
+ flex-direction: row-reverse;
22069
+ }
22070
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
22071
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
22072
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
22073
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
22074
+ text-align: center;
22075
+ }
22076
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
22077
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
22078
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
22079
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
22408
22080
  justify-content: center;
22409
22081
  }
22410
- .v-fab--end, .v-fab--right {
22411
- justify-content: flex-end;
22082
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
22083
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
22084
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
22085
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
22086
+ padding: 0 8px;
22412
22087
  }
22413
- .v-fab--bottom {
22414
- align-items: flex-end;
22088
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
22089
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
22090
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
22091
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
22092
+ text-overflow: ellipsis;
22093
+ text-wrap: nowrap;
22094
+ overflow: hidden;
22415
22095
  }
22416
- .v-fab--top {
22417
- align-items: flex-start;
22096
+ .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
22097
+ .v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
22098
+ .v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
22099
+ .v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
22100
+ display: contents;
22418
22101
  }
22419
- .v-fab--extended .v-btn {
22420
- border-radius: 9999px !important;
22102
+ .v-data-table .v-table__wrapper > table > thead > tr > th,
22103
+ .v-data-table .v-table__wrapper > table tbody > tr > th {
22104
+ align-items: center;
22105
+ }
22106
+ .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--fixed,
22107
+ .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--fixed {
22108
+ position: sticky;
22109
+ }
22110
+ .v-data-table .v-table__wrapper > table > thead > tr > th.v-data-table__th--sortable:hover,
22111
+ .v-data-table .v-table__wrapper > table tbody > tr > th.v-data-table__th--sortable:hover {
22112
+ cursor: pointer;
22113
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22114
+ }
22115
+ .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon,
22116
+ .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted) .v-data-table-header__sort-icon {
22117
+ opacity: 0;
22118
+ }
22119
+ .v-data-table .v-table__wrapper > table > thead > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon,
22120
+ .v-data-table .v-table__wrapper > table tbody > tr > th:not(.v-data-table__th--sorted):hover .v-data-table-header__sort-icon {
22121
+ opacity: 0.5;
22122
+ }
22123
+ .v-data-table .v-table__wrapper > table > thead > tr.v-data-table__tr--mobile > td,
22124
+ .v-data-table .v-table__wrapper > table tbody > tr.v-data-table__tr--mobile > td {
22125
+ height: -moz-fit-content;
22126
+ height: fit-content;
22421
22127
  }
22422
22128
 
22423
- .v-fab__container {
22424
- align-self: center;
22129
+ .v-data-table-column--fixed,
22130
+ .v-data-table__th--sticky {
22131
+ background: rgb(var(--v-theme-surface));
22132
+ position: sticky !important;
22133
+ left: 0;
22134
+ z-index: 1;
22135
+ }
22136
+
22137
+ .v-data-table-column--last-fixed {
22138
+ border-right: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
22139
+ }
22140
+
22141
+ .v-data-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th.v-data-table-column--fixed {
22142
+ z-index: 2;
22143
+ }
22144
+
22145
+ .v-data-table-group-header-row td {
22146
+ background: rgba(var(--v-theme-surface));
22147
+ color: rgba(var(--v-theme-on-surface));
22148
+ }
22149
+ .v-data-table-group-header-row td > span {
22150
+ padding-left: 5px;
22151
+ }
22152
+
22153
+ .v-data-table--loading .v-data-table__td {
22154
+ opacity: var(--v-disabled-opacity);
22155
+ }
22156
+
22157
+ .v-data-table-group-header-row__column {
22158
+ padding-left: calc(var(--v-data-table-group-header-row-depth) * 16px) !important;
22159
+ }
22160
+
22161
+ .v-data-table-header__content {
22162
+ display: flex;
22163
+ align-items: center;
22164
+ }
22165
+
22166
+ .v-data-table-header__sort-badge {
22425
22167
  display: inline-flex;
22426
- position: absolute;
22427
- vertical-align: middle;
22168
+ justify-content: center;
22169
+ align-items: center;
22170
+ font-size: 0.875rem;
22171
+ padding: 4px;
22172
+ border-radius: 50%;
22173
+ background: rgba(var(--v-border-color), var(--v-border-opacity));
22174
+ min-width: 20px;
22175
+ min-height: 20px;
22176
+ width: 20px;
22177
+ height: 20px;
22428
22178
  }
22429
- .v-fab--app .v-fab__container {
22430
- margin: 12px;
22179
+
22180
+ .v-data-table-progress > th {
22181
+ border: none !important;
22182
+ height: auto !important;
22183
+ padding: 0 !important;
22431
22184
  }
22432
- .v-fab--absolute .v-fab__container {
22433
- position: absolute;
22434
- z-index: 4;
22185
+
22186
+ .v-data-table-progress__loader {
22187
+ position: relative;
22435
22188
  }
22436
- .v-fab--offset.v-fab--top .v-fab__container {
22437
- transform: translateY(-50%);
22189
+
22190
+ .v-data-table-rows-loading,
22191
+ .v-data-table-rows-no-data {
22192
+ text-align: center;
22438
22193
  }
22439
- .v-fab--offset.v-fab--bottom .v-fab__container {
22440
- transform: translateY(50%);
22194
+
22195
+ .v-data-table__tr--mobile > .v-data-table__td--expanded-row {
22196
+ grid-template-columns: 0;
22197
+ justify-content: center;
22441
22198
  }
22442
- .v-fab--top .v-fab__container {
22443
- top: 0;
22199
+ .v-data-table__tr--mobile > .v-data-table__td--select-row {
22200
+ grid-template-columns: 0;
22201
+ justify-content: end;
22444
22202
  }
22445
- .v-fab--bottom .v-fab__container {
22446
- bottom: 0;
22203
+ .v-data-table__tr--mobile > td {
22204
+ align-items: center;
22205
+ column-gap: 4px;
22206
+ display: grid;
22207
+ grid-template-columns: repeat(2, 1fr);
22208
+ min-height: var(--v-table-row-height);
22447
22209
  }
22448
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
22449
- left: 0;
22210
+ .v-data-table__tr--mobile > td:not(:last-child) {
22211
+ border-bottom: 0 !important;
22450
22212
  }
22451
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
22452
- right: 0;
22213
+
22214
+ .v-data-table__td-title {
22215
+ font-weight: 500;
22216
+ text-align: left;
22217
+ }
22218
+
22219
+ .v-data-table__td-value {
22220
+ text-align: right;
22221
+ }
22222
+
22223
+ .v-data-table__td-sort-icon {
22224
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
22225
+ }
22226
+ .v-data-table__td-sort-icon-active {
22227
+ color: rgba(var(--v-theme-on-surface));
22228
+ }.v-data-table-footer {
22229
+ align-items: center;
22230
+ display: flex;
22231
+ flex-wrap: wrap;
22232
+ justify-content: flex-end;
22233
+ padding: 8px 4px;
22234
+ }
22235
+ .v-data-table-footer__items-per-page {
22236
+ align-items: center;
22237
+ display: flex;
22238
+ justify-content: center;
22239
+ }
22240
+ .v-data-table-footer__items-per-page > span {
22241
+ padding-inline-end: 8px;
22242
+ }
22243
+ .v-data-table-footer__items-per-page > .v-select {
22244
+ width: 90px;
22245
+ }
22246
+ .v-data-table-footer__info {
22247
+ display: flex;
22248
+ justify-content: flex-end;
22249
+ min-width: 116px;
22250
+ padding: 0 16px;
22251
+ }
22252
+ .v-data-table-footer__paginationz {
22253
+ align-items: center;
22254
+ display: flex;
22255
+ margin-inline-start: 16px;
22256
+ }
22257
+ .v-data-table-footer__page {
22258
+ padding: 0 8px;
22453
22259
  }.v-footer {
22454
22260
  align-items: center;
22455
22261
  display: flex;
@@ -22486,251 +22292,75 @@ html.overflow-y-hidden {
22486
22292
  }
22487
22293
  .v-footer--rounded {
22488
22294
  border-radius: 4px;
22489
- }.v-expansion-panel {
22490
- background-color: rgb(var(--v-theme-surface));
22491
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22295
+ }.v-fab {
22296
+ align-items: center;
22297
+ display: inline-flex;
22298
+ flex: 1 1 auto;
22299
+ pointer-events: none;
22300
+ position: relative;
22301
+ transition-duration: 0.2s;
22302
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22303
+ vertical-align: middle;
22492
22304
  }
22493
- .v-expansion-panel:not(:first-child)::after {
22494
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22305
+ .v-fab .v-btn {
22306
+ pointer-events: auto;
22495
22307
  }
22496
- .v-expansion-panel--disabled .v-expansion-panel-title {
22497
- color: rgba(var(--v-theme-on-surface), 0.26);
22498
- }
22499
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
22500
- opacity: 0.4615384615;
22308
+ .v-fab .v-btn--variant-elevated {
22309
+ box-shadow: 0px 3px 3px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 3px 4px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 8px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22501
22310
  }
22502
-
22503
- .v-expansion-panels {
22311
+ .v-fab--app, .v-fab--absolute {
22504
22312
  display: flex;
22505
- flex-wrap: wrap;
22506
- justify-content: center;
22507
- list-style-type: none;
22508
- padding: 0;
22509
- width: 100%;
22510
- position: relative;
22511
- z-index: 1;
22512
22313
  }
22513
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22514
- border-bottom-left-radius: 0 !important;
22515
- border-bottom-right-radius: 0 !important;
22516
- }
22517
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22518
- border-top-left-radius: 0 !important;
22519
- border-top-right-radius: 0 !important;
22520
- }
22521
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22522
- border-bottom-left-radius: 0 !important;
22523
- border-bottom-right-radius: 0 !important;
22524
- }
22525
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22526
- border-top-left-radius: 0 !important;
22527
- border-top-right-radius: 0 !important;
22314
+ .v-fab--start, .v-fab--left {
22315
+ justify-content: flex-start;
22528
22316
  }
22529
- .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
22530
- border-bottom-left-radius: 0 !important;
22531
- border-bottom-right-radius: 0 !important;
22317
+ .v-fab--center {
22318
+ align-items: center;
22319
+ justify-content: center;
22532
22320
  }
22533
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
22534
- border-top-left-radius: 0 !important;
22535
- border-top-right-radius: 0 !important;
22321
+ .v-fab--end, .v-fab--right {
22322
+ justify-content: flex-end;
22536
22323
  }
22537
- .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
22538
- border-bottom-left-radius: initial;
22539
- border-bottom-right-radius: initial;
22324
+ .v-fab--bottom {
22325
+ align-items: flex-end;
22540
22326
  }
22541
- .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
22542
- border-radius: 0 !important;
22327
+ .v-fab--top {
22328
+ align-items: flex-start;
22543
22329
  }
22544
- .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
22545
- transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
22330
+ .v-fab--extended .v-btn {
22331
+ border-radius: 9999px !important;
22546
22332
  }
22547
22333
 
22548
- .v-expansion-panel {
22549
- flex: 1 0 100%;
22550
- max-width: 100%;
22551
- position: relative;
22552
- transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
22553
- transition-property: margin-top, border-radius, border, max-width;
22554
- border-radius: 4px;
22555
- }
22556
- .v-expansion-panel:not(:first-child)::after {
22557
- border-top-style: solid;
22558
- border-top-width: thin;
22559
- content: "";
22560
- left: 0;
22334
+ .v-fab__container {
22335
+ align-self: center;
22336
+ display: inline-flex;
22561
22337
  position: absolute;
22562
- right: 0;
22563
- top: 0;
22564
- transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
22565
- }
22566
- .v-expansion-panel--disabled .v-expansion-panel-title {
22567
- pointer-events: none;
22568
- }
22569
- .v-expansion-panel--active:not(:first-child),
22570
- .v-expansion-panel--active + .v-expansion-panel {
22571
- margin-top: 16px;
22572
- }
22573
- .v-expansion-panel--active:not(:first-child)::after,
22574
- .v-expansion-panel--active + .v-expansion-panel::after {
22575
- opacity: 0;
22576
- }
22577
- .v-expansion-panel--active > .v-expansion-panel-title {
22578
- border-bottom-left-radius: 0;
22579
- border-bottom-right-radius: 0;
22580
- }
22581
- .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
22582
- min-height: 64px;
22338
+ vertical-align: middle;
22583
22339
  }
22584
-
22585
- .v-expansion-panel__shadow {
22586
- border-radius: inherit;
22587
- z-index: -1;
22340
+ .v-fab--app .v-fab__container {
22341
+ margin: 12px;
22588
22342
  }
22589
- .v-expansion-panel__shadow {
22343
+ .v-fab--absolute .v-fab__container {
22590
22344
  position: absolute;
22591
- top: 0;
22592
- left: 0;
22593
- width: 100%;
22594
- height: 100%;
22595
- }
22596
- .v-expansion-panel__shadow {
22597
- 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));
22598
- }
22599
-
22600
- .v-expansion-panel-title {
22601
- align-items: center;
22602
- text-align: start;
22603
- border-radius: inherit;
22604
- display: flex;
22605
- font-size: 0.9375rem;
22606
- line-height: 1;
22607
- min-height: 48px;
22608
- outline: none;
22609
- padding: 16px 24px;
22610
- position: relative;
22611
- transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
22612
- width: 100%;
22613
- justify-content: space-between;
22614
- }
22615
- .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
22616
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22617
- }
22618
- .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
22619
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22620
- }
22621
- @supports not selector(:focus-visible) {
22622
- .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
22623
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22624
- }
22625
- }
22626
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
22627
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
22628
- }
22629
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
22630
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
22631
- }
22632
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
22633
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22345
+ z-index: 4;
22634
22346
  }
22635
- @supports not selector(:focus-visible) {
22636
- .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
22637
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
22638
- }
22347
+ .v-fab--offset.v-fab--top .v-fab__container {
22348
+ transform: translateY(-50%);
22639
22349
  }
22640
-
22641
- .v-expansion-panel-title__overlay {
22642
- background-color: currentColor;
22643
- border-radius: inherit;
22644
- opacity: 0;
22350
+ .v-fab--offset.v-fab--bottom .v-fab__container {
22351
+ transform: translateY(50%);
22645
22352
  }
22646
- .v-expansion-panel-title__overlay {
22647
- position: absolute;
22353
+ .v-fab--top .v-fab__container {
22648
22354
  top: 0;
22649
- left: 0;
22650
- width: 100%;
22651
- height: 100%;
22652
- }
22653
-
22654
- .v-expansion-panel-title__icon {
22655
- display: inline-flex;
22656
- margin-bottom: -4px;
22657
- margin-top: -4px;
22658
- -webkit-user-select: none;
22659
- user-select: none;
22660
- margin-inline-start: auto;
22661
- }
22662
-
22663
- .v-expansion-panel-text {
22664
- display: flex;
22665
- }
22666
- .v-expansion-panel-text__wrapper {
22667
- padding: 8px 24px 16px;
22668
- flex: 1 1 auto;
22669
- max-width: 100%;
22670
- }
22671
-
22672
- .v-expansion-panels--variant-accordion > .v-expansion-panel {
22673
- margin-top: 0;
22674
- }
22675
- .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
22676
- opacity: 1;
22677
- }
22678
-
22679
- .v-expansion-panels--variant-popout > .v-expansion-panel {
22680
- max-width: calc(100% - 32px);
22681
- }
22682
- .v-expansion-panels--variant-popout > .v-expansion-panel--active {
22683
- max-width: calc(100% + 16px);
22684
- }
22685
-
22686
- .v-expansion-panels--variant-inset > .v-expansion-panel {
22687
- max-width: 100%;
22688
- }
22689
- .v-expansion-panels--variant-inset > .v-expansion-panel--active {
22690
- max-width: calc(100% - 32px);
22691
- }
22692
-
22693
- .v-expansion-panels--flat > .v-expansion-panel::after {
22694
- border-top: none;
22695
- }
22696
- .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
22697
- display: none;
22698
- }
22699
-
22700
- .v-expansion-panels--tile {
22701
- border-radius: 0;
22702
- }
22703
- .v-expansion-panels--tile > .v-expansion-panel {
22704
- border-radius: 0;
22705
- }.v-file-input--hide.v-input .v-field,
22706
- .v-file-input--hide.v-input .v-input__control,
22707
- .v-file-input--hide.v-input .v-input__details {
22708
- display: none;
22709
- }
22710
- .v-file-input--hide.v-input .v-input__prepend {
22711
- grid-area: control;
22712
- margin: 0 auto;
22713
22355
  }
22714
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
22715
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
22716
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
22717
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
22718
- top: 0px;
22356
+ .v-fab--bottom .v-fab__container {
22357
+ bottom: 0;
22719
22358
  }
22720
- .v-file-input input[type=file] {
22721
- height: 100%;
22359
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
22722
22360
  left: 0;
22723
- opacity: 0;
22724
- position: absolute;
22725
- top: 0;
22726
- width: 100%;
22727
- z-index: 1;
22728
- }
22729
- .v-file-input .v-input__details {
22730
- padding-inline: 16px;
22731
22361
  }
22732
- .v-input--plain-underlined.v-file-input .v-input__details {
22733
- padding-inline: 0;
22362
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
22363
+ right: 0;
22734
22364
  }/* region INPUT */
22735
22365
  .v-field {
22736
22366
  display: grid;
@@ -23314,57 +22944,303 @@ textarea.v-field__input::placeholder {
23314
22944
  opacity: 0;
23315
22945
  }
23316
22946
 
23317
- /* endregion */.v-img {
23318
- --v-theme-overlay-multiplier: 3;
23319
- z-index: 0;
22947
+ /* endregion */.v-expansion-panel {
22948
+ background-color: rgb(var(--v-theme-surface));
22949
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23320
22950
  }
23321
- .v-img.v-img--absolute {
23322
- height: 100%;
23323
- left: 0;
23324
- overflow: hidden;
22951
+ .v-expansion-panel:not(:first-child)::after {
22952
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22953
+ }
22954
+ .v-expansion-panel--disabled .v-expansion-panel-title {
22955
+ color: rgba(var(--v-theme-on-surface), 0.26);
22956
+ }
22957
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
22958
+ opacity: 0.4615384615;
22959
+ }
22960
+
22961
+ .v-expansion-panels {
22962
+ display: flex;
22963
+ flex-wrap: wrap;
22964
+ justify-content: center;
22965
+ list-style-type: none;
22966
+ padding: 0;
22967
+ width: 100%;
22968
+ position: relative;
22969
+ z-index: 1;
22970
+ }
22971
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22972
+ border-bottom-left-radius: 0 !important;
22973
+ border-bottom-right-radius: 0 !important;
22974
+ }
22975
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22976
+ border-top-left-radius: 0 !important;
22977
+ border-top-right-radius: 0 !important;
22978
+ }
22979
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
22980
+ border-bottom-left-radius: 0 !important;
22981
+ border-bottom-right-radius: 0 !important;
22982
+ }
22983
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
22984
+ border-top-left-radius: 0 !important;
22985
+ border-top-right-radius: 0 !important;
22986
+ }
22987
+ .v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
22988
+ border-bottom-left-radius: 0 !important;
22989
+ border-bottom-right-radius: 0 !important;
22990
+ }
22991
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
22992
+ border-top-left-radius: 0 !important;
22993
+ border-top-right-radius: 0 !important;
22994
+ }
22995
+ .v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
22996
+ border-bottom-left-radius: initial;
22997
+ border-bottom-right-radius: initial;
22998
+ }
22999
+ .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
23000
+ border-radius: 0 !important;
23001
+ }
23002
+ .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
23003
+ transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
23004
+ }
23005
+
23006
+ .v-expansion-panel {
23007
+ flex: 1 0 100%;
23008
+ max-width: 100%;
23009
+ position: relative;
23010
+ transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
23011
+ transition-property: margin-top, border-radius, border, max-width;
23012
+ border-radius: 4px;
23013
+ }
23014
+ .v-expansion-panel:not(:first-child)::after {
23015
+ border-top-style: solid;
23016
+ border-top-width: thin;
23017
+ content: "";
23018
+ left: 0;
23325
23019
  position: absolute;
23020
+ right: 0;
23326
23021
  top: 0;
23327
- width: 100%;
23022
+ transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
23023
+ }
23024
+ .v-expansion-panel--disabled .v-expansion-panel-title {
23025
+ pointer-events: none;
23026
+ }
23027
+ .v-expansion-panel--active:not(:first-child),
23028
+ .v-expansion-panel--active + .v-expansion-panel {
23029
+ margin-top: 16px;
23030
+ }
23031
+ .v-expansion-panel--active:not(:first-child)::after,
23032
+ .v-expansion-panel--active + .v-expansion-panel::after {
23033
+ opacity: 0;
23034
+ }
23035
+ .v-expansion-panel--active > .v-expansion-panel-title {
23036
+ border-bottom-left-radius: 0;
23037
+ border-bottom-right-radius: 0;
23038
+ }
23039
+ .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
23040
+ min-height: 64px;
23041
+ }
23042
+
23043
+ .v-expansion-panel__shadow {
23044
+ border-radius: inherit;
23328
23045
  z-index: -1;
23329
23046
  }
23330
- .v-img--booting .v-responsive__sizer {
23331
- transition: none;
23047
+ .v-expansion-panel__shadow {
23048
+ position: absolute;
23049
+ top: 0;
23050
+ left: 0;
23051
+ width: 100%;
23052
+ height: 100%;
23053
+ }
23054
+ .v-expansion-panel__shadow {
23055
+ 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));
23056
+ }
23057
+
23058
+ .v-expansion-panel-title {
23059
+ align-items: center;
23060
+ text-align: start;
23061
+ border-radius: inherit;
23062
+ display: flex;
23063
+ font-size: 0.9375rem;
23064
+ line-height: 1;
23065
+ min-height: 48px;
23066
+ outline: none;
23067
+ padding: 16px 24px;
23068
+ position: relative;
23069
+ transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
23070
+ width: 100%;
23071
+ justify-content: space-between;
23072
+ }
23073
+ .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
23074
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23075
+ }
23076
+ .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
23077
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23078
+ }
23079
+ @supports not selector(:focus-visible) {
23080
+ .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
23081
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23082
+ }
23083
+ }
23084
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
23085
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
23086
+ }
23087
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
23088
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
23089
+ }
23090
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
23091
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
23092
+ }
23093
+ @supports not selector(:focus-visible) {
23094
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
23095
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
23096
+ }
23097
+ }
23098
+
23099
+ .v-expansion-panel-title__overlay {
23100
+ background-color: currentColor;
23101
+ border-radius: inherit;
23102
+ opacity: 0;
23103
+ }
23104
+ .v-expansion-panel-title__overlay {
23105
+ position: absolute;
23106
+ top: 0;
23107
+ left: 0;
23108
+ width: 100%;
23109
+ height: 100%;
23110
+ }
23111
+
23112
+ .v-expansion-panel-title__icon {
23113
+ display: inline-flex;
23114
+ margin-bottom: -4px;
23115
+ margin-top: -4px;
23116
+ -webkit-user-select: none;
23117
+ user-select: none;
23118
+ margin-inline-start: auto;
23119
+ }
23120
+
23121
+ .v-expansion-panel-text {
23122
+ display: flex;
23123
+ }
23124
+ .v-expansion-panel-text__wrapper {
23125
+ padding: 8px 24px 16px;
23126
+ flex: 1 1 auto;
23127
+ max-width: 100%;
23128
+ }
23129
+
23130
+ .v-expansion-panels--variant-accordion > .v-expansion-panel {
23131
+ margin-top: 0;
23132
+ }
23133
+ .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
23134
+ opacity: 1;
23135
+ }
23136
+
23137
+ .v-expansion-panels--variant-popout > .v-expansion-panel {
23138
+ max-width: calc(100% - 32px);
23139
+ }
23140
+ .v-expansion-panels--variant-popout > .v-expansion-panel--active {
23141
+ max-width: calc(100% + 16px);
23142
+ }
23143
+
23144
+ .v-expansion-panels--variant-inset > .v-expansion-panel {
23145
+ max-width: 100%;
23146
+ }
23147
+ .v-expansion-panels--variant-inset > .v-expansion-panel--active {
23148
+ max-width: calc(100% - 32px);
23149
+ }
23150
+
23151
+ .v-expansion-panels--flat > .v-expansion-panel::after {
23152
+ border-top: none;
23153
+ }
23154
+ .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
23155
+ display: none;
23156
+ }
23157
+
23158
+ .v-expansion-panels--tile {
23159
+ border-radius: 0;
23160
+ }
23161
+ .v-expansion-panels--tile > .v-expansion-panel {
23162
+ border-radius: 0;
23163
+ }.v-divider {
23164
+ display: block;
23165
+ flex: 1 1 100%;
23166
+ height: 0px;
23167
+ max-height: 0px;
23168
+ opacity: var(--v-border-opacity);
23169
+ transition: inherit;
23170
+ }
23171
+ .v-divider {
23172
+ border-style: solid;
23173
+ border-width: thin 0 0 0;
23174
+ }
23175
+ .v-divider--vertical {
23176
+ align-self: stretch;
23177
+ border-width: 0 thin 0 0;
23178
+ display: inline-flex;
23179
+ height: auto;
23180
+ margin-left: -1px;
23181
+ max-height: 100%;
23182
+ max-width: 0px;
23183
+ vertical-align: text-bottom;
23184
+ width: 0px;
23185
+ }
23186
+ .v-divider--inset:not(.v-divider--vertical) {
23187
+ max-width: calc(100% - 72px);
23188
+ margin-inline-start: 72px;
23189
+ }
23190
+ .v-divider--inset.v-divider--vertical {
23191
+ margin-bottom: 8px;
23192
+ margin-top: 8px;
23193
+ max-height: calc(100% - 16px);
23194
+ }
23195
+
23196
+ .v-divider__content {
23197
+ padding: 0 16px;
23198
+ text-wrap: nowrap;
23199
+ }
23200
+ .v-divider__wrapper--vertical .v-divider__content {
23201
+ padding: 4px 0;
23202
+ }
23203
+
23204
+ .v-divider__wrapper {
23205
+ display: flex;
23206
+ align-items: center;
23207
+ justify-content: center;
23208
+ }
23209
+ .v-divider__wrapper--vertical {
23210
+ flex-direction: column;
23211
+ height: 100%;
23212
+ }
23213
+ .v-divider__wrapper--vertical .v-divider {
23214
+ margin: 0 auto;
23215
+ }.v-file-input--hide.v-input .v-field,
23216
+ .v-file-input--hide.v-input .v-input__control,
23217
+ .v-file-input--hide.v-input .v-input__details {
23218
+ display: none;
23332
23219
  }
23333
- .v-img--rounded {
23334
- border-radius: 4px;
23220
+ .v-file-input--hide.v-input .v-input__prepend {
23221
+ grid-area: control;
23222
+ margin: 0 auto;
23335
23223
  }
23336
-
23337
- .v-img__img,
23338
- .v-img__picture,
23339
- .v-img__gradient,
23340
- .v-img__placeholder,
23341
- .v-img__error {
23342
- z-index: -1;
23224
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
23225
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
23226
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
23227
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
23228
+ top: 0px;
23343
23229
  }
23344
- .v-img__img,
23345
- .v-img__picture,
23346
- .v-img__gradient,
23347
- .v-img__placeholder,
23348
- .v-img__error {
23230
+ .v-file-input input[type=file] {
23231
+ height: 100%;
23232
+ left: 0;
23233
+ opacity: 0;
23349
23234
  position: absolute;
23350
23235
  top: 0;
23351
- left: 0;
23352
23236
  width: 100%;
23353
- height: 100%;
23354
- }
23355
-
23356
- .v-img__img--preload {
23357
- filter: blur(4px);
23358
- }
23359
- .v-img__img--contain {
23360
- object-fit: contain;
23237
+ z-index: 1;
23361
23238
  }
23362
- .v-img__img--cover {
23363
- object-fit: cover;
23239
+ .v-file-input .v-input__details {
23240
+ padding-inline: 16px;
23364
23241
  }
23365
-
23366
- .v-img__gradient {
23367
- background-repeat: no-repeat;
23242
+ .v-input--plain-underlined.v-file-input .v-input__details {
23243
+ padding-inline: 0;
23368
23244
  }.v-icon {
23369
23245
  --v-icon-size-multiplier: 1;
23370
23246
  align-items: center;
@@ -23519,89 +23395,299 @@ textarea.v-field__input::placeholder {
23519
23395
  align-items: flex-start;
23520
23396
  padding-top: var(--v-input-padding-top);
23521
23397
  }
23522
- .v-input--center-affix .v-input__prepend,
23523
- .v-input--center-affix .v-input__append {
23524
- align-items: center;
23525
- padding-top: 0;
23398
+ .v-input--center-affix .v-input__prepend,
23399
+ .v-input--center-affix .v-input__append {
23400
+ align-items: center;
23401
+ padding-top: 0;
23402
+ }
23403
+
23404
+ .v-input__prepend {
23405
+ grid-area: prepend;
23406
+ }
23407
+
23408
+ .v-input__append {
23409
+ grid-area: append;
23410
+ }
23411
+
23412
+ .v-input__control {
23413
+ display: flex;
23414
+ grid-area: control;
23415
+ }
23416
+
23417
+ .v-input--hide-spin-buttons input::-webkit-outer-spin-button,
23418
+ .v-input--hide-spin-buttons input::-webkit-inner-spin-button {
23419
+ -webkit-appearance: none;
23420
+ margin: 0;
23421
+ }
23422
+ .v-input--hide-spin-buttons input[type=number] {
23423
+ -moz-appearance: textfield;
23424
+ }
23425
+ .v-input--plain-underlined .v-input__prepend,
23426
+ .v-input--plain-underlined .v-input__append {
23427
+ align-items: flex-start;
23428
+ }
23429
+ .v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
23430
+ padding-top: calc(var(--v-input-padding-top) + 4px);
23431
+ }
23432
+
23433
+ .v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
23434
+ padding-top: calc(var(--v-input-padding-top) + 2px);
23435
+ }
23436
+
23437
+ .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
23438
+ padding-top: calc(var(--v-input-padding-top) + 0px);
23439
+ }.v-label {
23440
+ align-items: center;
23441
+ color: inherit;
23442
+ display: inline-flex;
23443
+ font-size: 1rem;
23444
+ letter-spacing: 0.009375em;
23445
+ min-width: 0;
23446
+ opacity: var(--v-medium-emphasis-opacity);
23447
+ overflow: hidden;
23448
+ text-overflow: ellipsis;
23449
+ white-space: nowrap;
23450
+ }
23451
+
23452
+ .v-label--clickable {
23453
+ cursor: pointer;
23454
+ }.v-img {
23455
+ --v-theme-overlay-multiplier: 3;
23456
+ z-index: 0;
23457
+ }
23458
+ .v-img.v-img--absolute {
23459
+ height: 100%;
23460
+ left: 0;
23461
+ overflow: hidden;
23462
+ position: absolute;
23463
+ top: 0;
23464
+ width: 100%;
23465
+ z-index: -1;
23466
+ }
23467
+ .v-img--booting .v-responsive__sizer {
23468
+ transition: none;
23469
+ }
23470
+ .v-img--rounded {
23471
+ border-radius: 4px;
23472
+ }
23473
+
23474
+ .v-img__img,
23475
+ .v-img__picture,
23476
+ .v-img__gradient,
23477
+ .v-img__placeholder,
23478
+ .v-img__error {
23479
+ z-index: -1;
23480
+ }
23481
+ .v-img__img,
23482
+ .v-img__picture,
23483
+ .v-img__gradient,
23484
+ .v-img__placeholder,
23485
+ .v-img__error {
23486
+ position: absolute;
23487
+ top: 0;
23488
+ left: 0;
23489
+ width: 100%;
23490
+ height: 100%;
23491
+ }
23492
+
23493
+ .v-img__img--preload {
23494
+ filter: blur(4px);
23495
+ }
23496
+ .v-img__img--contain {
23497
+ object-fit: contain;
23498
+ }
23499
+ .v-img__img--cover {
23500
+ object-fit: cover;
23501
+ }
23502
+
23503
+ .v-img__gradient {
23504
+ background-repeat: no-repeat;
23505
+ }.v-infinite-scroll--horizontal {
23506
+ display: flex;
23507
+ flex-direction: row;
23508
+ overflow-x: auto;
23509
+ }
23510
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
23511
+ height: 100%;
23512
+ width: var(--v-infinite-margin-size, 1px);
23513
+ }
23514
+
23515
+ .v-infinite-scroll--vertical {
23516
+ display: flex;
23517
+ flex-direction: column;
23518
+ overflow-y: auto;
23519
+ }
23520
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
23521
+ height: 1px;
23522
+ width: 100%;
23523
+ }
23524
+
23525
+ .v-infinite-scroll-intersect {
23526
+ pointer-events: none;
23527
+ margin-top: var(--v-infinite-margin);
23528
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
23529
+ }
23530
+ .v-infinite-scroll-intersect:nth-child(2) {
23531
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
23532
+ }
23533
+ .v-infinite-scroll-intersect:nth-last-child(2) {
23534
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
23535
+ }
23536
+
23537
+ .v-infinite-scroll__side {
23538
+ align-items: center;
23539
+ display: flex;
23540
+ justify-content: center;
23541
+ padding: 8px;
23542
+ }.v-item-group {
23543
+ flex: 0 1 auto;
23544
+ max-width: 100%;
23545
+ position: relative;
23546
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23547
+ }.v-menu > .v-overlay__content {
23548
+ display: flex;
23549
+ flex-direction: column;
23550
+ }
23551
+ .v-menu > .v-overlay__content {
23552
+ border-radius: 4px;
23553
+ }
23554
+ .v-menu > .v-overlay__content > .v-card,
23555
+ .v-menu > .v-overlay__content > .v-sheet,
23556
+ .v-menu > .v-overlay__content > .v-list {
23557
+ background: rgb(var(--v-theme-surface));
23558
+ border-radius: inherit;
23559
+ overflow: auto;
23560
+ height: 100%;
23561
+ }
23562
+ .v-menu > .v-overlay__content > .v-card,
23563
+ .v-menu > .v-overlay__content > .v-sheet,
23564
+ .v-menu > .v-overlay__content > .v-list {
23565
+ 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));
23566
+ }.v-locale-provider {
23567
+ display: contents;
23568
+ }.v-layout {
23569
+ --v-scrollbar-offset: 0px;
23570
+ display: flex;
23571
+ flex: 1 1 auto;
23572
+ }
23573
+ .v-layout--full-height {
23574
+ --v-scrollbar-offset: inherit;
23575
+ height: 100%;
23576
+ }.v-layout-item {
23577
+ position: absolute;
23578
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23579
+ }
23580
+
23581
+ .v-layout-item--absolute {
23582
+ position: absolute;
23583
+ }.v-navigation-drawer {
23584
+ -webkit-overflow-scrolling: touch;
23585
+ background: rgb(var(--v-theme-surface));
23586
+ display: flex;
23587
+ flex-direction: column;
23588
+ height: 100%;
23589
+ max-width: 100%;
23590
+ pointer-events: auto;
23591
+ transition-duration: 0.2s;
23592
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
23593
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23594
+ position: absolute;
23595
+ }
23596
+ .v-navigation-drawer {
23597
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
23598
+ border-style: solid;
23599
+ border-width: 0;
23600
+ }
23601
+ .v-navigation-drawer--border {
23602
+ border-width: thin;
23603
+ box-shadow: none;
23604
+ }
23605
+ .v-navigation-drawer {
23606
+ 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));
23526
23607
  }
23527
-
23528
- .v-input__prepend {
23529
- grid-area: prepend;
23608
+ .v-navigation-drawer {
23609
+ background: rgb(var(--v-theme-surface));
23610
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
23530
23611
  }
23531
-
23532
- .v-input__append {
23533
- grid-area: append;
23612
+ .v-navigation-drawer--rounded {
23613
+ border-radius: 4px;
23534
23614
  }
23535
-
23536
- .v-input__control {
23537
- display: flex;
23538
- grid-area: control;
23615
+ .v-navigation-drawer--top, .v-navigation-drawer--bottom {
23616
+ max-height: -webkit-fill-available;
23617
+ overflow-y: auto;
23539
23618
  }
23540
-
23541
- .v-input--hide-spin-buttons input::-webkit-outer-spin-button,
23542
- .v-input--hide-spin-buttons input::-webkit-inner-spin-button {
23543
- -webkit-appearance: none;
23544
- margin: 0;
23619
+ .v-navigation-drawer--top {
23620
+ top: 0;
23621
+ border-bottom-width: thin;
23545
23622
  }
23546
- .v-input--hide-spin-buttons input[type=number] {
23547
- -moz-appearance: textfield;
23623
+ .v-navigation-drawer--bottom {
23624
+ left: 0;
23625
+ border-top-width: thin;
23548
23626
  }
23549
- .v-input--plain-underlined .v-input__prepend,
23550
- .v-input--plain-underlined .v-input__append {
23551
- align-items: flex-start;
23627
+ .v-navigation-drawer--left {
23628
+ top: 0;
23629
+ left: 0;
23630
+ right: auto;
23631
+ border-right-width: thin;
23552
23632
  }
23553
- .v-input--density-default.v-input--plain-underlined .v-input__prepend, .v-input--density-default.v-input--plain-underlined .v-input__append {
23554
- padding-top: calc(var(--v-input-padding-top) + 4px);
23633
+ .v-navigation-drawer--right {
23634
+ top: 0;
23635
+ left: auto;
23636
+ right: 0;
23637
+ border-left-width: thin;
23555
23638
  }
23556
-
23557
- .v-input--density-comfortable.v-input--plain-underlined .v-input__prepend, .v-input--density-comfortable.v-input--plain-underlined .v-input__append {
23558
- padding-top: calc(var(--v-input-padding-top) + 2px);
23639
+ .v-navigation-drawer--floating {
23640
+ border: none;
23559
23641
  }
23560
-
23561
- .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
23562
- padding-top: calc(var(--v-input-padding-top) + 0px);
23563
- }.v-infinite-scroll--horizontal {
23564
- display: flex;
23565
- flex-direction: row;
23566
- overflow-x: auto;
23642
+ .v-navigation-drawer--temporary.v-navigation-drawer--active {
23643
+ box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23567
23644
  }
23568
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
23569
- height: 100%;
23570
- width: var(--v-infinite-margin-size, 1px);
23645
+ .v-navigation-drawer--sticky {
23646
+ height: auto;
23647
+ transition: box-shadow, transform, visibility, width, height, left, right;
23648
+ }
23649
+ .v-navigation-drawer .v-list {
23650
+ overflow: hidden;
23571
23651
  }
23572
23652
 
23573
- .v-infinite-scroll--vertical {
23574
- display: flex;
23575
- flex-direction: column;
23653
+ .v-navigation-drawer__content {
23654
+ flex: 0 1 auto;
23655
+ height: 100%;
23656
+ max-width: 100%;
23657
+ overflow-x: hidden;
23576
23658
  overflow-y: auto;
23577
23659
  }
23578
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
23579
- height: 1px;
23580
- width: 100%;
23581
- }
23582
23660
 
23583
- .v-infinite-scroll-intersect {
23584
- pointer-events: none;
23585
- margin-top: var(--v-infinite-margin);
23586
- margin-bottom: calc(var(--v-infinite-margin) * -1);
23661
+ .v-navigation-drawer__img {
23662
+ height: 100%;
23663
+ left: 0;
23664
+ position: absolute;
23665
+ top: 0;
23666
+ width: 100%;
23667
+ z-index: -1;
23587
23668
  }
23588
- .v-infinite-scroll-intersect:nth-child(2) {
23589
- --v-infinite-margin: var(--v-infinite-margin-size, 1px);
23669
+ .v-navigation-drawer__img img:not(.v-img__img) {
23670
+ height: inherit;
23671
+ object-fit: cover;
23672
+ width: inherit;
23590
23673
  }
23591
- .v-infinite-scroll-intersect:nth-last-child(2) {
23592
- --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
23674
+
23675
+ .v-navigation-drawer__scrim {
23676
+ position: absolute;
23677
+ top: 0;
23678
+ left: 0;
23679
+ width: 100%;
23680
+ height: 100%;
23681
+ background: black;
23682
+ opacity: 0.2;
23683
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23684
+ z-index: 1;
23593
23685
  }
23594
23686
 
23595
- .v-infinite-scroll__side {
23596
- align-items: center;
23597
- display: flex;
23598
- justify-content: center;
23599
- padding: 8px;
23600
- }.v-item-group {
23601
- flex: 0 1 auto;
23602
- max-width: 100%;
23603
- position: relative;
23604
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23687
+ .v-navigation-drawer__prepend,
23688
+ .v-navigation-drawer__append {
23689
+ flex: none;
23690
+ overflow: hidden;
23605
23691
  }.v-list {
23606
23692
  overflow: auto;
23607
23693
  padding: 8px 0;
@@ -24177,21 +24263,6 @@ textarea.v-field__input::placeholder {
24177
24263
  }
24178
24264
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
24179
24265
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
24180
- }.v-label {
24181
- align-items: center;
24182
- color: inherit;
24183
- display: inline-flex;
24184
- font-size: 1rem;
24185
- letter-spacing: 0.009375em;
24186
- min-width: 0;
24187
- opacity: var(--v-medium-emphasis-opacity);
24188
- overflow: hidden;
24189
- text-overflow: ellipsis;
24190
- white-space: nowrap;
24191
- }
24192
-
24193
- .v-label--clickable {
24194
- cursor: pointer;
24195
24266
  }.v-main {
24196
24267
  flex: 1 0 auto;
24197
24268
  max-width: 100%;
@@ -24201,187 +24272,109 @@ textarea.v-field__input::placeholder {
24201
24272
  padding-top: var(--v-layout-top);
24202
24273
  padding-bottom: var(--v-layout-bottom);
24203
24274
  }
24204
- .v-main__scroller {
24205
- max-width: 100%;
24206
- position: relative;
24207
- }
24208
- .v-main--scrollable {
24209
- display: flex;
24210
- }
24211
- .v-main--scrollable {
24212
- position: absolute;
24213
- top: 0;
24214
- left: 0;
24215
- width: 100%;
24216
- height: 100%;
24217
- }
24218
- .v-main--scrollable > .v-main__scroller {
24219
- flex: 1 1 auto;
24220
- overflow-y: auto;
24221
- --v-layout-left: 0px;
24222
- --v-layout-right: 0px;
24223
- --v-layout-top: 0px;
24224
- --v-layout-bottom: 0px;
24225
- }.v-layout {
24226
- --v-scrollbar-offset: 0px;
24227
- display: flex;
24228
- flex: 1 1 auto;
24229
- }
24230
- .v-layout--full-height {
24231
- --v-scrollbar-offset: inherit;
24232
- height: 100%;
24233
- }.v-layout-item {
24234
- position: absolute;
24235
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24236
- }
24237
-
24238
- .v-layout-item--absolute {
24239
- position: absolute;
24240
- }.v-locale-provider {
24241
- display: contents;
24242
- }.v-menu > .v-overlay__content {
24243
- display: flex;
24244
- flex-direction: column;
24245
- }
24246
- .v-menu > .v-overlay__content {
24247
- border-radius: 4px;
24248
- }
24249
- .v-menu > .v-overlay__content > .v-card,
24250
- .v-menu > .v-overlay__content > .v-sheet,
24251
- .v-menu > .v-overlay__content > .v-list {
24252
- background: rgb(var(--v-theme-surface));
24253
- border-radius: inherit;
24254
- overflow: auto;
24255
- height: 100%;
24256
- }
24257
- .v-menu > .v-overlay__content > .v-card,
24258
- .v-menu > .v-overlay__content > .v-sheet,
24259
- .v-menu > .v-overlay__content > .v-list {
24260
- 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));
24261
- }.v-messages {
24262
- flex: 1 1 auto;
24263
- font-size: 12px;
24264
- min-height: 14px;
24265
- min-width: 1px;
24266
- opacity: var(--v-medium-emphasis-opacity);
24267
- position: relative;
24268
- }
24269
- .v-messages__message {
24270
- line-height: 12px;
24271
- word-break: break-word;
24272
- overflow-wrap: break-word;
24273
- word-wrap: break-word;
24274
- -webkit-hyphens: auto;
24275
- hyphens: auto;
24276
- transition-duration: 150ms;
24277
- }.v-navigation-drawer {
24278
- -webkit-overflow-scrolling: touch;
24279
- background: rgb(var(--v-theme-surface));
24280
- display: flex;
24281
- flex-direction: column;
24282
- height: 100%;
24283
- max-width: 100%;
24284
- pointer-events: auto;
24285
- transition-duration: 0.2s;
24286
- transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
24287
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
24288
- position: absolute;
24289
- }
24290
- .v-navigation-drawer {
24291
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24292
- border-style: solid;
24293
- border-width: 0;
24294
- }
24295
- .v-navigation-drawer--border {
24296
- border-width: thin;
24297
- box-shadow: none;
24298
- }
24299
- .v-navigation-drawer {
24300
- 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));
24301
- }
24302
- .v-navigation-drawer {
24303
- background: rgb(var(--v-theme-surface));
24304
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24305
- }
24306
- .v-navigation-drawer--rounded {
24307
- border-radius: 4px;
24308
- }
24309
- .v-navigation-drawer--top, .v-navigation-drawer--bottom {
24310
- max-height: -webkit-fill-available;
24311
- overflow-y: auto;
24312
- }
24313
- .v-navigation-drawer--top {
24314
- top: 0;
24315
- border-bottom-width: thin;
24275
+ .v-main__scroller {
24276
+ max-width: 100%;
24277
+ position: relative;
24316
24278
  }
24317
- .v-navigation-drawer--bottom {
24318
- left: 0;
24319
- border-top-width: thin;
24279
+ .v-main--scrollable {
24280
+ display: flex;
24320
24281
  }
24321
- .v-navigation-drawer--left {
24282
+ .v-main--scrollable {
24283
+ position: absolute;
24322
24284
  top: 0;
24323
24285
  left: 0;
24324
- right: auto;
24325
- border-right-width: thin;
24286
+ width: 100%;
24287
+ height: 100%;
24326
24288
  }
24327
- .v-navigation-drawer--right {
24328
- top: 0;
24329
- left: auto;
24330
- right: 0;
24331
- border-left-width: thin;
24289
+ .v-main--scrollable > .v-main__scroller {
24290
+ flex: 1 1 auto;
24291
+ overflow-y: auto;
24292
+ --v-layout-left: 0px;
24293
+ --v-layout-right: 0px;
24294
+ --v-layout-top: 0px;
24295
+ --v-layout-bottom: 0px;
24296
+ }.v-messages {
24297
+ flex: 1 1 auto;
24298
+ font-size: 12px;
24299
+ min-height: 14px;
24300
+ min-width: 1px;
24301
+ opacity: var(--v-medium-emphasis-opacity);
24302
+ position: relative;
24332
24303
  }
24333
- .v-navigation-drawer--floating {
24334
- border: none;
24304
+ .v-messages__message {
24305
+ line-height: 12px;
24306
+ word-break: break-word;
24307
+ overflow-wrap: break-word;
24308
+ word-wrap: break-word;
24309
+ -webkit-hyphens: auto;
24310
+ hyphens: auto;
24311
+ transition-duration: 150ms;
24312
+ }.v-otp-input {
24313
+ align-items: center;
24314
+ display: flex;
24315
+ justify-content: center;
24316
+ padding: 0.5rem 0;
24317
+ position: relative;
24335
24318
  }
24336
- .v-navigation-drawer--temporary.v-navigation-drawer--active {
24337
- box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24319
+ .v-otp-input {
24320
+ border-radius: 4px;
24338
24321
  }
24339
- .v-navigation-drawer--sticky {
24340
- height: auto;
24341
- transition: box-shadow, transform, visibility, width, height, left, right;
24322
+ .v-otp-input .v-field {
24323
+ height: 100%;
24342
24324
  }
24343
- .v-navigation-drawer .v-list {
24344
- overflow: hidden;
24325
+
24326
+ .v-otp-input__divider {
24327
+ margin: 0 8px;
24345
24328
  }
24346
24329
 
24347
- .v-navigation-drawer__content {
24348
- flex: 0 1 auto;
24349
- height: 100%;
24350
- max-width: 100%;
24351
- overflow-x: hidden;
24352
- overflow-y: auto;
24330
+ .v-otp-input__content {
24331
+ align-items: center;
24332
+ display: flex;
24333
+ gap: 0.5rem;
24334
+ height: 64px;
24335
+ padding: 0.5rem;
24336
+ justify-content: center;
24337
+ max-width: 320px;
24338
+ position: relative;
24339
+ border-radius: inherit;
24340
+ }
24341
+ .v-otp-input--divided .v-otp-input__content {
24342
+ max-width: 360px;
24353
24343
  }
24354
24344
 
24355
- .v-navigation-drawer__img {
24345
+ .v-otp-input__field {
24346
+ color: inherit;
24347
+ font-size: 1.25rem;
24356
24348
  height: 100%;
24357
- left: 0;
24358
- position: absolute;
24359
- top: 0;
24349
+ outline: none;
24350
+ text-align: center;
24360
24351
  width: 100%;
24361
- z-index: -1;
24362
24352
  }
24363
- .v-navigation-drawer__img img:not(.v-img__img) {
24364
- height: inherit;
24365
- object-fit: cover;
24366
- width: inherit;
24353
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
24354
+ -webkit-appearance: none;
24355
+ margin: 0;
24356
+ }
24357
+ .v-otp-input__field[type=number] {
24358
+ -moz-appearance: textfield;
24367
24359
  }
24368
24360
 
24369
- .v-navigation-drawer__scrim {
24361
+ .v-otp-input__loader {
24362
+ align-items: center;
24363
+ display: flex;
24364
+ height: 100%;
24365
+ justify-content: center;
24366
+ width: 100%;
24367
+ }
24368
+ .v-otp-input__loader .v-progress-linear {
24370
24369
  position: absolute;
24371
- top: 0;
24372
- left: 0;
24370
+ }.v-pagination__list {
24371
+ display: inline-flex;
24372
+ list-style-type: none;
24373
+ justify-content: center;
24373
24374
  width: 100%;
24374
- height: 100%;
24375
- background: black;
24376
- opacity: 0.2;
24377
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24378
- z-index: 1;
24379
24375
  }
24380
-
24381
- .v-navigation-drawer__prepend,
24382
- .v-navigation-drawer__append {
24383
- flex: none;
24384
- overflow: hidden;
24376
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
24377
+ margin: 0.3rem;
24385
24378
  }.v-overlay-container {
24386
24379
  contain: layout;
24387
24380
  left: 0;
@@ -24445,72 +24438,6 @@ html.v-overlay-scroll-blocked {
24445
24438
 
24446
24439
  .v-overlay--scroll-blocked {
24447
24440
  padding-inline-end: var(--v-scrollbar-offset);
24448
- }.v-pagination__list {
24449
- display: inline-flex;
24450
- list-style-type: none;
24451
- justify-content: center;
24452
- width: 100%;
24453
- }
24454
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
24455
- margin: 0.3rem;
24456
- }.v-otp-input {
24457
- align-items: center;
24458
- display: flex;
24459
- justify-content: center;
24460
- padding: 0.5rem 0;
24461
- position: relative;
24462
- }
24463
- .v-otp-input {
24464
- border-radius: 4px;
24465
- }
24466
- .v-otp-input .v-field {
24467
- height: 100%;
24468
- }
24469
-
24470
- .v-otp-input__divider {
24471
- margin: 0 8px;
24472
- }
24473
-
24474
- .v-otp-input__content {
24475
- align-items: center;
24476
- display: flex;
24477
- gap: 0.5rem;
24478
- height: 64px;
24479
- padding: 0.5rem;
24480
- justify-content: center;
24481
- max-width: 320px;
24482
- position: relative;
24483
- border-radius: inherit;
24484
- }
24485
- .v-otp-input--divided .v-otp-input__content {
24486
- max-width: 360px;
24487
- }
24488
-
24489
- .v-otp-input__field {
24490
- color: inherit;
24491
- font-size: 1.25rem;
24492
- height: 100%;
24493
- outline: none;
24494
- text-align: center;
24495
- width: 100%;
24496
- }
24497
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
24498
- -webkit-appearance: none;
24499
- margin: 0;
24500
- }
24501
- .v-otp-input__field[type=number] {
24502
- -moz-appearance: textfield;
24503
- }
24504
-
24505
- .v-otp-input__loader {
24506
- align-items: center;
24507
- display: flex;
24508
- height: 100%;
24509
- justify-content: center;
24510
- width: 100%;
24511
- }
24512
- .v-otp-input__loader .v-progress-linear {
24513
- position: absolute;
24514
24441
  }.v-progress-circular {
24515
24442
  align-items: center;
24516
24443
  display: inline-flex;
@@ -24609,16 +24536,73 @@ html.v-overlay-scroll-blocked {
24609
24536
  stroke-dashoffset: -124px;
24610
24537
  }
24611
24538
  }
24612
- @keyframes progress-circular-rotate {
24613
- 100% {
24614
- transform: rotate(270deg);
24615
- }
24616
- }.v-parallax {
24617
- position: relative;
24618
- overflow: hidden;
24539
+ @keyframes progress-circular-rotate {
24540
+ 100% {
24541
+ transform: rotate(270deg);
24542
+ }
24543
+ }.v-parallax {
24544
+ position: relative;
24545
+ overflow: hidden;
24546
+ }
24547
+ .v-parallax--active > .v-img__img {
24548
+ will-change: transform;
24549
+ }.v-slider .v-slider__container input {
24550
+ cursor: default;
24551
+ padding: 0;
24552
+ width: 100%;
24553
+ display: none;
24554
+ }
24555
+ .v-slider > .v-input__append,
24556
+ .v-slider > .v-input__prepend {
24557
+ padding: 0;
24558
+ }
24559
+
24560
+ .v-slider__container {
24561
+ position: relative;
24562
+ min-height: inherit;
24563
+ width: 100%;
24564
+ height: 100%;
24565
+ display: flex;
24566
+ justify-content: center;
24567
+ align-items: center;
24568
+ cursor: pointer;
24569
+ }
24570
+ .v-input--disabled .v-slider__container {
24571
+ opacity: var(--v-disabled-opacity);
24572
+ }
24573
+ .v-input--error:not(.v-input--disabled) .v-slider__container {
24574
+ color: rgb(var(--v-theme-error));
24575
+ }
24576
+
24577
+ .v-slider.v-input--horizontal {
24578
+ align-items: center;
24579
+ margin-inline: 8px 8px;
24580
+ }
24581
+ .v-slider.v-input--horizontal > .v-input__control {
24582
+ min-height: 32px;
24583
+ display: flex;
24584
+ align-items: center;
24585
+ }
24586
+
24587
+ .v-slider.v-input--vertical {
24588
+ justify-content: center;
24589
+ margin-top: 12px;
24590
+ margin-bottom: 12px;
24591
+ }
24592
+ .v-slider.v-input--vertical > .v-input__control {
24593
+ min-height: 300px;
24594
+ }
24595
+
24596
+ .v-slider.v-input--disabled {
24597
+ pointer-events: none;
24598
+ }
24599
+
24600
+ .v-slider--has-labels > .v-input__control {
24601
+ margin-bottom: 4px;
24619
24602
  }
24620
- .v-parallax--active > .v-img__img {
24621
- will-change: transform;
24603
+
24604
+ .v-slider__label {
24605
+ margin-inline-end: 12px;
24622
24606
  }.v-progress-linear {
24623
24607
  background: transparent;
24624
24608
  overflow: hidden;
@@ -24847,75 +24831,32 @@ html.v-overlay-scroll-blocked {
24847
24831
  0% {
24848
24832
  background-position-x: var(--v-progress-linear-height);
24849
24833
  }
24850
- }.v-slider .v-slider__container input {
24851
- cursor: default;
24852
- padding: 0;
24853
- width: 100%;
24854
- display: none;
24855
- }
24856
- .v-slider > .v-input__append,
24857
- .v-slider > .v-input__prepend {
24858
- padding: 0;
24859
- }
24860
-
24861
- .v-slider__container {
24862
- position: relative;
24863
- min-height: inherit;
24864
- width: 100%;
24865
- height: 100%;
24834
+ }.v-responsive {
24866
24835
  display: flex;
24867
- justify-content: center;
24868
- align-items: center;
24869
- cursor: pointer;
24870
- }
24871
- .v-input--disabled .v-slider__container {
24872
- opacity: var(--v-disabled-opacity);
24836
+ flex: 1 0 auto;
24837
+ max-height: 100%;
24838
+ max-width: 100%;
24839
+ overflow: hidden;
24840
+ position: relative;
24873
24841
  }
24874
- .v-input--error:not(.v-input--disabled) .v-slider__container {
24875
- color: rgb(var(--v-theme-error));
24842
+ .v-responsive--inline {
24843
+ display: inline-flex;
24844
+ flex: 0 0 auto;
24876
24845
  }
24877
24846
 
24878
- .v-slider.v-input--horizontal {
24879
- align-items: center;
24880
- margin-inline: 8px 8px;
24881
- }
24882
- .v-slider.v-input--horizontal > .v-input__control {
24883
- min-height: 32px;
24884
- display: flex;
24885
- align-items: center;
24847
+ .v-responsive__content {
24848
+ flex: 1 0 0px;
24849
+ max-width: 100%;
24886
24850
  }
24887
24851
 
24888
- .v-slider.v-input--vertical {
24889
- justify-content: center;
24890
- margin-top: 12px;
24891
- margin-bottom: 12px;
24892
- }
24893
- .v-slider.v-input--vertical > .v-input__control {
24894
- min-height: 300px;
24852
+ .v-responsive__sizer ~ .v-responsive__content {
24853
+ margin-inline-start: -100%;
24895
24854
  }
24896
24855
 
24897
- .v-slider.v-input--disabled {
24856
+ .v-responsive__sizer {
24857
+ flex: 1 0 0px;
24858
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24898
24859
  pointer-events: none;
24899
- }
24900
-
24901
- .v-slider--has-labels > .v-input__control {
24902
- margin-bottom: 4px;
24903
- }
24904
-
24905
- .v-slider__label {
24906
- margin-inline-end: 12px;
24907
- }.v-radio-group > .v-input__control {
24908
- flex-direction: column;
24909
- }
24910
- .v-radio-group > .v-input__control > .v-label {
24911
- margin-inline-start: 16px;
24912
- }
24913
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24914
- padding-inline-start: 6px;
24915
- margin-top: 8px;
24916
- }
24917
- .v-radio-group .v-input__details {
24918
- padding-inline: 16px;
24919
24860
  }.v-rating {
24920
24861
  max-width: 100%;
24921
24862
  display: inline-flex;
@@ -24969,40 +24910,18 @@ html.v-overlay-scroll-blocked {
24969
24910
  opacity: 0;
24970
24911
  position: absolute;
24971
24912
  width: 0;
24972
- }.v-responsive {
24973
- display: flex;
24974
- flex: 1 0 auto;
24975
- max-height: 100%;
24976
- max-width: 100%;
24977
- overflow: hidden;
24978
- position: relative;
24979
- }
24980
- .v-responsive--inline {
24981
- display: inline-flex;
24982
- flex: 0 0 auto;
24983
- }
24984
-
24985
- .v-responsive__content {
24986
- flex: 1 0 0px;
24987
- max-width: 100%;
24913
+ }.v-radio-group > .v-input__control {
24914
+ flex-direction: column;
24988
24915
  }
24989
-
24990
- .v-responsive__sizer ~ .v-responsive__content {
24991
- margin-inline-start: -100%;
24916
+ .v-radio-group > .v-input__control > .v-label {
24917
+ margin-inline-start: 16px;
24992
24918
  }
24993
-
24994
- .v-responsive__sizer {
24995
- flex: 1 0 0px;
24996
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24997
- pointer-events: none;
24998
- }.v-selection-control-group {
24999
- grid-area: control;
25000
- display: flex;
25001
- flex-direction: column;
24919
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24920
+ padding-inline-start: 6px;
24921
+ margin-top: 8px;
25002
24922
  }
25003
- .v-selection-control-group--inline {
25004
- flex-direction: row;
25005
- flex-wrap: wrap;
24923
+ .v-radio-group .v-input__details {
24924
+ padding-inline: 16px;
25006
24925
  }.v-selection-control {
25007
24926
  align-items: center;
25008
24927
  contain: layout;
@@ -25106,42 +25025,6 @@ html.v-overlay-scroll-blocked {
25106
25025
  }
25107
25026
  .v-selection-control--focus-visible .v-selection-control__input::before {
25108
25027
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25109
- }.v-sheet {
25110
- display: block;
25111
- }
25112
- .v-sheet {
25113
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25114
- border-style: solid;
25115
- border-width: 0;
25116
- }
25117
- .v-sheet--border {
25118
- border-width: thin;
25119
- box-shadow: none;
25120
- }
25121
- .v-sheet {
25122
- 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));
25123
- }
25124
- .v-sheet--absolute {
25125
- position: absolute;
25126
- }
25127
- .v-sheet--fixed {
25128
- position: fixed;
25129
- }
25130
- .v-sheet--relative {
25131
- position: relative;
25132
- }
25133
- .v-sheet--sticky {
25134
- position: sticky;
25135
- }
25136
- .v-sheet {
25137
- border-radius: 0;
25138
- }
25139
- .v-sheet {
25140
- background: rgb(var(--v-theme-surface));
25141
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25142
- }
25143
- .v-sheet--rounded {
25144
- border-radius: 4px;
25145
25028
  }.v-select .v-field .v-text-field__prefix,
25146
25029
  .v-select .v-field .v-text-field__suffix,
25147
25030
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -25194,6 +25077,14 @@ html.v-overlay-scroll-blocked {
25194
25077
  .v-select--active-menu .v-select__menu-icon {
25195
25078
  opacity: var(--v-high-emphasis-opacity);
25196
25079
  transform: rotate(180deg);
25080
+ }.v-selection-control-group {
25081
+ grid-area: control;
25082
+ display: flex;
25083
+ flex-direction: column;
25084
+ }
25085
+ .v-selection-control-group--inline {
25086
+ flex-direction: row;
25087
+ flex-wrap: wrap;
25197
25088
  }.v-skeleton-loader {
25198
25089
  align-items: center;
25199
25090
  background: rgb(var(--v-theme-surface));
@@ -25419,6 +25310,42 @@ html.v-overlay-scroll-blocked {
25419
25310
  100% {
25420
25311
  transform: translateX(100%);
25421
25312
  }
25313
+ }.v-sheet {
25314
+ display: block;
25315
+ }
25316
+ .v-sheet {
25317
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25318
+ border-style: solid;
25319
+ border-width: 0;
25320
+ }
25321
+ .v-sheet--border {
25322
+ border-width: thin;
25323
+ box-shadow: none;
25324
+ }
25325
+ .v-sheet {
25326
+ 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));
25327
+ }
25328
+ .v-sheet--absolute {
25329
+ position: absolute;
25330
+ }
25331
+ .v-sheet--fixed {
25332
+ position: fixed;
25333
+ }
25334
+ .v-sheet--relative {
25335
+ position: relative;
25336
+ }
25337
+ .v-sheet--sticky {
25338
+ position: sticky;
25339
+ }
25340
+ .v-sheet {
25341
+ border-radius: 0;
25342
+ }
25343
+ .v-sheet {
25344
+ background: rgb(var(--v-theme-surface));
25345
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25346
+ }
25347
+ .v-sheet--rounded {
25348
+ border-radius: 4px;
25422
25349
  }.v-slide-group {
25423
25350
  display: flex;
25424
25351
  overflow: hidden;
@@ -25459,21 +25386,62 @@ html.v-overlay-scroll-blocked {
25459
25386
  scrollbar-width: none;
25460
25387
  scrollbar-color: rgba(0, 0, 0, 0);
25461
25388
  }
25462
- .v-slide-group__container::-webkit-scrollbar {
25463
- display: none;
25389
+ .v-slide-group__container::-webkit-scrollbar {
25390
+ display: none;
25391
+ }
25392
+
25393
+ .v-slide-group--vertical {
25394
+ max-height: inherit;
25395
+ }
25396
+ .v-slide-group--vertical,
25397
+ .v-slide-group--vertical .v-slide-group__container,
25398
+ .v-slide-group--vertical .v-slide-group__content {
25399
+ flex-direction: column;
25400
+ }
25401
+ .v-slide-group--vertical .v-slide-group__container {
25402
+ overflow-x: hidden;
25403
+ overflow-y: auto;
25404
+ }.v-speed-dial__content {
25405
+ gap: 8px;
25406
+ }
25407
+ .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 {
25408
+ flex-direction: row;
25409
+ }
25410
+ .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 {
25411
+ flex-direction: row-reverse;
25412
+ }
25413
+ .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 {
25414
+ flex-direction: column-reverse;
25415
+ }
25416
+ .v-speed-dial__content > *:nth-child(1) {
25417
+ transition-delay: 0s;
25418
+ }
25419
+ .v-speed-dial__content > *:nth-child(2) {
25420
+ transition-delay: 0.05s;
25421
+ }
25422
+ .v-speed-dial__content > *:nth-child(3) {
25423
+ transition-delay: 0.1s;
25424
+ }
25425
+ .v-speed-dial__content > *:nth-child(4) {
25426
+ transition-delay: 0.15s;
25427
+ }
25428
+ .v-speed-dial__content > *:nth-child(5) {
25429
+ transition-delay: 0.2s;
25430
+ }
25431
+ .v-speed-dial__content > *:nth-child(6) {
25432
+ transition-delay: 0.25s;
25464
25433
  }
25465
-
25466
- .v-slide-group--vertical {
25467
- max-height: inherit;
25434
+ .v-speed-dial__content > *:nth-child(7) {
25435
+ transition-delay: 0.3s;
25468
25436
  }
25469
- .v-slide-group--vertical,
25470
- .v-slide-group--vertical .v-slide-group__container,
25471
- .v-slide-group--vertical .v-slide-group__content {
25472
- flex-direction: column;
25437
+ .v-speed-dial__content > *:nth-child(8) {
25438
+ transition-delay: 0.35s;
25473
25439
  }
25474
- .v-slide-group--vertical .v-slide-group__container {
25475
- overflow-x: hidden;
25476
- overflow-y: auto;
25440
+ .v-speed-dial__content > *:nth-child(9) {
25441
+ transition-delay: 0.4s;
25442
+ }
25443
+ .v-speed-dial__content > *:nth-child(10) {
25444
+ transition-delay: 0.45s;
25477
25445
  }.v-snackbar {
25478
25446
  justify-content: center;
25479
25447
  z-index: 10000;
@@ -25614,222 +25582,49 @@ html.v-overlay-scroll-blocked {
25614
25582
  }
25615
25583
  .v-snackbar-transition-leave-to {
25616
25584
  opacity: 0;
25617
- }.v-stepper-item {
25585
+ }.v-system-bar {
25618
25586
  align-items: center;
25619
- align-self: stretch;
25620
- display: inline-flex;
25621
- flex: none;
25622
- outline: none;
25623
- opacity: var(--v-medium-emphasis-opacity);
25624
- padding: 1.5rem;
25587
+ display: flex;
25588
+ flex: 1 1 auto;
25589
+ height: 24px;
25590
+ justify-content: flex-end;
25591
+ max-width: 100%;
25592
+ padding-inline: 8px;
25625
25593
  position: relative;
25626
- transition-duration: 0.2s;
25627
- transition-property: opacity;
25628
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25629
- }
25630
- .v-stepper-item:hover > .v-stepper-item__overlay {
25631
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
25632
- }
25633
- .v-stepper-item:focus-visible > .v-stepper-item__overlay {
25634
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25635
- }
25636
- @supports not selector(:focus-visible) {
25637
- .v-stepper-item:focus > .v-stepper-item__overlay {
25638
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25639
- }
25640
- }
25641
- .v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
25642
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
25643
- }
25644
- .v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
25645
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
25646
- }
25647
- .v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
25648
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25649
- }
25650
- @supports not selector(:focus-visible) {
25651
- .v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
25652
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25653
- }
25654
- }
25655
- .v-stepper--non-linear .v-stepper-item {
25656
- opacity: var(--v-high-emphasis-opacity);
25657
- }
25658
- .v-stepper-item--selected {
25659
- opacity: 1;
25660
- }
25661
- .v-stepper-item--error {
25662
- color: rgb(var(--v-theme-error));
25663
- }
25664
- .v-stepper-item--disabled {
25665
- opacity: var(--v-medium-emphasis-opacity);
25666
- pointer-events: none;
25667
- }
25668
- .v-stepper--alt-labels .v-stepper-item {
25669
- flex-direction: column;
25670
- justify-content: flex-start;
25671
- align-items: center;
25672
- flex-basis: 175px;
25673
- }
25674
-
25675
- .v-stepper-item__avatar.v-avatar {
25676
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
25677
- color: rgb(var(--v-theme-on-surface-variant));
25678
- font-size: 0.75rem;
25679
- margin-inline-end: 8px;
25680
- }
25681
- .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
25682
- margin-inline-end: 0;
25683
- }
25684
- .v-stepper-item__avatar.v-avatar .v-icon {
25685
- font-size: 0.875rem;
25686
- }
25687
- .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
25688
- background: rgb(var(--v-theme-surface-variant));
25689
- }
25690
- .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
25691
- background: rgb(var(--v-theme-error));
25692
- }
25693
- .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
25694
- margin-bottom: 16px;
25695
- margin-inline-end: 0;
25696
- }
25697
-
25698
- .v-stepper-item__title {
25699
- line-height: 1;
25700
- }
25701
- .v-stepper--mobile .v-stepper-item__title {
25702
- display: none;
25703
- }
25704
-
25705
- .v-stepper-item__subtitle {
25706
- font-size: 0.75rem;
25707
- text-align: left;
25708
- line-height: 1;
25709
- opacity: var(--v-medium-emphasis-opacity);
25710
- }
25711
- .v-stepper--alt-labels .v-stepper-item__subtitle {
25712
- text-align: center;
25713
- }
25714
- .v-stepper--mobile .v-stepper-item__subtitle {
25715
- display: none;
25716
- }
25717
-
25718
- .v-stepper-item__overlay {
25719
- background-color: currentColor;
25720
- border-radius: inherit;
25721
- opacity: 0;
25722
- transition: opacity 0.2s ease-in-out;
25723
- }
25724
-
25725
- .v-stepper-item__overlay,
25726
- .v-stepper-item__underlay {
25727
- pointer-events: none;
25728
- }
25729
- .v-stepper-item__overlay,
25730
- .v-stepper-item__underlay {
25731
- position: absolute;
25732
- top: 0;
25733
- left: 0;
25594
+ text-align: end;
25734
25595
  width: 100%;
25735
- height: 100%;
25736
- }.v-stepper.v-sheet {
25737
- overflow: hidden;
25738
- }
25739
- .v-stepper.v-sheet {
25740
- 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));
25741
25596
  }
25742
- .v-stepper.v-sheet {
25743
- border-radius: 4px;
25597
+ .v-system-bar .v-icon {
25598
+ opacity: var(--v-medium-emphasis-opacity);
25744
25599
  }
25745
- .v-stepper.v-sheet.v-stepper--flat {
25600
+ .v-system-bar {
25746
25601
  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));
25747
25602
  }
25748
-
25749
- .v-stepper-header {
25750
- align-items: center;
25751
- display: flex;
25752
- position: relative;
25753
- overflow-x: auto;
25754
- justify-content: space-between;
25755
- z-index: 1;
25756
- }
25757
- .v-stepper-header {
25758
- 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));
25759
- }
25760
- .v-stepper-header .v-divider {
25761
- margin: 0 -16px;
25762
- }
25763
- .v-stepper-header .v-divider:last-child {
25764
- margin-inline-end: 0;
25765
- }
25766
- .v-stepper-header .v-divider:first-child {
25767
- margin-inline-start: 0;
25768
- }
25769
- .v-stepper--alt-labels .v-stepper-header {
25770
- height: auto;
25771
- }
25772
- .v-stepper--alt-labels .v-stepper-header .v-divider {
25773
- align-self: flex-start;
25774
- margin: 35px -67px 0;
25775
- }
25776
-
25777
- .v-stepper-window {
25778
- margin: 1.5rem;
25779
- }
25780
-
25781
- .v-stepper-actions {
25782
- display: flex;
25783
- align-items: center;
25784
- justify-content: space-between;
25785
- padding: 1rem;
25786
- }
25787
- .v-stepper .v-stepper-actions {
25788
- padding: 0 1.5rem 1rem;
25789
- }
25790
- .v-stepper-window-item .v-stepper-actions {
25791
- padding: 1.5rem 0 0;
25792
- }.v-speed-dial__content {
25793
- gap: 8px;
25794
- }
25795
- .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 {
25796
- flex-direction: row;
25797
- }
25798
- .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 {
25799
- flex-direction: row-reverse;
25800
- }
25801
- .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 {
25802
- flex-direction: column-reverse;
25803
- }
25804
- .v-speed-dial__content > *:nth-child(1) {
25805
- transition-delay: 0s;
25806
- }
25807
- .v-speed-dial__content > *:nth-child(2) {
25808
- transition-delay: 0.05s;
25809
- }
25810
- .v-speed-dial__content > *:nth-child(3) {
25811
- transition-delay: 0.1s;
25812
- }
25813
- .v-speed-dial__content > *:nth-child(4) {
25814
- transition-delay: 0.15s;
25603
+ .v-system-bar--absolute {
25604
+ position: absolute;
25815
25605
  }
25816
- .v-speed-dial__content > *:nth-child(5) {
25817
- transition-delay: 0.2s;
25606
+ .v-system-bar--fixed {
25607
+ position: fixed;
25818
25608
  }
25819
- .v-speed-dial__content > *:nth-child(6) {
25820
- transition-delay: 0.25s;
25609
+ .v-system-bar {
25610
+ background: rgba(var(--v-theme-surface-light));
25611
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25821
25612
  }
25822
- .v-speed-dial__content > *:nth-child(7) {
25823
- transition-delay: 0.3s;
25613
+ .v-system-bar {
25614
+ font-size: 0.75rem;
25615
+ font-weight: 400;
25616
+ letter-spacing: 0.0333333333em;
25617
+ line-height: 1.667;
25618
+ text-transform: none;
25824
25619
  }
25825
- .v-speed-dial__content > *:nth-child(8) {
25826
- transition-delay: 0.35s;
25620
+ .v-system-bar--rounded {
25621
+ border-radius: 0;
25827
25622
  }
25828
- .v-speed-dial__content > *:nth-child(9) {
25829
- transition-delay: 0.4s;
25623
+ .v-system-bar--window {
25624
+ height: 32px;
25830
25625
  }
25831
- .v-speed-dial__content > *:nth-child(10) {
25832
- transition-delay: 0.45s;
25626
+ .v-system-bar:not(.v-system-bar--absolute) {
25627
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25833
25628
  }.v-switch .v-label {
25834
25629
  padding-inline-start: 10px;
25835
25630
  }
@@ -26012,49 +25807,210 @@ html.v-overlay-scroll-blocked {
26012
25807
  .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
26013
25808
  border-width: 0;
26014
25809
  }
26015
- }.v-system-bar {
25810
+ }.v-stepper.v-sheet {
25811
+ overflow: hidden;
25812
+ }
25813
+ .v-stepper.v-sheet {
25814
+ 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));
25815
+ }
25816
+ .v-stepper.v-sheet {
25817
+ border-radius: 4px;
25818
+ }
25819
+ .v-stepper.v-sheet.v-stepper--flat {
25820
+ 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));
25821
+ }
25822
+
25823
+ .v-stepper-header {
26016
25824
  align-items: center;
26017
25825
  display: flex;
26018
- flex: 1 1 auto;
26019
- height: 24px;
26020
- justify-content: flex-end;
26021
- max-width: 100%;
26022
- padding-inline: 8px;
26023
25826
  position: relative;
26024
- text-align: end;
26025
- width: 100%;
25827
+ overflow-x: auto;
25828
+ justify-content: space-between;
25829
+ z-index: 1;
26026
25830
  }
26027
- .v-system-bar .v-icon {
25831
+ .v-stepper-header {
25832
+ 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));
25833
+ }
25834
+ .v-stepper-header .v-divider {
25835
+ margin: 0 -16px;
25836
+ }
25837
+ .v-stepper-header .v-divider:last-child {
25838
+ margin-inline-end: 0;
25839
+ }
25840
+ .v-stepper-header .v-divider:first-child {
25841
+ margin-inline-start: 0;
25842
+ }
25843
+ .v-stepper--alt-labels .v-stepper-header {
25844
+ height: auto;
25845
+ }
25846
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
25847
+ align-self: flex-start;
25848
+ margin: 35px -67px 0;
25849
+ }
25850
+
25851
+ .v-stepper-window {
25852
+ margin: 1.5rem;
25853
+ }
25854
+
25855
+ .v-stepper-actions {
25856
+ display: flex;
25857
+ align-items: center;
25858
+ justify-content: space-between;
25859
+ padding: 1rem;
25860
+ }
25861
+ .v-stepper .v-stepper-actions {
25862
+ padding: 0 1.5rem 1rem;
25863
+ }
25864
+ .v-stepper-window-item .v-stepper-actions {
25865
+ padding: 1.5rem 0 0;
25866
+ }.v-stepper-item {
25867
+ align-items: center;
25868
+ align-self: stretch;
25869
+ display: inline-flex;
25870
+ flex: none;
25871
+ outline: none;
26028
25872
  opacity: var(--v-medium-emphasis-opacity);
25873
+ padding: 1.5rem;
25874
+ position: relative;
25875
+ transition-duration: 0.2s;
25876
+ transition-property: opacity;
25877
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
26029
25878
  }
26030
- .v-system-bar {
26031
- 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));
25879
+ .v-stepper-item:hover > .v-stepper-item__overlay {
25880
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
26032
25881
  }
26033
- .v-system-bar--absolute {
26034
- position: absolute;
25882
+ .v-stepper-item:focus-visible > .v-stepper-item__overlay {
25883
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
26035
25884
  }
26036
- .v-system-bar--fixed {
26037
- position: fixed;
25885
+ @supports not selector(:focus-visible) {
25886
+ .v-stepper-item:focus > .v-stepper-item__overlay {
25887
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
25888
+ }
26038
25889
  }
26039
- .v-system-bar {
26040
- background: rgba(var(--v-theme-surface-light));
26041
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25890
+ .v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
25891
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
26042
25892
  }
26043
- .v-system-bar {
25893
+ .v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
25894
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
25895
+ }
25896
+ .v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
25897
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25898
+ }
25899
+ @supports not selector(:focus-visible) {
25900
+ .v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
25901
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
25902
+ }
25903
+ }
25904
+ .v-stepper--non-linear .v-stepper-item {
25905
+ opacity: var(--v-high-emphasis-opacity);
25906
+ }
25907
+ .v-stepper-item--selected {
25908
+ opacity: 1;
25909
+ }
25910
+ .v-stepper-item--error {
25911
+ color: rgb(var(--v-theme-error));
25912
+ }
25913
+ .v-stepper-item--disabled {
25914
+ opacity: var(--v-medium-emphasis-opacity);
25915
+ pointer-events: none;
25916
+ }
25917
+ .v-stepper--alt-labels .v-stepper-item {
25918
+ flex-direction: column;
25919
+ justify-content: flex-start;
25920
+ align-items: center;
25921
+ flex-basis: 175px;
25922
+ }
25923
+
25924
+ .v-stepper-item__avatar.v-avatar {
25925
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
25926
+ color: rgb(var(--v-theme-on-surface-variant));
26044
25927
  font-size: 0.75rem;
26045
- font-weight: 400;
26046
- letter-spacing: 0.0333333333em;
26047
- line-height: 1.667;
26048
- text-transform: none;
25928
+ margin-inline-end: 8px;
26049
25929
  }
26050
- .v-system-bar--rounded {
25930
+ .v-stepper--mobile .v-stepper-item__avatar.v-avatar {
25931
+ margin-inline-end: 0;
25932
+ }
25933
+ .v-stepper-item__avatar.v-avatar .v-icon {
25934
+ font-size: 0.875rem;
25935
+ }
25936
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
25937
+ background: rgb(var(--v-theme-surface-variant));
25938
+ }
25939
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
25940
+ background: rgb(var(--v-theme-error));
25941
+ }
25942
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
25943
+ margin-bottom: 16px;
25944
+ margin-inline-end: 0;
25945
+ }
25946
+
25947
+ .v-stepper-item__title {
25948
+ line-height: 1;
25949
+ }
25950
+ .v-stepper--mobile .v-stepper-item__title {
25951
+ display: none;
25952
+ }
25953
+
25954
+ .v-stepper-item__subtitle {
25955
+ font-size: 0.75rem;
25956
+ text-align: left;
25957
+ line-height: 1;
25958
+ opacity: var(--v-medium-emphasis-opacity);
25959
+ }
25960
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
25961
+ text-align: center;
25962
+ }
25963
+ .v-stepper--mobile .v-stepper-item__subtitle {
25964
+ display: none;
25965
+ }
25966
+
25967
+ .v-stepper-item__overlay {
25968
+ background-color: currentColor;
25969
+ border-radius: inherit;
25970
+ opacity: 0;
25971
+ transition: opacity 0.2s ease-in-out;
25972
+ }
25973
+
25974
+ .v-stepper-item__overlay,
25975
+ .v-stepper-item__underlay {
25976
+ pointer-events: none;
25977
+ }
25978
+ .v-stepper-item__overlay,
25979
+ .v-stepper-item__underlay {
25980
+ position: absolute;
25981
+ top: 0;
25982
+ left: 0;
25983
+ width: 100%;
25984
+ height: 100%;
25985
+ }.v-tab.v-tab.v-btn {
25986
+ height: var(--v-tabs-height);
26051
25987
  border-radius: 0;
25988
+ min-width: 90px;
26052
25989
  }
26053
- .v-system-bar--window {
26054
- height: 32px;
25990
+ .v-slide-group--horizontal .v-tab {
25991
+ max-width: 360px;
26055
25992
  }
26056
- .v-system-bar:not(.v-system-bar--absolute) {
26057
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25993
+ .v-slide-group--vertical .v-tab {
25994
+ justify-content: start;
25995
+ }
25996
+
25997
+ .v-tab__slider {
25998
+ position: absolute;
25999
+ bottom: 0;
26000
+ left: 0;
26001
+ height: 2px;
26002
+ width: 100%;
26003
+ background: currentColor;
26004
+ pointer-events: none;
26005
+ opacity: 0;
26006
+ }
26007
+ .v-tab--selected .v-tab__slider {
26008
+ opacity: 1;
26009
+ }
26010
+ .v-slide-group--vertical .v-tab__slider {
26011
+ top: 0;
26012
+ height: 100%;
26013
+ width: 2px;
26058
26014
  }.v-table {
26059
26015
  font-size: 0.875rem;
26060
26016
  transition-duration: 0.28s;
@@ -26246,52 +26202,26 @@ html.v-overlay-scroll-blocked {
26246
26202
  }
26247
26203
  .v-tabs--grow .v-tab {
26248
26204
  flex: 1 0 auto;
26249
- max-width: none;
26250
- }
26251
-
26252
- .v-tabs--align-tabs-end .v-tab:first-child {
26253
- margin-inline-start: auto;
26254
- }
26255
- .v-tabs--align-tabs-end .v-tab:last-child {
26256
- margin-inline-end: 0;
26257
- }
26258
-
26259
- @media (max-width: 1279.98px) {
26260
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
26261
- margin-inline-start: 52px;
26262
- }
26263
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
26264
- margin-inline-end: 52px;
26265
- }
26266
- }.v-tab.v-tab.v-btn {
26267
- height: var(--v-tabs-height);
26268
- border-radius: 0;
26269
- min-width: 90px;
26270
- }
26271
- .v-slide-group--horizontal .v-tab {
26272
- max-width: 360px;
26273
- }
26274
- .v-slide-group--vertical .v-tab {
26275
- justify-content: start;
26276
- }
26277
-
26278
- .v-tab__slider {
26279
- position: absolute;
26280
- bottom: 0;
26281
- left: 0;
26282
- height: 2px;
26283
- width: 100%;
26284
- background: currentColor;
26285
- pointer-events: none;
26286
- opacity: 0;
26205
+ max-width: none;
26287
26206
  }
26288
- .v-tab--selected .v-tab__slider {
26289
- opacity: 1;
26207
+
26208
+ .v-tabs--align-tabs-end .v-tab:first-child {
26209
+ margin-inline-start: auto;
26290
26210
  }
26291
- .v-slide-group--vertical .v-tab__slider {
26292
- top: 0;
26293
- height: 100%;
26294
- width: 2px;
26211
+ .v-tabs--align-tabs-end .v-tab:last-child {
26212
+ margin-inline-end: 0;
26213
+ }
26214
+
26215
+ @media (max-width: 1279.98px) {
26216
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
26217
+ margin-inline-start: 52px;
26218
+ }
26219
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
26220
+ margin-inline-end: 52px;
26221
+ }
26222
+ }.v-theme-provider {
26223
+ background: rgb(var(--v-theme-background));
26224
+ color: rgb(var(--v-theme-on-background));
26295
26225
  }.v-textarea .v-field {
26296
26226
  --v-textarea-control-height: var(--v-input-control-height);
26297
26227
  }
@@ -26398,19 +26328,7 @@ html.v-overlay-scroll-blocked {
26398
26328
  padding-inline-end: var(--v-field-padding-end);
26399
26329
  }
26400
26330
 
26401
- /* endregion */.v-theme-provider {
26402
- background: rgb(var(--v-theme-background));
26403
- color: rgb(var(--v-theme-on-background));
26404
- }.v-virtual-scroll {
26405
- display: block;
26406
- flex: 1 1 auto;
26407
- max-width: 100%;
26408
- overflow: auto;
26409
- position: relative;
26410
- }
26411
- .v-virtual-scroll__container {
26412
- display: block;
26413
- }.v-toolbar {
26331
+ /* endregion */.v-toolbar {
26414
26332
  align-items: flex-start;
26415
26333
  display: flex;
26416
26334
  flex: none;
@@ -26553,28 +26471,6 @@ html.v-overlay-scroll-blocked {
26553
26471
  }
26554
26472
  .v-toolbar-items > .v-btn {
26555
26473
  border-radius: 0;
26556
- }.v-tooltip > .v-overlay__content {
26557
- background: rgb(var(--v-theme-surface-variant));
26558
- color: rgb(var(--v-theme-on-surface-variant));
26559
- border-radius: 4px;
26560
- font-size: 0.875rem;
26561
- line-height: 1.6;
26562
- display: inline-block;
26563
- padding: 5px 16px;
26564
- text-transform: initial;
26565
- width: auto;
26566
- opacity: 1;
26567
- pointer-events: none;
26568
- transition-property: opacity, transform;
26569
- overflow-wrap: break-word;
26570
- }
26571
- .v-tooltip > .v-overlay__content[class*=enter-active] {
26572
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
26573
- transition-duration: 150ms;
26574
- }
26575
- .v-tooltip > .v-overlay__content[class*=leave-active] {
26576
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26577
- transition-duration: 75ms;
26578
26474
  }.v-timeline .v-timeline-divider__dot {
26579
26475
  background: rgb(var(--v-theme-surface-light));
26580
26476
  }
@@ -26993,6 +26889,37 @@ html.v-overlay-scroll-blocked {
26993
26889
 
26994
26890
  .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 {
26995
26891
  padding-inline-end: 0;
26892
+ }.v-tooltip > .v-overlay__content {
26893
+ background: rgb(var(--v-theme-surface-variant));
26894
+ color: rgb(var(--v-theme-on-surface-variant));
26895
+ border-radius: 4px;
26896
+ font-size: 0.875rem;
26897
+ line-height: 1.6;
26898
+ display: inline-block;
26899
+ padding: 5px 16px;
26900
+ text-transform: initial;
26901
+ width: auto;
26902
+ opacity: 1;
26903
+ pointer-events: none;
26904
+ transition-property: opacity, transform;
26905
+ overflow-wrap: break-word;
26906
+ }
26907
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
26908
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
26909
+ transition-duration: 150ms;
26910
+ }
26911
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
26912
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26913
+ transition-duration: 75ms;
26914
+ }.v-virtual-scroll {
26915
+ display: block;
26916
+ flex: 1 1 auto;
26917
+ max-width: 100%;
26918
+ overflow: auto;
26919
+ position: relative;
26920
+ }
26921
+ .v-virtual-scroll__container {
26922
+ display: block;
26996
26923
  }.v-window {
26997
26924
  overflow: hidden;
26998
26925
  }
@@ -27063,28 +26990,79 @@ html.v-overlay-scroll-blocked {
27063
26990
  }
27064
26991
  .v-window-y-reverse-transition-leave-to {
27065
26992
  transform: translateY(100%);
27066
- }.v-color-picker-canvas {
27067
- display: flex;
27068
- position: relative;
27069
- overflow: hidden;
27070
- contain: content;
27071
- touch-action: none;
26993
+ }.v-badge {
26994
+ display: inline-block;
26995
+ line-height: 1;
27072
26996
  }
27073
- .v-color-picker-canvas__dot {
26997
+
26998
+ .v-badge__badge {
26999
+ align-items: center;
27000
+ display: inline-flex;
27001
+ border-radius: 10px;
27002
+ font-size: 0.75rem;
27003
+ font-weight: 500;
27004
+ height: 1.25rem;
27005
+ justify-content: center;
27006
+ min-width: 20px;
27007
+ padding: 4px 6px;
27008
+ pointer-events: auto;
27074
27009
  position: absolute;
27075
- top: 0;
27010
+ text-align: center;
27011
+ text-indent: 0;
27012
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
27013
+ white-space: nowrap;
27014
+ }
27015
+ .v-badge__badge {
27016
+ background: rgb(var(--v-theme-surface-variant));
27017
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
27018
+ }
27019
+ .v-badge--bordered .v-badge__badge::after {
27020
+ border-radius: inherit;
27021
+ border-style: solid;
27022
+ border-width: 2px;
27023
+ bottom: 0;
27024
+ color: rgb(var(--v-theme-background));
27025
+ content: "";
27076
27026
  left: 0;
27077
- width: 15px;
27078
- height: 15px;
27079
- background: transparent;
27080
- border-radius: 50%;
27081
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
27027
+ position: absolute;
27028
+ right: 0;
27029
+ top: 0;
27030
+ transform: scale(1.05);
27082
27031
  }
27083
- .v-color-picker-canvas__dot--disabled {
27084
- 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);
27032
+ .v-badge--dot .v-badge__badge {
27033
+ border-radius: 4.5px;
27034
+ height: 9px;
27035
+ min-width: 0;
27036
+ padding: 0;
27037
+ width: 9px;
27085
27038
  }
27086
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
27087
- will-change: transform;
27039
+ .v-badge--dot .v-badge__badge::after {
27040
+ border-width: 1.5px;
27041
+ }
27042
+ .v-badge--inline .v-badge__badge {
27043
+ position: relative;
27044
+ vertical-align: middle;
27045
+ }
27046
+ .v-badge__badge .v-icon {
27047
+ color: inherit;
27048
+ font-size: 0.75rem;
27049
+ margin: 0 -2px;
27050
+ }
27051
+ .v-badge__badge img,
27052
+ .v-badge__badge .v-img {
27053
+ height: 100%;
27054
+ width: 100%;
27055
+ }
27056
+
27057
+ .v-badge__wrapper {
27058
+ display: flex;
27059
+ position: relative;
27060
+ }
27061
+ .v-badge--inline .v-badge__wrapper {
27062
+ align-items: center;
27063
+ display: inline-flex;
27064
+ justify-content: center;
27065
+ margin: 0 4px;
27088
27066
  }.v-color-picker-edit {
27089
27067
  display: flex;
27090
27068
  margin-top: 24px;
@@ -27113,6 +27091,41 @@ html.v-overlay-scroll-blocked {
27113
27091
  }
27114
27092
  .v-color-picker-edit__input span {
27115
27093
  font-size: 0.75rem;
27094
+ }.v-color-picker-swatches {
27095
+ overflow-y: auto;
27096
+ }
27097
+ .v-color-picker-swatches > div {
27098
+ display: flex;
27099
+ flex-wrap: wrap;
27100
+ justify-content: center;
27101
+ padding: 8px;
27102
+ }
27103
+
27104
+ .v-color-picker-swatches__swatch {
27105
+ display: flex;
27106
+ flex-direction: column;
27107
+ margin-bottom: 10px;
27108
+ }
27109
+
27110
+ .v-color-picker-swatches__color {
27111
+ position: relative;
27112
+ height: 18px;
27113
+ max-height: 18px;
27114
+ width: 45px;
27115
+ margin: 2px 4px;
27116
+ border-radius: 2px;
27117
+ -webkit-user-select: none;
27118
+ user-select: none;
27119
+ overflow: hidden;
27120
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
27121
+ cursor: pointer;
27122
+ }
27123
+ .v-color-picker-swatches__color > div {
27124
+ display: flex;
27125
+ align-items: center;
27126
+ justify-content: center;
27127
+ width: 100%;
27128
+ height: 100%;
27116
27129
  }.v-color-picker-preview__alpha .v-slider-track__background {
27117
27130
  background-color: transparent !important;
27118
27131
  }
@@ -27183,41 +27196,28 @@ html.v-overlay-scroll-blocked {
27183
27196
  .v-color-picker-preview__eye-dropper {
27184
27197
  position: relative;
27185
27198
  margin-right: 12px;
27186
- }.v-color-picker-swatches {
27187
- overflow-y: auto;
27188
- }
27189
- .v-color-picker-swatches > div {
27190
- display: flex;
27191
- flex-wrap: wrap;
27192
- justify-content: center;
27193
- padding: 8px;
27194
- }
27195
-
27196
- .v-color-picker-swatches__swatch {
27199
+ }.v-color-picker-canvas {
27197
27200
  display: flex;
27198
- flex-direction: column;
27199
- margin-bottom: 10px;
27200
- }
27201
-
27202
- .v-color-picker-swatches__color {
27203
27201
  position: relative;
27204
- height: 18px;
27205
- max-height: 18px;
27206
- width: 45px;
27207
- margin: 2px 4px;
27208
- border-radius: 2px;
27209
- -webkit-user-select: none;
27210
- user-select: none;
27211
27202
  overflow: hidden;
27212
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
27213
- cursor: pointer;
27203
+ contain: content;
27204
+ touch-action: none;
27214
27205
  }
27215
- .v-color-picker-swatches__color > div {
27216
- display: flex;
27217
- align-items: center;
27218
- justify-content: center;
27219
- width: 100%;
27220
- height: 100%;
27206
+ .v-color-picker-canvas__dot {
27207
+ position: absolute;
27208
+ top: 0;
27209
+ left: 0;
27210
+ width: 15px;
27211
+ height: 15px;
27212
+ background: transparent;
27213
+ border-radius: 50%;
27214
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
27215
+ }
27216
+ .v-color-picker-canvas__dot--disabled {
27217
+ 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);
27218
+ }
27219
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
27220
+ will-change: transform;
27221
27221
  }.v-slider-thumb {
27222
27222
  touch-action: none;
27223
27223
  color: rgb(var(--v-theme-surface-variant));