@vuetify/nightly 3.7.4-master.2024-11-29 → 3.7.4-master.2024-12-02

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.4-master.2024-11-29
2
+ * Vuetify v3.7.4-master.2024-12-02
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18006,6 +18006,197 @@ html.overflow-y-hidden {
18006
18006
  }
18007
18007
  .v-app-bar:not(.v-toolbar--absolute) {
18008
18008
  padding-inline-end: var(--v-scrollbar-offset);
18009
+ }.v-autocomplete .v-field .v-text-field__prefix,
18010
+ .v-autocomplete .v-field .v-text-field__suffix,
18011
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18012
+ cursor: text;
18013
+ }
18014
+ .v-autocomplete .v-field .v-field__input > input {
18015
+ flex: 1 1;
18016
+ }
18017
+ .v-autocomplete .v-field input {
18018
+ min-width: 64px;
18019
+ }
18020
+ .v-autocomplete .v-field:not(.v-field--focused) input {
18021
+ min-width: 0;
18022
+ }
18023
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18024
+ margin-inline-end: 2px;
18025
+ }
18026
+ .v-autocomplete .v-autocomplete__selection-text {
18027
+ overflow: hidden;
18028
+ text-overflow: ellipsis;
18029
+ white-space: nowrap;
18030
+ }
18031
+
18032
+ .v-autocomplete__content {
18033
+ overflow: hidden;
18034
+ }
18035
+ .v-autocomplete__content {
18036
+ 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));
18037
+ }
18038
+ .v-autocomplete__content {
18039
+ border-radius: 4px;
18040
+ }
18041
+ .v-autocomplete__mask {
18042
+ background: rgb(var(--v-theme-surface-light));
18043
+ }
18044
+ .v-autocomplete__selection {
18045
+ display: inline-flex;
18046
+ align-items: center;
18047
+ height: 1.5rem;
18048
+ letter-spacing: inherit;
18049
+ line-height: inherit;
18050
+ max-width: calc(100% - 2px - 2px);
18051
+ }
18052
+ .v-autocomplete__selection:first-child {
18053
+ margin-inline-start: 0;
18054
+ }
18055
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18056
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18057
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18058
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18059
+ top: 0px;
18060
+ }
18061
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
18062
+ opacity: var(--v-medium-emphasis-opacity);
18063
+ }
18064
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18065
+ opacity: 1;
18066
+ }
18067
+ .v-autocomplete--selecting-index .v-field__input > input {
18068
+ caret-color: transparent;
18069
+ }
18070
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18071
+ flex: 1 1;
18072
+ position: absolute;
18073
+ left: 0;
18074
+ right: 0;
18075
+ width: 100%;
18076
+ padding-inline: inherit;
18077
+ }
18078
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18079
+ transition: none;
18080
+ }
18081
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18082
+ opacity: 0;
18083
+ }
18084
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18085
+ opacity: 0;
18086
+ }
18087
+ .v-autocomplete__menu-icon {
18088
+ margin-inline-start: 4px;
18089
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18090
+ }
18091
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18092
+ opacity: var(--v-high-emphasis-opacity);
18093
+ transform: rotate(180deg);
18094
+ }.v-avatar {
18095
+ flex: none;
18096
+ align-items: center;
18097
+ display: inline-flex;
18098
+ justify-content: center;
18099
+ line-height: normal;
18100
+ overflow: hidden;
18101
+ position: relative;
18102
+ text-align: center;
18103
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18104
+ transition-property: width, height;
18105
+ vertical-align: middle;
18106
+ }
18107
+ .v-avatar.v-avatar--size-x-small {
18108
+ --v-avatar-height: 24px;
18109
+ }
18110
+ .v-avatar.v-avatar--size-small {
18111
+ --v-avatar-height: 32px;
18112
+ }
18113
+ .v-avatar.v-avatar--size-default {
18114
+ --v-avatar-height: 40px;
18115
+ }
18116
+ .v-avatar.v-avatar--size-large {
18117
+ --v-avatar-height: 48px;
18118
+ }
18119
+ .v-avatar.v-avatar--size-x-large {
18120
+ --v-avatar-height: 56px;
18121
+ }
18122
+ .v-avatar.v-avatar--density-default {
18123
+ height: calc(var(--v-avatar-height) + 0px);
18124
+ width: calc(var(--v-avatar-height) + 0px);
18125
+ }
18126
+ .v-avatar.v-avatar--density-comfortable {
18127
+ height: calc(var(--v-avatar-height) + -4px);
18128
+ width: calc(var(--v-avatar-height) + -4px);
18129
+ }
18130
+ .v-avatar.v-avatar--density-compact {
18131
+ height: calc(var(--v-avatar-height) + -8px);
18132
+ width: calc(var(--v-avatar-height) + -8px);
18133
+ }
18134
+ .v-avatar {
18135
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18136
+ border-style: solid;
18137
+ border-width: 0;
18138
+ }
18139
+ .v-avatar--border {
18140
+ border-width: thin;
18141
+ box-shadow: none;
18142
+ }
18143
+ .v-avatar {
18144
+ border-radius: 50%;
18145
+ }
18146
+ .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18147
+ background: transparent;
18148
+ color: inherit;
18149
+ }
18150
+ .v-avatar--variant-plain {
18151
+ opacity: 0.62;
18152
+ }
18153
+ .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
18154
+ opacity: 1;
18155
+ }
18156
+ .v-avatar--variant-plain .v-avatar__overlay {
18157
+ display: none;
18158
+ }
18159
+ .v-avatar--variant-elevated, .v-avatar--variant-flat {
18160
+ background: var(--v-theme-surface);
18161
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18162
+ }
18163
+ .v-avatar--variant-elevated {
18164
+ box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18165
+ }
18166
+ .v-avatar--variant-flat {
18167
+ 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));
18168
+ }
18169
+ .v-avatar--variant-outlined {
18170
+ border: thin solid currentColor;
18171
+ }
18172
+ .v-avatar--variant-text .v-avatar__overlay {
18173
+ background: currentColor;
18174
+ }
18175
+ .v-avatar--variant-tonal .v-avatar__underlay {
18176
+ background: currentColor;
18177
+ opacity: var(--v-activated-opacity);
18178
+ border-radius: inherit;
18179
+ top: 0;
18180
+ right: 0;
18181
+ bottom: 0;
18182
+ left: 0;
18183
+ pointer-events: none;
18184
+ }
18185
+ .v-avatar .v-avatar__underlay {
18186
+ position: absolute;
18187
+ }
18188
+ .v-avatar--rounded {
18189
+ border-radius: 4px;
18190
+ }
18191
+ .v-avatar--start {
18192
+ margin-inline-end: 8px;
18193
+ }
18194
+ .v-avatar--end {
18195
+ margin-inline-start: 8px;
18196
+ }
18197
+ .v-avatar .v-img {
18198
+ height: 100%;
18199
+ width: 100%;
18009
18200
  }.v-alert {
18010
18201
  display: grid;
18011
18202
  flex: 1 1;
@@ -18222,274 +18413,69 @@ html.overflow-y-hidden {
18222
18413
  text-transform: none;
18223
18414
  word-break: normal;
18224
18415
  word-wrap: break-word;
18225
- }.v-autocomplete .v-field .v-text-field__prefix,
18226
- .v-autocomplete .v-field .v-text-field__suffix,
18227
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18228
- cursor: text;
18416
+ }.v-bottom-navigation {
18417
+ display: flex;
18418
+ max-width: 100%;
18419
+ overflow: hidden;
18420
+ position: absolute;
18421
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18229
18422
  }
18230
- .v-autocomplete .v-field .v-field__input > input {
18231
- flex: 1 1;
18423
+ .v-bottom-navigation {
18424
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18425
+ border-style: solid;
18426
+ border-width: 0;
18232
18427
  }
18233
- .v-autocomplete .v-field input {
18234
- min-width: 64px;
18428
+ .v-bottom-navigation--border {
18429
+ border-width: thin;
18430
+ box-shadow: none;
18235
18431
  }
18236
- .v-autocomplete .v-field:not(.v-field--focused) input {
18237
- min-width: 0;
18432
+ .v-bottom-navigation {
18433
+ border-radius: 0;
18238
18434
  }
18239
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18240
- margin-inline-end: 2px;
18435
+ .v-bottom-navigation {
18436
+ background: rgb(var(--v-theme-surface));
18437
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18241
18438
  }
18242
- .v-autocomplete .v-autocomplete__selection-text {
18243
- overflow: hidden;
18244
- text-overflow: ellipsis;
18245
- white-space: nowrap;
18439
+ .v-bottom-navigation--active {
18440
+ 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));
18246
18441
  }
18247
18442
 
18248
- .v-autocomplete__content {
18249
- overflow: hidden;
18443
+ .v-bottom-navigation__content {
18444
+ display: flex;
18445
+ flex: none;
18446
+ font-size: 0.75rem;
18447
+ justify-content: center;
18448
+ transition: inherit;
18449
+ width: 100%;
18250
18450
  }
18251
- .v-autocomplete__content {
18252
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18451
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18452
+ font-size: inherit;
18453
+ height: 100%;
18454
+ max-width: 168px;
18455
+ min-width: 80px;
18456
+ text-transform: none;
18457
+ transition: inherit;
18458
+ width: auto;
18253
18459
  }
18254
- .v-autocomplete__content {
18255
- border-radius: 4px;
18460
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18461
+ border-radius: 0;
18256
18462
  }
18257
- .v-autocomplete__mask {
18258
- background: rgb(var(--v-theme-surface-light));
18463
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18464
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18465
+ transition: inherit;
18259
18466
  }
18260
- .v-autocomplete__selection {
18261
- display: inline-flex;
18262
- align-items: center;
18263
- height: 1.5rem;
18264
- letter-spacing: inherit;
18265
- line-height: inherit;
18266
- max-width: calc(100% - 2px - 2px);
18267
- }
18268
- .v-autocomplete__selection:first-child {
18269
- margin-inline-start: 0;
18270
- }
18271
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
18272
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
18273
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
18274
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
18275
- top: 0px;
18276
- }
18277
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18278
- opacity: var(--v-medium-emphasis-opacity);
18279
- }
18280
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18281
- opacity: 1;
18282
- }
18283
- .v-autocomplete--selecting-index .v-field__input > input {
18284
- caret-color: transparent;
18285
- }
18286
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18287
- flex: 1 1;
18288
- position: absolute;
18289
- left: 0;
18290
- right: 0;
18291
- width: 100%;
18292
- padding-inline: inherit;
18293
- }
18294
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18295
- transition: none;
18467
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18468
+ font-size: 1.5rem;
18296
18469
  }
18297
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18298
- opacity: 0;
18470
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18471
+ flex-grow: 1;
18299
18472
  }
18300
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18473
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18474
+ transition: inherit;
18301
18475
  opacity: 0;
18302
18476
  }
18303
- .v-autocomplete__menu-icon {
18304
- margin-inline-start: 4px;
18305
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18306
- }
18307
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18308
- opacity: var(--v-high-emphasis-opacity);
18309
- transform: rotate(180deg);
18310
- }.v-badge {
18311
- display: inline-block;
18312
- line-height: 1;
18313
- }
18314
-
18315
- .v-badge__badge {
18316
- align-items: center;
18317
- display: inline-flex;
18318
- border-radius: 10px;
18319
- font-family: "Roboto", sans-serif;
18320
- font-size: 0.75rem;
18321
- font-weight: 500;
18322
- height: 1.25rem;
18323
- justify-content: center;
18324
- min-width: 20px;
18325
- padding: 4px 6px;
18326
- pointer-events: auto;
18327
- position: absolute;
18328
- text-align: center;
18329
- text-indent: 0;
18330
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18331
- white-space: nowrap;
18332
- }
18333
- .v-badge__badge {
18334
- background: rgb(var(--v-theme-surface-variant));
18335
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18336
- }
18337
- .v-badge__badge:has(.v-icon) {
18338
- padding: 4px 6px;
18339
- }
18340
- .v-badge--bordered .v-badge__badge::after {
18341
- border-radius: inherit;
18342
- border-style: solid;
18343
- border-width: 2px;
18344
- bottom: 0;
18345
- color: rgb(var(--v-theme-background));
18346
- content: "";
18347
- left: 0;
18348
- position: absolute;
18349
- right: 0;
18350
- top: 0;
18351
- transform: scale(1.05);
18352
- }
18353
- .v-badge--dot .v-badge__badge {
18354
- border-radius: 4.5px;
18355
- height: 9px;
18356
- min-width: 0;
18357
- padding: 0;
18358
- width: 9px;
18359
- }
18360
- .v-badge--dot .v-badge__badge::after {
18361
- border-width: 1.5px;
18362
- }
18363
- .v-badge--inline .v-badge__badge {
18364
- position: relative;
18365
- vertical-align: middle;
18366
- }
18367
- .v-badge__badge .v-icon {
18368
- color: inherit;
18369
- font-size: 0.75rem;
18370
- margin: 0 -2px;
18371
- }
18372
- .v-badge__badge img,
18373
- .v-badge__badge .v-img {
18374
- height: 100%;
18375
- width: 100%;
18376
- }
18377
-
18378
- .v-badge__wrapper {
18379
- display: flex;
18380
- position: relative;
18381
- }
18382
- .v-badge--inline .v-badge__wrapper {
18383
- align-items: center;
18384
- display: inline-flex;
18385
- justify-content: center;
18386
- margin: 0 4px;
18387
- }.v-avatar {
18388
- flex: none;
18389
- align-items: center;
18390
- display: inline-flex;
18391
- justify-content: center;
18392
- line-height: normal;
18393
- overflow: hidden;
18394
- position: relative;
18395
- text-align: center;
18396
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18397
- transition-property: width, height;
18398
- vertical-align: middle;
18399
- }
18400
- .v-avatar.v-avatar--size-x-small {
18401
- --v-avatar-height: 24px;
18402
- }
18403
- .v-avatar.v-avatar--size-small {
18404
- --v-avatar-height: 32px;
18405
- }
18406
- .v-avatar.v-avatar--size-default {
18407
- --v-avatar-height: 40px;
18408
- }
18409
- .v-avatar.v-avatar--size-large {
18410
- --v-avatar-height: 48px;
18411
- }
18412
- .v-avatar.v-avatar--size-x-large {
18413
- --v-avatar-height: 56px;
18414
- }
18415
- .v-avatar.v-avatar--density-default {
18416
- height: calc(var(--v-avatar-height) + 0px);
18417
- width: calc(var(--v-avatar-height) + 0px);
18418
- }
18419
- .v-avatar.v-avatar--density-comfortable {
18420
- height: calc(var(--v-avatar-height) + -4px);
18421
- width: calc(var(--v-avatar-height) + -4px);
18422
- }
18423
- .v-avatar.v-avatar--density-compact {
18424
- height: calc(var(--v-avatar-height) + -8px);
18425
- width: calc(var(--v-avatar-height) + -8px);
18426
- }
18427
- .v-avatar {
18428
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18429
- border-style: solid;
18430
- border-width: 0;
18431
- }
18432
- .v-avatar--border {
18433
- border-width: thin;
18434
- box-shadow: none;
18435
- }
18436
- .v-avatar {
18437
- border-radius: 50%;
18438
- }
18439
- .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18440
- background: transparent;
18441
- color: inherit;
18442
- }
18443
- .v-avatar--variant-plain {
18444
- opacity: 0.62;
18445
- }
18446
- .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
18447
- opacity: 1;
18448
- }
18449
- .v-avatar--variant-plain .v-avatar__overlay {
18450
- display: none;
18451
- }
18452
- .v-avatar--variant-elevated, .v-avatar--variant-flat {
18453
- background: var(--v-theme-surface);
18454
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18455
- }
18456
- .v-avatar--variant-elevated {
18457
- box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18458
- }
18459
- .v-avatar--variant-flat {
18460
- 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));
18461
- }
18462
- .v-avatar--variant-outlined {
18463
- border: thin solid currentColor;
18464
- }
18465
- .v-avatar--variant-text .v-avatar__overlay {
18466
- background: currentColor;
18467
- }
18468
- .v-avatar--variant-tonal .v-avatar__underlay {
18469
- background: currentColor;
18470
- opacity: var(--v-activated-opacity);
18471
- border-radius: inherit;
18472
- top: 0;
18473
- right: 0;
18474
- bottom: 0;
18475
- left: 0;
18476
- pointer-events: none;
18477
- }
18478
- .v-avatar .v-avatar__underlay {
18479
- position: absolute;
18480
- }
18481
- .v-avatar--rounded {
18482
- border-radius: 4px;
18483
- }
18484
- .v-avatar--start {
18485
- margin-inline-end: 8px;
18486
- }
18487
- .v-avatar--end {
18488
- margin-inline-start: 8px;
18489
- }
18490
- .v-avatar .v-img {
18491
- height: 100%;
18492
- width: 100%;
18477
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18478
+ transform: translateY(0.5rem);
18493
18479
  }.v-banner {
18494
18480
  display: grid;
18495
18481
  flex: 1 1;
@@ -18656,111 +18642,14 @@ html.overflow-y-hidden {
18656
18642
  }
18657
18643
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18658
18644
  align-self: flex-start;
18659
- }.v-bottom-navigation {
18645
+ }.v-breadcrumbs {
18660
18646
  display: flex;
18661
- max-width: 100%;
18662
- overflow: hidden;
18663
- position: absolute;
18664
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18665
- }
18666
- .v-bottom-navigation {
18667
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18668
- border-style: solid;
18669
- border-width: 0;
18647
+ align-items: center;
18648
+ line-height: 1.6;
18649
+ padding: 16px 12px;
18670
18650
  }
18671
- .v-bottom-navigation--border {
18672
- border-width: thin;
18673
- box-shadow: none;
18674
- }
18675
- .v-bottom-navigation {
18676
- border-radius: 0;
18677
- }
18678
- .v-bottom-navigation {
18679
- background: rgb(var(--v-theme-surface));
18680
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18681
- }
18682
- .v-bottom-navigation--active {
18683
- 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));
18684
- }
18685
-
18686
- .v-bottom-navigation__content {
18687
- display: flex;
18688
- flex: none;
18689
- font-size: 0.75rem;
18690
- justify-content: center;
18691
- transition: inherit;
18692
- width: 100%;
18693
- }
18694
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18695
- font-size: inherit;
18696
- height: 100%;
18697
- max-width: 168px;
18698
- min-width: 80px;
18699
- text-transform: none;
18700
- transition: inherit;
18701
- width: auto;
18702
- }
18703
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18704
- border-radius: 0;
18705
- }
18706
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18707
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18708
- transition: inherit;
18709
- }
18710
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18711
- font-size: 1.5rem;
18712
- }
18713
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18714
- flex-grow: 1;
18715
- }
18716
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18717
- transition: inherit;
18718
- opacity: 0;
18719
- }
18720
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18721
- transform: translateY(0.5rem);
18722
- }.bottom-sheet-transition-enter-from {
18723
- transform: translateY(100%);
18724
- }
18725
- .bottom-sheet-transition-leave-to {
18726
- transform: translateY(100%);
18727
- }
18728
-
18729
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18730
- align-self: flex-end;
18731
- border-radius: 0;
18732
- flex: 0 1 auto;
18733
- left: 0;
18734
- right: 0;
18735
- margin-inline: 0;
18736
- margin-bottom: 0;
18737
- transition-duration: 0.2s;
18738
- width: 100%;
18739
- max-width: 100%;
18740
- overflow: visible;
18741
- }
18742
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18743
- 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));
18744
- }
18745
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18746
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18747
- border-radius: 0;
18748
- }
18749
- .v-bottom-sheet.v-bottom-sheet--inset {
18750
- max-width: none;
18751
- }
18752
- @media (min-width: 600px) {
18753
- .v-bottom-sheet.v-bottom-sheet--inset {
18754
- max-width: 70%;
18755
- }
18756
- }.v-breadcrumbs {
18757
- display: flex;
18758
- align-items: center;
18759
- line-height: 1.6;
18760
- padding: 16px 12px;
18761
- }
18762
- .v-breadcrumbs--rounded {
18763
- border-radius: 4px;
18651
+ .v-breadcrumbs--rounded {
18652
+ border-radius: 4px;
18764
18653
  }
18765
18654
  .v-breadcrumbs--density-default {
18766
18655
  padding-top: 16px;
@@ -18810,6 +18699,40 @@ html.overflow-y-hidden {
18810
18699
  display: inline-block;
18811
18700
  padding: 0 8px;
18812
18701
  vertical-align: middle;
18702
+ }.bottom-sheet-transition-enter-from {
18703
+ transform: translateY(100%);
18704
+ }
18705
+ .bottom-sheet-transition-leave-to {
18706
+ transform: translateY(100%);
18707
+ }
18708
+
18709
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18710
+ align-self: flex-end;
18711
+ border-radius: 0;
18712
+ flex: 0 1 auto;
18713
+ left: 0;
18714
+ right: 0;
18715
+ margin-inline: 0;
18716
+ margin-bottom: 0;
18717
+ transition-duration: 0.2s;
18718
+ width: 100%;
18719
+ max-width: 100%;
18720
+ overflow: visible;
18721
+ }
18722
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18723
+ 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));
18724
+ }
18725
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18726
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18727
+ border-radius: 0;
18728
+ }
18729
+ .v-bottom-sheet.v-bottom-sheet--inset {
18730
+ max-width: none;
18731
+ }
18732
+ @media (min-width: 600px) {
18733
+ .v-bottom-sheet.v-bottom-sheet--inset {
18734
+ max-width: 70%;
18735
+ }
18813
18736
  }.v-btn {
18814
18737
  align-items: center;
18815
18738
  border-radius: 4px;
@@ -19298,22 +19221,6 @@ html.overflow-y-hidden {
19298
19221
  }
19299
19222
  .v-btn-group--tile {
19300
19223
  border-radius: 0;
19301
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19302
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19303
- }
19304
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19305
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19306
- }
19307
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19308
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19309
- }
19310
- @supports not selector(:focus-visible) {
19311
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19312
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19313
- }
19314
- }
19315
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19316
- opacity: 1;
19317
19224
  }.v-card {
19318
19225
  display: block;
19319
19226
  overflow: hidden;
@@ -19622,6 +19529,22 @@ html.overflow-y-hidden {
19622
19529
  pointer-events: none;
19623
19530
  opacity: 0;
19624
19531
  transition: opacity 0.2s ease-in-out;
19532
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19533
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19534
+ }
19535
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19536
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19537
+ }
19538
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19539
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19540
+ }
19541
+ @supports not selector(:focus-visible) {
19542
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19543
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19544
+ }
19545
+ }
19546
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19547
+ opacity: 1;
19625
19548
  }.v-carousel {
19626
19549
  overflow: hidden;
19627
19550
  position: relative;
@@ -19687,6 +19610,83 @@ html.overflow-y-hidden {
19687
19610
  flex-direction: column;
19688
19611
  height: 100% !important;
19689
19612
  width: 50px;
19613
+ }.v-badge {
19614
+ display: inline-block;
19615
+ line-height: 1;
19616
+ }
19617
+
19618
+ .v-badge__badge {
19619
+ align-items: center;
19620
+ display: inline-flex;
19621
+ border-radius: 10px;
19622
+ font-family: "Roboto", sans-serif;
19623
+ font-size: 0.75rem;
19624
+ font-weight: 500;
19625
+ height: 1.25rem;
19626
+ justify-content: center;
19627
+ min-width: 20px;
19628
+ padding: 4px 6px;
19629
+ pointer-events: auto;
19630
+ position: absolute;
19631
+ text-align: center;
19632
+ text-indent: 0;
19633
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
19634
+ white-space: nowrap;
19635
+ }
19636
+ .v-badge__badge {
19637
+ background: rgb(var(--v-theme-surface-variant));
19638
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
19639
+ }
19640
+ .v-badge__badge:has(.v-icon) {
19641
+ padding: 4px 6px;
19642
+ }
19643
+ .v-badge--bordered .v-badge__badge::after {
19644
+ border-radius: inherit;
19645
+ border-style: solid;
19646
+ border-width: 2px;
19647
+ bottom: 0;
19648
+ color: rgb(var(--v-theme-background));
19649
+ content: "";
19650
+ left: 0;
19651
+ position: absolute;
19652
+ right: 0;
19653
+ top: 0;
19654
+ transform: scale(1.05);
19655
+ }
19656
+ .v-badge--dot .v-badge__badge {
19657
+ border-radius: 4.5px;
19658
+ height: 9px;
19659
+ min-width: 0;
19660
+ padding: 0;
19661
+ width: 9px;
19662
+ }
19663
+ .v-badge--dot .v-badge__badge::after {
19664
+ border-width: 1.5px;
19665
+ }
19666
+ .v-badge--inline .v-badge__badge {
19667
+ position: relative;
19668
+ vertical-align: middle;
19669
+ }
19670
+ .v-badge__badge .v-icon {
19671
+ color: inherit;
19672
+ font-size: 0.75rem;
19673
+ margin: 0 -2px;
19674
+ }
19675
+ .v-badge__badge img,
19676
+ .v-badge__badge .v-img {
19677
+ height: 100%;
19678
+ width: 100%;
19679
+ }
19680
+
19681
+ .v-badge__wrapper {
19682
+ display: flex;
19683
+ position: relative;
19684
+ }
19685
+ .v-badge--inline .v-badge__wrapper {
19686
+ align-items: center;
19687
+ display: inline-flex;
19688
+ justify-content: center;
19689
+ margin: 0 4px;
19690
19690
  }.v-checkbox.v-input {
19691
19691
  flex: 0 1 auto;
19692
19692
  }
@@ -20240,21 +20240,52 @@ html.overflow-y-hidden {
20240
20240
  flex: 0 1 auto;
20241
20241
  font-size: 12px;
20242
20242
  transition-duration: 150ms;
20243
- }.v-data-table {
20244
- width: 100%;
20243
+ }.v-data-table-footer {
20244
+ align-items: center;
20245
+ display: flex;
20246
+ flex-wrap: wrap;
20247
+ justify-content: flex-end;
20248
+ padding: 8px 4px;
20245
20249
  }
20246
-
20247
- .v-data-table__table {
20248
- width: 100%;
20249
- border-collapse: separate;
20250
- border-spacing: 0;
20250
+ .v-data-table-footer__items-per-page {
20251
+ align-items: center;
20252
+ display: flex;
20253
+ justify-content: center;
20251
20254
  }
20252
-
20253
- .v-data-table__tr--focus {
20254
- border: 1px dotted black;
20255
+ .v-data-table-footer__items-per-page > span {
20256
+ padding-inline-end: 8px;
20255
20257
  }
20256
- .v-data-table__tr--clickable {
20257
- cursor: pointer;
20258
+ .v-data-table-footer__items-per-page > .v-select {
20259
+ width: 90px;
20260
+ }
20261
+ .v-data-table-footer__info {
20262
+ display: flex;
20263
+ justify-content: flex-end;
20264
+ min-width: 116px;
20265
+ padding: 0 16px;
20266
+ }
20267
+ .v-data-table-footer__paginationz {
20268
+ align-items: center;
20269
+ display: flex;
20270
+ margin-inline-start: 16px;
20271
+ }
20272
+ .v-data-table-footer__page {
20273
+ padding: 0 8px;
20274
+ }.v-data-table {
20275
+ width: 100%;
20276
+ }
20277
+
20278
+ .v-data-table__table {
20279
+ width: 100%;
20280
+ border-collapse: separate;
20281
+ border-spacing: 0;
20282
+ }
20283
+
20284
+ .v-data-table__tr--focus {
20285
+ border: 1px dotted black;
20286
+ }
20287
+ .v-data-table__tr--clickable {
20288
+ cursor: pointer;
20258
20289
  }
20259
20290
 
20260
20291
  .v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
@@ -20427,37 +20458,62 @@ html.overflow-y-hidden {
20427
20458
  }
20428
20459
  .v-data-table__td-sort-icon-active {
20429
20460
  color: rgba(var(--v-theme-on-surface));
20430
- }.v-data-table-footer {
20431
- align-items: center;
20461
+ }.v-date-picker-controls {
20432
20462
  display: flex;
20433
- flex-wrap: wrap;
20434
- justify-content: flex-end;
20435
- padding: 8px 4px;
20436
- }
20437
- .v-data-table-footer__items-per-page {
20438
20463
  align-items: center;
20439
- display: flex;
20440
- justify-content: center;
20464
+ justify-content: space-between;
20465
+ font-size: 0.875rem;
20466
+ padding-top: 4px;
20467
+ padding-bottom: 4px;
20468
+ padding-inline-start: 6px;
20469
+ padding-inline-end: 12px;
20441
20470
  }
20442
- .v-data-table-footer__items-per-page > span {
20443
- padding-inline-end: 8px;
20471
+ .v-date-picker-controls > .v-btn:first-child {
20472
+ text-transform: none;
20473
+ font-weight: 400;
20474
+ line-height: initial;
20475
+ letter-spacing: initial;
20444
20476
  }
20445
- .v-data-table-footer__items-per-page > .v-select {
20446
- width: 90px;
20477
+ .v-date-picker-controls--variant-classic {
20478
+ padding-inline-start: 12px;
20447
20479
  }
20448
- .v-data-table-footer__info {
20449
- display: flex;
20450
- justify-content: flex-end;
20451
- min-width: 116px;
20452
- padding: 0 16px;
20480
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20481
+ opacity: 0.7;
20453
20482
  }
20454
- .v-data-table-footer__paginationz {
20455
- align-items: center;
20483
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20484
+ cursor: pointer;
20485
+ }
20486
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20487
+ opacity: 1;
20488
+ }
20489
+ .v-date-picker-controls .v-btn:last-child {
20490
+ margin-inline-start: 4px;
20491
+ }
20492
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20493
+ transform: rotate(180deg);
20494
+ }
20495
+
20496
+ .v-date-picker-controls__date {
20497
+ margin-inline-end: 4px;
20498
+ }
20499
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20500
+ margin: auto;
20501
+ text-align: center;
20502
+ }
20503
+
20504
+ .v-date-picker-controls__month {
20456
20505
  display: flex;
20457
- margin-inline-start: 16px;
20458
20506
  }
20459
- .v-data-table-footer__page {
20460
- padding: 0 8px;
20507
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20508
+ flex-direction: row-reverse;
20509
+ }
20510
+
20511
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20512
+ flex: 1 0 auto;
20513
+ }
20514
+
20515
+ .v-date-picker__title {
20516
+ display: inline-block;
20461
20517
  }.v-date-picker {
20462
20518
  overflow: hidden;
20463
20519
  width: 328px;
@@ -20524,62 +20580,6 @@ html.overflow-y-hidden {
20524
20580
  .date-picker-header-reverse-transition-leave-to {
20525
20581
  opacity: 0;
20526
20582
  transform: translate(0, 100%);
20527
- }.v-date-picker-controls {
20528
- display: flex;
20529
- align-items: center;
20530
- justify-content: space-between;
20531
- font-size: 0.875rem;
20532
- padding-top: 4px;
20533
- padding-bottom: 4px;
20534
- padding-inline-start: 6px;
20535
- padding-inline-end: 12px;
20536
- }
20537
- .v-date-picker-controls > .v-btn:first-child {
20538
- text-transform: none;
20539
- font-weight: 400;
20540
- line-height: initial;
20541
- letter-spacing: initial;
20542
- }
20543
- .v-date-picker-controls--variant-classic {
20544
- padding-inline-start: 12px;
20545
- }
20546
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20547
- opacity: 0.7;
20548
- }
20549
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20550
- cursor: pointer;
20551
- }
20552
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20553
- opacity: 1;
20554
- }
20555
- .v-date-picker-controls .v-btn:last-child {
20556
- margin-inline-start: 4px;
20557
- }
20558
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20559
- transform: rotate(180deg);
20560
- }
20561
-
20562
- .v-date-picker-controls__date {
20563
- margin-inline-end: 4px;
20564
- }
20565
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20566
- margin: auto;
20567
- text-align: center;
20568
- }
20569
-
20570
- .v-date-picker-controls__month {
20571
- display: flex;
20572
- }
20573
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20574
- flex-direction: row-reverse;
20575
- }
20576
-
20577
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20578
- flex: 1 0 auto;
20579
- }
20580
-
20581
- .v-date-picker__title {
20582
- display: inline-block;
20583
20583
  }.v-date-picker-month {
20584
20584
  display: flex;
20585
20585
  justify-content: center;
@@ -20654,21 +20654,6 @@ html.overflow-y-hidden {
20654
20654
  text-transform: none;
20655
20655
  padding-inline-start: 8px;
20656
20656
  padding-inline-end: 8px;
20657
- }.v-date-picker-years {
20658
- height: 288px;
20659
- overflow-y: scroll;
20660
- }
20661
-
20662
- .v-date-picker-years__content {
20663
- display: grid;
20664
- flex: 1 1;
20665
- justify-content: space-around;
20666
- grid-template-columns: repeat(3, 1fr);
20667
- gap: 8px 24px;
20668
- padding-inline: 32px;
20669
- }
20670
- .v-date-picker-years__content .v-btn {
20671
- padding-inline: 8px;
20672
20657
  }.v-dialog {
20673
20658
  align-items: center;
20674
20659
  justify-content: center;
@@ -20765,6 +20750,21 @@ html.overflow-y-hidden {
20765
20750
  -webkit-backface-visibility: hidden;
20766
20751
  backface-visibility: hidden;
20767
20752
  overflow-y: auto;
20753
+ }.v-date-picker-years {
20754
+ height: 288px;
20755
+ overflow-y: scroll;
20756
+ }
20757
+
20758
+ .v-date-picker-years__content {
20759
+ display: grid;
20760
+ flex: 1 1;
20761
+ justify-content: space-around;
20762
+ grid-template-columns: repeat(3, 1fr);
20763
+ gap: 8px 24px;
20764
+ padding-inline: 32px;
20765
+ }
20766
+ .v-date-picker-years__content .v-btn {
20767
+ padding-inline: 8px;
20768
20768
  }.v-divider {
20769
20769
  display: block;
20770
20770
  flex: 1 1 100%;
@@ -20817,6 +20817,73 @@ html.overflow-y-hidden {
20817
20817
  }
20818
20818
  .v-divider__wrapper--vertical .v-divider {
20819
20819
  margin: 0 auto;
20820
+ }.v-empty-state {
20821
+ align-items: center;
20822
+ display: flex;
20823
+ flex-direction: column;
20824
+ justify-content: center;
20825
+ min-height: 100%;
20826
+ padding: 16px;
20827
+ }
20828
+ .v-empty-state--start {
20829
+ align-items: flex-start;
20830
+ }
20831
+ .v-empty-state--center {
20832
+ align-items: center;
20833
+ }
20834
+ .v-empty-state--end {
20835
+ align-items: flex-end;
20836
+ }
20837
+
20838
+ .v-empty-state__media {
20839
+ text-align: center;
20840
+ width: 100%;
20841
+ }
20842
+ .v-empty-state__media .v-icon {
20843
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20844
+ }
20845
+
20846
+ .v-empty-state__headline {
20847
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20848
+ font-size: 3.75rem;
20849
+ font-weight: 300;
20850
+ line-height: 1;
20851
+ text-align: center;
20852
+ margin-bottom: 8px;
20853
+ }
20854
+ .v-empty-state--mobile .v-empty-state__headline {
20855
+ font-size: 2.125rem;
20856
+ }
20857
+
20858
+ .v-empty-state__title {
20859
+ font-size: 1.25rem;
20860
+ font-weight: 500;
20861
+ line-height: 1.6;
20862
+ margin-bottom: 4px;
20863
+ text-align: center;
20864
+ }
20865
+
20866
+ .v-empty-state__text {
20867
+ font-size: 0.875rem;
20868
+ font-weight: 400;
20869
+ line-height: 1.425;
20870
+ padding: 0 16px;
20871
+ text-align: center;
20872
+ }
20873
+
20874
+ .v-empty-state__content {
20875
+ padding: 24px 0;
20876
+ }
20877
+
20878
+ .v-empty-state__actions {
20879
+ display: flex;
20880
+ gap: 8px;
20881
+ padding: 16px;
20882
+ }
20883
+
20884
+ .v-empty-state__action-btn.v-btn {
20885
+ background-color: initial;
20886
+ color: initial;
20820
20887
  }.v-expansion-panel {
20821
20888
  background-color: rgb(var(--v-theme-surface));
20822
20889
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -21033,73 +21100,75 @@ html.overflow-y-hidden {
21033
21100
  }
21034
21101
  .v-expansion-panels--tile > .v-expansion-panel {
21035
21102
  border-radius: 0;
21036
- }.v-empty-state {
21103
+ }.v-fab {
21037
21104
  align-items: center;
21105
+ display: inline-flex;
21106
+ flex: 1 1 auto;
21107
+ pointer-events: none;
21108
+ position: relative;
21109
+ transition-duration: 0.2s;
21110
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21111
+ vertical-align: middle;
21112
+ }
21113
+ .v-fab .v-btn {
21114
+ pointer-events: auto;
21115
+ }
21116
+ .v-fab .v-btn--variant-elevated {
21117
+ 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));
21118
+ }
21119
+ .v-fab--app, .v-fab--absolute {
21038
21120
  display: flex;
21039
- flex-direction: column;
21040
- justify-content: center;
21041
- min-height: 100%;
21042
- padding: 16px;
21043
21121
  }
21044
- .v-empty-state--start {
21045
- align-items: flex-start;
21122
+ .v-fab--start, .v-fab--left {
21123
+ justify-content: flex-start;
21046
21124
  }
21047
- .v-empty-state--center {
21125
+ .v-fab--center {
21048
21126
  align-items: center;
21127
+ justify-content: center;
21049
21128
  }
21050
- .v-empty-state--end {
21129
+ .v-fab--end, .v-fab--right {
21130
+ justify-content: flex-end;
21131
+ }
21132
+ .v-fab--bottom {
21051
21133
  align-items: flex-end;
21052
21134
  }
21053
-
21054
- .v-empty-state__media {
21055
- text-align: center;
21056
- width: 100%;
21135
+ .v-fab--top {
21136
+ align-items: flex-start;
21057
21137
  }
21058
- .v-empty-state__media .v-icon {
21059
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21138
+ .v-fab--extended .v-btn {
21139
+ border-radius: 9999px !important;
21060
21140
  }
21061
21141
 
21062
- .v-empty-state__headline {
21063
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21064
- font-size: 3.75rem;
21065
- font-weight: 300;
21066
- line-height: 1;
21067
- text-align: center;
21068
- margin-bottom: 8px;
21142
+ .v-fab__container {
21143
+ align-self: center;
21144
+ display: inline-flex;
21145
+ position: absolute;
21146
+ vertical-align: middle;
21069
21147
  }
21070
- .v-empty-state--mobile .v-empty-state__headline {
21071
- font-size: 2.125rem;
21148
+ .v-fab--app .v-fab__container {
21149
+ margin: 12px;
21072
21150
  }
21073
-
21074
- .v-empty-state__title {
21075
- font-size: 1.25rem;
21076
- font-weight: 500;
21077
- line-height: 1.6;
21078
- margin-bottom: 4px;
21079
- text-align: center;
21151
+ .v-fab--absolute .v-fab__container {
21152
+ position: absolute;
21153
+ z-index: 4;
21080
21154
  }
21081
-
21082
- .v-empty-state__text {
21083
- font-size: 0.875rem;
21084
- font-weight: 400;
21085
- line-height: 1.425;
21086
- padding: 0 16px;
21087
- text-align: center;
21155
+ .v-fab--offset.v-fab--top .v-fab__container {
21156
+ transform: translateY(-50%);
21088
21157
  }
21089
-
21090
- .v-empty-state__content {
21091
- padding: 24px 0;
21158
+ .v-fab--offset.v-fab--bottom .v-fab__container {
21159
+ transform: translateY(50%);
21092
21160
  }
21093
-
21094
- .v-empty-state__actions {
21095
- display: flex;
21096
- gap: 8px;
21097
- padding: 16px;
21161
+ .v-fab--top .v-fab__container {
21162
+ top: 0;
21098
21163
  }
21099
-
21100
- .v-empty-state__action-btn.v-btn {
21101
- background-color: initial;
21102
- color: initial;
21164
+ .v-fab--bottom .v-fab__container {
21165
+ bottom: 0;
21166
+ }
21167
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21168
+ left: 0;
21169
+ }
21170
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21171
+ right: 0;
21103
21172
  }/* region INPUT */
21104
21173
  .v-field {
21105
21174
  display: grid;
@@ -21683,76 +21752,7 @@ textarea.v-field__input::placeholder {
21683
21752
  opacity: 0;
21684
21753
  }
21685
21754
 
21686
- /* endregion */.v-fab {
21687
- align-items: center;
21688
- display: inline-flex;
21689
- flex: 1 1 auto;
21690
- pointer-events: none;
21691
- position: relative;
21692
- transition-duration: 0.2s;
21693
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21694
- vertical-align: middle;
21695
- }
21696
- .v-fab .v-btn {
21697
- pointer-events: auto;
21698
- }
21699
- .v-fab .v-btn--variant-elevated {
21700
- 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));
21701
- }
21702
- .v-fab--app, .v-fab--absolute {
21703
- display: flex;
21704
- }
21705
- .v-fab--start, .v-fab--left {
21706
- justify-content: flex-start;
21707
- }
21708
- .v-fab--center {
21709
- align-items: center;
21710
- justify-content: center;
21711
- }
21712
- .v-fab--end, .v-fab--right {
21713
- justify-content: flex-end;
21714
- }
21715
- .v-fab--bottom {
21716
- align-items: flex-end;
21717
- }
21718
- .v-fab--top {
21719
- align-items: flex-start;
21720
- }
21721
- .v-fab--extended .v-btn {
21722
- border-radius: 9999px !important;
21723
- }
21724
-
21725
- .v-fab__container {
21726
- align-self: center;
21727
- display: inline-flex;
21728
- position: absolute;
21729
- vertical-align: middle;
21730
- }
21731
- .v-fab--app .v-fab__container {
21732
- margin: 12px;
21733
- }
21734
- .v-fab--absolute .v-fab__container {
21735
- position: absolute;
21736
- z-index: 4;
21737
- }
21738
- .v-fab--offset.v-fab--top .v-fab__container {
21739
- transform: translateY(-50%);
21740
- }
21741
- .v-fab--offset.v-fab--bottom .v-fab__container {
21742
- transform: translateY(50%);
21743
- }
21744
- .v-fab--top .v-fab__container {
21745
- top: 0;
21746
- }
21747
- .v-fab--bottom .v-fab__container {
21748
- bottom: 0;
21749
- }
21750
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21751
- left: 0;
21752
- }
21753
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21754
- right: 0;
21755
- }.v-file-input--hide.v-input .v-field,
21755
+ /* endregion */.v-file-input--hide.v-input .v-field,
21756
21756
  .v-file-input--hide.v-input .v-input__control,
21757
21757
  .v-file-input--hide.v-input .v-input__details {
21758
21758
  display: none;
@@ -22489,57 +22489,6 @@ textarea.v-field__input::placeholder {
22489
22489
  .offset-xxl-11 {
22490
22490
  margin-inline-start: 91.6666666667%;
22491
22491
  }
22492
- }.v-img {
22493
- --v-theme-overlay-multiplier: 3;
22494
- z-index: 0;
22495
- }
22496
- .v-img.v-img--absolute {
22497
- height: 100%;
22498
- left: 0;
22499
- overflow: hidden;
22500
- position: absolute;
22501
- top: 0;
22502
- width: 100%;
22503
- z-index: -1;
22504
- }
22505
- .v-img--booting .v-responsive__sizer {
22506
- transition: none;
22507
- }
22508
- .v-img--rounded {
22509
- border-radius: 4px;
22510
- }
22511
-
22512
- .v-img__img,
22513
- .v-img__picture,
22514
- .v-img__gradient,
22515
- .v-img__placeholder,
22516
- .v-img__error {
22517
- z-index: -1;
22518
- }
22519
- .v-img__img,
22520
- .v-img__picture,
22521
- .v-img__gradient,
22522
- .v-img__placeholder,
22523
- .v-img__error {
22524
- position: absolute;
22525
- top: 0;
22526
- left: 0;
22527
- width: 100%;
22528
- height: 100%;
22529
- }
22530
-
22531
- .v-img__img--preload {
22532
- filter: blur(4px);
22533
- }
22534
- .v-img__img--contain {
22535
- object-fit: contain;
22536
- }
22537
- .v-img__img--cover {
22538
- object-fit: cover;
22539
- }
22540
-
22541
- .v-img__gradient {
22542
- background-repeat: no-repeat;
22543
22492
  }.v-icon {
22544
22493
  --v-icon-size-multiplier: 1;
22545
22494
  align-items: center;
@@ -22593,36 +22542,87 @@ textarea.v-field__input::placeholder {
22593
22542
 
22594
22543
  .v-icon--end {
22595
22544
  margin-inline-start: 8px;
22596
- }.v-infinite-scroll--horizontal {
22597
- display: flex;
22598
- flex-direction: row;
22599
- overflow-x: auto;
22545
+ }.v-img {
22546
+ --v-theme-overlay-multiplier: 3;
22547
+ z-index: 0;
22600
22548
  }
22601
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22549
+ .v-img.v-img--absolute {
22602
22550
  height: 100%;
22603
- width: var(--v-infinite-margin-size, 1px);
22604
- }
22605
-
22606
- .v-infinite-scroll--vertical {
22607
- display: flex;
22608
- flex-direction: column;
22609
- overflow-y: auto;
22610
- }
22611
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22612
- height: 1px;
22551
+ left: 0;
22552
+ overflow: hidden;
22553
+ position: absolute;
22554
+ top: 0;
22613
22555
  width: 100%;
22556
+ z-index: -1;
22614
22557
  }
22615
-
22616
- .v-infinite-scroll-intersect {
22617
- pointer-events: none;
22618
- margin-top: var(--v-infinite-margin);
22619
- margin-bottom: calc(var(--v-infinite-margin) * -1);
22558
+ .v-img--booting .v-responsive__sizer {
22559
+ transition: none;
22620
22560
  }
22621
- .v-infinite-scroll-intersect:nth-child(2) {
22622
- --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22561
+ .v-img--rounded {
22562
+ border-radius: 4px;
22623
22563
  }
22624
- .v-infinite-scroll-intersect:nth-last-child(2) {
22625
- --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22564
+
22565
+ .v-img__img,
22566
+ .v-img__picture,
22567
+ .v-img__gradient,
22568
+ .v-img__placeholder,
22569
+ .v-img__error {
22570
+ z-index: -1;
22571
+ }
22572
+ .v-img__img,
22573
+ .v-img__picture,
22574
+ .v-img__gradient,
22575
+ .v-img__placeholder,
22576
+ .v-img__error {
22577
+ position: absolute;
22578
+ top: 0;
22579
+ left: 0;
22580
+ width: 100%;
22581
+ height: 100%;
22582
+ }
22583
+
22584
+ .v-img__img--preload {
22585
+ filter: blur(4px);
22586
+ }
22587
+ .v-img__img--contain {
22588
+ object-fit: contain;
22589
+ }
22590
+ .v-img__img--cover {
22591
+ object-fit: cover;
22592
+ }
22593
+
22594
+ .v-img__gradient {
22595
+ background-repeat: no-repeat;
22596
+ }.v-infinite-scroll--horizontal {
22597
+ display: flex;
22598
+ flex-direction: row;
22599
+ overflow-x: auto;
22600
+ }
22601
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22602
+ height: 100%;
22603
+ width: var(--v-infinite-margin-size, 1px);
22604
+ }
22605
+
22606
+ .v-infinite-scroll--vertical {
22607
+ display: flex;
22608
+ flex-direction: column;
22609
+ overflow-y: auto;
22610
+ }
22611
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22612
+ height: 1px;
22613
+ width: 100%;
22614
+ }
22615
+
22616
+ .v-infinite-scroll-intersect {
22617
+ pointer-events: none;
22618
+ margin-top: var(--v-infinite-margin);
22619
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
22620
+ }
22621
+ .v-infinite-scroll-intersect:nth-child(2) {
22622
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22623
+ }
22624
+ .v-infinite-scroll-intersect:nth-last-child(2) {
22625
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22626
22626
  }
22627
22627
 
22628
22628
  .v-infinite-scroll__side {
@@ -22630,6 +22630,11 @@ textarea.v-field__input::placeholder {
22630
22630
  display: flex;
22631
22631
  justify-content: center;
22632
22632
  padding: 8px;
22633
+ }.v-item-group {
22634
+ flex: 0 1 auto;
22635
+ max-width: 100%;
22636
+ position: relative;
22637
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22633
22638
  }.v-input {
22634
22639
  display: grid;
22635
22640
  flex: 1 1 auto;
@@ -22772,11 +22777,6 @@ textarea.v-field__input::placeholder {
22772
22777
 
22773
22778
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22774
22779
  padding-top: calc(var(--v-input-padding-top) + 0px);
22775
- }.v-item-group {
22776
- flex: 0 1 auto;
22777
- max-width: 100%;
22778
- position: relative;
22779
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22780
22780
  }.v-label {
22781
22781
  align-items: center;
22782
22782
  color: inherit;
@@ -22807,8 +22807,6 @@ textarea.v-field__input::placeholder {
22807
22807
 
22808
22808
  .v-layout-item--absolute {
22809
22809
  position: absolute;
22810
- }.v-locale-provider {
22811
- display: contents;
22812
22810
  }.v-list {
22813
22811
  overflow: auto;
22814
22812
  padding: 8px 0;
@@ -23385,6 +23383,8 @@ textarea.v-field__input::placeholder {
23385
23383
  }
23386
23384
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23387
23385
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23386
+ }.v-locale-provider {
23387
+ display: contents;
23388
23388
  }.v-main {
23389
23389
  flex: 1 0 auto;
23390
23390
  max-width: 100%;
@@ -23415,6 +23415,25 @@ textarea.v-field__input::placeholder {
23415
23415
  --v-layout-right: 0px;
23416
23416
  --v-layout-top: 0px;
23417
23417
  --v-layout-bottom: 0px;
23418
+ }.v-menu > .v-overlay__content {
23419
+ display: flex;
23420
+ flex-direction: column;
23421
+ }
23422
+ .v-menu > .v-overlay__content {
23423
+ border-radius: 4px;
23424
+ }
23425
+ .v-menu > .v-overlay__content > .v-card,
23426
+ .v-menu > .v-overlay__content > .v-sheet,
23427
+ .v-menu > .v-overlay__content > .v-list {
23428
+ background: rgb(var(--v-theme-surface));
23429
+ border-radius: inherit;
23430
+ overflow: auto;
23431
+ height: 100%;
23432
+ }
23433
+ .v-menu > .v-overlay__content > .v-card,
23434
+ .v-menu > .v-overlay__content > .v-sheet,
23435
+ .v-menu > .v-overlay__content > .v-list {
23436
+ 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));
23418
23437
  }.v-messages {
23419
23438
  flex: 1 1 auto;
23420
23439
  font-size: 12px;
@@ -23660,12 +23679,6 @@ html.v-overlay-scroll-blocked {
23660
23679
 
23661
23680
  .v-overlay--scroll-blocked {
23662
23681
  padding-inline-end: var(--v-scrollbar-offset);
23663
- }.v-parallax {
23664
- position: relative;
23665
- overflow: hidden;
23666
- }
23667
- .v-parallax--active > .v-img__img {
23668
- will-change: transform;
23669
23682
  }.v-pagination__list {
23670
23683
  display: inline-flex;
23671
23684
  list-style-type: none;
@@ -23674,108 +23687,12 @@ html.v-overlay-scroll-blocked {
23674
23687
  }
23675
23688
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23676
23689
  margin: 0.3rem;
23677
- }.v-progress-circular {
23678
- align-items: center;
23679
- display: inline-flex;
23680
- justify-content: center;
23690
+ }.v-parallax {
23681
23691
  position: relative;
23682
- vertical-align: middle;
23683
- }
23684
- .v-progress-circular > svg {
23685
- width: 100%;
23686
- height: 100%;
23687
- margin: auto;
23688
- position: absolute;
23689
- top: 0;
23690
- bottom: 0;
23691
- left: 0;
23692
- right: 0;
23693
- z-index: 0;
23694
- }
23695
-
23696
- .v-progress-circular__content {
23697
- align-items: center;
23698
- display: flex;
23699
- justify-content: center;
23700
- }
23701
-
23702
- .v-progress-circular__underlay {
23703
- color: rgba(var(--v-border-color), var(--v-border-opacity));
23704
- stroke: currentColor;
23705
- z-index: 1;
23706
- }
23707
-
23708
- .v-progress-circular__overlay {
23709
- stroke: currentColor;
23710
- transition: all 0.2s ease-in-out, stroke-width 0s;
23711
- z-index: 2;
23712
- }
23713
-
23714
- .v-progress-circular--size-x-small {
23715
- height: 16px;
23716
- width: 16px;
23717
- }
23718
- .v-progress-circular--size-small {
23719
- height: 24px;
23720
- width: 24px;
23721
- }
23722
- .v-progress-circular--size-default {
23723
- height: 32px;
23724
- width: 32px;
23725
- }
23726
- .v-progress-circular--size-large {
23727
- height: 48px;
23728
- width: 48px;
23729
- }
23730
- .v-progress-circular--size-x-large {
23731
- height: 64px;
23732
- width: 64px;
23733
- }
23734
-
23735
- .v-progress-circular--indeterminate > svg {
23736
- animation: progress-circular-rotate 1.4s linear infinite;
23737
- transform-origin: center center;
23738
- transition: all 0.2s ease-in-out;
23739
- }
23740
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
23741
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
23742
- stroke-dasharray: 25, 200;
23743
- stroke-dashoffset: 0;
23744
- stroke-linecap: round;
23745
- transform-origin: center center;
23746
- transform: rotate(-90deg);
23747
- }
23748
-
23749
- .v-progress-circular--disable-shrink > svg {
23750
- animation-duration: 0.7s;
23751
- }
23752
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
23753
- animation: none;
23754
- }
23755
-
23756
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
23757
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
23758
- animation-play-state: paused !important;
23759
- }
23760
-
23761
- @keyframes progress-circular-dash {
23762
- 0% {
23763
- stroke-dasharray: 1, 200;
23764
- stroke-dashoffset: 0px;
23765
- }
23766
- 50% {
23767
- stroke-dasharray: 100, 200;
23768
- stroke-dashoffset: -15px;
23769
- }
23770
- 100% {
23771
- stroke-dasharray: 100, 200;
23772
- stroke-dashoffset: -124px;
23773
- }
23692
+ overflow: hidden;
23774
23693
  }
23775
- @keyframes progress-circular-rotate {
23776
- 100% {
23777
- transform: rotate(270deg);
23778
- }
23694
+ .v-parallax--active > .v-img__img {
23695
+ will-change: transform;
23779
23696
  }.v-progress-linear {
23780
23697
  background: transparent;
23781
23698
  overflow: hidden;
@@ -24004,48 +23921,150 @@ html.v-overlay-scroll-blocked {
24004
23921
  0% {
24005
23922
  background-position-x: var(--v-progress-linear-height);
24006
23923
  }
24007
- }.v-radio-group > .v-input__control {
24008
- flex-direction: column;
24009
- }
24010
- .v-radio-group > .v-input__control > .v-label {
24011
- margin-inline-start: 16px;
24012
- }
24013
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24014
- padding-inline-start: 6px;
24015
- margin-top: 8px;
23924
+ }.v-progress-circular {
23925
+ align-items: center;
23926
+ display: inline-flex;
23927
+ justify-content: center;
23928
+ position: relative;
23929
+ vertical-align: middle;
24016
23930
  }
24017
- .v-radio-group .v-input__details {
24018
- padding-inline: 16px;
24019
- }.v-slider .v-slider__container input {
24020
- cursor: default;
24021
- padding: 0;
23931
+ .v-progress-circular > svg {
24022
23932
  width: 100%;
24023
- display: none;
24024
- }
24025
- .v-slider > .v-input__append,
24026
- .v-slider > .v-input__prepend {
24027
- padding: 0;
23933
+ height: 100%;
23934
+ margin: auto;
23935
+ position: absolute;
23936
+ top: 0;
23937
+ bottom: 0;
23938
+ left: 0;
23939
+ right: 0;
23940
+ z-index: 0;
24028
23941
  }
24029
23942
 
24030
- .v-slider__container {
24031
- position: relative;
24032
- min-height: inherit;
24033
- width: 100%;
24034
- height: 100%;
23943
+ .v-progress-circular__content {
23944
+ align-items: center;
24035
23945
  display: flex;
24036
23946
  justify-content: center;
24037
- align-items: center;
24038
- cursor: pointer;
24039
- }
24040
- .v-input--disabled .v-slider__container {
24041
- opacity: var(--v-disabled-opacity);
24042
- }
24043
- .v-input--error:not(.v-input--disabled) .v-slider__container {
24044
- color: rgb(var(--v-theme-error));
24045
23947
  }
24046
23948
 
24047
- .v-slider.v-input--horizontal {
24048
- align-items: center;
23949
+ .v-progress-circular__underlay {
23950
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
23951
+ stroke: currentColor;
23952
+ z-index: 1;
23953
+ }
23954
+
23955
+ .v-progress-circular__overlay {
23956
+ stroke: currentColor;
23957
+ transition: all 0.2s ease-in-out, stroke-width 0s;
23958
+ z-index: 2;
23959
+ }
23960
+
23961
+ .v-progress-circular--size-x-small {
23962
+ height: 16px;
23963
+ width: 16px;
23964
+ }
23965
+ .v-progress-circular--size-small {
23966
+ height: 24px;
23967
+ width: 24px;
23968
+ }
23969
+ .v-progress-circular--size-default {
23970
+ height: 32px;
23971
+ width: 32px;
23972
+ }
23973
+ .v-progress-circular--size-large {
23974
+ height: 48px;
23975
+ width: 48px;
23976
+ }
23977
+ .v-progress-circular--size-x-large {
23978
+ height: 64px;
23979
+ width: 64px;
23980
+ }
23981
+
23982
+ .v-progress-circular--indeterminate > svg {
23983
+ animation: progress-circular-rotate 1.4s linear infinite;
23984
+ transform-origin: center center;
23985
+ transition: all 0.2s ease-in-out;
23986
+ }
23987
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
23988
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
23989
+ stroke-dasharray: 25, 200;
23990
+ stroke-dashoffset: 0;
23991
+ stroke-linecap: round;
23992
+ transform-origin: center center;
23993
+ transform: rotate(-90deg);
23994
+ }
23995
+
23996
+ .v-progress-circular--disable-shrink > svg {
23997
+ animation-duration: 0.7s;
23998
+ }
23999
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
24000
+ animation: none;
24001
+ }
24002
+
24003
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
24004
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
24005
+ animation-play-state: paused !important;
24006
+ }
24007
+
24008
+ @keyframes progress-circular-dash {
24009
+ 0% {
24010
+ stroke-dasharray: 1, 200;
24011
+ stroke-dashoffset: 0px;
24012
+ }
24013
+ 50% {
24014
+ stroke-dasharray: 100, 200;
24015
+ stroke-dashoffset: -15px;
24016
+ }
24017
+ 100% {
24018
+ stroke-dasharray: 100, 200;
24019
+ stroke-dashoffset: -124px;
24020
+ }
24021
+ }
24022
+ @keyframes progress-circular-rotate {
24023
+ 100% {
24024
+ transform: rotate(270deg);
24025
+ }
24026
+ }.v-radio-group > .v-input__control {
24027
+ flex-direction: column;
24028
+ }
24029
+ .v-radio-group > .v-input__control > .v-label {
24030
+ margin-inline-start: 16px;
24031
+ }
24032
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24033
+ padding-inline-start: 6px;
24034
+ margin-top: 8px;
24035
+ }
24036
+ .v-radio-group .v-input__details {
24037
+ padding-inline: 16px;
24038
+ }.v-slider .v-slider__container input {
24039
+ cursor: default;
24040
+ padding: 0;
24041
+ width: 100%;
24042
+ display: none;
24043
+ }
24044
+ .v-slider > .v-input__append,
24045
+ .v-slider > .v-input__prepend {
24046
+ padding: 0;
24047
+ }
24048
+
24049
+ .v-slider__container {
24050
+ position: relative;
24051
+ min-height: inherit;
24052
+ width: 100%;
24053
+ height: 100%;
24054
+ display: flex;
24055
+ justify-content: center;
24056
+ align-items: center;
24057
+ cursor: pointer;
24058
+ }
24059
+ .v-input--disabled .v-slider__container {
24060
+ opacity: var(--v-disabled-opacity);
24061
+ }
24062
+ .v-input--error:not(.v-input--disabled) .v-slider__container {
24063
+ color: rgb(var(--v-theme-error));
24064
+ }
24065
+
24066
+ .v-slider.v-input--horizontal {
24067
+ align-items: center;
24049
24068
  margin-inline: 8px 8px;
24050
24069
  }
24051
24070
  .v-slider.v-input--horizontal > .v-input__control {
@@ -24073,32 +24092,6 @@ html.v-overlay-scroll-blocked {
24073
24092
 
24074
24093
  .v-slider__label {
24075
24094
  margin-inline-end: 12px;
24076
- }.v-responsive {
24077
- display: flex;
24078
- flex: 1 0 auto;
24079
- max-height: 100%;
24080
- max-width: 100%;
24081
- overflow: hidden;
24082
- position: relative;
24083
- }
24084
- .v-responsive--inline {
24085
- display: inline-flex;
24086
- flex: 0 0 auto;
24087
- }
24088
-
24089
- .v-responsive__content {
24090
- flex: 1 0 0px;
24091
- max-width: 100%;
24092
- }
24093
-
24094
- .v-responsive__sizer ~ .v-responsive__content {
24095
- margin-inline-start: -100%;
24096
- }
24097
-
24098
- .v-responsive__sizer {
24099
- flex: 1 0 0px;
24100
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24101
- pointer-events: none;
24102
24095
  }.v-rating {
24103
24096
  max-width: 100%;
24104
24097
  display: inline-flex;
@@ -24152,6 +24145,32 @@ html.v-overlay-scroll-blocked {
24152
24145
  opacity: 0;
24153
24146
  position: absolute;
24154
24147
  width: 0;
24148
+ }.v-responsive {
24149
+ display: flex;
24150
+ flex: 1 0 auto;
24151
+ max-height: 100%;
24152
+ max-width: 100%;
24153
+ overflow: hidden;
24154
+ position: relative;
24155
+ }
24156
+ .v-responsive--inline {
24157
+ display: inline-flex;
24158
+ flex: 0 0 auto;
24159
+ }
24160
+
24161
+ .v-responsive__content {
24162
+ flex: 1 0 0px;
24163
+ max-width: 100%;
24164
+ }
24165
+
24166
+ .v-responsive__sizer ~ .v-responsive__content {
24167
+ margin-inline-start: -100%;
24168
+ }
24169
+
24170
+ .v-responsive__sizer {
24171
+ flex: 1 0 0px;
24172
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24173
+ pointer-events: none;
24155
24174
  }.v-select .v-field .v-text-field__prefix,
24156
24175
  .v-select .v-field .v-text-field__suffix,
24157
24176
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -24204,14 +24223,6 @@ html.v-overlay-scroll-blocked {
24204
24223
  .v-select--active-menu .v-select__menu-icon {
24205
24224
  opacity: var(--v-high-emphasis-opacity);
24206
24225
  transform: rotate(180deg);
24207
- }.v-selection-control-group {
24208
- grid-area: control;
24209
- display: flex;
24210
- flex-direction: column;
24211
- }
24212
- .v-selection-control-group--inline {
24213
- flex-direction: row;
24214
- flex-wrap: wrap;
24215
24226
  }.v-selection-control {
24216
24227
  align-items: center;
24217
24228
  contain: layout;
@@ -24315,6 +24326,50 @@ html.v-overlay-scroll-blocked {
24315
24326
  }
24316
24327
  .v-selection-control--focus-visible .v-selection-control__input::before {
24317
24328
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24329
+ }.v-sheet {
24330
+ display: block;
24331
+ }
24332
+ .v-sheet {
24333
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24334
+ border-style: solid;
24335
+ border-width: 0;
24336
+ }
24337
+ .v-sheet--border {
24338
+ border-width: thin;
24339
+ box-shadow: none;
24340
+ }
24341
+ .v-sheet {
24342
+ 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));
24343
+ }
24344
+ .v-sheet--absolute {
24345
+ position: absolute;
24346
+ }
24347
+ .v-sheet--fixed {
24348
+ position: fixed;
24349
+ }
24350
+ .v-sheet--relative {
24351
+ position: relative;
24352
+ }
24353
+ .v-sheet--sticky {
24354
+ position: sticky;
24355
+ }
24356
+ .v-sheet {
24357
+ border-radius: 0;
24358
+ }
24359
+ .v-sheet {
24360
+ background: rgb(var(--v-theme-surface));
24361
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24362
+ }
24363
+ .v-sheet--rounded {
24364
+ border-radius: 4px;
24365
+ }.v-selection-control-group {
24366
+ grid-area: control;
24367
+ display: flex;
24368
+ flex-direction: column;
24369
+ }
24370
+ .v-selection-control-group--inline {
24371
+ flex-direction: row;
24372
+ flex-wrap: wrap;
24318
24373
  }.v-skeleton-loader {
24319
24374
  align-items: center;
24320
24375
  background: rgb(var(--v-theme-surface));
@@ -24540,60 +24595,24 @@ html.v-overlay-scroll-blocked {
24540
24595
  100% {
24541
24596
  transform: translateX(100%);
24542
24597
  }
24543
- }.v-sheet {
24544
- display: block;
24545
- }
24546
- .v-sheet {
24547
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24548
- border-style: solid;
24549
- border-width: 0;
24550
- }
24551
- .v-sheet--border {
24552
- border-width: thin;
24553
- box-shadow: none;
24598
+ }.v-slide-group {
24599
+ display: flex;
24600
+ overflow: hidden;
24554
24601
  }
24555
- .v-sheet {
24556
- 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));
24602
+
24603
+ .v-slide-group__next,
24604
+ .v-slide-group__prev {
24605
+ align-items: center;
24606
+ display: flex;
24607
+ flex: 0 1 52px;
24608
+ justify-content: center;
24609
+ min-width: 52px;
24610
+ cursor: pointer;
24557
24611
  }
24558
- .v-sheet--absolute {
24559
- position: absolute;
24560
- }
24561
- .v-sheet--fixed {
24562
- position: fixed;
24563
- }
24564
- .v-sheet--relative {
24565
- position: relative;
24566
- }
24567
- .v-sheet--sticky {
24568
- position: sticky;
24569
- }
24570
- .v-sheet {
24571
- border-radius: 0;
24572
- }
24573
- .v-sheet {
24574
- background: rgb(var(--v-theme-surface));
24575
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24576
- }
24577
- .v-sheet--rounded {
24578
- border-radius: 4px;
24579
- }.v-slide-group {
24580
- display: flex;
24581
- overflow: hidden;
24582
- }
24583
-
24584
- .v-slide-group__next,
24585
- .v-slide-group__prev {
24586
- align-items: center;
24587
- display: flex;
24588
- flex: 0 1 52px;
24589
- justify-content: center;
24590
- min-width: 52px;
24591
- cursor: pointer;
24592
- }
24593
- .v-slide-group__next--disabled,
24594
- .v-slide-group__prev--disabled {
24595
- pointer-events: none;
24596
- opacity: var(--v-disabled-opacity);
24612
+ .v-slide-group__next--disabled,
24613
+ .v-slide-group__prev--disabled {
24614
+ pointer-events: none;
24615
+ opacity: var(--v-disabled-opacity);
24597
24616
  }
24598
24617
 
24599
24618
  .v-slide-group__content {
@@ -24812,188 +24831,6 @@ html.v-overlay-scroll-blocked {
24812
24831
  }
24813
24832
  .v-speed-dial__content > *:nth-child(10) {
24814
24833
  transition-delay: 0.45s;
24815
- }.v-switch .v-label {
24816
- padding-inline-start: 10px;
24817
- }
24818
-
24819
- .v-switch__loader {
24820
- display: flex;
24821
- }
24822
- .v-switch__loader .v-progress-circular {
24823
- color: rgb(var(--v-theme-surface));
24824
- }
24825
-
24826
- .v-switch__track,
24827
- .v-switch__thumb {
24828
- transition: none;
24829
- }
24830
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24831
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24832
- background-color: rgb(var(--v-theme-error));
24833
- color: rgb(var(--v-theme-on-error));
24834
- }
24835
-
24836
- .v-switch__track-true {
24837
- margin-inline-end: auto;
24838
- }
24839
- .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
24840
- opacity: 0;
24841
- }
24842
-
24843
- .v-switch__track-false {
24844
- margin-inline-start: auto;
24845
- }
24846
- .v-selection-control--dirty .v-switch__track-false {
24847
- opacity: 0;
24848
- }
24849
-
24850
- .v-switch__track {
24851
- display: inline-flex;
24852
- align-items: center;
24853
- font-size: 0.5rem;
24854
- padding: 0 5px;
24855
- background-color: rgb(var(--v-theme-surface-variant));
24856
- border-radius: 9999px;
24857
- height: 14px;
24858
- opacity: 0.6;
24859
- min-width: 36px;
24860
- cursor: pointer;
24861
- transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24862
- }
24863
- .v-switch--inset .v-switch__track {
24864
- border-radius: 9999px;
24865
- font-size: 0.75rem;
24866
- height: 32px;
24867
- min-width: 52px;
24868
- }
24869
-
24870
- .v-switch__thumb {
24871
- align-items: center;
24872
- background-color: rgb(var(--v-theme-surface-bright));
24873
- color: rgb(var(--v-theme-on-surface-bright));
24874
- border-radius: 50%;
24875
- display: flex;
24876
- font-size: 0.75rem;
24877
- height: 20px;
24878
- justify-content: center;
24879
- width: 20px;
24880
- pointer-events: none;
24881
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24882
- position: relative;
24883
- overflow: hidden;
24884
- }
24885
- .v-switch:not(.v-switch--inset) .v-switch__thumb {
24886
- 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));
24887
- }
24888
- .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
24889
- background: rgb(var(--v-theme-surface-variant));
24890
- color: rgb(var(--v-theme-on-surface-variant));
24891
- }
24892
- .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
24893
- 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));
24894
- }
24895
- .v-switch--inset .v-switch__thumb {
24896
- height: 24px;
24897
- width: 24px;
24898
- transform: scale(0.6666666667);
24899
- }
24900
- .v-switch--inset .v-switch__thumb--filled {
24901
- transform: none;
24902
- }
24903
- .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
24904
- transform: none;
24905
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
24906
- }
24907
-
24908
- .v-switch.v-input {
24909
- flex: 0 1 auto;
24910
- }
24911
- .v-switch .v-selection-control {
24912
- min-height: var(--v-input-control-height);
24913
- }
24914
- .v-switch .v-selection-control__input {
24915
- border-radius: 50%;
24916
- transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
24917
- position: absolute;
24918
- }
24919
- .v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
24920
- transform: translateX(-10px);
24921
- }
24922
-
24923
- .v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
24924
- transform: translateX(10px);
24925
- }
24926
-
24927
- .v-switch .v-selection-control__input .v-icon {
24928
- position: absolute;
24929
- }
24930
- .v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
24931
- transform: translateX(10px);
24932
- }
24933
-
24934
- .v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
24935
- transform: translateX(-10px);
24936
- }
24937
-
24938
- .v-switch.v-switch--indeterminate .v-selection-control__input {
24939
- transform: scale(0.8);
24940
- }
24941
- .v-switch.v-switch--indeterminate .v-switch__thumb {
24942
- transform: scale(0.75);
24943
- box-shadow: none;
24944
- }
24945
- .v-switch.v-switch--inset .v-selection-control__wrapper {
24946
- width: auto;
24947
- }
24948
- .v-switch.v-input--vertical .v-label {
24949
- min-width: max-content;
24950
- }
24951
- .v-switch.v-input--vertical .v-selection-control__wrapper {
24952
- transform: rotate(-90deg);
24953
- }
24954
-
24955
- @media (forced-colors: active) {
24956
- .v-switch .v-switch__loader .v-progress-circular {
24957
- color: currentColor;
24958
- }
24959
- .v-switch .v-switch__thumb {
24960
- background-color: buttontext;
24961
- }
24962
- .v-switch .v-switch__track,
24963
- .v-switch .v-switch__thumb {
24964
- border: 1px solid;
24965
- color: buttontext;
24966
- }
24967
- .v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
24968
- background-color: highlight;
24969
- }
24970
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
24971
- background-color: highlight;
24972
- }
24973
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
24974
- .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
24975
- color: highlight;
24976
- }
24977
- .v-switch.v-switch--inset .v-switch__track {
24978
- border-width: 2px;
24979
- }
24980
- .v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
24981
- background-color: highlighttext;
24982
- color: highlighttext;
24983
- }
24984
- .v-switch.v-input--disabled .v-switch__thumb {
24985
- background-color: graytext;
24986
- }
24987
- .v-switch.v-input--disabled .v-switch__track,
24988
- .v-switch.v-input--disabled .v-switch__thumb {
24989
- color: graytext;
24990
- }
24991
- .v-switch.v-switch--loading .v-switch__thumb {
24992
- background-color: canvas;
24993
- }
24994
- .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
24995
- border-width: 0;
24996
- }
24997
24834
  }.v-stepper.v-sheet {
24998
24835
  overflow: hidden;
24999
24836
  }
@@ -25147,28 +24984,210 @@ html.v-overlay-scroll-blocked {
25147
24984
  .v-stepper--alt-labels .v-stepper-item__subtitle {
25148
24985
  text-align: center;
25149
24986
  }
25150
- .v-stepper--mobile .v-stepper-item__subtitle {
25151
- display: none;
24987
+ .v-stepper--mobile .v-stepper-item__subtitle {
24988
+ display: none;
24989
+ }
24990
+
24991
+ .v-stepper-item__overlay {
24992
+ background-color: currentColor;
24993
+ border-radius: inherit;
24994
+ opacity: 0;
24995
+ transition: opacity 0.2s ease-in-out;
24996
+ }
24997
+
24998
+ .v-stepper-item__overlay,
24999
+ .v-stepper-item__underlay {
25000
+ pointer-events: none;
25001
+ }
25002
+ .v-stepper-item__overlay,
25003
+ .v-stepper-item__underlay {
25004
+ position: absolute;
25005
+ top: 0;
25006
+ left: 0;
25007
+ width: 100%;
25008
+ height: 100%;
25009
+ }.v-switch .v-label {
25010
+ padding-inline-start: 10px;
25011
+ }
25012
+
25013
+ .v-switch__loader {
25014
+ display: flex;
25015
+ }
25016
+ .v-switch__loader .v-progress-circular {
25017
+ color: rgb(var(--v-theme-surface));
25018
+ }
25019
+
25020
+ .v-switch__track,
25021
+ .v-switch__thumb {
25022
+ transition: none;
25023
+ }
25024
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
25025
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
25026
+ background-color: rgb(var(--v-theme-error));
25027
+ color: rgb(var(--v-theme-on-error));
25028
+ }
25029
+
25030
+ .v-switch__track-true {
25031
+ margin-inline-end: auto;
25032
+ }
25033
+ .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
25034
+ opacity: 0;
25035
+ }
25036
+
25037
+ .v-switch__track-false {
25038
+ margin-inline-start: auto;
25039
+ }
25040
+ .v-selection-control--dirty .v-switch__track-false {
25041
+ opacity: 0;
25042
+ }
25043
+
25044
+ .v-switch__track {
25045
+ display: inline-flex;
25046
+ align-items: center;
25047
+ font-size: 0.5rem;
25048
+ padding: 0 5px;
25049
+ background-color: rgb(var(--v-theme-surface-variant));
25050
+ border-radius: 9999px;
25051
+ height: 14px;
25052
+ opacity: 0.6;
25053
+ min-width: 36px;
25054
+ cursor: pointer;
25055
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
25056
+ }
25057
+ .v-switch--inset .v-switch__track {
25058
+ border-radius: 9999px;
25059
+ font-size: 0.75rem;
25060
+ height: 32px;
25061
+ min-width: 52px;
25062
+ }
25063
+
25064
+ .v-switch__thumb {
25065
+ align-items: center;
25066
+ background-color: rgb(var(--v-theme-surface-bright));
25067
+ color: rgb(var(--v-theme-on-surface-bright));
25068
+ border-radius: 50%;
25069
+ display: flex;
25070
+ font-size: 0.75rem;
25071
+ height: 20px;
25072
+ justify-content: center;
25073
+ width: 20px;
25074
+ pointer-events: none;
25075
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
25076
+ position: relative;
25077
+ overflow: hidden;
25078
+ }
25079
+ .v-switch:not(.v-switch--inset) .v-switch__thumb {
25080
+ 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));
25081
+ }
25082
+ .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
25083
+ background: rgb(var(--v-theme-surface-variant));
25084
+ color: rgb(var(--v-theme-on-surface-variant));
25085
+ }
25086
+ .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
25087
+ 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));
25088
+ }
25089
+ .v-switch--inset .v-switch__thumb {
25090
+ height: 24px;
25091
+ width: 24px;
25092
+ transform: scale(0.6666666667);
25093
+ }
25094
+ .v-switch--inset .v-switch__thumb--filled {
25095
+ transform: none;
25096
+ }
25097
+ .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
25098
+ transform: none;
25099
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
25100
+ }
25101
+
25102
+ .v-switch.v-input {
25103
+ flex: 0 1 auto;
25104
+ }
25105
+ .v-switch .v-selection-control {
25106
+ min-height: var(--v-input-control-height);
25107
+ }
25108
+ .v-switch .v-selection-control__input {
25109
+ border-radius: 50%;
25110
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
25111
+ position: absolute;
25112
+ }
25113
+ .v-locale--is-ltr.v-switch .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control__input {
25114
+ transform: translateX(-10px);
25115
+ }
25116
+
25117
+ .v-locale--is-rtl.v-switch .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control__input {
25118
+ transform: translateX(10px);
25119
+ }
25120
+
25121
+ .v-switch .v-selection-control__input .v-icon {
25122
+ position: absolute;
25123
+ }
25124
+ .v-locale--is-ltr.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-ltr .v-switch .v-selection-control--dirty .v-selection-control__input {
25125
+ transform: translateX(10px);
25152
25126
  }
25153
25127
 
25154
- .v-stepper-item__overlay {
25155
- background-color: currentColor;
25156
- border-radius: inherit;
25157
- opacity: 0;
25158
- transition: opacity 0.2s ease-in-out;
25128
+ .v-locale--is-rtl.v-switch .v-selection-control--dirty .v-selection-control__input, .v-locale--is-rtl .v-switch .v-selection-control--dirty .v-selection-control__input {
25129
+ transform: translateX(-10px);
25159
25130
  }
25160
25131
 
25161
- .v-stepper-item__overlay,
25162
- .v-stepper-item__underlay {
25163
- pointer-events: none;
25132
+ .v-switch.v-switch--indeterminate .v-selection-control__input {
25133
+ transform: scale(0.8);
25164
25134
  }
25165
- .v-stepper-item__overlay,
25166
- .v-stepper-item__underlay {
25167
- position: absolute;
25168
- top: 0;
25169
- left: 0;
25170
- width: 100%;
25171
- height: 100%;
25135
+ .v-switch.v-switch--indeterminate .v-switch__thumb {
25136
+ transform: scale(0.75);
25137
+ box-shadow: none;
25138
+ }
25139
+ .v-switch.v-switch--inset .v-selection-control__wrapper {
25140
+ width: auto;
25141
+ }
25142
+ .v-switch.v-input--vertical .v-label {
25143
+ min-width: max-content;
25144
+ }
25145
+ .v-switch.v-input--vertical .v-selection-control__wrapper {
25146
+ transform: rotate(-90deg);
25147
+ }
25148
+
25149
+ @media (forced-colors: active) {
25150
+ .v-switch .v-switch__loader .v-progress-circular {
25151
+ color: currentColor;
25152
+ }
25153
+ .v-switch .v-switch__thumb {
25154
+ background-color: buttontext;
25155
+ }
25156
+ .v-switch .v-switch__track,
25157
+ .v-switch .v-switch__thumb {
25158
+ border: 1px solid;
25159
+ color: buttontext;
25160
+ }
25161
+ .v-switch:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25162
+ background-color: highlight;
25163
+ }
25164
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track {
25165
+ background-color: highlight;
25166
+ }
25167
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__track,
25168
+ .v-switch:not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25169
+ color: highlight;
25170
+ }
25171
+ .v-switch.v-switch--inset .v-switch__track {
25172
+ border-width: 2px;
25173
+ }
25174
+ .v-switch.v-switch--inset:not(.v-switch--loading):not(.v-input--disabled) .v-selection-control--dirty .v-switch__thumb {
25175
+ background-color: highlighttext;
25176
+ color: highlighttext;
25177
+ }
25178
+ .v-switch.v-input--disabled .v-switch__thumb {
25179
+ background-color: graytext;
25180
+ }
25181
+ .v-switch.v-input--disabled .v-switch__track,
25182
+ .v-switch.v-input--disabled .v-switch__thumb {
25183
+ color: graytext;
25184
+ }
25185
+ .v-switch.v-switch--loading .v-switch__thumb {
25186
+ background-color: canvas;
25187
+ }
25188
+ .v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
25189
+ border-width: 0;
25190
+ }
25172
25191
  }.v-system-bar {
25173
25192
  align-items: center;
25174
25193
  display: flex;
@@ -25212,35 +25231,6 @@ html.v-overlay-scroll-blocked {
25212
25231
  }
25213
25232
  .v-system-bar:not(.v-system-bar--absolute) {
25214
25233
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25215
- }.v-tab.v-tab.v-btn {
25216
- height: var(--v-tabs-height);
25217
- border-radius: 0;
25218
- min-width: 90px;
25219
- }
25220
- .v-slide-group--horizontal .v-tab {
25221
- max-width: 360px;
25222
- }
25223
- .v-slide-group--vertical .v-tab {
25224
- justify-content: start;
25225
- }
25226
-
25227
- .v-tab__slider {
25228
- position: absolute;
25229
- bottom: 0;
25230
- left: 0;
25231
- height: 2px;
25232
- width: 100%;
25233
- background: currentColor;
25234
- pointer-events: none;
25235
- opacity: 0;
25236
- }
25237
- .v-tab--selected .v-tab__slider {
25238
- opacity: 1;
25239
- }
25240
- .v-slide-group--vertical .v-tab__slider {
25241
- top: 0;
25242
- height: 100%;
25243
- width: 2px;
25244
25234
  }.v-tabs {
25245
25235
  display: flex;
25246
25236
  height: var(--v-tabs-height);
@@ -25307,6 +25297,35 @@ html.v-overlay-scroll-blocked {
25307
25297
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25308
25298
  margin-inline-end: 52px;
25309
25299
  }
25300
+ }.v-tab.v-tab.v-btn {
25301
+ height: var(--v-tabs-height);
25302
+ border-radius: 0;
25303
+ min-width: 90px;
25304
+ }
25305
+ .v-slide-group--horizontal .v-tab {
25306
+ max-width: 360px;
25307
+ }
25308
+ .v-slide-group--vertical .v-tab {
25309
+ justify-content: start;
25310
+ }
25311
+
25312
+ .v-tab__slider {
25313
+ position: absolute;
25314
+ bottom: 0;
25315
+ left: 0;
25316
+ height: 2px;
25317
+ width: 100%;
25318
+ background: currentColor;
25319
+ pointer-events: none;
25320
+ opacity: 0;
25321
+ }
25322
+ .v-tab--selected .v-tab__slider {
25323
+ opacity: 1;
25324
+ }
25325
+ .v-slide-group--vertical .v-tab__slider {
25326
+ top: 0;
25327
+ height: 100%;
25328
+ width: 2px;
25310
25329
  }.v-table {
25311
25330
  font-size: 0.875rem;
25312
25331
  transition-duration: 0.28s;
@@ -25449,6 +25468,45 @@ html.v-overlay-scroll-blocked {
25449
25468
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25450
25469
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25451
25470
  border-top: 0px !important;
25471
+ }.v-textarea .v-field {
25472
+ --v-textarea-control-height: var(--v-input-control-height);
25473
+ }
25474
+ .v-textarea .v-field__field {
25475
+ --v-input-control-height: var(--v-textarea-control-height);
25476
+ }
25477
+ .v-textarea .v-field__input {
25478
+ flex: 1 1 auto;
25479
+ outline: none;
25480
+ -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25481
+ mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25482
+ }
25483
+ .v-textarea .v-field__input.v-textarea__sizer {
25484
+ visibility: hidden;
25485
+ position: absolute;
25486
+ top: 0;
25487
+ left: 0;
25488
+ height: 0 !important;
25489
+ min-height: 0 !important;
25490
+ pointer-events: none;
25491
+ }
25492
+ .v-textarea--no-resize .v-field__input {
25493
+ resize: none;
25494
+ }
25495
+ .v-textarea .v-field--no-label textarea,
25496
+ .v-textarea .v-field--active textarea {
25497
+ opacity: 1;
25498
+ }
25499
+ .v-textarea textarea {
25500
+ opacity: 0;
25501
+ flex: 1;
25502
+ min-width: 0;
25503
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25504
+ }
25505
+ .v-textarea textarea:focus, .v-textarea textarea:active {
25506
+ outline: none;
25507
+ }
25508
+ .v-textarea textarea:invalid {
25509
+ box-shadow: none;
25452
25510
  }/* region BLOCK */
25453
25511
  .v-text-field input {
25454
25512
  color: inherit;
@@ -25480,84 +25538,188 @@ html.v-overlay-scroll-blocked {
25480
25538
  .v-input--plain-underlined.v-text-field .v-input__details {
25481
25539
  padding-inline: 0;
25482
25540
  }
25483
-
25484
- .v-text-field .v-field--no-label input,
25485
- .v-text-field .v-field--active input {
25486
- opacity: 1;
25541
+
25542
+ .v-text-field .v-field--no-label input,
25543
+ .v-text-field .v-field--active input {
25544
+ opacity: 1;
25545
+ }
25546
+ .v-text-field .v-field--single-line input {
25547
+ transition: none;
25548
+ }
25549
+
25550
+ /* endregion */
25551
+ /* region ELEMENTS */
25552
+ .v-text-field__prefix, .v-text-field__suffix {
25553
+ align-items: center;
25554
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
25555
+ cursor: default;
25556
+ display: flex;
25557
+ opacity: 0;
25558
+ transition: inherit;
25559
+ white-space: nowrap;
25560
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
25561
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
25562
+ padding-bottom: var(--v-field-padding-bottom, 6px);
25563
+ }
25564
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
25565
+ opacity: 1;
25566
+ }
25567
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
25568
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
25569
+ }
25570
+ .v-text-field__prefix {
25571
+ padding-inline-start: var(--v-field-padding-start);
25572
+ }
25573
+ .v-text-field__suffix {
25574
+ padding-inline-end: var(--v-field-padding-end);
25575
+ }
25576
+
25577
+ /* endregion */.v-theme-provider {
25578
+ background: rgb(var(--v-theme-background));
25579
+ color: rgb(var(--v-theme-on-background));
25580
+ }.v-toolbar {
25581
+ align-items: flex-start;
25582
+ display: flex;
25583
+ flex: none;
25584
+ flex-direction: column;
25585
+ justify-content: space-between;
25586
+ max-width: 100%;
25587
+ position: relative;
25588
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25589
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25590
+ width: 100%;
25591
+ }
25592
+ .v-toolbar {
25593
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25594
+ border-style: solid;
25595
+ border-width: 0;
25596
+ }
25597
+ .v-toolbar--border {
25598
+ border-width: thin;
25599
+ box-shadow: none;
25600
+ }
25601
+ .v-toolbar {
25602
+ 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));
25603
+ }
25604
+ .v-toolbar {
25605
+ border-radius: 0;
25606
+ }
25607
+ .v-toolbar {
25608
+ background: rgb(var(--v-theme-surface-light));
25609
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25610
+ }
25611
+ .v-toolbar--absolute {
25612
+ position: absolute;
25613
+ }
25614
+ .v-toolbar--collapse {
25615
+ max-width: 112px;
25616
+ overflow: hidden;
25617
+ border-end-end-radius: 24px;
25618
+ }
25619
+ .v-toolbar--collapse .v-toolbar-title {
25620
+ display: none;
25621
+ }
25622
+ .v-toolbar--flat {
25623
+ 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));
25624
+ }
25625
+ .v-toolbar--floating {
25626
+ display: inline-flex;
25487
25627
  }
25488
- .v-text-field .v-field--single-line input {
25489
- transition: none;
25628
+ .v-toolbar--rounded {
25629
+ border-radius: 4px;
25490
25630
  }
25491
25631
 
25492
- /* endregion */
25493
- /* region ELEMENTS */
25494
- .v-text-field__prefix, .v-text-field__suffix {
25632
+ .v-toolbar__content,
25633
+ .v-toolbar__extension {
25495
25634
  align-items: center;
25496
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
25497
- cursor: default;
25498
25635
  display: flex;
25499
- opacity: 0;
25636
+ flex: 0 0 auto;
25637
+ position: relative;
25500
25638
  transition: inherit;
25501
- white-space: nowrap;
25502
- min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
25503
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
25504
- padding-bottom: var(--v-field-padding-bottom, 6px);
25505
- }
25506
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
25507
- opacity: 1;
25639
+ width: 100%;
25508
25640
  }
25509
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
25510
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
25641
+
25642
+ .v-toolbar__content {
25643
+ overflow: hidden;
25511
25644
  }
25512
- .v-text-field__prefix {
25513
- padding-inline-start: var(--v-field-padding-start);
25645
+ .v-toolbar__content > .v-btn:first-child {
25646
+ margin-inline-start: 4px;
25514
25647
  }
25515
- .v-text-field__suffix {
25516
- padding-inline-end: var(--v-field-padding-end);
25648
+ .v-toolbar__content > .v-btn:last-child {
25649
+ margin-inline-end: 4px;
25517
25650
  }
25518
-
25519
- /* endregion */.v-textarea .v-field {
25520
- --v-textarea-control-height: var(--v-input-control-height);
25651
+ .v-toolbar__content > .v-toolbar-title {
25652
+ margin-inline-start: 20px;
25521
25653
  }
25522
- .v-textarea .v-field__field {
25523
- --v-input-control-height: var(--v-textarea-control-height);
25654
+ .v-toolbar--density-prominent .v-toolbar__content {
25655
+ align-items: flex-start;
25524
25656
  }
25525
- .v-textarea .v-field__input {
25526
- flex: 1 1 auto;
25527
- outline: none;
25528
- -webkit-mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25529
- mask-image: linear-gradient(to bottom, transparent, transparent calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) - 6px), black calc(var(--v-field-padding-top, 0) + var(--v-input-padding-top, 0) + 4px));
25657
+
25658
+ .v-toolbar__image {
25659
+ display: flex;
25660
+ opacity: var(--v-toolbar-image-opacity, 1);
25661
+ transition-property: opacity;
25530
25662
  }
25531
- .v-textarea .v-field__input.v-textarea__sizer {
25532
- visibility: hidden;
25663
+ .v-toolbar__image {
25533
25664
  position: absolute;
25534
25665
  top: 0;
25535
25666
  left: 0;
25536
- height: 0 !important;
25537
- min-height: 0 !important;
25538
- pointer-events: none;
25667
+ width: 100%;
25668
+ height: 100%;
25539
25669
  }
25540
- .v-textarea--no-resize .v-field__input {
25541
- resize: none;
25670
+
25671
+ .v-toolbar__prepend,
25672
+ .v-toolbar__append {
25673
+ align-items: center;
25674
+ align-self: stretch;
25675
+ display: flex;
25542
25676
  }
25543
- .v-textarea .v-field--no-label textarea,
25544
- .v-textarea .v-field--active textarea {
25545
- opacity: 1;
25677
+
25678
+ .v-toolbar__prepend {
25679
+ margin-inline: 4px auto;
25546
25680
  }
25547
- .v-textarea textarea {
25548
- opacity: 0;
25549
- flex: 1;
25681
+
25682
+ .v-toolbar__append {
25683
+ margin-inline: auto 4px;
25684
+ }
25685
+
25686
+ .v-toolbar-title {
25687
+ flex: 1 1;
25688
+ font-size: 1.25rem;
25550
25689
  min-width: 0;
25551
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25552
25690
  }
25553
- .v-textarea textarea:focus, .v-textarea textarea:active {
25554
- outline: none;
25691
+ .v-toolbar-title {
25692
+ font-size: 1.25rem;
25693
+ font-weight: 400;
25694
+ letter-spacing: 0;
25695
+ line-height: 1.75rem;
25696
+ text-transform: none;
25555
25697
  }
25556
- .v-textarea textarea:invalid {
25557
- box-shadow: none;
25558
- }.v-theme-provider {
25559
- background: rgb(var(--v-theme-background));
25560
- color: rgb(var(--v-theme-on-background));
25698
+ .v-toolbar--density-prominent .v-toolbar-title {
25699
+ align-self: flex-end;
25700
+ padding-bottom: 6px;
25701
+ }
25702
+ .v-toolbar--density-prominent .v-toolbar-title {
25703
+ font-size: 1.5rem;
25704
+ font-weight: 400;
25705
+ letter-spacing: 0;
25706
+ line-height: 2.25rem;
25707
+ text-transform: none;
25708
+ }
25709
+
25710
+ .v-toolbar-title__placeholder {
25711
+ overflow: hidden;
25712
+ text-overflow: ellipsis;
25713
+ white-space: nowrap;
25714
+ }
25715
+
25716
+ .v-toolbar-items {
25717
+ display: flex;
25718
+ height: inherit;
25719
+ align-self: stretch;
25720
+ }
25721
+ .v-toolbar-items > .v-btn {
25722
+ border-radius: 0;
25561
25723
  }.v-timeline .v-timeline-divider__dot {
25562
25724
  background: rgb(var(--v-theme-surface-light));
25563
25725
  }
@@ -25894,231 +26056,88 @@ html.v-overlay-scroll-blocked {
25894
26056
  .v-timeline--horizontal.v-timeline--align-center {
25895
26057
  justify-items: center;
25896
26058
  }
25897
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__body {
25898
- padding-inline: 12px;
25899
- }
25900
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
25901
- padding-inline: 12px;
25902
- }
25903
- .v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
25904
- justify-content: center;
25905
- }
25906
-
25907
- .v-timeline--vertical.v-timeline--align-center {
25908
- align-items: center;
25909
- }
25910
- .v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
25911
- justify-content: center;
25912
- }
25913
-
25914
- .v-timeline--align-start {
25915
- --v-timeline-line-size-base: 100%;
25916
- --v-timeline-line-size-offset: 12px;
25917
- }
25918
- .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
25919
- --v-timeline-line-size-offset: 24px;
25920
- }
25921
- .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
25922
- --v-timeline-line-size-offset: -12px;
25923
- }
25924
- .v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
25925
- --v-timeline-line-size-offset: 0px;
25926
- }
25927
- .v-timeline--horizontal.v-timeline--align-start {
25928
- justify-items: flex-start;
25929
- }
25930
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
25931
- justify-content: flex-start;
25932
- }
25933
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
25934
- width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
25935
- }
25936
- .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
25937
- width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
25938
- }
25939
-
25940
- .v-timeline--vertical.v-timeline--align-start {
25941
- align-items: flex-start;
25942
- }
25943
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
25944
- justify-content: flex-start;
25945
- }
25946
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
25947
- height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
25948
- }
25949
- .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
25950
- height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
25951
- }
25952
-
25953
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
25954
- display: none;
25955
- }
25956
- .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
25957
- --v-timeline-line-size-offset: 12px;
25958
- }
25959
- .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
25960
- padding-block-start: 0;
25961
- }
25962
-
25963
- .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
25964
- padding-inline-start: 0;
25965
- }
25966
-
25967
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
25968
- display: none;
25969
- }
25970
- .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
25971
- --v-timeline-line-size-offset: 12px;
25972
- }
25973
- .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
25974
- padding-block-end: 0;
25975
- }
25976
-
25977
- .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 {
25978
- padding-inline-end: 0;
25979
- }.v-toolbar {
25980
- align-items: flex-start;
25981
- display: flex;
25982
- flex: none;
25983
- flex-direction: column;
25984
- justify-content: space-between;
25985
- max-width: 100%;
25986
- position: relative;
25987
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25988
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25989
- width: 100%;
25990
- }
25991
- .v-toolbar {
25992
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25993
- border-style: solid;
25994
- border-width: 0;
25995
- }
25996
- .v-toolbar--border {
25997
- border-width: thin;
25998
- box-shadow: none;
25999
- }
26000
- .v-toolbar {
26001
- 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));
26002
- }
26003
- .v-toolbar {
26004
- border-radius: 0;
26005
- }
26006
- .v-toolbar {
26007
- background: rgb(var(--v-theme-surface-light));
26008
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26009
- }
26010
- .v-toolbar--absolute {
26011
- position: absolute;
26012
- }
26013
- .v-toolbar--collapse {
26014
- max-width: 112px;
26015
- overflow: hidden;
26016
- border-end-end-radius: 24px;
26017
- }
26018
- .v-toolbar--collapse .v-toolbar-title {
26019
- display: none;
26020
- }
26021
- .v-toolbar--flat {
26022
- 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));
26059
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__body {
26060
+ padding-inline: 12px;
26023
26061
  }
26024
- .v-toolbar--floating {
26025
- display: inline-flex;
26062
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
26063
+ padding-inline: 12px;
26026
26064
  }
26027
- .v-toolbar--rounded {
26028
- border-radius: 4px;
26065
+ .v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
26066
+ justify-content: center;
26029
26067
  }
26030
26068
 
26031
- .v-toolbar__content,
26032
- .v-toolbar__extension {
26069
+ .v-timeline--vertical.v-timeline--align-center {
26033
26070
  align-items: center;
26034
- display: flex;
26035
- flex: 0 0 auto;
26036
- position: relative;
26037
- transition: inherit;
26038
- width: 100%;
26071
+ }
26072
+ .v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
26073
+ justify-content: center;
26039
26074
  }
26040
26075
 
26041
- .v-toolbar__content {
26042
- overflow: hidden;
26076
+ .v-timeline--align-start {
26077
+ --v-timeline-line-size-base: 100%;
26078
+ --v-timeline-line-size-offset: 12px;
26043
26079
  }
26044
- .v-toolbar__content > .v-btn:first-child {
26045
- margin-inline-start: 4px;
26080
+ .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
26081
+ --v-timeline-line-size-offset: 24px;
26046
26082
  }
26047
- .v-toolbar__content > .v-btn:last-child {
26048
- margin-inline-end: 4px;
26083
+ .v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
26084
+ --v-timeline-line-size-offset: -12px;
26049
26085
  }
26050
- .v-toolbar__content > .v-toolbar-title {
26051
- margin-inline-start: 20px;
26086
+ .v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
26087
+ --v-timeline-line-size-offset: 0px;
26052
26088
  }
26053
- .v-toolbar--density-prominent .v-toolbar__content {
26054
- align-items: flex-start;
26089
+ .v-timeline--horizontal.v-timeline--align-start {
26090
+ justify-items: flex-start;
26055
26091
  }
26056
-
26057
- .v-toolbar__image {
26058
- display: flex;
26059
- opacity: var(--v-toolbar-image-opacity, 1);
26060
- transition-property: opacity;
26092
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
26093
+ justify-content: flex-start;
26061
26094
  }
26062
- .v-toolbar__image {
26063
- position: absolute;
26064
- top: 0;
26065
- left: 0;
26066
- width: 100%;
26067
- height: 100%;
26095
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26096
+ width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26068
26097
  }
26069
-
26070
- .v-toolbar__prepend,
26071
- .v-toolbar__append {
26072
- align-items: center;
26073
- align-self: stretch;
26074
- display: flex;
26098
+ .v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26099
+ width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26075
26100
  }
26076
26101
 
26077
- .v-toolbar__prepend {
26078
- margin-inline: 4px auto;
26102
+ .v-timeline--vertical.v-timeline--align-start {
26103
+ align-items: flex-start;
26079
26104
  }
26080
-
26081
- .v-toolbar__append {
26082
- margin-inline: auto 4px;
26105
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
26106
+ justify-content: flex-start;
26083
26107
  }
26084
-
26085
- .v-toolbar-title {
26086
- flex: 1 1;
26087
- font-size: 1.25rem;
26088
- min-width: 0;
26108
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
26109
+ height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
26089
26110
  }
26090
- .v-toolbar-title {
26091
- font-size: 1.25rem;
26092
- font-weight: 400;
26093
- letter-spacing: 0;
26094
- line-height: 1.75rem;
26095
- text-transform: none;
26111
+ .v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
26112
+ height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
26096
26113
  }
26097
- .v-toolbar--density-prominent .v-toolbar-title {
26098
- align-self: flex-end;
26099
- padding-bottom: 6px;
26114
+
26115
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
26116
+ display: none;
26100
26117
  }
26101
- .v-toolbar--density-prominent .v-toolbar-title {
26102
- font-size: 1.5rem;
26103
- font-weight: 400;
26104
- letter-spacing: 0;
26105
- line-height: 2.25rem;
26106
- text-transform: none;
26118
+ .v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
26119
+ --v-timeline-line-size-offset: 12px;
26120
+ }
26121
+ .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26122
+ padding-block-start: 0;
26107
26123
  }
26108
26124
 
26109
- .v-toolbar-title__placeholder {
26110
- overflow: hidden;
26111
- text-overflow: ellipsis;
26112
- white-space: nowrap;
26125
+ .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
26126
+ padding-inline-start: 0;
26113
26127
  }
26114
26128
 
26115
- .v-toolbar-items {
26116
- display: flex;
26117
- height: inherit;
26118
- align-self: stretch;
26129
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
26130
+ display: none;
26119
26131
  }
26120
- .v-toolbar-items > .v-btn {
26121
- border-radius: 0;
26132
+ .v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
26133
+ --v-timeline-line-size-offset: 12px;
26134
+ }
26135
+ .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
26136
+ padding-block-end: 0;
26137
+ }
26138
+
26139
+ .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 {
26140
+ padding-inline-end: 0;
26122
26141
  }.v-tooltip > .v-overlay__content {
26123
26142
  background: rgb(var(--v-theme-surface-variant));
26124
26143
  color: rgb(var(--v-theme-on-surface-variant));
@@ -26220,47 +26239,6 @@ html.v-overlay-scroll-blocked {
26220
26239
  }
26221
26240
  .v-window-y-reverse-transition-leave-to {
26222
26241
  transform: translateY(100%);
26223
- }.v-menu > .v-overlay__content {
26224
- display: flex;
26225
- flex-direction: column;
26226
- }
26227
- .v-menu > .v-overlay__content {
26228
- border-radius: 4px;
26229
- }
26230
- .v-menu > .v-overlay__content > .v-card,
26231
- .v-menu > .v-overlay__content > .v-sheet,
26232
- .v-menu > .v-overlay__content > .v-list {
26233
- background: rgb(var(--v-theme-surface));
26234
- border-radius: inherit;
26235
- overflow: auto;
26236
- height: 100%;
26237
- }
26238
- .v-menu > .v-overlay__content > .v-card,
26239
- .v-menu > .v-overlay__content > .v-sheet,
26240
- .v-menu > .v-overlay__content > .v-list {
26241
- 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));
26242
- }.v-color-picker-canvas {
26243
- display: flex;
26244
- position: relative;
26245
- overflow: hidden;
26246
- contain: content;
26247
- touch-action: none;
26248
- }
26249
- .v-color-picker-canvas__dot {
26250
- position: absolute;
26251
- top: 0;
26252
- left: 0;
26253
- width: 15px;
26254
- height: 15px;
26255
- background: transparent;
26256
- border-radius: 50%;
26257
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26258
- }
26259
- .v-color-picker-canvas__dot--disabled {
26260
- 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);
26261
- }
26262
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26263
- will-change: transform;
26264
26242
  }.v-color-picker-edit {
26265
26243
  display: flex;
26266
26244
  margin-top: 24px;
@@ -26289,41 +26267,28 @@ html.v-overlay-scroll-blocked {
26289
26267
  }
26290
26268
  .v-color-picker-edit__input span {
26291
26269
  font-size: 0.75rem;
26292
- }.v-color-picker-swatches {
26293
- overflow-y: auto;
26294
- }
26295
- .v-color-picker-swatches > div {
26296
- display: flex;
26297
- flex-wrap: wrap;
26298
- justify-content: center;
26299
- padding: 8px;
26300
- }
26301
-
26302
- .v-color-picker-swatches__swatch {
26270
+ }.v-color-picker-canvas {
26303
26271
  display: flex;
26304
- flex-direction: column;
26305
- margin-bottom: 10px;
26306
- }
26307
-
26308
- .v-color-picker-swatches__color {
26309
26272
  position: relative;
26310
- height: 18px;
26311
- max-height: 18px;
26312
- width: 45px;
26313
- margin: 2px 4px;
26314
- border-radius: 2px;
26315
- -webkit-user-select: none;
26316
- user-select: none;
26317
26273
  overflow: hidden;
26318
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26319
- cursor: pointer;
26274
+ contain: content;
26275
+ touch-action: none;
26320
26276
  }
26321
- .v-color-picker-swatches__color > div {
26322
- display: flex;
26323
- align-items: center;
26324
- justify-content: center;
26325
- width: 100%;
26326
- height: 100%;
26277
+ .v-color-picker-canvas__dot {
26278
+ position: absolute;
26279
+ top: 0;
26280
+ left: 0;
26281
+ width: 15px;
26282
+ height: 15px;
26283
+ background: transparent;
26284
+ border-radius: 50%;
26285
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
26286
+ }
26287
+ .v-color-picker-canvas__dot--disabled {
26288
+ 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);
26289
+ }
26290
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
26291
+ will-change: transform;
26327
26292
  }.v-color-picker-preview__alpha .v-slider-track__background {
26328
26293
  background-color: transparent !important;
26329
26294
  }
@@ -26394,6 +26359,41 @@ html.v-overlay-scroll-blocked {
26394
26359
  .v-color-picker-preview__eye-dropper {
26395
26360
  position: relative;
26396
26361
  margin-right: 12px;
26362
+ }.v-color-picker-swatches {
26363
+ overflow-y: auto;
26364
+ }
26365
+ .v-color-picker-swatches > div {
26366
+ display: flex;
26367
+ flex-wrap: wrap;
26368
+ justify-content: center;
26369
+ padding: 8px;
26370
+ }
26371
+
26372
+ .v-color-picker-swatches__swatch {
26373
+ display: flex;
26374
+ flex-direction: column;
26375
+ margin-bottom: 10px;
26376
+ }
26377
+
26378
+ .v-color-picker-swatches__color {
26379
+ position: relative;
26380
+ height: 18px;
26381
+ max-height: 18px;
26382
+ width: 45px;
26383
+ margin: 2px 4px;
26384
+ border-radius: 2px;
26385
+ -webkit-user-select: none;
26386
+ user-select: none;
26387
+ overflow: hidden;
26388
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
26389
+ cursor: pointer;
26390
+ }
26391
+ .v-color-picker-swatches__color > div {
26392
+ display: flex;
26393
+ align-items: center;
26394
+ justify-content: center;
26395
+ width: 100%;
26396
+ height: 100%;
26397
26397
  }.v-picker.v-sheet {
26398
26398
  display: grid;
26399
26399
  grid-auto-rows: min-content;