@vuetify/nightly 3.7.4-master.2024-11-06 → 3.7.4-master.2024-11-07

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-06
2
+ * Vuetify v3.7.4-master.2024-11-07
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17994,6 +17994,103 @@ html.overflow-y-hidden {
17994
17994
  min-height: 100vh;
17995
17995
  min-height: 100dvh;
17996
17996
  position: relative;
17997
+ }.v-app-bar {
17998
+ display: flex;
17999
+ }
18000
+ .v-app-bar.v-toolbar {
18001
+ background: rgb(var(--v-theme-surface));
18002
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18003
+ }
18004
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
18005
+ 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));
18006
+ }
18007
+ .v-app-bar:not(.v-toolbar--absolute) {
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);
17997
18094
  }.v-alert {
17998
18095
  display: grid;
17999
18096
  flex: 1 1;
@@ -18210,103 +18307,112 @@ html.overflow-y-hidden {
18210
18307
  text-transform: none;
18211
18308
  word-break: normal;
18212
18309
  word-wrap: break-word;
18213
- }.v-app-bar {
18214
- display: flex;
18310
+ }.v-avatar {
18311
+ flex: none;
18312
+ align-items: center;
18313
+ display: inline-flex;
18314
+ justify-content: center;
18315
+ line-height: normal;
18316
+ overflow: hidden;
18317
+ position: relative;
18318
+ text-align: center;
18319
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18320
+ transition-property: width, height;
18321
+ vertical-align: middle;
18215
18322
  }
18216
- .v-app-bar.v-toolbar {
18217
- background: rgb(var(--v-theme-surface));
18218
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18323
+ .v-avatar.v-avatar--size-x-small {
18324
+ --v-avatar-height: 24px;
18219
18325
  }
18220
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
18221
- 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));
18326
+ .v-avatar.v-avatar--size-small {
18327
+ --v-avatar-height: 32px;
18222
18328
  }
18223
- .v-app-bar:not(.v-toolbar--absolute) {
18224
- padding-inline-end: var(--v-scrollbar-offset);
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;
18329
+ .v-avatar.v-avatar--size-default {
18330
+ --v-avatar-height: 40px;
18229
18331
  }
18230
- .v-autocomplete .v-field .v-field__input > input {
18231
- flex: 1 1;
18332
+ .v-avatar.v-avatar--size-large {
18333
+ --v-avatar-height: 48px;
18232
18334
  }
18233
- .v-autocomplete .v-field input {
18234
- min-width: 64px;
18335
+ .v-avatar.v-avatar--size-x-large {
18336
+ --v-avatar-height: 56px;
18235
18337
  }
18236
- .v-autocomplete .v-field:not(.v-field--focused) input {
18237
- min-width: 0;
18338
+ .v-avatar.v-avatar--density-default {
18339
+ height: calc(var(--v-avatar-height) + 0px);
18340
+ width: calc(var(--v-avatar-height) + 0px);
18238
18341
  }
18239
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18240
- margin-inline-end: 2px;
18342
+ .v-avatar.v-avatar--density-comfortable {
18343
+ height: calc(var(--v-avatar-height) + -4px);
18344
+ width: calc(var(--v-avatar-height) + -4px);
18241
18345
  }
18242
- .v-autocomplete .v-autocomplete__selection-text {
18243
- overflow: hidden;
18244
- text-overflow: ellipsis;
18245
- white-space: nowrap;
18346
+ .v-avatar.v-avatar--density-compact {
18347
+ height: calc(var(--v-avatar-height) + -8px);
18348
+ width: calc(var(--v-avatar-height) + -8px);
18246
18349
  }
18247
-
18248
- .v-autocomplete__content {
18249
- overflow: hidden;
18350
+ .v-avatar {
18351
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18352
+ border-style: solid;
18353
+ border-width: 0;
18250
18354
  }
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));
18355
+ .v-avatar--border {
18356
+ border-width: thin;
18357
+ box-shadow: none;
18253
18358
  }
18254
- .v-autocomplete__content {
18255
- border-radius: 4px;
18359
+ .v-avatar {
18360
+ border-radius: 50%;
18256
18361
  }
18257
- .v-autocomplete__mask {
18258
- background: rgb(var(--v-theme-surface-light));
18362
+ .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18363
+ background: transparent;
18364
+ color: inherit;
18259
18365
  }
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);
18366
+ .v-avatar--variant-plain {
18367
+ opacity: 0.62;
18267
18368
  }
18268
- .v-autocomplete__selection:first-child {
18269
- margin-inline-start: 0;
18369
+ .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
18370
+ opacity: 1;
18270
18371
  }
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;
18372
+ .v-avatar--variant-plain .v-avatar__overlay {
18373
+ display: none;
18276
18374
  }
18277
- .v-autocomplete--selecting-index .v-autocomplete__selection {
18278
- opacity: var(--v-medium-emphasis-opacity);
18375
+ .v-avatar--variant-elevated, .v-avatar--variant-flat {
18376
+ background: var(--v-theme-surface);
18377
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18279
18378
  }
18280
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18281
- opacity: 1;
18379
+ .v-avatar--variant-elevated {
18380
+ 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));
18282
18381
  }
18283
- .v-autocomplete--selecting-index .v-field__input > input {
18284
- caret-color: transparent;
18382
+ .v-avatar--variant-flat {
18383
+ 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));
18285
18384
  }
18286
- .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
18287
- flex: 1 1;
18288
- position: absolute;
18289
- left: 0;
18385
+ .v-avatar--variant-outlined {
18386
+ border: thin solid currentColor;
18387
+ }
18388
+ .v-avatar--variant-text .v-avatar__overlay {
18389
+ background: currentColor;
18390
+ }
18391
+ .v-avatar--variant-tonal .v-avatar__underlay {
18392
+ background: currentColor;
18393
+ opacity: var(--v-activated-opacity);
18394
+ border-radius: inherit;
18395
+ top: 0;
18290
18396
  right: 0;
18291
- width: 100%;
18292
- padding-inline: inherit;
18397
+ bottom: 0;
18398
+ left: 0;
18399
+ pointer-events: none;
18293
18400
  }
18294
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
18295
- transition: none;
18401
+ .v-avatar .v-avatar__underlay {
18402
+ position: absolute;
18296
18403
  }
18297
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
18298
- opacity: 0;
18404
+ .v-avatar--rounded {
18405
+ border-radius: 4px;
18299
18406
  }
18300
- .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
18301
- opacity: 0;
18407
+ .v-avatar--start {
18408
+ margin-inline-end: 8px;
18302
18409
  }
18303
- .v-autocomplete__menu-icon {
18304
- margin-inline-start: 4px;
18305
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18410
+ .v-avatar--end {
18411
+ margin-inline-start: 8px;
18306
18412
  }
18307
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
18308
- opacity: var(--v-high-emphasis-opacity);
18309
- transform: rotate(180deg);
18413
+ .v-avatar .v-img {
18414
+ height: 100%;
18415
+ width: 100%;
18310
18416
  }.v-badge {
18311
18417
  display: inline-block;
18312
18418
  line-height: 1;
@@ -18380,12 +18486,75 @@ html.overflow-y-hidden {
18380
18486
  display: inline-flex;
18381
18487
  justify-content: center;
18382
18488
  margin: 0 4px;
18383
- }.v-banner {
18384
- display: grid;
18385
- flex: 1 1;
18386
- font-size: 0.875rem;
18387
- grid-template-areas: "prepend content actions";
18388
- grid-template-columns: max-content auto max-content;
18489
+ }.v-bottom-navigation {
18490
+ display: flex;
18491
+ max-width: 100%;
18492
+ overflow: hidden;
18493
+ position: absolute;
18494
+ transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18495
+ }
18496
+ .v-bottom-navigation {
18497
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18498
+ border-style: solid;
18499
+ border-width: 0;
18500
+ }
18501
+ .v-bottom-navigation--border {
18502
+ border-width: thin;
18503
+ box-shadow: none;
18504
+ }
18505
+ .v-bottom-navigation {
18506
+ border-radius: 0;
18507
+ }
18508
+ .v-bottom-navigation {
18509
+ background: rgb(var(--v-theme-surface));
18510
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18511
+ }
18512
+ .v-bottom-navigation--active {
18513
+ 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));
18514
+ }
18515
+
18516
+ .v-bottom-navigation__content {
18517
+ display: flex;
18518
+ flex: none;
18519
+ font-size: 0.75rem;
18520
+ justify-content: center;
18521
+ transition: inherit;
18522
+ width: 100%;
18523
+ }
18524
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18525
+ font-size: inherit;
18526
+ height: 100%;
18527
+ max-width: 168px;
18528
+ min-width: 80px;
18529
+ text-transform: none;
18530
+ transition: inherit;
18531
+ width: auto;
18532
+ }
18533
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18534
+ border-radius: 0;
18535
+ }
18536
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18537
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18538
+ transition: inherit;
18539
+ }
18540
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18541
+ font-size: 1.5rem;
18542
+ }
18543
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18544
+ flex-grow: 1;
18545
+ }
18546
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18547
+ transition: inherit;
18548
+ opacity: 0;
18549
+ }
18550
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18551
+ transform: translateY(0.5rem);
18552
+ }.v-banner {
18553
+ display: grid;
18554
+ flex: 1 1;
18555
+ font-size: 0.875rem;
18556
+ grid-template-areas: "prepend content actions";
18557
+ grid-template-columns: max-content auto max-content;
18389
18558
  grid-template-rows: max-content max-content;
18390
18559
  line-height: 1.6;
18391
18560
  overflow: hidden;
@@ -18546,175 +18715,6 @@ html.overflow-y-hidden {
18546
18715
  }
18547
18716
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18548
18717
  align-self: flex-start;
18549
- }.v-avatar {
18550
- flex: none;
18551
- align-items: center;
18552
- display: inline-flex;
18553
- justify-content: center;
18554
- line-height: normal;
18555
- overflow: hidden;
18556
- position: relative;
18557
- text-align: center;
18558
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18559
- transition-property: width, height;
18560
- vertical-align: middle;
18561
- }
18562
- .v-avatar.v-avatar--size-x-small {
18563
- --v-avatar-height: 24px;
18564
- }
18565
- .v-avatar.v-avatar--size-small {
18566
- --v-avatar-height: 32px;
18567
- }
18568
- .v-avatar.v-avatar--size-default {
18569
- --v-avatar-height: 40px;
18570
- }
18571
- .v-avatar.v-avatar--size-large {
18572
- --v-avatar-height: 48px;
18573
- }
18574
- .v-avatar.v-avatar--size-x-large {
18575
- --v-avatar-height: 56px;
18576
- }
18577
- .v-avatar.v-avatar--density-default {
18578
- height: calc(var(--v-avatar-height) + 0px);
18579
- width: calc(var(--v-avatar-height) + 0px);
18580
- }
18581
- .v-avatar.v-avatar--density-comfortable {
18582
- height: calc(var(--v-avatar-height) + -4px);
18583
- width: calc(var(--v-avatar-height) + -4px);
18584
- }
18585
- .v-avatar.v-avatar--density-compact {
18586
- height: calc(var(--v-avatar-height) + -8px);
18587
- width: calc(var(--v-avatar-height) + -8px);
18588
- }
18589
- .v-avatar {
18590
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18591
- border-style: solid;
18592
- border-width: 0;
18593
- }
18594
- .v-avatar--border {
18595
- border-width: thin;
18596
- box-shadow: none;
18597
- }
18598
- .v-avatar {
18599
- border-radius: 50%;
18600
- }
18601
- .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18602
- background: transparent;
18603
- color: inherit;
18604
- }
18605
- .v-avatar--variant-plain {
18606
- opacity: 0.62;
18607
- }
18608
- .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
18609
- opacity: 1;
18610
- }
18611
- .v-avatar--variant-plain .v-avatar__overlay {
18612
- display: none;
18613
- }
18614
- .v-avatar--variant-elevated, .v-avatar--variant-flat {
18615
- background: var(--v-theme-surface);
18616
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18617
- }
18618
- .v-avatar--variant-elevated {
18619
- 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));
18620
- }
18621
- .v-avatar--variant-flat {
18622
- 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));
18623
- }
18624
- .v-avatar--variant-outlined {
18625
- border: thin solid currentColor;
18626
- }
18627
- .v-avatar--variant-text .v-avatar__overlay {
18628
- background: currentColor;
18629
- }
18630
- .v-avatar--variant-tonal .v-avatar__underlay {
18631
- background: currentColor;
18632
- opacity: var(--v-activated-opacity);
18633
- border-radius: inherit;
18634
- top: 0;
18635
- right: 0;
18636
- bottom: 0;
18637
- left: 0;
18638
- pointer-events: none;
18639
- }
18640
- .v-avatar .v-avatar__underlay {
18641
- position: absolute;
18642
- }
18643
- .v-avatar--rounded {
18644
- border-radius: 4px;
18645
- }
18646
- .v-avatar--start {
18647
- margin-inline-end: 8px;
18648
- }
18649
- .v-avatar--end {
18650
- margin-inline-start: 8px;
18651
- }
18652
- .v-avatar .v-img {
18653
- height: 100%;
18654
- width: 100%;
18655
- }.v-bottom-navigation {
18656
- display: flex;
18657
- max-width: 100%;
18658
- overflow: hidden;
18659
- position: absolute;
18660
- transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
18661
- }
18662
- .v-bottom-navigation {
18663
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18664
- border-style: solid;
18665
- border-width: 0;
18666
- }
18667
- .v-bottom-navigation--border {
18668
- border-width: thin;
18669
- box-shadow: none;
18670
- }
18671
- .v-bottom-navigation {
18672
- border-radius: 0;
18673
- }
18674
- .v-bottom-navigation {
18675
- background: rgb(var(--v-theme-surface));
18676
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18677
- }
18678
- .v-bottom-navigation--active {
18679
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18680
- }
18681
-
18682
- .v-bottom-navigation__content {
18683
- display: flex;
18684
- flex: none;
18685
- font-size: 0.75rem;
18686
- justify-content: center;
18687
- transition: inherit;
18688
- width: 100%;
18689
- }
18690
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18691
- font-size: inherit;
18692
- height: 100%;
18693
- max-width: 168px;
18694
- min-width: 80px;
18695
- text-transform: none;
18696
- transition: inherit;
18697
- width: auto;
18698
- }
18699
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18700
- border-radius: 0;
18701
- }
18702
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18703
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18704
- transition: inherit;
18705
- }
18706
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18707
- font-size: 1.5rem;
18708
- }
18709
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18710
- flex-grow: 1;
18711
- }
18712
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18713
- transition: inherit;
18714
- opacity: 0;
18715
- }
18716
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18717
- transform: translateY(0.5rem);
18718
18718
  }.bottom-sheet-transition-enter-from {
18719
18719
  transform: translateY(100%);
18720
18720
  }
@@ -18749,20 +18749,77 @@ html.overflow-y-hidden {
18749
18749
  .v-bottom-sheet.v-bottom-sheet--inset {
18750
18750
  max-width: 70%;
18751
18751
  }
18752
- }.v-btn {
18752
+ }.v-breadcrumbs {
18753
+ display: flex;
18753
18754
  align-items: center;
18755
+ line-height: 1.6;
18756
+ padding: 16px 12px;
18757
+ }
18758
+ .v-breadcrumbs--rounded {
18754
18759
  border-radius: 4px;
18755
- display: inline-grid;
18756
- grid-template-areas: "prepend content append";
18757
- grid-template-columns: max-content auto max-content;
18758
- font-weight: 500;
18759
- justify-content: center;
18760
- letter-spacing: 0.0892857143em;
18761
- line-height: normal;
18762
- max-width: 100%;
18763
- outline: none;
18764
- position: relative;
18765
- text-decoration: none;
18760
+ }
18761
+ .v-breadcrumbs--density-default {
18762
+ padding-top: 16px;
18763
+ padding-bottom: 16px;
18764
+ }
18765
+
18766
+ .v-breadcrumbs--density-comfortable {
18767
+ padding-top: 12px;
18768
+ padding-bottom: 12px;
18769
+ }
18770
+
18771
+ .v-breadcrumbs--density-compact {
18772
+ padding-top: 8px;
18773
+ padding-bottom: 8px;
18774
+ }
18775
+
18776
+ .v-breadcrumbs__prepend {
18777
+ align-items: center;
18778
+ display: inline-flex;
18779
+ }
18780
+
18781
+ .v-breadcrumbs-item {
18782
+ align-items: center;
18783
+ color: inherit;
18784
+ display: inline-flex;
18785
+ padding: 0 4px;
18786
+ text-decoration: none;
18787
+ vertical-align: middle;
18788
+ }
18789
+ .v-breadcrumbs-item--disabled {
18790
+ opacity: var(--v-disabled-opacity);
18791
+ pointer-events: none;
18792
+ }
18793
+ .v-breadcrumbs-item--link {
18794
+ color: inherit;
18795
+ text-decoration: none;
18796
+ }
18797
+ .v-breadcrumbs-item--link:hover {
18798
+ text-decoration: underline;
18799
+ }
18800
+ .v-breadcrumbs-item .v-icon {
18801
+ font-size: 1rem;
18802
+ margin-inline: -4px 2px;
18803
+ }
18804
+
18805
+ .v-breadcrumbs-divider {
18806
+ display: inline-block;
18807
+ padding: 0 8px;
18808
+ vertical-align: middle;
18809
+ }.v-btn {
18810
+ align-items: center;
18811
+ border-radius: 4px;
18812
+ display: inline-grid;
18813
+ grid-template-areas: "prepend content append";
18814
+ grid-template-columns: max-content auto max-content;
18815
+ font-weight: 500;
18816
+ justify-content: center;
18817
+ letter-spacing: 0.0892857143em;
18818
+ line-height: normal;
18819
+ max-width: 100%;
18820
+ outline: none;
18821
+ position: relative;
18822
+ text-decoration: none;
18766
18823
  text-indent: 0.0892857143em;
18767
18824
  text-transform: uppercase;
18768
18825
  transition-property: box-shadow, transform, opacity, background;
@@ -19173,63 +19230,6 @@ html.overflow-y-hidden {
19173
19230
  }
19174
19231
  .v-pagination .v-pagination__item--is-active .v-btn__overlay {
19175
19232
  opacity: var(--v-border-opacity);
19176
- }.v-breadcrumbs {
19177
- display: flex;
19178
- align-items: center;
19179
- line-height: 1.6;
19180
- padding: 16px 12px;
19181
- }
19182
- .v-breadcrumbs--rounded {
19183
- border-radius: 4px;
19184
- }
19185
- .v-breadcrumbs--density-default {
19186
- padding-top: 16px;
19187
- padding-bottom: 16px;
19188
- }
19189
-
19190
- .v-breadcrumbs--density-comfortable {
19191
- padding-top: 12px;
19192
- padding-bottom: 12px;
19193
- }
19194
-
19195
- .v-breadcrumbs--density-compact {
19196
- padding-top: 8px;
19197
- padding-bottom: 8px;
19198
- }
19199
-
19200
- .v-breadcrumbs__prepend {
19201
- align-items: center;
19202
- display: inline-flex;
19203
- }
19204
-
19205
- .v-breadcrumbs-item {
19206
- align-items: center;
19207
- color: inherit;
19208
- display: inline-flex;
19209
- padding: 0 4px;
19210
- text-decoration: none;
19211
- vertical-align: middle;
19212
- }
19213
- .v-breadcrumbs-item--disabled {
19214
- opacity: var(--v-disabled-opacity);
19215
- pointer-events: none;
19216
- }
19217
- .v-breadcrumbs-item--link {
19218
- color: inherit;
19219
- text-decoration: none;
19220
- }
19221
- .v-breadcrumbs-item--link:hover {
19222
- text-decoration: underline;
19223
- }
19224
- .v-breadcrumbs-item .v-icon {
19225
- font-size: 1rem;
19226
- margin-inline: -4px 2px;
19227
- }
19228
-
19229
- .v-breadcrumbs-divider {
19230
- display: inline-block;
19231
- padding: 0 8px;
19232
- vertical-align: middle;
19233
19233
  }.v-btn-group {
19234
19234
  display: inline-flex;
19235
19235
  flex-wrap: nowrap;
@@ -19294,11 +19294,87 @@ html.overflow-y-hidden {
19294
19294
  }
19295
19295
  .v-btn-group--tile {
19296
19296
  border-radius: 0;
19297
- }.v-checkbox.v-input {
19297
+ }.v-carousel {
19298
+ overflow: hidden;
19299
+ position: relative;
19300
+ width: 100%;
19301
+ }
19302
+ .v-carousel__controls {
19303
+ align-items: center;
19304
+ bottom: 0;
19305
+ display: flex;
19306
+ height: 50px;
19307
+ justify-content: center;
19308
+ list-style-type: none;
19309
+ position: absolute;
19310
+ width: 100%;
19311
+ z-index: 1;
19312
+ }
19313
+ .v-carousel__controls {
19314
+ background: rgba(var(--v-theme-surface-variant), 0.3);
19315
+ color: rgb(var(--v-theme-on-surface-variant));
19316
+ }
19317
+ .v-carousel__controls > .v-item-group {
19298
19318
  flex: 0 1 auto;
19299
19319
  }
19300
- .v-checkbox .v-selection-control {
19301
- min-height: var(--v-input-control-height);
19320
+ .v-carousel__controls__item {
19321
+ margin: 0 8px;
19322
+ }
19323
+ .v-carousel__controls__item .v-icon {
19324
+ opacity: 0.5;
19325
+ }
19326
+ .v-carousel__controls__item--active .v-icon {
19327
+ opacity: 1;
19328
+ vertical-align: middle;
19329
+ }
19330
+ .v-carousel__controls__item:hover {
19331
+ background: none;
19332
+ }
19333
+ .v-carousel__controls__item:hover .v-icon {
19334
+ opacity: 0.8;
19335
+ }
19336
+
19337
+ .v-carousel__progress {
19338
+ margin: 0;
19339
+ position: absolute;
19340
+ bottom: 0;
19341
+ left: 0;
19342
+ right: 0;
19343
+ }
19344
+
19345
+ .v-carousel-item {
19346
+ display: block;
19347
+ height: inherit;
19348
+ text-decoration: none;
19349
+ }
19350
+ .v-carousel-item > .v-img {
19351
+ height: inherit;
19352
+ }
19353
+
19354
+ .v-carousel--hide-delimiter-background .v-carousel__controls {
19355
+ background: transparent;
19356
+ }
19357
+
19358
+ .v-carousel--vertical-delimiters .v-carousel__controls {
19359
+ flex-direction: column;
19360
+ height: 100% !important;
19361
+ width: 50px;
19362
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19363
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19364
+ }
19365
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19366
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19367
+ }
19368
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19369
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19370
+ }
19371
+ @supports not selector(:focus-visible) {
19372
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19373
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19374
+ }
19375
+ }
19376
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19377
+ opacity: 1;
19302
19378
  }.v-card {
19303
19379
  display: block;
19304
19380
  overflow: hidden;
@@ -19607,110 +19683,29 @@ html.overflow-y-hidden {
19607
19683
  pointer-events: none;
19608
19684
  opacity: 0;
19609
19685
  transition: opacity 0.2s ease-in-out;
19610
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
19611
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
19612
- }
19613
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
19614
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
19615
- }
19616
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
19617
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19618
- }
19619
- @supports not selector(:focus-visible) {
19620
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
19621
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
19622
- }
19623
- }
19624
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
19625
- opacity: 1;
19626
- }.v-carousel {
19686
+ }.v-chip {
19687
+ align-items: center;
19688
+ display: inline-flex;
19689
+ font-weight: 400;
19690
+ max-width: 100%;
19691
+ min-width: 0;
19627
19692
  overflow: hidden;
19628
19693
  position: relative;
19629
- width: 100%;
19630
- }
19631
- .v-carousel__controls {
19632
- align-items: center;
19633
- bottom: 0;
19634
- display: flex;
19635
- height: 50px;
19636
- justify-content: center;
19637
- list-style-type: none;
19638
- position: absolute;
19639
- width: 100%;
19640
- z-index: 1;
19694
+ text-decoration: none;
19695
+ white-space: nowrap;
19696
+ vertical-align: middle;
19641
19697
  }
19642
- .v-carousel__controls {
19643
- background: rgba(var(--v-theme-surface-variant), 0.3);
19644
- color: rgb(var(--v-theme-on-surface-variant));
19698
+ .v-chip .v-icon {
19699
+ --v-icon-size-multiplier: 0.8571428571;
19645
19700
  }
19646
- .v-carousel__controls > .v-item-group {
19647
- flex: 0 1 auto;
19701
+ .v-chip.v-chip--size-x-small {
19702
+ --v-chip-size: 0.625rem;
19703
+ --v-chip-height: 20px;
19704
+ font-size: 0.625rem;
19705
+ padding: 0 8px;
19648
19706
  }
19649
- .v-carousel__controls__item {
19650
- margin: 0 8px;
19651
- }
19652
- .v-carousel__controls__item .v-icon {
19653
- opacity: 0.5;
19654
- }
19655
- .v-carousel__controls__item--active .v-icon {
19656
- opacity: 1;
19657
- vertical-align: middle;
19658
- }
19659
- .v-carousel__controls__item:hover {
19660
- background: none;
19661
- }
19662
- .v-carousel__controls__item:hover .v-icon {
19663
- opacity: 0.8;
19664
- }
19665
-
19666
- .v-carousel__progress {
19667
- margin: 0;
19668
- position: absolute;
19669
- bottom: 0;
19670
- left: 0;
19671
- right: 0;
19672
- }
19673
-
19674
- .v-carousel-item {
19675
- display: block;
19676
- height: inherit;
19677
- text-decoration: none;
19678
- }
19679
- .v-carousel-item > .v-img {
19680
- height: inherit;
19681
- }
19682
-
19683
- .v-carousel--hide-delimiter-background .v-carousel__controls {
19684
- background: transparent;
19685
- }
19686
-
19687
- .v-carousel--vertical-delimiters .v-carousel__controls {
19688
- flex-direction: column;
19689
- height: 100% !important;
19690
- width: 50px;
19691
- }.v-chip {
19692
- align-items: center;
19693
- display: inline-flex;
19694
- font-weight: 400;
19695
- max-width: 100%;
19696
- min-width: 0;
19697
- overflow: hidden;
19698
- position: relative;
19699
- text-decoration: none;
19700
- white-space: nowrap;
19701
- vertical-align: middle;
19702
- }
19703
- .v-chip .v-icon {
19704
- --v-icon-size-multiplier: 0.8571428571;
19705
- }
19706
- .v-chip.v-chip--size-x-small {
19707
- --v-chip-size: 0.625rem;
19708
- --v-chip-height: 20px;
19709
- font-size: 0.625rem;
19710
- padding: 0 8px;
19711
- }
19712
- .v-chip.v-chip--size-x-small .v-avatar {
19713
- --v-avatar-height: 14px;
19707
+ .v-chip.v-chip--size-x-small .v-avatar {
19708
+ --v-avatar-height: 14px;
19714
19709
  }
19715
19710
  .v-chip--pill.v-chip.v-chip--size-x-small .v-avatar {
19716
19711
  --v-avatar-height: 20px;
@@ -20106,6 +20101,29 @@ html.overflow-y-hidden {
20106
20101
 
20107
20102
  .v-chip--label {
20108
20103
  border-radius: 4px;
20104
+ }.v-checkbox.v-input {
20105
+ flex: 0 1 auto;
20106
+ }
20107
+ .v-checkbox .v-selection-control {
20108
+ min-height: var(--v-input-control-height);
20109
+ }.v-chip-group {
20110
+ display: flex;
20111
+ max-width: 100%;
20112
+ min-width: 0;
20113
+ overflow-x: auto;
20114
+ padding: 4px 0;
20115
+ }
20116
+ .v-chip-group .v-chip {
20117
+ margin: 4px 8px 4px 0;
20118
+ }
20119
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20120
+ opacity: var(--v-activated-opacity);
20121
+ }
20122
+
20123
+ .v-chip-group--column .v-slide-group__content {
20124
+ white-space: normal;
20125
+ flex-wrap: wrap;
20126
+ max-width: 100%;
20109
20127
  }.v-color-picker {
20110
20128
  align-self: flex-start;
20111
20129
  contain: content;
@@ -20128,24 +20146,91 @@ html.overflow-y-hidden {
20128
20146
  }
20129
20147
  .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
20130
20148
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
20131
- }.v-chip-group {
20132
- display: flex;
20133
- max-width: 100%;
20149
+ }.v-combobox .v-field .v-text-field__prefix,
20150
+ .v-combobox .v-field .v-text-field__suffix,
20151
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20152
+ cursor: text;
20153
+ }
20154
+ .v-combobox .v-field .v-field__input > input {
20155
+ flex: 1 1;
20156
+ }
20157
+ .v-combobox .v-field input {
20158
+ min-width: 64px;
20159
+ }
20160
+ .v-combobox .v-field:not(.v-field--focused) input {
20134
20161
  min-width: 0;
20135
- overflow-x: auto;
20136
- padding: 4px 0;
20137
20162
  }
20138
- .v-chip-group .v-chip {
20139
- margin: 4px 8px 4px 0;
20163
+ .v-combobox .v-field--dirty .v-combobox__selection {
20164
+ margin-inline-end: 2px;
20140
20165
  }
20141
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
20142
- opacity: var(--v-activated-opacity);
20166
+ .v-combobox .v-combobox__selection-text {
20167
+ overflow: hidden;
20168
+ text-overflow: ellipsis;
20169
+ white-space: nowrap;
20143
20170
  }
20144
20171
 
20145
- .v-chip-group--column .v-slide-group__content {
20146
- white-space: normal;
20147
- flex-wrap: wrap;
20148
- max-width: 100%;
20172
+ .v-combobox__content {
20173
+ overflow: hidden;
20174
+ }
20175
+ .v-combobox__content {
20176
+ 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));
20177
+ }
20178
+ .v-combobox__content {
20179
+ border-radius: 4px;
20180
+ }
20181
+ .v-combobox__mask {
20182
+ background: rgb(var(--v-theme-surface-light));
20183
+ }
20184
+ .v-combobox__selection {
20185
+ display: inline-flex;
20186
+ align-items: center;
20187
+ height: 1.5rem;
20188
+ letter-spacing: inherit;
20189
+ line-height: inherit;
20190
+ max-width: calc(100% - 2px - 2px);
20191
+ }
20192
+ .v-combobox__selection:first-child {
20193
+ margin-inline-start: 0;
20194
+ }
20195
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20196
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20197
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20198
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20199
+ top: 0px;
20200
+ }
20201
+ .v-combobox--selecting-index .v-combobox__selection {
20202
+ opacity: var(--v-medium-emphasis-opacity);
20203
+ }
20204
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20205
+ opacity: 1;
20206
+ }
20207
+ .v-combobox--selecting-index .v-field__input > input {
20208
+ caret-color: transparent;
20209
+ }
20210
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20211
+ flex: 1 1;
20212
+ position: absolute;
20213
+ left: 0;
20214
+ right: 0;
20215
+ width: 100%;
20216
+ padding-inline: inherit;
20217
+ }
20218
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20219
+ transition: none;
20220
+ }
20221
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20222
+ opacity: 0;
20223
+ }
20224
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20225
+ opacity: 0;
20226
+ }
20227
+ .v-combobox__menu-icon {
20228
+ margin-inline-start: 4px;
20229
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20230
+ }
20231
+ .v-combobox--active-menu .v-combobox__menu-icon {
20232
+ opacity: var(--v-high-emphasis-opacity);
20233
+ transform: rotate(180deg);
20149
20234
  }.v-counter {
20150
20235
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20151
20236
  flex: 0 1 auto;
@@ -20369,12 +20454,6 @@ html.overflow-y-hidden {
20369
20454
  }
20370
20455
  .v-data-table-footer__page {
20371
20456
  padding: 0 8px;
20372
- }.v-date-picker {
20373
- overflow: hidden;
20374
- width: 328px;
20375
- }
20376
- .v-date-picker--show-week {
20377
- width: 368px;
20378
20457
  }.v-date-picker-controls {
20379
20458
  display: flex;
20380
20459
  align-items: center;
@@ -20491,6 +20570,12 @@ html.overflow-y-hidden {
20491
20570
  .date-picker-header-reverse-transition-leave-to {
20492
20571
  opacity: 0;
20493
20572
  transform: translate(0, 100%);
20573
+ }.v-date-picker {
20574
+ overflow: hidden;
20575
+ width: 328px;
20576
+ }
20577
+ .v-date-picker--show-week {
20578
+ width: 368px;
20494
20579
  }.v-date-picker-month {
20495
20580
  display: flex;
20496
20581
  justify-content: center;
@@ -20676,6 +20761,58 @@ html.overflow-y-hidden {
20676
20761
  -webkit-backface-visibility: hidden;
20677
20762
  backface-visibility: hidden;
20678
20763
  overflow-y: auto;
20764
+ }.v-divider {
20765
+ display: block;
20766
+ flex: 1 1 100%;
20767
+ height: 0px;
20768
+ max-height: 0px;
20769
+ opacity: var(--v-border-opacity);
20770
+ transition: inherit;
20771
+ }
20772
+ .v-divider {
20773
+ border-style: solid;
20774
+ border-width: thin 0 0 0;
20775
+ }
20776
+ .v-divider--vertical {
20777
+ align-self: stretch;
20778
+ border-width: 0 thin 0 0;
20779
+ display: inline-flex;
20780
+ height: auto;
20781
+ margin-left: -1px;
20782
+ max-height: 100%;
20783
+ max-width: 0px;
20784
+ vertical-align: text-bottom;
20785
+ width: 0px;
20786
+ }
20787
+ .v-divider--inset:not(.v-divider--vertical) {
20788
+ max-width: calc(100% - 72px);
20789
+ margin-inline-start: 72px;
20790
+ }
20791
+ .v-divider--inset.v-divider--vertical {
20792
+ margin-bottom: 8px;
20793
+ margin-top: 8px;
20794
+ max-height: calc(100% - 16px);
20795
+ }
20796
+
20797
+ .v-divider__content {
20798
+ padding: 0 16px;
20799
+ text-wrap: nowrap;
20800
+ }
20801
+ .v-divider__wrapper--vertical .v-divider__content {
20802
+ padding: 4px 0;
20803
+ }
20804
+
20805
+ .v-divider__wrapper {
20806
+ display: flex;
20807
+ align-items: center;
20808
+ justify-content: center;
20809
+ }
20810
+ .v-divider__wrapper--vertical {
20811
+ flex-direction: column;
20812
+ height: 100%;
20813
+ }
20814
+ .v-divider__wrapper--vertical .v-divider {
20815
+ margin: 0 auto;
20679
20816
  }.v-empty-state {
20680
20817
  align-items: center;
20681
20818
  display: flex;
@@ -20743,218 +20880,12 @@ html.overflow-y-hidden {
20743
20880
  .v-empty-state__action-btn.v-btn {
20744
20881
  background-color: initial;
20745
20882
  color: initial;
20746
- }.v-combobox .v-field .v-text-field__prefix,
20747
- .v-combobox .v-field .v-text-field__suffix,
20748
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20749
- cursor: text;
20883
+ }.v-expansion-panel {
20884
+ background-color: rgb(var(--v-theme-surface));
20885
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20750
20886
  }
20751
- .v-combobox .v-field .v-field__input > input {
20752
- flex: 1 1;
20753
- }
20754
- .v-combobox .v-field input {
20755
- min-width: 64px;
20756
- }
20757
- .v-combobox .v-field:not(.v-field--focused) input {
20758
- min-width: 0;
20759
- }
20760
- .v-combobox .v-field--dirty .v-combobox__selection {
20761
- margin-inline-end: 2px;
20762
- }
20763
- .v-combobox .v-combobox__selection-text {
20764
- overflow: hidden;
20765
- text-overflow: ellipsis;
20766
- white-space: nowrap;
20767
- }
20768
-
20769
- .v-combobox__content {
20770
- overflow: hidden;
20771
- }
20772
- .v-combobox__content {
20773
- 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));
20774
- }
20775
- .v-combobox__content {
20776
- border-radius: 4px;
20777
- }
20778
- .v-combobox__mask {
20779
- background: rgb(var(--v-theme-surface-light));
20780
- }
20781
- .v-combobox__selection {
20782
- display: inline-flex;
20783
- align-items: center;
20784
- height: 1.5rem;
20785
- letter-spacing: inherit;
20786
- line-height: inherit;
20787
- max-width: calc(100% - 2px - 2px);
20788
- }
20789
- .v-combobox__selection:first-child {
20790
- margin-inline-start: 0;
20791
- }
20792
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20793
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20794
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20795
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20796
- top: 0px;
20797
- }
20798
- .v-combobox--selecting-index .v-combobox__selection {
20799
- opacity: var(--v-medium-emphasis-opacity);
20800
- }
20801
- .v-combobox--selecting-index .v-combobox__selection--selected {
20802
- opacity: 1;
20803
- }
20804
- .v-combobox--selecting-index .v-field__input > input {
20805
- caret-color: transparent;
20806
- }
20807
- .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20808
- flex: 1 1;
20809
- position: absolute;
20810
- left: 0;
20811
- right: 0;
20812
- width: 100%;
20813
- padding-inline: inherit;
20814
- }
20815
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20816
- transition: none;
20817
- }
20818
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20819
- opacity: 0;
20820
- }
20821
- .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20822
- opacity: 0;
20823
- }
20824
- .v-combobox__menu-icon {
20825
- margin-inline-start: 4px;
20826
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20827
- }
20828
- .v-combobox--active-menu .v-combobox__menu-icon {
20829
- opacity: var(--v-high-emphasis-opacity);
20830
- transform: rotate(180deg);
20831
- }.v-divider {
20832
- display: block;
20833
- flex: 1 1 100%;
20834
- height: 0px;
20835
- max-height: 0px;
20836
- opacity: var(--v-border-opacity);
20837
- transition: inherit;
20838
- }
20839
- .v-divider {
20840
- border-style: solid;
20841
- border-width: thin 0 0 0;
20842
- }
20843
- .v-divider--vertical {
20844
- align-self: stretch;
20845
- border-width: 0 thin 0 0;
20846
- display: inline-flex;
20847
- height: auto;
20848
- margin-left: -1px;
20849
- max-height: 100%;
20850
- max-width: 0px;
20851
- vertical-align: text-bottom;
20852
- width: 0px;
20853
- }
20854
- .v-divider--inset:not(.v-divider--vertical) {
20855
- max-width: calc(100% - 72px);
20856
- margin-inline-start: 72px;
20857
- }
20858
- .v-divider--inset.v-divider--vertical {
20859
- margin-bottom: 8px;
20860
- margin-top: 8px;
20861
- max-height: calc(100% - 16px);
20862
- }
20863
-
20864
- .v-divider__content {
20865
- padding: 0 16px;
20866
- text-wrap: nowrap;
20867
- }
20868
- .v-divider__wrapper--vertical .v-divider__content {
20869
- padding: 4px 0;
20870
- }
20871
-
20872
- .v-divider__wrapper {
20873
- display: flex;
20874
- align-items: center;
20875
- justify-content: center;
20876
- }
20877
- .v-divider__wrapper--vertical {
20878
- flex-direction: column;
20879
- height: 100%;
20880
- }
20881
- .v-divider__wrapper--vertical .v-divider {
20882
- margin: 0 auto;
20883
- }.v-fab {
20884
- align-items: center;
20885
- display: inline-flex;
20886
- flex: 1 1 auto;
20887
- pointer-events: none;
20888
- position: relative;
20889
- transition-duration: 0.2s;
20890
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20891
- vertical-align: middle;
20892
- }
20893
- .v-fab .v-btn {
20894
- pointer-events: auto;
20895
- }
20896
- .v-fab .v-btn--variant-elevated {
20897
- 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));
20898
- }
20899
- .v-fab--app, .v-fab--absolute {
20900
- display: flex;
20901
- }
20902
- .v-fab--start, .v-fab--left {
20903
- justify-content: flex-start;
20904
- }
20905
- .v-fab--center {
20906
- align-items: center;
20907
- justify-content: center;
20908
- }
20909
- .v-fab--end, .v-fab--right {
20910
- justify-content: flex-end;
20911
- }
20912
- .v-fab--bottom {
20913
- align-items: flex-end;
20914
- }
20915
- .v-fab--top {
20916
- align-items: flex-start;
20917
- }
20918
- .v-fab--extended .v-btn {
20919
- border-radius: 9999px !important;
20920
- }
20921
-
20922
- .v-fab__container {
20923
- align-self: center;
20924
- display: inline-flex;
20925
- position: absolute;
20926
- vertical-align: middle;
20927
- }
20928
- .v-fab--app .v-fab__container {
20929
- margin: 12px;
20930
- }
20931
- .v-fab--absolute .v-fab__container {
20932
- position: absolute;
20933
- z-index: 4;
20934
- }
20935
- .v-fab--offset.v-fab--top .v-fab__container {
20936
- transform: translateY(-50%);
20937
- }
20938
- .v-fab--offset.v-fab--bottom .v-fab__container {
20939
- transform: translateY(50%);
20940
- }
20941
- .v-fab--top .v-fab__container {
20942
- top: 0;
20943
- }
20944
- .v-fab--bottom .v-fab__container {
20945
- bottom: 0;
20946
- }
20947
- .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
20948
- left: 0;
20949
- }
20950
- .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
20951
- right: 0;
20952
- }.v-expansion-panel {
20953
- background-color: rgb(var(--v-theme-surface));
20954
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20955
- }
20956
- .v-expansion-panel:not(:first-child)::after {
20957
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20887
+ .v-expansion-panel:not(:first-child)::after {
20888
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20958
20889
  }
20959
20890
  .v-expansion-panel--disabled .v-expansion-panel-title {
20960
20891
  color: rgba(var(--v-theme-on-surface), 0.26);
@@ -21165,49 +21096,118 @@ html.overflow-y-hidden {
21165
21096
  }
21166
21097
  .v-expansion-panels--tile > .v-expansion-panel {
21167
21098
  border-radius: 0;
21168
- }/* region INPUT */
21169
- .v-field {
21170
- display: grid;
21171
- grid-template-areas: "prepend-inner field clear append-inner";
21172
- grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
21173
- font-size: 16px;
21174
- letter-spacing: 0.009375em;
21175
- max-width: 100%;
21176
- border-radius: 4px;
21177
- contain: layout;
21178
- flex: 1 0;
21179
- grid-area: control;
21180
- position: relative;
21181
- --v-theme-overlay-multiplier: 1;
21182
- --v-field-padding-start: 16px;
21183
- --v-field-padding-end: 16px;
21184
- --v-field-padding-top: 8px;
21185
- --v-field-padding-bottom: 4px;
21186
- --v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
21187
- --v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
21188
- }
21189
- .v-field--disabled {
21190
- opacity: var(--v-disabled-opacity);
21099
+ }.v-fab {
21100
+ align-items: center;
21101
+ display: inline-flex;
21102
+ flex: 1 1 auto;
21191
21103
  pointer-events: none;
21104
+ position: relative;
21105
+ transition-duration: 0.2s;
21106
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21107
+ vertical-align: middle;
21192
21108
  }
21193
- .v-field .v-chip {
21194
- --v-chip-height: 24px;
21109
+ .v-fab .v-btn {
21110
+ pointer-events: auto;
21195
21111
  }
21196
-
21197
- /* endregion */
21198
- /* region MODIFIERS */
21199
- .v-field--prepended {
21200
- padding-inline-start: 12px;
21112
+ .v-fab .v-btn--variant-elevated {
21113
+ 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));
21201
21114
  }
21202
- .v-field--appended {
21203
- padding-inline-end: 12px;
21115
+ .v-fab--app, .v-fab--absolute {
21116
+ display: flex;
21204
21117
  }
21205
- .v-field--variant-solo, .v-field--variant-solo-filled {
21206
- background: rgb(var(--v-theme-surface));
21207
- border-color: transparent;
21208
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21118
+ .v-fab--start, .v-fab--left {
21119
+ justify-content: flex-start;
21209
21120
  }
21210
- .v-field--variant-solo, .v-field--variant-solo-filled {
21121
+ .v-fab--center {
21122
+ align-items: center;
21123
+ justify-content: center;
21124
+ }
21125
+ .v-fab--end, .v-fab--right {
21126
+ justify-content: flex-end;
21127
+ }
21128
+ .v-fab--bottom {
21129
+ align-items: flex-end;
21130
+ }
21131
+ .v-fab--top {
21132
+ align-items: flex-start;
21133
+ }
21134
+ .v-fab--extended .v-btn {
21135
+ border-radius: 9999px !important;
21136
+ }
21137
+
21138
+ .v-fab__container {
21139
+ align-self: center;
21140
+ display: inline-flex;
21141
+ position: absolute;
21142
+ vertical-align: middle;
21143
+ }
21144
+ .v-fab--app .v-fab__container {
21145
+ margin: 12px;
21146
+ }
21147
+ .v-fab--absolute .v-fab__container {
21148
+ position: absolute;
21149
+ z-index: 4;
21150
+ }
21151
+ .v-fab--offset.v-fab--top .v-fab__container {
21152
+ transform: translateY(-50%);
21153
+ }
21154
+ .v-fab--offset.v-fab--bottom .v-fab__container {
21155
+ transform: translateY(50%);
21156
+ }
21157
+ .v-fab--top .v-fab__container {
21158
+ top: 0;
21159
+ }
21160
+ .v-fab--bottom .v-fab__container {
21161
+ bottom: 0;
21162
+ }
21163
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
21164
+ left: 0;
21165
+ }
21166
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
21167
+ right: 0;
21168
+ }/* region INPUT */
21169
+ .v-field {
21170
+ display: grid;
21171
+ grid-template-areas: "prepend-inner field clear append-inner";
21172
+ grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
21173
+ font-size: 16px;
21174
+ letter-spacing: 0.009375em;
21175
+ max-width: 100%;
21176
+ border-radius: 4px;
21177
+ contain: layout;
21178
+ flex: 1 0;
21179
+ grid-area: control;
21180
+ position: relative;
21181
+ --v-theme-overlay-multiplier: 1;
21182
+ --v-field-padding-start: 16px;
21183
+ --v-field-padding-end: 16px;
21184
+ --v-field-padding-top: 8px;
21185
+ --v-field-padding-bottom: 4px;
21186
+ --v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0));
21187
+ --v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
21188
+ }
21189
+ .v-field--disabled {
21190
+ opacity: var(--v-disabled-opacity);
21191
+ pointer-events: none;
21192
+ }
21193
+ .v-field .v-chip {
21194
+ --v-chip-height: 24px;
21195
+ }
21196
+
21197
+ /* endregion */
21198
+ /* region MODIFIERS */
21199
+ .v-field--prepended {
21200
+ padding-inline-start: 12px;
21201
+ }
21202
+ .v-field--appended {
21203
+ padding-inline-end: 12px;
21204
+ }
21205
+ .v-field--variant-solo, .v-field--variant-solo-filled {
21206
+ background: rgb(var(--v-theme-surface));
21207
+ border-color: transparent;
21208
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21209
+ }
21210
+ .v-field--variant-solo, .v-field--variant-solo-filled {
21211
21211
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
21212
21212
  }
21213
21213
  .v-field--variant-solo-inverted {
@@ -22485,43 +22485,59 @@ textarea.v-field__input::placeholder {
22485
22485
  .offset-xxl-11 {
22486
22486
  margin-inline-start: 91.6666666667%;
22487
22487
  }
22488
- }.v-infinite-scroll--horizontal {
22489
- display: flex;
22490
- flex-direction: row;
22491
- overflow-x: auto;
22488
+ }.v-icon {
22489
+ --v-icon-size-multiplier: 1;
22490
+ align-items: center;
22491
+ display: inline-flex;
22492
+ font-feature-settings: "liga";
22493
+ height: 1em;
22494
+ justify-content: center;
22495
+ letter-spacing: normal;
22496
+ line-height: 1;
22497
+ position: relative;
22498
+ text-indent: 0;
22499
+ text-align: center;
22500
+ -webkit-user-select: none;
22501
+ user-select: none;
22502
+ vertical-align: middle;
22503
+ width: 1em;
22504
+ min-width: 1em;
22492
22505
  }
22493
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22494
- height: 100%;
22495
- width: var(--v-infinite-margin-size, 1px);
22506
+ .v-icon--clickable {
22507
+ cursor: pointer;
22496
22508
  }
22497
-
22498
- .v-infinite-scroll--vertical {
22499
- display: flex;
22500
- flex-direction: column;
22501
- overflow-y: auto;
22509
+ .v-icon--disabled {
22510
+ pointer-events: none;
22511
+ opacity: 0.38;
22502
22512
  }
22503
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22504
- height: 1px;
22505
- width: 100%;
22513
+ .v-icon--size-x-small {
22514
+ font-size: calc(var(--v-icon-size-multiplier) * 1em);
22506
22515
  }
22507
-
22508
- .v-infinite-scroll-intersect {
22509
- pointer-events: none;
22510
- margin-top: var(--v-infinite-margin);
22511
- margin-bottom: calc(var(--v-infinite-margin) * -1);
22516
+ .v-icon--size-small {
22517
+ font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
22512
22518
  }
22513
- .v-infinite-scroll-intersect:nth-child(2) {
22514
- --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22519
+ .v-icon--size-default {
22520
+ font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
22515
22521
  }
22516
- .v-infinite-scroll-intersect:nth-last-child(2) {
22517
- --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22522
+ .v-icon--size-large {
22523
+ font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
22524
+ }
22525
+ .v-icon--size-x-large {
22526
+ font-size: calc(var(--v-icon-size-multiplier) * 2em);
22518
22527
  }
22519
22528
 
22520
- .v-infinite-scroll__side {
22521
- align-items: center;
22522
- display: flex;
22523
- justify-content: center;
22524
- padding: 8px;
22529
+ .v-icon__svg {
22530
+ fill: currentColor;
22531
+ width: 100%;
22532
+ height: 100%;
22533
+ }
22534
+
22535
+ .v-icon--start {
22536
+ margin-inline-end: 8px;
22537
+ }
22538
+
22539
+ .v-icon--end {
22540
+ margin-inline-start: 8px;
22525
22541
  }.v-img {
22526
22542
  --v-theme-overlay-multiplier: 3;
22527
22543
  z-index: 0;
@@ -22573,6 +22589,43 @@ textarea.v-field__input::placeholder {
22573
22589
 
22574
22590
  .v-img__gradient {
22575
22591
  background-repeat: no-repeat;
22592
+ }.v-infinite-scroll--horizontal {
22593
+ display: flex;
22594
+ flex-direction: row;
22595
+ overflow-x: auto;
22596
+ }
22597
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
22598
+ height: 100%;
22599
+ width: var(--v-infinite-margin-size, 1px);
22600
+ }
22601
+
22602
+ .v-infinite-scroll--vertical {
22603
+ display: flex;
22604
+ flex-direction: column;
22605
+ overflow-y: auto;
22606
+ }
22607
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
22608
+ height: 1px;
22609
+ width: 100%;
22610
+ }
22611
+
22612
+ .v-infinite-scroll-intersect {
22613
+ pointer-events: none;
22614
+ margin-top: var(--v-infinite-margin);
22615
+ margin-bottom: calc(var(--v-infinite-margin) * -1);
22616
+ }
22617
+ .v-infinite-scroll-intersect:nth-child(2) {
22618
+ --v-infinite-margin: var(--v-infinite-margin-size, 1px);
22619
+ }
22620
+ .v-infinite-scroll-intersect:nth-last-child(2) {
22621
+ --v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
22622
+ }
22623
+
22624
+ .v-infinite-scroll__side {
22625
+ align-items: center;
22626
+ display: flex;
22627
+ justify-content: center;
22628
+ padding: 8px;
22576
22629
  }.v-input {
22577
22630
  display: grid;
22578
22631
  flex: 1 1 auto;
@@ -22715,99 +22768,46 @@ textarea.v-field__input::placeholder {
22715
22768
 
22716
22769
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
22717
22770
  padding-top: calc(var(--v-input-padding-top) + 0px);
22718
- }.v-icon {
22719
- --v-icon-size-multiplier: 1;
22771
+ }.v-item-group {
22772
+ flex: 0 1 auto;
22773
+ max-width: 100%;
22774
+ position: relative;
22775
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22776
+ }.v-label {
22720
22777
  align-items: center;
22778
+ color: inherit;
22721
22779
  display: inline-flex;
22722
- font-feature-settings: "liga";
22723
- height: 1em;
22724
- justify-content: center;
22725
- letter-spacing: normal;
22726
- line-height: 1;
22727
- position: relative;
22728
- text-indent: 0;
22729
- text-align: center;
22730
- -webkit-user-select: none;
22731
- user-select: none;
22732
- vertical-align: middle;
22733
- width: 1em;
22734
- min-width: 1em;
22780
+ font-size: 1rem;
22781
+ letter-spacing: 0.009375em;
22782
+ min-width: 0;
22783
+ opacity: var(--v-medium-emphasis-opacity);
22784
+ overflow: hidden;
22785
+ text-overflow: ellipsis;
22786
+ white-space: nowrap;
22735
22787
  }
22736
- .v-icon--clickable {
22788
+
22789
+ .v-label--clickable {
22737
22790
  cursor: pointer;
22791
+ }.v-layout-item {
22792
+ position: absolute;
22793
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22738
22794
  }
22739
- .v-icon--disabled {
22740
- pointer-events: none;
22741
- opacity: 0.38;
22795
+
22796
+ .v-layout-item--absolute {
22797
+ position: absolute;
22798
+ }.v-layout {
22799
+ --v-scrollbar-offset: 0px;
22800
+ display: flex;
22801
+ flex: 1 1 auto;
22742
22802
  }
22743
- .v-icon--size-x-small {
22744
- font-size: calc(var(--v-icon-size-multiplier) * 1em);
22745
- }
22746
- .v-icon--size-small {
22747
- font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
22748
- }
22749
- .v-icon--size-default {
22750
- font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
22751
- }
22752
- .v-icon--size-large {
22753
- font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
22754
- }
22755
- .v-icon--size-x-large {
22756
- font-size: calc(var(--v-icon-size-multiplier) * 2em);
22757
- }
22758
-
22759
- .v-icon__svg {
22760
- fill: currentColor;
22761
- width: 100%;
22762
- height: 100%;
22763
- }
22764
-
22765
- .v-icon--start {
22766
- margin-inline-end: 8px;
22767
- }
22768
-
22769
- .v-icon--end {
22770
- margin-inline-start: 8px;
22771
- }.v-item-group {
22772
- flex: 0 1 auto;
22773
- max-width: 100%;
22774
- position: relative;
22775
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22776
- }.v-layout-item {
22777
- position: absolute;
22778
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22779
- }
22780
-
22781
- .v-layout-item--absolute {
22782
- position: absolute;
22783
- }.v-layout {
22784
- --v-scrollbar-offset: 0px;
22785
- display: flex;
22786
- flex: 1 1 auto;
22787
- }
22788
- .v-layout--full-height {
22789
- --v-scrollbar-offset: inherit;
22790
- height: 100%;
22791
- }.v-label {
22792
- align-items: center;
22793
- color: inherit;
22794
- display: inline-flex;
22795
- font-size: 1rem;
22796
- letter-spacing: 0.009375em;
22797
- min-width: 0;
22798
- opacity: var(--v-medium-emphasis-opacity);
22799
- overflow: hidden;
22800
- text-overflow: ellipsis;
22801
- white-space: nowrap;
22802
- }
22803
-
22804
- .v-label--clickable {
22805
- cursor: pointer;
22806
- }.v-list {
22807
- overflow: auto;
22808
- padding: 8px 0;
22809
- position: relative;
22810
- outline: none;
22803
+ .v-layout--full-height {
22804
+ --v-scrollbar-offset: inherit;
22805
+ height: 100%;
22806
+ }.v-list {
22807
+ overflow: auto;
22808
+ padding: 8px 0;
22809
+ position: relative;
22810
+ outline: none;
22811
22811
  }
22812
22812
  .v-list {
22813
22813
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -23379,27 +23379,6 @@ textarea.v-field__input::placeholder {
23379
23379
  }
23380
23380
  .v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
23381
23381
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
23382
- }.v-locale-provider {
23383
- display: contents;
23384
- }.v-menu > .v-overlay__content {
23385
- display: flex;
23386
- flex-direction: column;
23387
- }
23388
- .v-menu > .v-overlay__content {
23389
- border-radius: 4px;
23390
- }
23391
- .v-menu > .v-overlay__content > .v-card,
23392
- .v-menu > .v-overlay__content > .v-sheet,
23393
- .v-menu > .v-overlay__content > .v-list {
23394
- background: rgb(var(--v-theme-surface));
23395
- border-radius: inherit;
23396
- overflow: auto;
23397
- height: 100%;
23398
- }
23399
- .v-menu > .v-overlay__content > .v-card,
23400
- .v-menu > .v-overlay__content > .v-sheet,
23401
- .v-menu > .v-overlay__content > .v-list {
23402
- 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));
23403
23382
  }.v-main {
23404
23383
  flex: 1 0 auto;
23405
23384
  max-width: 100%;
@@ -23430,6 +23409,8 @@ textarea.v-field__input::placeholder {
23430
23409
  --v-layout-right: 0px;
23431
23410
  --v-layout-top: 0px;
23432
23411
  --v-layout-bottom: 0px;
23412
+ }.v-locale-provider {
23413
+ display: contents;
23433
23414
  }.v-messages {
23434
23415
  flex: 1 1 auto;
23435
23416
  font-size: 12px;
@@ -23554,6 +23535,25 @@ textarea.v-field__input::placeholder {
23554
23535
  .v-navigation-drawer__append {
23555
23536
  flex: none;
23556
23537
  overflow: hidden;
23538
+ }.v-menu > .v-overlay__content {
23539
+ display: flex;
23540
+ flex-direction: column;
23541
+ }
23542
+ .v-menu > .v-overlay__content {
23543
+ border-radius: 4px;
23544
+ }
23545
+ .v-menu > .v-overlay__content > .v-card,
23546
+ .v-menu > .v-overlay__content > .v-sheet,
23547
+ .v-menu > .v-overlay__content > .v-list {
23548
+ background: rgb(var(--v-theme-surface));
23549
+ border-radius: inherit;
23550
+ overflow: auto;
23551
+ height: 100%;
23552
+ }
23553
+ .v-menu > .v-overlay__content > .v-card,
23554
+ .v-menu > .v-overlay__content > .v-sheet,
23555
+ .v-menu > .v-overlay__content > .v-list {
23556
+ 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));
23557
23557
  }.v-otp-input {
23558
23558
  align-items: center;
23559
23559
  display: flex;
@@ -23689,6 +23689,108 @@ html.v-overlay-scroll-blocked {
23689
23689
  }
23690
23690
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23691
23691
  margin: 0.3rem;
23692
+ }.v-progress-circular {
23693
+ align-items: center;
23694
+ display: inline-flex;
23695
+ justify-content: center;
23696
+ position: relative;
23697
+ vertical-align: middle;
23698
+ }
23699
+ .v-progress-circular > svg {
23700
+ width: 100%;
23701
+ height: 100%;
23702
+ margin: auto;
23703
+ position: absolute;
23704
+ top: 0;
23705
+ bottom: 0;
23706
+ left: 0;
23707
+ right: 0;
23708
+ z-index: 0;
23709
+ }
23710
+
23711
+ .v-progress-circular__content {
23712
+ align-items: center;
23713
+ display: flex;
23714
+ justify-content: center;
23715
+ }
23716
+
23717
+ .v-progress-circular__underlay {
23718
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
23719
+ stroke: currentColor;
23720
+ z-index: 1;
23721
+ }
23722
+
23723
+ .v-progress-circular__overlay {
23724
+ stroke: currentColor;
23725
+ transition: all 0.2s ease-in-out, stroke-width 0s;
23726
+ z-index: 2;
23727
+ }
23728
+
23729
+ .v-progress-circular--size-x-small {
23730
+ height: 16px;
23731
+ width: 16px;
23732
+ }
23733
+ .v-progress-circular--size-small {
23734
+ height: 24px;
23735
+ width: 24px;
23736
+ }
23737
+ .v-progress-circular--size-default {
23738
+ height: 32px;
23739
+ width: 32px;
23740
+ }
23741
+ .v-progress-circular--size-large {
23742
+ height: 48px;
23743
+ width: 48px;
23744
+ }
23745
+ .v-progress-circular--size-x-large {
23746
+ height: 64px;
23747
+ width: 64px;
23748
+ }
23749
+
23750
+ .v-progress-circular--indeterminate > svg {
23751
+ animation: progress-circular-rotate 1.4s linear infinite;
23752
+ transform-origin: center center;
23753
+ transition: all 0.2s ease-in-out;
23754
+ }
23755
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
23756
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
23757
+ stroke-dasharray: 25, 200;
23758
+ stroke-dashoffset: 0;
23759
+ stroke-linecap: round;
23760
+ transform-origin: center center;
23761
+ transform: rotate(-90deg);
23762
+ }
23763
+
23764
+ .v-progress-circular--disable-shrink > svg {
23765
+ animation-duration: 0.7s;
23766
+ }
23767
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
23768
+ animation: none;
23769
+ }
23770
+
23771
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
23772
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
23773
+ animation-play-state: paused !important;
23774
+ }
23775
+
23776
+ @keyframes progress-circular-dash {
23777
+ 0% {
23778
+ stroke-dasharray: 1, 200;
23779
+ stroke-dashoffset: 0px;
23780
+ }
23781
+ 50% {
23782
+ stroke-dasharray: 100, 200;
23783
+ stroke-dashoffset: -15px;
23784
+ }
23785
+ 100% {
23786
+ stroke-dasharray: 100, 200;
23787
+ stroke-dashoffset: -124px;
23788
+ }
23789
+ }
23790
+ @keyframes progress-circular-rotate {
23791
+ 100% {
23792
+ transform: rotate(270deg);
23793
+ }
23692
23794
  }.v-progress-linear {
23693
23795
  background: transparent;
23694
23796
  overflow: hidden;
@@ -23917,120 +24019,101 @@ html.v-overlay-scroll-blocked {
23917
24019
  0% {
23918
24020
  background-position-x: var(--v-progress-linear-height);
23919
24021
  }
23920
- }.v-progress-circular {
23921
- align-items: center;
23922
- display: inline-flex;
23923
- justify-content: center;
23924
- position: relative;
23925
- vertical-align: middle;
24022
+ }.v-radio-group > .v-input__control {
24023
+ flex-direction: column;
23926
24024
  }
23927
- .v-progress-circular > svg {
24025
+ .v-radio-group > .v-input__control > .v-label {
24026
+ margin-inline-start: 16px;
24027
+ }
24028
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24029
+ padding-inline-start: 6px;
24030
+ margin-top: 8px;
24031
+ }
24032
+ .v-radio-group .v-input__details {
24033
+ padding-inline: 16px;
24034
+ }.v-slider .v-slider__container input {
24035
+ cursor: default;
24036
+ padding: 0;
23928
24037
  width: 100%;
23929
- height: 100%;
23930
- margin: auto;
23931
- position: absolute;
23932
- top: 0;
23933
- bottom: 0;
23934
- left: 0;
23935
- right: 0;
23936
- z-index: 0;
24038
+ display: none;
24039
+ }
24040
+ .v-slider > .v-input__append,
24041
+ .v-slider > .v-input__prepend {
24042
+ padding: 0;
23937
24043
  }
23938
24044
 
23939
- .v-progress-circular__content {
23940
- align-items: center;
24045
+ .v-slider__container {
24046
+ position: relative;
24047
+ min-height: inherit;
24048
+ width: 100%;
24049
+ height: 100%;
23941
24050
  display: flex;
23942
24051
  justify-content: center;
24052
+ align-items: center;
24053
+ cursor: pointer;
23943
24054
  }
23944
-
23945
- .v-progress-circular__underlay {
23946
- color: rgba(var(--v-border-color), var(--v-border-opacity));
23947
- stroke: currentColor;
23948
- z-index: 1;
24055
+ .v-input--disabled .v-slider__container {
24056
+ opacity: var(--v-disabled-opacity);
23949
24057
  }
23950
-
23951
- .v-progress-circular__overlay {
23952
- stroke: currentColor;
23953
- transition: all 0.2s ease-in-out, stroke-width 0s;
23954
- z-index: 2;
24058
+ .v-input--error:not(.v-input--disabled) .v-slider__container {
24059
+ color: rgb(var(--v-theme-error));
23955
24060
  }
23956
24061
 
23957
- .v-progress-circular--size-x-small {
23958
- height: 16px;
23959
- width: 16px;
23960
- }
23961
- .v-progress-circular--size-small {
23962
- height: 24px;
23963
- width: 24px;
23964
- }
23965
- .v-progress-circular--size-default {
23966
- height: 32px;
23967
- width: 32px;
23968
- }
23969
- .v-progress-circular--size-large {
23970
- height: 48px;
23971
- width: 48px;
24062
+ .v-slider.v-input--horizontal {
24063
+ align-items: center;
24064
+ margin-inline: 8px 8px;
23972
24065
  }
23973
- .v-progress-circular--size-x-large {
23974
- height: 64px;
23975
- width: 64px;
24066
+ .v-slider.v-input--horizontal > .v-input__control {
24067
+ min-height: 32px;
24068
+ display: flex;
24069
+ align-items: center;
23976
24070
  }
23977
24071
 
23978
- .v-progress-circular--indeterminate > svg {
23979
- animation: progress-circular-rotate 1.4s linear infinite;
23980
- transform-origin: center center;
23981
- transition: all 0.2s ease-in-out;
24072
+ .v-slider.v-input--vertical {
24073
+ justify-content: center;
24074
+ margin-top: 12px;
24075
+ margin-bottom: 12px;
23982
24076
  }
23983
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
23984
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
23985
- stroke-dasharray: 25, 200;
23986
- stroke-dashoffset: 0;
23987
- stroke-linecap: round;
23988
- transform-origin: center center;
23989
- transform: rotate(-90deg);
24077
+ .v-slider.v-input--vertical > .v-input__control {
24078
+ min-height: 300px;
23990
24079
  }
23991
24080
 
23992
- .v-progress-circular--disable-shrink > svg {
23993
- animation-duration: 0.7s;
23994
- }
23995
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
23996
- animation: none;
24081
+ .v-slider.v-input--disabled {
24082
+ pointer-events: none;
23997
24083
  }
23998
24084
 
23999
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
24000
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
24001
- animation-play-state: paused !important;
24085
+ .v-slider--has-labels > .v-input__control {
24086
+ margin-bottom: 4px;
24002
24087
  }
24003
24088
 
24004
- @keyframes progress-circular-dash {
24005
- 0% {
24006
- stroke-dasharray: 1, 200;
24007
- stroke-dashoffset: 0px;
24008
- }
24009
- 50% {
24010
- stroke-dasharray: 100, 200;
24011
- stroke-dashoffset: -15px;
24012
- }
24013
- 100% {
24014
- stroke-dasharray: 100, 200;
24015
- stroke-dashoffset: -124px;
24016
- }
24089
+ .v-slider__label {
24090
+ margin-inline-end: 12px;
24091
+ }.v-responsive {
24092
+ display: flex;
24093
+ flex: 1 0 auto;
24094
+ max-height: 100%;
24095
+ max-width: 100%;
24096
+ overflow: hidden;
24097
+ position: relative;
24017
24098
  }
24018
- @keyframes progress-circular-rotate {
24019
- 100% {
24020
- transform: rotate(270deg);
24021
- }
24022
- }.v-radio-group > .v-input__control {
24023
- flex-direction: column;
24099
+ .v-responsive--inline {
24100
+ display: inline-flex;
24101
+ flex: 0 0 auto;
24024
24102
  }
24025
- .v-radio-group > .v-input__control > .v-label {
24026
- margin-inline-start: 16px;
24103
+
24104
+ .v-responsive__content {
24105
+ flex: 1 0 0px;
24106
+ max-width: 100%;
24027
24107
  }
24028
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
24029
- padding-inline-start: 6px;
24030
- margin-top: 8px;
24108
+
24109
+ .v-responsive__sizer ~ .v-responsive__content {
24110
+ margin-inline-start: -100%;
24031
24111
  }
24032
- .v-radio-group .v-input__details {
24033
- padding-inline: 16px;
24112
+
24113
+ .v-responsive__sizer {
24114
+ flex: 1 0 0px;
24115
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24116
+ pointer-events: none;
24034
24117
  }.v-rating {
24035
24118
  max-width: 100%;
24036
24119
  display: inline-flex;
@@ -24084,63 +24167,6 @@ html.v-overlay-scroll-blocked {
24084
24167
  opacity: 0;
24085
24168
  position: absolute;
24086
24169
  width: 0;
24087
- }.v-slider .v-slider__container input {
24088
- cursor: default;
24089
- padding: 0;
24090
- width: 100%;
24091
- display: none;
24092
- }
24093
- .v-slider > .v-input__append,
24094
- .v-slider > .v-input__prepend {
24095
- padding: 0;
24096
- }
24097
-
24098
- .v-slider__container {
24099
- position: relative;
24100
- min-height: inherit;
24101
- width: 100%;
24102
- height: 100%;
24103
- display: flex;
24104
- justify-content: center;
24105
- align-items: center;
24106
- cursor: pointer;
24107
- }
24108
- .v-input--disabled .v-slider__container {
24109
- opacity: var(--v-disabled-opacity);
24110
- }
24111
- .v-input--error:not(.v-input--disabled) .v-slider__container {
24112
- color: rgb(var(--v-theme-error));
24113
- }
24114
-
24115
- .v-slider.v-input--horizontal {
24116
- align-items: center;
24117
- margin-inline: 8px 8px;
24118
- }
24119
- .v-slider.v-input--horizontal > .v-input__control {
24120
- min-height: 32px;
24121
- display: flex;
24122
- align-items: center;
24123
- }
24124
-
24125
- .v-slider.v-input--vertical {
24126
- justify-content: center;
24127
- margin-top: 12px;
24128
- margin-bottom: 12px;
24129
- }
24130
- .v-slider.v-input--vertical > .v-input__control {
24131
- min-height: 300px;
24132
- }
24133
-
24134
- .v-slider.v-input--disabled {
24135
- pointer-events: none;
24136
- }
24137
-
24138
- .v-slider--has-labels > .v-input__control {
24139
- margin-bottom: 4px;
24140
- }
24141
-
24142
- .v-slider__label {
24143
- margin-inline-end: 12px;
24144
24170
  }.v-select .v-field .v-text-field__prefix,
24145
24171
  .v-select .v-field .v-text-field__suffix,
24146
24172
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -24193,32 +24219,6 @@ html.v-overlay-scroll-blocked {
24193
24219
  .v-select--active-menu .v-select__menu-icon {
24194
24220
  opacity: var(--v-high-emphasis-opacity);
24195
24221
  transform: rotate(180deg);
24196
- }.v-responsive {
24197
- display: flex;
24198
- flex: 1 0 auto;
24199
- max-height: 100%;
24200
- max-width: 100%;
24201
- overflow: hidden;
24202
- position: relative;
24203
- }
24204
- .v-responsive--inline {
24205
- display: inline-flex;
24206
- flex: 0 0 auto;
24207
- }
24208
-
24209
- .v-responsive__content {
24210
- flex: 1 0 0px;
24211
- max-width: 100%;
24212
- }
24213
-
24214
- .v-responsive__sizer ~ .v-responsive__content {
24215
- margin-inline-start: -100%;
24216
- }
24217
-
24218
- .v-responsive__sizer {
24219
- flex: 1 0 0px;
24220
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24221
- pointer-events: none;
24222
24222
  }.v-selection-control {
24223
24223
  align-items: center;
24224
24224
  contain: layout;
@@ -24322,50 +24322,149 @@ html.v-overlay-scroll-blocked {
24322
24322
  }
24323
24323
  .v-selection-control--focus-visible .v-selection-control__input::before {
24324
24324
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
24325
- }.v-skeleton-loader {
24326
- align-items: center;
24327
- background: rgb(var(--v-theme-surface));
24328
- border-radius: 4px;
24325
+ }.v-selection-control-group {
24326
+ grid-area: control;
24329
24327
  display: flex;
24328
+ flex-direction: column;
24329
+ }
24330
+ .v-selection-control-group--inline {
24331
+ flex-direction: row;
24330
24332
  flex-wrap: wrap;
24331
- position: relative;
24332
- vertical-align: top;
24333
+ }.v-sheet {
24334
+ display: block;
24333
24335
  }
24334
- .v-skeleton-loader__actions {
24335
- justify-content: end;
24336
+ .v-sheet {
24337
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24338
+ border-style: solid;
24339
+ border-width: 0;
24336
24340
  }
24337
- .v-skeleton-loader .v-skeleton-loader__ossein {
24338
- height: 100%;
24341
+ .v-sheet--border {
24342
+ border-width: thin;
24343
+ box-shadow: none;
24339
24344
  }
24340
- .v-skeleton-loader .v-skeleton-loader__avatar,
24341
- .v-skeleton-loader .v-skeleton-loader__button,
24342
- .v-skeleton-loader .v-skeleton-loader__chip,
24343
- .v-skeleton-loader .v-skeleton-loader__divider,
24344
- .v-skeleton-loader .v-skeleton-loader__heading,
24345
- .v-skeleton-loader .v-skeleton-loader__image,
24346
- .v-skeleton-loader .v-skeleton-loader__ossein,
24347
- .v-skeleton-loader .v-skeleton-loader__text {
24348
- background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
24345
+ .v-sheet {
24346
+ 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));
24349
24347
  }
24350
- .v-skeleton-loader .v-skeleton-loader__list-item,
24351
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar,
24352
- .v-skeleton-loader .v-skeleton-loader__list-item-text,
24353
- .v-skeleton-loader .v-skeleton-loader__list-item-two-line,
24354
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
24355
- .v-skeleton-loader .v-skeleton-loader__list-item-three-line,
24356
- .v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {
24357
- border-radius: 4px;
24348
+ .v-sheet--absolute {
24349
+ position: absolute;
24358
24350
  }
24359
- .v-skeleton-loader__bone {
24360
- align-items: center;
24361
- border-radius: inherit;
24362
- display: flex;
24363
- flex: 1 1 100%;
24364
- flex-wrap: wrap;
24365
- overflow: hidden;
24351
+ .v-sheet--fixed {
24352
+ position: fixed;
24353
+ }
24354
+ .v-sheet--relative {
24366
24355
  position: relative;
24367
24356
  }
24368
- .v-skeleton-loader__bone::after {
24357
+ .v-sheet--sticky {
24358
+ position: sticky;
24359
+ }
24360
+ .v-sheet {
24361
+ border-radius: 0;
24362
+ }
24363
+ .v-sheet {
24364
+ background: rgb(var(--v-theme-surface));
24365
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24366
+ }
24367
+ .v-sheet--rounded {
24368
+ border-radius: 4px;
24369
+ }.v-slide-group {
24370
+ display: flex;
24371
+ overflow: hidden;
24372
+ }
24373
+
24374
+ .v-slide-group__next,
24375
+ .v-slide-group__prev {
24376
+ align-items: center;
24377
+ display: flex;
24378
+ flex: 0 1 52px;
24379
+ justify-content: center;
24380
+ min-width: 52px;
24381
+ cursor: pointer;
24382
+ }
24383
+ .v-slide-group__next--disabled,
24384
+ .v-slide-group__prev--disabled {
24385
+ pointer-events: none;
24386
+ opacity: var(--v-disabled-opacity);
24387
+ }
24388
+
24389
+ .v-slide-group__content {
24390
+ display: flex;
24391
+ flex: 1 0 auto;
24392
+ position: relative;
24393
+ transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24394
+ white-space: nowrap;
24395
+ }
24396
+ .v-slide-group__content > * {
24397
+ white-space: initial;
24398
+ }
24399
+
24400
+ .v-slide-group__container {
24401
+ contain: content;
24402
+ display: flex;
24403
+ flex: 1 1 auto;
24404
+ overflow-x: auto;
24405
+ overflow-y: hidden;
24406
+ scrollbar-width: none;
24407
+ scrollbar-color: rgba(0, 0, 0, 0);
24408
+ }
24409
+ .v-slide-group__container::-webkit-scrollbar {
24410
+ display: none;
24411
+ }
24412
+
24413
+ .v-slide-group--vertical {
24414
+ max-height: inherit;
24415
+ }
24416
+ .v-slide-group--vertical,
24417
+ .v-slide-group--vertical .v-slide-group__container,
24418
+ .v-slide-group--vertical .v-slide-group__content {
24419
+ flex-direction: column;
24420
+ }
24421
+ .v-slide-group--vertical .v-slide-group__container {
24422
+ overflow-x: hidden;
24423
+ overflow-y: auto;
24424
+ }.v-skeleton-loader {
24425
+ align-items: center;
24426
+ background: rgb(var(--v-theme-surface));
24427
+ border-radius: 4px;
24428
+ display: flex;
24429
+ flex-wrap: wrap;
24430
+ position: relative;
24431
+ vertical-align: top;
24432
+ }
24433
+ .v-skeleton-loader__actions {
24434
+ justify-content: end;
24435
+ }
24436
+ .v-skeleton-loader .v-skeleton-loader__ossein {
24437
+ height: 100%;
24438
+ }
24439
+ .v-skeleton-loader .v-skeleton-loader__avatar,
24440
+ .v-skeleton-loader .v-skeleton-loader__button,
24441
+ .v-skeleton-loader .v-skeleton-loader__chip,
24442
+ .v-skeleton-loader .v-skeleton-loader__divider,
24443
+ .v-skeleton-loader .v-skeleton-loader__heading,
24444
+ .v-skeleton-loader .v-skeleton-loader__image,
24445
+ .v-skeleton-loader .v-skeleton-loader__ossein,
24446
+ .v-skeleton-loader .v-skeleton-loader__text {
24447
+ background: rgba(var(--v-theme-on-surface), var(--v-border-opacity));
24448
+ }
24449
+ .v-skeleton-loader .v-skeleton-loader__list-item,
24450
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar,
24451
+ .v-skeleton-loader .v-skeleton-loader__list-item-text,
24452
+ .v-skeleton-loader .v-skeleton-loader__list-item-two-line,
24453
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
24454
+ .v-skeleton-loader .v-skeleton-loader__list-item-three-line,
24455
+ .v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line {
24456
+ border-radius: 4px;
24457
+ }
24458
+ .v-skeleton-loader__bone {
24459
+ align-items: center;
24460
+ border-radius: inherit;
24461
+ display: flex;
24462
+ flex: 1 1 100%;
24463
+ flex-wrap: wrap;
24464
+ overflow: hidden;
24465
+ position: relative;
24466
+ }
24467
+ .v-skeleton-loader__bone::after {
24369
24468
  animation: loading 1.5s infinite;
24370
24469
  background: linear-gradient(90deg, rgba(var(--v-theme-surface), 0), rgba(var(--v-theme-surface), 0.3), rgba(var(--v-theme-surface), 0));
24371
24470
  transform: translateX(-100%);
@@ -24547,105 +24646,6 @@ html.v-overlay-scroll-blocked {
24547
24646
  100% {
24548
24647
  transform: translateX(100%);
24549
24648
  }
24550
- }.v-slide-group {
24551
- display: flex;
24552
- overflow: hidden;
24553
- }
24554
-
24555
- .v-slide-group__next,
24556
- .v-slide-group__prev {
24557
- align-items: center;
24558
- display: flex;
24559
- flex: 0 1 52px;
24560
- justify-content: center;
24561
- min-width: 52px;
24562
- cursor: pointer;
24563
- }
24564
- .v-slide-group__next--disabled,
24565
- .v-slide-group__prev--disabled {
24566
- pointer-events: none;
24567
- opacity: var(--v-disabled-opacity);
24568
- }
24569
-
24570
- .v-slide-group__content {
24571
- display: flex;
24572
- flex: 1 0 auto;
24573
- position: relative;
24574
- transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
24575
- white-space: nowrap;
24576
- }
24577
- .v-slide-group__content > * {
24578
- white-space: initial;
24579
- }
24580
-
24581
- .v-slide-group__container {
24582
- contain: content;
24583
- display: flex;
24584
- flex: 1 1 auto;
24585
- overflow-x: auto;
24586
- overflow-y: hidden;
24587
- scrollbar-width: none;
24588
- scrollbar-color: rgba(0, 0, 0, 0);
24589
- }
24590
- .v-slide-group__container::-webkit-scrollbar {
24591
- display: none;
24592
- }
24593
-
24594
- .v-slide-group--vertical {
24595
- max-height: inherit;
24596
- }
24597
- .v-slide-group--vertical,
24598
- .v-slide-group--vertical .v-slide-group__container,
24599
- .v-slide-group--vertical .v-slide-group__content {
24600
- flex-direction: column;
24601
- }
24602
- .v-slide-group--vertical .v-slide-group__container {
24603
- overflow-x: hidden;
24604
- overflow-y: auto;
24605
- }.v-selection-control-group {
24606
- grid-area: control;
24607
- display: flex;
24608
- flex-direction: column;
24609
- }
24610
- .v-selection-control-group--inline {
24611
- flex-direction: row;
24612
- flex-wrap: wrap;
24613
- }.v-sheet {
24614
- display: block;
24615
- }
24616
- .v-sheet {
24617
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24618
- border-style: solid;
24619
- border-width: 0;
24620
- }
24621
- .v-sheet--border {
24622
- border-width: thin;
24623
- box-shadow: none;
24624
- }
24625
- .v-sheet {
24626
- 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));
24627
- }
24628
- .v-sheet--absolute {
24629
- position: absolute;
24630
- }
24631
- .v-sheet--fixed {
24632
- position: fixed;
24633
- }
24634
- .v-sheet--relative {
24635
- position: relative;
24636
- }
24637
- .v-sheet--sticky {
24638
- position: sticky;
24639
- }
24640
- .v-sheet {
24641
- border-radius: 0;
24642
- }
24643
- .v-sheet {
24644
- background: rgb(var(--v-theme-surface));
24645
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24646
- }
24647
- .v-sheet--rounded {
24648
- border-radius: 4px;
24649
24649
  }.v-snackbar {
24650
24650
  justify-content: center;
24651
24651
  z-index: 10000;
@@ -24786,6 +24786,47 @@ html.v-overlay-scroll-blocked {
24786
24786
  }
24787
24787
  .v-snackbar-transition-leave-to {
24788
24788
  opacity: 0;
24789
+ }.v-speed-dial__content {
24790
+ gap: 8px;
24791
+ }
24792
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24793
+ flex-direction: row;
24794
+ }
24795
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24796
+ flex-direction: row-reverse;
24797
+ }
24798
+ .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24799
+ flex-direction: column-reverse;
24800
+ }
24801
+ .v-speed-dial__content > *:nth-child(1) {
24802
+ transition-delay: 0s;
24803
+ }
24804
+ .v-speed-dial__content > *:nth-child(2) {
24805
+ transition-delay: 0.05s;
24806
+ }
24807
+ .v-speed-dial__content > *:nth-child(3) {
24808
+ transition-delay: 0.1s;
24809
+ }
24810
+ .v-speed-dial__content > *:nth-child(4) {
24811
+ transition-delay: 0.15s;
24812
+ }
24813
+ .v-speed-dial__content > *:nth-child(5) {
24814
+ transition-delay: 0.2s;
24815
+ }
24816
+ .v-speed-dial__content > *:nth-child(6) {
24817
+ transition-delay: 0.25s;
24818
+ }
24819
+ .v-speed-dial__content > *:nth-child(7) {
24820
+ transition-delay: 0.3s;
24821
+ }
24822
+ .v-speed-dial__content > *:nth-child(8) {
24823
+ transition-delay: 0.35s;
24824
+ }
24825
+ .v-speed-dial__content > *:nth-child(9) {
24826
+ transition-delay: 0.4s;
24827
+ }
24828
+ .v-speed-dial__content > *:nth-child(10) {
24829
+ transition-delay: 0.45s;
24789
24830
  }.v-stepper.v-sheet {
24790
24831
  overflow: hidden;
24791
24832
  }
@@ -24961,49 +25002,8 @@ html.v-overlay-scroll-blocked {
24961
25002
  left: 0;
24962
25003
  width: 100%;
24963
25004
  height: 100%;
24964
- }.v-speed-dial__content {
24965
- gap: 8px;
24966
- }
24967
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
24968
- flex-direction: row;
24969
- }
24970
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
24971
- flex-direction: row-reverse;
24972
- }
24973
- .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
24974
- flex-direction: column-reverse;
24975
- }
24976
- .v-speed-dial__content > *:nth-child(1) {
24977
- transition-delay: 0s;
24978
- }
24979
- .v-speed-dial__content > *:nth-child(2) {
24980
- transition-delay: 0.05s;
24981
- }
24982
- .v-speed-dial__content > *:nth-child(3) {
24983
- transition-delay: 0.1s;
24984
- }
24985
- .v-speed-dial__content > *:nth-child(4) {
24986
- transition-delay: 0.15s;
24987
- }
24988
- .v-speed-dial__content > *:nth-child(5) {
24989
- transition-delay: 0.2s;
24990
- }
24991
- .v-speed-dial__content > *:nth-child(6) {
24992
- transition-delay: 0.25s;
24993
- }
24994
- .v-speed-dial__content > *:nth-child(7) {
24995
- transition-delay: 0.3s;
24996
- }
24997
- .v-speed-dial__content > *:nth-child(8) {
24998
- transition-delay: 0.35s;
24999
- }
25000
- .v-speed-dial__content > *:nth-child(9) {
25001
- transition-delay: 0.4s;
25002
- }
25003
- .v-speed-dial__content > *:nth-child(10) {
25004
- transition-delay: 0.45s;
25005
- }.v-switch .v-label {
25006
- padding-inline-start: 10px;
25005
+ }.v-switch .v-label {
25006
+ padding-inline-start: 10px;
25007
25007
  }
25008
25008
 
25009
25009
  .v-switch__loader {
@@ -25227,35 +25227,6 @@ html.v-overlay-scroll-blocked {
25227
25227
  }
25228
25228
  .v-system-bar:not(.v-system-bar--absolute) {
25229
25229
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
25230
- }.v-tab.v-tab.v-btn {
25231
- height: var(--v-tabs-height);
25232
- border-radius: 0;
25233
- min-width: 90px;
25234
- }
25235
- .v-slide-group--horizontal .v-tab {
25236
- max-width: 360px;
25237
- }
25238
- .v-slide-group--vertical .v-tab {
25239
- justify-content: start;
25240
- }
25241
-
25242
- .v-tab__slider {
25243
- position: absolute;
25244
- bottom: 0;
25245
- left: 0;
25246
- height: 2px;
25247
- width: 100%;
25248
- background: currentColor;
25249
- pointer-events: none;
25250
- opacity: 0;
25251
- }
25252
- .v-tab--selected .v-tab__slider {
25253
- opacity: 1;
25254
- }
25255
- .v-slide-group--vertical .v-tab__slider {
25256
- top: 0;
25257
- height: 100%;
25258
- width: 2px;
25259
25230
  }.v-tabs {
25260
25231
  display: flex;
25261
25232
  height: var(--v-tabs-height);
@@ -25322,45 +25293,177 @@ html.v-overlay-scroll-blocked {
25322
25293
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
25323
25294
  margin-inline-end: 52px;
25324
25295
  }
25325
- }.v-textarea .v-field {
25326
- --v-textarea-control-height: var(--v-input-control-height);
25296
+ }.v-tab.v-tab.v-btn {
25297
+ height: var(--v-tabs-height);
25298
+ border-radius: 0;
25299
+ min-width: 90px;
25327
25300
  }
25328
- .v-textarea .v-field__field {
25329
- --v-input-control-height: var(--v-textarea-control-height);
25301
+ .v-slide-group--horizontal .v-tab {
25302
+ max-width: 360px;
25330
25303
  }
25331
- .v-textarea .v-field__input {
25332
- flex: 1 1 auto;
25333
- outline: none;
25334
- -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));
25335
- 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));
25304
+ .v-slide-group--vertical .v-tab {
25305
+ justify-content: start;
25336
25306
  }
25337
- .v-textarea .v-field__input.v-textarea__sizer {
25338
- visibility: hidden;
25307
+
25308
+ .v-tab__slider {
25339
25309
  position: absolute;
25340
- top: 0;
25310
+ bottom: 0;
25341
25311
  left: 0;
25342
- height: 0 !important;
25343
- min-height: 0 !important;
25312
+ height: 2px;
25313
+ width: 100%;
25314
+ background: currentColor;
25344
25315
  pointer-events: none;
25316
+ opacity: 0;
25345
25317
  }
25346
- .v-textarea--no-resize .v-field__input {
25347
- resize: none;
25348
- }
25349
- .v-textarea .v-field--no-label textarea,
25350
- .v-textarea .v-field--active textarea {
25318
+ .v-tab--selected .v-tab__slider {
25351
25319
  opacity: 1;
25352
25320
  }
25353
- .v-textarea textarea {
25354
- opacity: 0;
25355
- flex: 1;
25356
- min-width: 0;
25357
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25321
+ .v-slide-group--vertical .v-tab__slider {
25322
+ top: 0;
25323
+ height: 100%;
25324
+ width: 2px;
25325
+ }.v-table {
25326
+ font-size: 0.875rem;
25327
+ transition-duration: 0.28s;
25328
+ transition-property: box-shadow, opacity, background, height;
25329
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25358
25330
  }
25359
- .v-textarea textarea:focus, .v-textarea textarea:active {
25360
- outline: none;
25331
+ .v-table {
25332
+ background: rgb(var(--v-theme-surface));
25333
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25361
25334
  }
25362
- .v-textarea textarea:invalid {
25363
- box-shadow: none;
25335
+ .v-table .v-table-divider {
25336
+ border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25337
+ }
25338
+ .v-table .v-table__wrapper > table > thead > tr > th {
25339
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25340
+ }
25341
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25342
+ .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25343
+ border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25344
+ }
25345
+ .v-table .v-table__wrapper > table > tfoot > tr > td,
25346
+ .v-table .v-table__wrapper > table > tfoot > tr > th {
25347
+ border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25348
+ }
25349
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25350
+ position: relative;
25351
+ }
25352
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25353
+ background: rgba(var(--v-border-color), var(--v-hover-opacity));
25354
+ pointer-events: none;
25355
+ }
25356
+ .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25357
+ content: "";
25358
+ position: absolute;
25359
+ top: 0;
25360
+ left: 0;
25361
+ width: 100%;
25362
+ height: 100%;
25363
+ }
25364
+ .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25365
+ background: rgb(var(--v-theme-surface));
25366
+ box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25367
+ z-index: 1;
25368
+ }
25369
+ .v-table.v-table--fixed-footer > tfoot > tr > th,
25370
+ .v-table.v-table--fixed-footer > tfoot > tr > td {
25371
+ background: rgb(var(--v-theme-surface));
25372
+ box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25373
+ }
25374
+
25375
+ .v-table {
25376
+ border-radius: inherit;
25377
+ line-height: 1.5;
25378
+ max-width: 100%;
25379
+ display: flex;
25380
+ flex-direction: column;
25381
+ }
25382
+ .v-table > .v-table__wrapper > table {
25383
+ width: 100%;
25384
+ border-spacing: 0;
25385
+ }
25386
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25387
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25388
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25389
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25390
+ .v-table > .v-table__wrapper > table > tfoot > tr > td,
25391
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25392
+ padding: 0 16px;
25393
+ transition-duration: 0.28s;
25394
+ transition-property: box-shadow, opacity, background, height;
25395
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25396
+ }
25397
+ .v-table > .v-table__wrapper > table > tbody > tr > td,
25398
+ .v-table > .v-table__wrapper > table > thead > tr > td,
25399
+ .v-table > .v-table__wrapper > table > tfoot > tr > td {
25400
+ height: var(--v-table-row-height);
25401
+ }
25402
+ .v-table > .v-table__wrapper > table > tbody > tr > th,
25403
+ .v-table > .v-table__wrapper > table > thead > tr > th,
25404
+ .v-table > .v-table__wrapper > table > tfoot > tr > th {
25405
+ height: var(--v-table-header-height);
25406
+ font-weight: 500;
25407
+ -webkit-user-select: none;
25408
+ user-select: none;
25409
+ text-align: start;
25410
+ }
25411
+ .v-table--density-default {
25412
+ --v-table-header-height: 56px;
25413
+ --v-table-row-height: 52px;
25414
+ }
25415
+
25416
+ .v-table--density-comfortable {
25417
+ --v-table-header-height: 48px;
25418
+ --v-table-row-height: 44px;
25419
+ }
25420
+
25421
+ .v-table--density-compact {
25422
+ --v-table-header-height: 40px;
25423
+ --v-table-row-height: 36px;
25424
+ }
25425
+
25426
+ .v-table__wrapper {
25427
+ border-radius: inherit;
25428
+ overflow: auto;
25429
+ flex: 1 1 auto;
25430
+ }
25431
+
25432
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25433
+ border-top-left-radius: 0;
25434
+ }
25435
+ .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25436
+ border-top-right-radius: 0;
25437
+ }
25438
+
25439
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25440
+ border-bottom-left-radius: 0;
25441
+ }
25442
+ .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25443
+ border-bottom-right-radius: 0;
25444
+ }
25445
+
25446
+ .v-table--fixed-height > .v-table__wrapper {
25447
+ overflow-y: auto;
25448
+ }
25449
+
25450
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
25451
+ position: sticky;
25452
+ top: 0;
25453
+ z-index: 2;
25454
+ }
25455
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25456
+ border-bottom: 0px !important;
25457
+ }
25458
+
25459
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25460
+ position: sticky;
25461
+ bottom: 0;
25462
+ z-index: 1;
25463
+ }
25464
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25465
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25466
+ border-top: 0px !important;
25364
25467
  }/* region BLOCK */
25365
25468
  .v-text-field input {
25366
25469
  color: inherit;
@@ -25428,151 +25531,191 @@ html.v-overlay-scroll-blocked {
25428
25531
  padding-inline-end: var(--v-field-padding-end);
25429
25532
  }
25430
25533
 
25431
- /* endregion */.v-table {
25432
- font-size: 0.875rem;
25433
- transition-duration: 0.28s;
25434
- transition-property: box-shadow, opacity, background, height;
25435
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25534
+ /* endregion */.v-textarea .v-field {
25535
+ --v-textarea-control-height: var(--v-input-control-height);
25436
25536
  }
25437
- .v-table {
25438
- background: rgb(var(--v-theme-surface));
25439
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25537
+ .v-textarea .v-field__field {
25538
+ --v-input-control-height: var(--v-textarea-control-height);
25440
25539
  }
25441
- .v-table .v-table-divider {
25442
- border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25540
+ .v-textarea .v-field__input {
25541
+ flex: 1 1 auto;
25542
+ outline: none;
25543
+ -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));
25544
+ 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));
25443
25545
  }
25444
- .v-table .v-table__wrapper > table > thead > tr > th {
25445
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25546
+ .v-textarea .v-field__input.v-textarea__sizer {
25547
+ visibility: hidden;
25548
+ position: absolute;
25549
+ top: 0;
25550
+ left: 0;
25551
+ height: 0 !important;
25552
+ min-height: 0 !important;
25553
+ pointer-events: none;
25446
25554
  }
25447
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
25448
- .v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
25449
- border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25555
+ .v-textarea--no-resize .v-field__input {
25556
+ resize: none;
25450
25557
  }
25451
- .v-table .v-table__wrapper > table > tfoot > tr > td,
25452
- .v-table .v-table__wrapper > table > tfoot > tr > th {
25453
- border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
25558
+ .v-textarea .v-field--no-label textarea,
25559
+ .v-textarea .v-field--active textarea {
25560
+ opacity: 1;
25454
25561
  }
25455
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
25562
+ .v-textarea textarea {
25563
+ opacity: 0;
25564
+ flex: 1;
25565
+ min-width: 0;
25566
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
25567
+ }
25568
+ .v-textarea textarea:focus, .v-textarea textarea:active {
25569
+ outline: none;
25570
+ }
25571
+ .v-textarea textarea:invalid {
25572
+ box-shadow: none;
25573
+ }.v-theme-provider {
25574
+ background: rgb(var(--v-theme-background));
25575
+ color: rgb(var(--v-theme-on-background));
25576
+ }.v-toolbar {
25577
+ align-items: flex-start;
25578
+ display: flex;
25579
+ flex: none;
25580
+ flex-direction: column;
25581
+ justify-content: space-between;
25582
+ max-width: 100%;
25456
25583
  position: relative;
25584
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
25585
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
25586
+ width: 100%;
25457
25587
  }
25458
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25459
- background: rgba(var(--v-border-color), var(--v-hover-opacity));
25460
- pointer-events: none;
25588
+ .v-toolbar {
25589
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
25590
+ border-style: solid;
25591
+ border-width: 0;
25461
25592
  }
25462
- .v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
25463
- content: "";
25593
+ .v-toolbar--border {
25594
+ border-width: thin;
25595
+ box-shadow: none;
25596
+ }
25597
+ .v-toolbar {
25598
+ 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));
25599
+ }
25600
+ .v-toolbar {
25601
+ border-radius: 0;
25602
+ }
25603
+ .v-toolbar {
25604
+ background: rgb(var(--v-theme-surface-light));
25605
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
25606
+ }
25607
+ .v-toolbar--absolute {
25464
25608
  position: absolute;
25465
- top: 0;
25466
- left: 0;
25467
- width: 100%;
25468
- height: 100%;
25469
25609
  }
25470
- .v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25471
- background: rgb(var(--v-theme-surface));
25472
- box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25473
- z-index: 1;
25610
+ .v-toolbar--collapse {
25611
+ max-width: 112px;
25612
+ overflow: hidden;
25613
+ border-end-end-radius: 24px;
25474
25614
  }
25475
- .v-table.v-table--fixed-footer > tfoot > tr > th,
25476
- .v-table.v-table--fixed-footer > tfoot > tr > td {
25477
- background: rgb(var(--v-theme-surface));
25478
- box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
25615
+ .v-toolbar--collapse .v-toolbar-title {
25616
+ display: none;
25617
+ }
25618
+ .v-toolbar--flat {
25619
+ 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));
25620
+ }
25621
+ .v-toolbar--floating {
25622
+ display: inline-flex;
25623
+ }
25624
+ .v-toolbar--rounded {
25625
+ border-radius: 4px;
25479
25626
  }
25480
25627
 
25481
- .v-table {
25482
- border-radius: inherit;
25483
- line-height: 1.5;
25484
- max-width: 100%;
25628
+ .v-toolbar__content,
25629
+ .v-toolbar__extension {
25630
+ align-items: center;
25485
25631
  display: flex;
25486
- flex-direction: column;
25487
- }
25488
- .v-table > .v-table__wrapper > table {
25632
+ flex: 0 0 auto;
25633
+ position: relative;
25634
+ transition: inherit;
25489
25635
  width: 100%;
25490
- border-spacing: 0;
25491
25636
  }
25492
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25493
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25494
- .v-table > .v-table__wrapper > table > thead > tr > td,
25495
- .v-table > .v-table__wrapper > table > thead > tr > th,
25496
- .v-table > .v-table__wrapper > table > tfoot > tr > td,
25497
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25498
- padding: 0 16px;
25499
- transition-duration: 0.28s;
25500
- transition-property: box-shadow, opacity, background, height;
25501
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
25637
+
25638
+ .v-toolbar__content {
25639
+ overflow: hidden;
25502
25640
  }
25503
- .v-table > .v-table__wrapper > table > tbody > tr > td,
25504
- .v-table > .v-table__wrapper > table > thead > tr > td,
25505
- .v-table > .v-table__wrapper > table > tfoot > tr > td {
25506
- height: var(--v-table-row-height);
25641
+ .v-toolbar__content > .v-btn:first-child {
25642
+ margin-inline-start: 4px;
25507
25643
  }
25508
- .v-table > .v-table__wrapper > table > tbody > tr > th,
25509
- .v-table > .v-table__wrapper > table > thead > tr > th,
25510
- .v-table > .v-table__wrapper > table > tfoot > tr > th {
25511
- height: var(--v-table-header-height);
25512
- font-weight: 500;
25513
- -webkit-user-select: none;
25514
- user-select: none;
25515
- text-align: start;
25644
+ .v-toolbar__content > .v-btn:last-child {
25645
+ margin-inline-end: 4px;
25516
25646
  }
25517
- .v-table--density-default {
25518
- --v-table-header-height: 56px;
25519
- --v-table-row-height: 52px;
25647
+ .v-toolbar__content > .v-toolbar-title {
25648
+ margin-inline-start: 20px;
25520
25649
  }
25521
-
25522
- .v-table--density-comfortable {
25523
- --v-table-header-height: 48px;
25524
- --v-table-row-height: 44px;
25650
+ .v-toolbar--density-prominent .v-toolbar__content {
25651
+ align-items: flex-start;
25525
25652
  }
25526
25653
 
25527
- .v-table--density-compact {
25528
- --v-table-header-height: 40px;
25529
- --v-table-row-height: 36px;
25654
+ .v-toolbar__image {
25655
+ display: flex;
25656
+ opacity: var(--v-toolbar-image-opacity, 1);
25657
+ transition-property: opacity;
25658
+ }
25659
+ .v-toolbar__image {
25660
+ position: absolute;
25661
+ top: 0;
25662
+ left: 0;
25663
+ width: 100%;
25664
+ height: 100%;
25530
25665
  }
25531
25666
 
25532
- .v-table__wrapper {
25533
- border-radius: inherit;
25534
- overflow: auto;
25535
- flex: 1 1 auto;
25667
+ .v-toolbar__prepend,
25668
+ .v-toolbar__append {
25669
+ align-items: center;
25670
+ align-self: stretch;
25671
+ display: flex;
25536
25672
  }
25537
25673
 
25538
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
25539
- border-top-left-radius: 0;
25674
+ .v-toolbar__prepend {
25675
+ margin-inline: 4px auto;
25540
25676
  }
25541
- .v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
25542
- border-top-right-radius: 0;
25677
+
25678
+ .v-toolbar__append {
25679
+ margin-inline: auto 4px;
25543
25680
  }
25544
25681
 
25545
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
25546
- border-bottom-left-radius: 0;
25682
+ .v-toolbar-title {
25683
+ flex: 1 1;
25684
+ font-size: 1.25rem;
25685
+ min-width: 0;
25547
25686
  }
25548
- .v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
25549
- border-bottom-right-radius: 0;
25687
+ .v-toolbar-title {
25688
+ font-size: 1.25rem;
25689
+ font-weight: 400;
25690
+ letter-spacing: 0;
25691
+ line-height: 1.75rem;
25692
+ text-transform: none;
25550
25693
  }
25551
-
25552
- .v-table--fixed-height > .v-table__wrapper {
25553
- overflow-y: auto;
25694
+ .v-toolbar--density-prominent .v-toolbar-title {
25695
+ align-self: flex-end;
25696
+ padding-bottom: 6px;
25554
25697
  }
25555
-
25556
- .v-table--fixed-header > .v-table__wrapper > table > thead {
25557
- position: sticky;
25558
- top: 0;
25559
- z-index: 2;
25698
+ .v-toolbar--density-prominent .v-toolbar-title {
25699
+ font-size: 1.5rem;
25700
+ font-weight: 400;
25701
+ letter-spacing: 0;
25702
+ line-height: 2.25rem;
25703
+ text-transform: none;
25560
25704
  }
25561
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
25562
- border-bottom: 0px !important;
25705
+
25706
+ .v-toolbar-title__placeholder {
25707
+ overflow: hidden;
25708
+ text-overflow: ellipsis;
25709
+ white-space: nowrap;
25563
25710
  }
25564
25711
 
25565
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
25566
- position: sticky;
25567
- bottom: 0;
25568
- z-index: 1;
25712
+ .v-toolbar-items {
25713
+ display: flex;
25714
+ height: inherit;
25715
+ align-self: stretch;
25569
25716
  }
25570
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
25571
- .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
25572
- border-top: 0px !important;
25573
- }.v-theme-provider {
25574
- background: rgb(var(--v-theme-background));
25575
- color: rgb(var(--v-theme-on-background));
25717
+ .v-toolbar-items > .v-btn {
25718
+ border-radius: 0;
25576
25719
  }.v-timeline .v-timeline-divider__dot {
25577
25720
  background: rgb(var(--v-theme-surface-light));
25578
25721
  }
@@ -26013,149 +26156,6 @@ html.v-overlay-scroll-blocked {
26013
26156
  .v-tooltip > .v-overlay__content[class*=leave-active] {
26014
26157
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
26015
26158
  transition-duration: 75ms;
26016
- }.v-toolbar {
26017
- align-items: flex-start;
26018
- display: flex;
26019
- flex: none;
26020
- flex-direction: column;
26021
- justify-content: space-between;
26022
- max-width: 100%;
26023
- position: relative;
26024
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
26025
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
26026
- width: 100%;
26027
- }
26028
- .v-toolbar {
26029
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
26030
- border-style: solid;
26031
- border-width: 0;
26032
- }
26033
- .v-toolbar--border {
26034
- border-width: thin;
26035
- box-shadow: none;
26036
- }
26037
- .v-toolbar {
26038
- 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));
26039
- }
26040
- .v-toolbar {
26041
- border-radius: 0;
26042
- }
26043
- .v-toolbar {
26044
- background: rgb(var(--v-theme-surface-light));
26045
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
26046
- }
26047
- .v-toolbar--absolute {
26048
- position: absolute;
26049
- }
26050
- .v-toolbar--collapse {
26051
- max-width: 112px;
26052
- overflow: hidden;
26053
- border-end-end-radius: 24px;
26054
- }
26055
- .v-toolbar--collapse .v-toolbar-title {
26056
- display: none;
26057
- }
26058
- .v-toolbar--flat {
26059
- 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));
26060
- }
26061
- .v-toolbar--floating {
26062
- display: inline-flex;
26063
- }
26064
- .v-toolbar--rounded {
26065
- border-radius: 4px;
26066
- }
26067
-
26068
- .v-toolbar__content,
26069
- .v-toolbar__extension {
26070
- align-items: center;
26071
- display: flex;
26072
- flex: 0 0 auto;
26073
- position: relative;
26074
- transition: inherit;
26075
- width: 100%;
26076
- }
26077
-
26078
- .v-toolbar__content {
26079
- overflow: hidden;
26080
- }
26081
- .v-toolbar__content > .v-btn:first-child {
26082
- margin-inline-start: 4px;
26083
- }
26084
- .v-toolbar__content > .v-btn:last-child {
26085
- margin-inline-end: 4px;
26086
- }
26087
- .v-toolbar__content > .v-toolbar-title {
26088
- margin-inline-start: 20px;
26089
- }
26090
- .v-toolbar--density-prominent .v-toolbar__content {
26091
- align-items: flex-start;
26092
- }
26093
-
26094
- .v-toolbar__image {
26095
- display: flex;
26096
- opacity: var(--v-toolbar-image-opacity, 1);
26097
- transition-property: opacity;
26098
- }
26099
- .v-toolbar__image {
26100
- position: absolute;
26101
- top: 0;
26102
- left: 0;
26103
- width: 100%;
26104
- height: 100%;
26105
- }
26106
-
26107
- .v-toolbar__prepend,
26108
- .v-toolbar__append {
26109
- align-items: center;
26110
- align-self: stretch;
26111
- display: flex;
26112
- }
26113
-
26114
- .v-toolbar__prepend {
26115
- margin-inline: 4px auto;
26116
- }
26117
-
26118
- .v-toolbar__append {
26119
- margin-inline: auto 4px;
26120
- }
26121
-
26122
- .v-toolbar-title {
26123
- flex: 1 1;
26124
- font-size: 1.25rem;
26125
- min-width: 0;
26126
- }
26127
- .v-toolbar-title {
26128
- font-size: 1.25rem;
26129
- font-weight: 400;
26130
- letter-spacing: 0;
26131
- line-height: 1.75rem;
26132
- text-transform: none;
26133
- }
26134
- .v-toolbar--density-prominent .v-toolbar-title {
26135
- align-self: flex-end;
26136
- padding-bottom: 6px;
26137
- }
26138
- .v-toolbar--density-prominent .v-toolbar-title {
26139
- font-size: 1.5rem;
26140
- font-weight: 400;
26141
- letter-spacing: 0;
26142
- line-height: 2.25rem;
26143
- text-transform: none;
26144
- }
26145
-
26146
- .v-toolbar-title__placeholder {
26147
- overflow: hidden;
26148
- text-overflow: ellipsis;
26149
- white-space: nowrap;
26150
- }
26151
-
26152
- .v-toolbar-items {
26153
- display: flex;
26154
- height: inherit;
26155
- align-self: stretch;
26156
- }
26157
- .v-toolbar-items > .v-btn {
26158
- border-radius: 0;
26159
26159
  }.v-virtual-scroll {
26160
26160
  display: block;
26161
26161
  flex: 1 1 auto;