vuetify 3.5.5 → 3.5.7

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.
Files changed (86) hide show
  1. package/dist/_component-variables-labs.sass +2 -0
  2. package/dist/json/attributes.json +352 -40
  3. package/dist/json/importMap-labs.json +16 -8
  4. package/dist/json/importMap.json +122 -118
  5. package/dist/json/tags.json +93 -0
  6. package/dist/json/web-types.json +1084 -52
  7. package/dist/vuetify-labs.css +2121 -1996
  8. package/dist/vuetify-labs.d.ts +1336 -128
  9. package/dist/vuetify-labs.esm.js +332 -81
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +332 -81
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +838 -839
  14. package/dist/vuetify.d.ts +320 -145
  15. package/dist/vuetify.esm.js +87 -75
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +87 -75
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +60 -58
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VApp/index.d.mts +8 -6
  23. package/lib/components/VAutocomplete/VAutocomplete.css +4 -4
  24. package/lib/components/VAutocomplete/VAutocomplete.mjs +33 -29
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  27. package/lib/components/VCheckbox/VCheckbox.mjs +3 -1
  28. package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
  29. package/lib/components/VCombobox/VCombobox.css +4 -4
  30. package/lib/components/VCombobox/VCombobox.mjs +22 -23
  31. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  32. package/lib/components/VCombobox/VCombobox.sass +1 -1
  33. package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
  34. package/lib/components/VDataIterator/index.d.mts +50 -94
  35. package/lib/components/VDataTable/index.d.mts +214 -1
  36. package/lib/components/VDataTable/index.mjs +1 -0
  37. package/lib/components/VDataTable/index.mjs.map +1 -1
  38. package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
  39. package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
  40. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
  41. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  42. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
  43. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  44. package/lib/components/VExpansionPanel/index.d.mts +27 -0
  45. package/lib/components/VLayout/index.d.mts +8 -6
  46. package/lib/components/VSelect/VSelect.mjs +20 -18
  47. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  48. package/lib/components/VToolbar/VToolbar.css +3 -1
  49. package/lib/components/VToolbar/VToolbar.sass +2 -1
  50. package/lib/components/index.d.mts +279 -106
  51. package/lib/composables/filter.mjs +1 -1
  52. package/lib/composables/filter.mjs.map +1 -1
  53. package/lib/composables/goto.mjs +2 -2
  54. package/lib/composables/goto.mjs.map +1 -1
  55. package/lib/composables/layout.mjs.map +1 -1
  56. package/lib/entry-bundler.mjs +1 -1
  57. package/lib/framework.mjs +1 -1
  58. package/lib/index.d.mts +42 -39
  59. package/lib/labs/VEmptyState/VEmptyState.css +59 -0
  60. package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
  61. package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
  62. package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
  63. package/lib/labs/VEmptyState/_variables.scss +22 -0
  64. package/lib/labs/VEmptyState/index.d.mts +415 -0
  65. package/lib/labs/VEmptyState/index.mjs +2 -0
  66. package/lib/labs/VEmptyState/index.mjs.map +1 -0
  67. package/lib/labs/VFab/VFab.css +69 -0
  68. package/lib/labs/VFab/VFab.mjs +114 -0
  69. package/lib/labs/VFab/VFab.mjs.map +1 -0
  70. package/lib/labs/VFab/VFab.sass +82 -0
  71. package/lib/labs/VFab/_mixins.scss +22 -0
  72. package/lib/labs/VFab/_variables.scss +33 -0
  73. package/lib/labs/VFab/index.d.mts +656 -0
  74. package/lib/labs/VFab/index.mjs +2 -0
  75. package/lib/labs/VFab/index.mjs.map +1 -0
  76. package/lib/labs/VSparkline/VBarline.mjs +4 -4
  77. package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
  78. package/lib/labs/VSparkline/VTrendline.mjs +6 -2
  79. package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
  80. package/lib/labs/VSparkline/index.d.mts +12 -0
  81. package/lib/labs/VSparkline/util/line.mjs +2 -0
  82. package/lib/labs/VSparkline/util/line.mjs.map +1 -1
  83. package/lib/labs/components.d.mts +1066 -2
  84. package/lib/labs/components.mjs +2 -0
  85. package/lib/labs/components.mjs.map +1 -1
  86. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.5
2
+ * Vuetify v3.5.7
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17029,57 +17029,60 @@ html.overflow-y-hidden {
17029
17029
  font-weight: normal;
17030
17030
  padding: 0.2em 0.4rem;
17031
17031
  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));
17032
- }.v-picker.v-sheet {
17033
- 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));
17034
- border-radius: 4px;
17032
+ }.v-calendar-day__row-with-label {
17035
17033
  display: grid;
17036
- grid-auto-rows: min-content;
17037
- grid-template-areas: "title" "header" "body";
17038
- overflow: hidden;
17039
- }
17040
- .v-picker.v-sheet.v-picker--with-actions {
17041
- grid-template-areas: "title" "header" "body" "actions";
17034
+ grid-template-columns: 48px 8px 1fr;
17035
+ border-right: thin solid #e0e0e0;
17042
17036
  }
17043
-
17044
- .v-picker__body {
17045
- grid-area: body;
17037
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
17038
+ position: relative;
17039
+ border-right: thin solid #e0e0e0;
17046
17040
  }
17047
-
17048
- .v-picker__header {
17049
- grid-area: header;
17041
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
17042
+ content: "";
17043
+ border-bottom: thin solid #e0e0e0;
17044
+ position: absolute;
17045
+ width: 100%;
17046
+ margin-top: -1px;
17047
+ z-index: 3;
17048
+ pointer-events: none;
17050
17049
  }
17051
-
17052
- .v-picker__actions {
17053
- grid-area: actions;
17054
- padding: 0 12px 12px;
17055
- display: flex;
17056
- align-items: center;
17057
- justify-content: flex-end;
17050
+ .v-calendar-day__row-with-label .v-calendar-day__row-label {
17051
+ font-size: 10px;
17052
+ text-align: center;
17053
+ position: relative;
17054
+ top: -8px;
17058
17055
  }
17059
- .v-picker__actions .v-btn {
17060
- min-width: 48px;
17056
+ .v-calendar-day__row-with-label .v-calendar-day__row-content {
17057
+ border-bottom: thin solid #e0e0e0;
17061
17058
  }
17062
- .v-picker__actions .v-btn:not(:last-child) {
17063
- margin-inline-end: 8px;
17059
+ .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17060
+ border-bottom: none;
17064
17061
  }
17065
17062
 
17066
- .v-picker--landscape {
17067
- grid-template-areas: "title" "header body" "header body";
17063
+ .v-calendar-day__row-without-label {
17064
+ display: grid;
17065
+ grid-template-columns: 1fr;
17066
+ border-right: thin solid #e0e0e0;
17067
+ }
17068
+ .v-calendar-day__row-without-label .v-calendar-day__row-content {
17069
+ border-bottom: thin solid #e0e0e0;
17070
+ }
17071
+ .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17072
+ border-bottom: none;
17073
+ }.v-calendar-header {
17074
+ align-items: center;
17075
+ display: flex;
17076
+ min-height: 64px;
17068
17077
  }
17069
17078
 
17070
- .v-picker--landscape.v-picker--with-actions {
17071
- grid-template-areas: "title" "header body" "header actions";
17079
+ .v-calendar-header__today {
17080
+ margin-inline-end: 24px;
17072
17081
  }
17073
17082
 
17074
- .v-picker-title {
17075
- text-transform: uppercase;
17076
- font-size: 0.75rem;
17077
- grid-area: title;
17078
- padding-inline: 24px 12px;
17079
- padding-top: 16px;
17080
- padding-bottom: 16px;
17081
- font-weight: 400;
17082
- letter-spacing: 0.1666666667em;
17083
+ .v-calendar-header__title {
17084
+ font-size: 1.5rem;
17085
+ margin-inline-start: 24px;
17083
17086
  }.v-calendar-day {
17084
17087
  position: relative;
17085
17088
  display: flex;
@@ -17112,82 +17115,6 @@ html.overflow-y-hidden {
17112
17115
  }
17113
17116
  .v-calendar-weekly .v-calendar__container.days__0 {
17114
17117
  grid-template-columns: repeat(1, 1fr);
17115
- }.v-calendar-header {
17116
- align-items: center;
17117
- display: flex;
17118
- min-height: 64px;
17119
- }
17120
-
17121
- .v-calendar-header__today {
17122
- margin-inline-end: 24px;
17123
- }
17124
-
17125
- .v-calendar-header__title {
17126
- font-size: 1.5rem;
17127
- margin-inline-start: 24px;
17128
- }.v-calendar-month__day {
17129
- position: relative;
17130
- display: flex;
17131
- flex-direction: column;
17132
- min-width: 0;
17133
- min-height: 150px;
17134
- border-right: thin solid #e0e0e0;
17135
- border-bottom: thin solid #e0e0e0;
17136
- flex: 1 1 auto;
17137
- border-inline-end: thin solid #e0e0e0;
17138
- }
17139
-
17140
- .v-calendar-weekly__day {
17141
- flex: 1;
17142
- width: 0;
17143
- overflow: hidden;
17144
- -webkit-user-select: none;
17145
- user-select: none;
17146
- position: relative;
17147
- padding: 0px 0px 0px 0px;
17148
- min-width: 0;
17149
- min-height: 150px;
17150
- border-right: thin solid #e0e0e0;
17151
- border-bottom: thin solid #e0e0e0;
17152
- flex: 1 1 auto;
17153
- border-inline-end: thin solid #e0e0e0;
17154
- text-align: center;
17155
- }
17156
- .v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {
17157
- color: currentColor;
17158
- }
17159
-
17160
- .v-calendar-weekly__day-label {
17161
- text-decoration: none;
17162
- -webkit-user-select: none;
17163
- user-select: none;
17164
- cursor: pointer;
17165
- box-shadow: none;
17166
- text-align: center;
17167
- }
17168
- .v-calendar-weekly__day-label .v-btn {
17169
- font-size: 12px;
17170
- text-transform: none !important;
17171
- }
17172
- .v-calendar-weekly__day-label .v-btn.v-calendar-weekly__day-label__today {
17173
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17174
- color: rgb(var(--v-theme-on-surface-variant));
17175
- }
17176
-
17177
- .v-calendar-weekly__day-month {
17178
- position: absolute;
17179
- text-decoration: none;
17180
- -webkit-user-select: none;
17181
- user-select: none;
17182
- box-shadow: none;
17183
- top: 0;
17184
- left: 36px;
17185
- height: 32px;
17186
- line-height: 32px;
17187
- }
17188
-
17189
- .v-calendar-weekly__day-alldayevents-container {
17190
- min-height: 24px;
17191
17118
  }.v-calendar-weekly {
17192
17119
  width: 100%;
17193
17120
  height: 100%;
@@ -17411,58 +17338,257 @@ html.overflow-y-hidden {
17411
17338
  }
17412
17339
  .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
17413
17340
  border-right: none;
17414
- }.v-calendar-day__row-with-label {
17415
- display: grid;
17416
- grid-template-columns: 48px 8px 1fr;
17341
+ }.v-calendar-month__day {
17342
+ position: relative;
17343
+ display: flex;
17344
+ flex-direction: column;
17345
+ min-width: 0;
17346
+ min-height: 150px;
17417
17347
  border-right: thin solid #e0e0e0;
17348
+ border-bottom: thin solid #e0e0e0;
17349
+ flex: 1 1 auto;
17350
+ border-inline-end: thin solid #e0e0e0;
17418
17351
  }
17419
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
17352
+
17353
+ .v-calendar-weekly__day {
17354
+ flex: 1;
17355
+ width: 0;
17356
+ overflow: hidden;
17357
+ -webkit-user-select: none;
17358
+ user-select: none;
17420
17359
  position: relative;
17360
+ padding: 0px 0px 0px 0px;
17361
+ min-width: 0;
17362
+ min-height: 150px;
17421
17363
  border-right: thin solid #e0e0e0;
17422
- }
17423
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
17424
- content: "";
17425
17364
  border-bottom: thin solid #e0e0e0;
17426
- position: absolute;
17427
- width: 100%;
17428
- margin-top: -1px;
17429
- z-index: 3;
17430
- pointer-events: none;
17365
+ flex: 1 1 auto;
17366
+ border-inline-end: thin solid #e0e0e0;
17367
+ text-align: center;
17431
17368
  }
17432
- .v-calendar-day__row-with-label .v-calendar-day__row-label {
17433
- font-size: 10px;
17369
+ .v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {
17370
+ color: currentColor;
17371
+ }
17372
+
17373
+ .v-calendar-weekly__day-label {
17374
+ text-decoration: none;
17375
+ -webkit-user-select: none;
17376
+ user-select: none;
17377
+ cursor: pointer;
17378
+ box-shadow: none;
17434
17379
  text-align: center;
17435
- position: relative;
17436
- top: -8px;
17437
17380
  }
17438
- .v-calendar-day__row-with-label .v-calendar-day__row-content {
17439
- border-bottom: thin solid #e0e0e0;
17381
+ .v-calendar-weekly__day-label .v-btn {
17382
+ font-size: 12px;
17383
+ text-transform: none !important;
17440
17384
  }
17441
- .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17442
- border-bottom: none;
17385
+ .v-calendar-weekly__day-label .v-btn.v-calendar-weekly__day-label__today {
17386
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
17387
+ color: rgb(var(--v-theme-on-surface-variant));
17443
17388
  }
17444
17389
 
17445
- .v-calendar-day__row-without-label {
17390
+ .v-calendar-weekly__day-month {
17391
+ position: absolute;
17392
+ text-decoration: none;
17393
+ -webkit-user-select: none;
17394
+ user-select: none;
17395
+ box-shadow: none;
17396
+ top: 0;
17397
+ left: 36px;
17398
+ height: 32px;
17399
+ line-height: 32px;
17400
+ }
17401
+
17402
+ .v-calendar-weekly__day-alldayevents-container {
17403
+ min-height: 24px;
17404
+ }.v-picker.v-sheet {
17405
+ 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));
17406
+ border-radius: 4px;
17446
17407
  display: grid;
17447
- grid-template-columns: 1fr;
17448
- border-right: thin solid #e0e0e0;
17408
+ grid-auto-rows: min-content;
17409
+ grid-template-areas: "title" "header" "body";
17410
+ overflow: hidden;
17449
17411
  }
17450
- .v-calendar-day__row-without-label .v-calendar-day__row-content {
17451
- border-bottom: thin solid #e0e0e0;
17412
+ .v-picker.v-sheet.v-picker--with-actions {
17413
+ grid-template-areas: "title" "header" "body" "actions";
17452
17414
  }
17453
- .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17454
- border-bottom: none;
17455
- }.v-application {
17456
- display: flex;
17457
- background: rgb(var(--v-theme-background));
17458
- color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
17415
+
17416
+ .v-picker__body {
17417
+ grid-area: body;
17459
17418
  }
17460
17419
 
17461
- .v-application__wrap {
17462
- -webkit-backface-visibility: hidden;
17463
- backface-visibility: hidden;
17464
- display: flex;
17465
- flex-direction: column;
17420
+ .v-picker__header {
17421
+ grid-area: header;
17422
+ }
17423
+
17424
+ .v-picker__actions {
17425
+ grid-area: actions;
17426
+ padding: 0 12px 12px;
17427
+ display: flex;
17428
+ align-items: center;
17429
+ justify-content: flex-end;
17430
+ }
17431
+ .v-picker__actions .v-btn {
17432
+ min-width: 48px;
17433
+ }
17434
+ .v-picker__actions .v-btn:not(:last-child) {
17435
+ margin-inline-end: 8px;
17436
+ }
17437
+
17438
+ .v-picker--landscape {
17439
+ grid-template-areas: "title" "header body" "header body";
17440
+ }
17441
+
17442
+ .v-picker--landscape.v-picker--with-actions {
17443
+ grid-template-areas: "title" "header body" "header actions";
17444
+ }
17445
+
17446
+ .v-picker-title {
17447
+ text-transform: uppercase;
17448
+ font-size: 0.75rem;
17449
+ grid-area: title;
17450
+ padding-inline: 24px 12px;
17451
+ padding-top: 16px;
17452
+ padding-bottom: 16px;
17453
+ font-weight: 400;
17454
+ letter-spacing: 0.1666666667em;
17455
+ }.v-empty-state {
17456
+ align-items: center;
17457
+ display: flex;
17458
+ flex-direction: column;
17459
+ justify-content: center;
17460
+ min-height: 100%;
17461
+ padding: 16px;
17462
+ }
17463
+ .v-empty-state--start {
17464
+ align-items: flex-start;
17465
+ }
17466
+ .v-empty-state--center {
17467
+ align-items: center;
17468
+ }
17469
+ .v-empty-state--end {
17470
+ align-items: flex-end;
17471
+ }
17472
+
17473
+ .v-empty-state__media {
17474
+ text-align: center;
17475
+ width: 100%;
17476
+ }
17477
+
17478
+ .v-empty-state__headline {
17479
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
17480
+ font-size: 3.75rem;
17481
+ font-weight: 300;
17482
+ line-height: 3.75rem;
17483
+ }
17484
+
17485
+ .v-empty-state__title {
17486
+ font-size: 1.25rem;
17487
+ font-weight: 500;
17488
+ line-height: 2rem;
17489
+ text-align: center;
17490
+ }
17491
+
17492
+ .v-empty-state__text {
17493
+ font-size: 1rem;
17494
+ font-weight: 400;
17495
+ line-height: 1.5rem;
17496
+ padding: 0 16px;
17497
+ text-align: center;
17498
+ }
17499
+
17500
+ .v-empty-state__content {
17501
+ padding: 24px 0;
17502
+ }
17503
+
17504
+ .v-empty-state__actions {
17505
+ display: flex;
17506
+ gap: 8px;
17507
+ padding: 16px;
17508
+ }
17509
+
17510
+ .v-empty-state__action-btn.v-btn {
17511
+ background-color: rgb(var(--v-theme-surface-variant));
17512
+ color: rgb(var(--v-theme-on-surface-variant));
17513
+ }.v-fab {
17514
+ align-items: center;
17515
+ display: inline-flex;
17516
+ flex: 1 1 auto;
17517
+ pointer-events: none;
17518
+ position: relative;
17519
+ transition-duration: 0.2s;
17520
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17521
+ vertical-align: middle;
17522
+ }
17523
+ .v-fab .v-btn {
17524
+ pointer-events: auto;
17525
+ }
17526
+ .v-fab .v-btn--variant-elevated {
17527
+ 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));
17528
+ }
17529
+ .v-fab--app, .v-fab--absolute {
17530
+ display: flex;
17531
+ }
17532
+ .v-fab--start, .v-fab--left {
17533
+ justify-content: flex-start;
17534
+ }
17535
+ .v-fab--center {
17536
+ align-items: center;
17537
+ justify-content: center;
17538
+ }
17539
+ .v-fab--end, .v-fab--right {
17540
+ justify-content: flex-end;
17541
+ }
17542
+ .v-fab--bottom {
17543
+ align-items: flex-end;
17544
+ }
17545
+ .v-fab--top {
17546
+ align-items: flex-start;
17547
+ }
17548
+ .v-fab--extended .v-btn {
17549
+ border-radius: 9999px !important;
17550
+ }
17551
+
17552
+ .v-fab__container {
17553
+ align-self: center;
17554
+ display: inline-flex;
17555
+ vertical-align: middle;
17556
+ }
17557
+ .v-fab--app .v-fab__container {
17558
+ margin: 4px;
17559
+ }
17560
+ .v-fab--absolute .v-fab__container {
17561
+ position: absolute;
17562
+ z-index: 4;
17563
+ }
17564
+ .v-fab--offset.v-fab--top .v-fab__container {
17565
+ transform: translateY(-50%);
17566
+ }
17567
+ .v-fab--offset.v-fab--bottom .v-fab__container {
17568
+ transform: translateY(50%);
17569
+ }
17570
+ .v-fab--top .v-fab__container {
17571
+ top: 0;
17572
+ }
17573
+ .v-fab--bottom .v-fab__container {
17574
+ bottom: 0;
17575
+ }
17576
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
17577
+ left: 0;
17578
+ }
17579
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
17580
+ right: 0;
17581
+ }.v-application {
17582
+ display: flex;
17583
+ background: rgb(var(--v-theme-background));
17584
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
17585
+ }
17586
+
17587
+ .v-application__wrap {
17588
+ -webkit-backface-visibility: hidden;
17589
+ backface-visibility: hidden;
17590
+ display: flex;
17591
+ flex-direction: column;
17466
17592
  flex: 1 1 auto;
17467
17593
  max-width: 100%;
17468
17594
  min-height: 100vh;
@@ -17678,148 +17804,99 @@ html.overflow-y-hidden {
17678
17804
  text-transform: none;
17679
17805
  word-break: normal;
17680
17806
  word-wrap: break-word;
17681
- }.v-avatar {
17682
- flex: none;
17683
- align-items: center;
17684
- display: inline-flex;
17685
- justify-content: center;
17686
- line-height: normal;
17687
- overflow: hidden;
17688
- position: relative;
17689
- text-align: center;
17690
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17691
- transition-property: width, height;
17692
- vertical-align: middle;
17693
- border-radius: 50%;
17694
- }
17695
- .v-avatar.v-avatar--size-x-small {
17696
- --v-avatar-height: 24px;
17807
+ }.v-app-bar {
17808
+ display: flex;
17697
17809
  }
17698
- .v-avatar.v-avatar--size-small {
17699
- --v-avatar-height: 32px;
17810
+ .v-app-bar.v-toolbar {
17811
+ background: rgb(var(--v-theme-surface));
17812
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17700
17813
  }
17701
- .v-avatar.v-avatar--size-default {
17702
- --v-avatar-height: 40px;
17814
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
17815
+ 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));
17703
17816
  }
17704
- .v-avatar.v-avatar--size-large {
17705
- --v-avatar-height: 48px;
17817
+ .v-app-bar:not(.v-toolbar--absolute) {
17818
+ padding-inline-end: var(--v-scrollbar-offset);
17819
+ }.v-autocomplete .v-field .v-text-field__prefix,
17820
+ .v-autocomplete .v-field .v-text-field__suffix,
17821
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17822
+ cursor: text;
17706
17823
  }
17707
- .v-avatar.v-avatar--size-x-large {
17708
- --v-avatar-height: 56px;
17824
+ .v-autocomplete .v-field .v-field__input > input {
17825
+ flex: 1 1;
17709
17826
  }
17710
- .v-avatar.v-avatar--density-default {
17711
- height: calc(var(--v-avatar-height) + 0px);
17712
- width: calc(var(--v-avatar-height) + 0px);
17827
+ .v-autocomplete .v-field input {
17828
+ min-width: 64px;
17713
17829
  }
17714
- .v-avatar.v-avatar--density-comfortable {
17715
- height: calc(var(--v-avatar-height) + -4px);
17716
- width: calc(var(--v-avatar-height) + -4px);
17830
+ .v-autocomplete .v-field:not(.v-field--focused) input {
17831
+ min-width: 0;
17717
17832
  }
17718
- .v-avatar.v-avatar--density-compact {
17719
- height: calc(var(--v-avatar-height) + -8px);
17720
- width: calc(var(--v-avatar-height) + -8px);
17833
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17834
+ margin-inline-end: 2px;
17721
17835
  }
17722
- .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
17723
- background: transparent;
17724
- color: inherit;
17836
+ .v-autocomplete .v-autocomplete__selection-text {
17837
+ overflow: hidden;
17838
+ text-overflow: ellipsis;
17839
+ white-space: nowrap;
17725
17840
  }
17726
- .v-avatar--variant-plain {
17727
- opacity: 0.62;
17841
+
17842
+ .v-autocomplete__content {
17843
+ overflow: hidden;
17844
+ 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));
17845
+ border-radius: 4px;
17728
17846
  }
17729
- .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
17730
- opacity: 1;
17847
+ .v-autocomplete__mask {
17848
+ background: rgb(var(--v-theme-surface-light));
17731
17849
  }
17732
- .v-avatar--variant-plain .v-avatar__overlay {
17733
- display: none;
17850
+ .v-autocomplete__selection {
17851
+ display: inline-flex;
17852
+ align-items: center;
17853
+ height: 1.5rem;
17854
+ letter-spacing: inherit;
17855
+ line-height: inherit;
17856
+ max-width: calc(100% - 2px - 2px);
17734
17857
  }
17735
- .v-avatar--variant-elevated, .v-avatar--variant-flat {
17736
- background: var(--v-theme-surface);
17737
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
17858
+ .v-autocomplete__selection:first-child {
17859
+ margin-inline-start: 0;
17738
17860
  }
17739
- .v-avatar--variant-elevated {
17740
- 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));
17861
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17862
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17863
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17864
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17865
+ top: 0px;
17741
17866
  }
17742
- .v-avatar--variant-flat {
17743
- 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));
17867
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
17868
+ opacity: var(--v-medium-emphasis-opacity);
17744
17869
  }
17745
- .v-avatar--variant-outlined {
17746
- border: thin solid currentColor;
17870
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17871
+ opacity: 1;
17747
17872
  }
17748
- .v-avatar--variant-text .v-avatar__overlay {
17749
- background: currentColor;
17873
+ .v-autocomplete--selecting-index .v-field__input > input {
17874
+ caret-color: transparent;
17750
17875
  }
17751
- .v-avatar--variant-tonal .v-avatar__underlay {
17752
- background: currentColor;
17753
- opacity: var(--v-activated-opacity);
17754
- border-radius: inherit;
17876
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field .v-field--focused input {
17877
+ flex: 1 1;
17755
17878
  position: absolute;
17756
- top: 0;
17757
- right: 0;
17758
- bottom: 0;
17759
17879
  left: 0;
17760
- pointer-events: none;
17880
+ right: 0;
17881
+ width: 100%;
17882
+ padding-inline: inherit;
17761
17883
  }
17762
- .v-avatar--rounded {
17763
- border-radius: 4px;
17884
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17885
+ transition: none;
17764
17886
  }
17765
- .v-avatar .v-img {
17766
- height: 100%;
17767
- width: 100%;
17768
- }.v-bottom-navigation {
17769
- display: flex;
17770
- max-width: 100%;
17771
- overflow: hidden;
17772
- position: absolute;
17773
- transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17774
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
17775
- border-style: solid;
17776
- border-width: 0;
17777
- border-radius: 0;
17778
- background: rgb(var(--v-theme-surface));
17779
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17780
- }
17781
- .v-bottom-navigation--border {
17782
- border-width: thin;
17783
- box-shadow: none;
17784
- }
17785
- .v-bottom-navigation--active {
17786
- 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));
17787
- }
17788
-
17789
- .v-bottom-navigation__content {
17790
- display: flex;
17791
- flex: none;
17792
- font-size: 0.75rem;
17793
- justify-content: center;
17794
- transition: inherit;
17795
- width: 100%;
17796
- }
17797
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
17798
- font-size: inherit;
17799
- height: 100%;
17800
- max-width: 168px;
17801
- min-width: 80px;
17802
- text-transform: none;
17803
- transition: inherit;
17804
- width: auto;
17805
- border-radius: 0;
17806
- }
17807
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
17808
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
17809
- transition: inherit;
17810
- }
17811
- .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
17812
- font-size: 1.5rem;
17813
- }
17814
- .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
17815
- flex-grow: 1;
17887
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17888
+ opacity: 0;
17816
17889
  }
17817
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
17818
- transition: inherit;
17890
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17819
17891
  opacity: 0;
17820
17892
  }
17821
- .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
17822
- transform: translateY(0.5rem);
17893
+ .v-autocomplete__menu-icon {
17894
+ margin-inline-start: 4px;
17895
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17896
+ }
17897
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17898
+ opacity: var(--v-high-emphasis-opacity);
17899
+ transform: rotate(180deg);
17823
17900
  }.v-badge {
17824
17901
  display: inline-block;
17825
17902
  line-height: 1;
@@ -17891,87 +17968,93 @@ html.overflow-y-hidden {
17891
17968
  display: inline-flex;
17892
17969
  justify-content: center;
17893
17970
  margin: 0 4px;
17894
- }.v-autocomplete .v-field .v-text-field__prefix,
17895
- .v-autocomplete .v-field .v-text-field__suffix,
17896
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17897
- cursor: text;
17898
- }
17899
- .v-autocomplete .v-field .v-field__input > input {
17900
- flex: 1 1;
17971
+ }.v-avatar {
17972
+ flex: none;
17973
+ align-items: center;
17974
+ display: inline-flex;
17975
+ justify-content: center;
17976
+ line-height: normal;
17977
+ overflow: hidden;
17978
+ position: relative;
17979
+ text-align: center;
17980
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17981
+ transition-property: width, height;
17982
+ vertical-align: middle;
17983
+ border-radius: 50%;
17901
17984
  }
17902
- .v-autocomplete .v-field input {
17903
- min-width: 64px;
17985
+ .v-avatar.v-avatar--size-x-small {
17986
+ --v-avatar-height: 24px;
17904
17987
  }
17905
- .v-autocomplete .v-field:not(.v-field--focused) input {
17906
- min-width: 0;
17988
+ .v-avatar.v-avatar--size-small {
17989
+ --v-avatar-height: 32px;
17907
17990
  }
17908
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17909
- margin-inline-end: 2px;
17991
+ .v-avatar.v-avatar--size-default {
17992
+ --v-avatar-height: 40px;
17910
17993
  }
17911
- .v-autocomplete .v-autocomplete__selection-text {
17912
- overflow: hidden;
17913
- text-overflow: ellipsis;
17914
- white-space: nowrap;
17994
+ .v-avatar.v-avatar--size-large {
17995
+ --v-avatar-height: 48px;
17915
17996
  }
17916
-
17917
- .v-autocomplete__content {
17918
- overflow: hidden;
17919
- 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));
17920
- border-radius: 4px;
17997
+ .v-avatar.v-avatar--size-x-large {
17998
+ --v-avatar-height: 56px;
17921
17999
  }
17922
- .v-autocomplete__mask {
17923
- background: rgb(var(--v-theme-surface-light));
18000
+ .v-avatar.v-avatar--density-default {
18001
+ height: calc(var(--v-avatar-height) + 0px);
18002
+ width: calc(var(--v-avatar-height) + 0px);
17924
18003
  }
17925
- .v-autocomplete__selection {
17926
- display: inline-flex;
17927
- align-items: center;
17928
- height: 1.5rem;
17929
- letter-spacing: inherit;
17930
- line-height: inherit;
17931
- max-width: calc(100% - 2px - 2px);
18004
+ .v-avatar.v-avatar--density-comfortable {
18005
+ height: calc(var(--v-avatar-height) + -4px);
18006
+ width: calc(var(--v-avatar-height) + -4px);
17932
18007
  }
17933
- .v-autocomplete__selection:first-child {
17934
- margin-inline-start: 0;
18008
+ .v-avatar.v-avatar--density-compact {
18009
+ height: calc(var(--v-avatar-height) + -8px);
18010
+ width: calc(var(--v-avatar-height) + -8px);
17935
18011
  }
17936
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17937
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17938
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17939
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17940
- top: 0px;
18012
+ .v-avatar--variant-plain, .v-avatar--variant-outlined, .v-avatar--variant-text, .v-avatar--variant-tonal {
18013
+ background: transparent;
18014
+ color: inherit;
17941
18015
  }
17942
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17943
- opacity: var(--v-medium-emphasis-opacity);
18016
+ .v-avatar--variant-plain {
18017
+ opacity: 0.62;
17944
18018
  }
17945
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
18019
+ .v-avatar--variant-plain:focus, .v-avatar--variant-plain:hover {
17946
18020
  opacity: 1;
17947
18021
  }
17948
- .v-autocomplete--selecting-index .v-field__input > input {
17949
- caret-color: transparent;
18022
+ .v-avatar--variant-plain .v-avatar__overlay {
18023
+ display: none;
17950
18024
  }
17951
- .v-autocomplete--single.v-text-field .v-field--focused input {
17952
- flex: 1 1;
17953
- position: absolute;
17954
- left: 0;
17955
- right: 0;
17956
- width: 100%;
17957
- padding-inline: inherit;
18025
+ .v-avatar--variant-elevated, .v-avatar--variant-flat {
18026
+ background: var(--v-theme-surface);
18027
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
17958
18028
  }
17959
- .v-autocomplete--single .v-field--active input {
17960
- transition: none;
18029
+ .v-avatar--variant-elevated {
18030
+ 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));
17961
18031
  }
17962
- .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
17963
- opacity: 0;
18032
+ .v-avatar--variant-flat {
18033
+ 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));
17964
18034
  }
17965
- .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
17966
- opacity: 0;
18035
+ .v-avatar--variant-outlined {
18036
+ border: thin solid currentColor;
17967
18037
  }
17968
- .v-autocomplete__menu-icon {
17969
- margin-inline-start: 4px;
17970
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18038
+ .v-avatar--variant-text .v-avatar__overlay {
18039
+ background: currentColor;
17971
18040
  }
17972
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17973
- opacity: var(--v-high-emphasis-opacity);
17974
- transform: rotate(180deg);
18041
+ .v-avatar--variant-tonal .v-avatar__underlay {
18042
+ background: currentColor;
18043
+ opacity: var(--v-activated-opacity);
18044
+ border-radius: inherit;
18045
+ position: absolute;
18046
+ top: 0;
18047
+ right: 0;
18048
+ bottom: 0;
18049
+ left: 0;
18050
+ pointer-events: none;
18051
+ }
18052
+ .v-avatar--rounded {
18053
+ border-radius: 4px;
18054
+ }
18055
+ .v-avatar .v-img {
18056
+ height: 100%;
18057
+ width: 100%;
17975
18058
  }.v-banner {
17976
18059
  display: grid;
17977
18060
  flex: 1 1;
@@ -18129,58 +18212,271 @@ html.overflow-y-hidden {
18129
18212
  }
18130
18213
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18131
18214
  align-self: flex-start;
18132
- }.v-btn {
18133
- align-items: center;
18134
- border-radius: 4px;
18135
- display: inline-grid;
18136
- grid-template-areas: "prepend content append";
18137
- grid-template-columns: max-content auto max-content;
18138
- font-weight: 500;
18139
- justify-content: center;
18140
- letter-spacing: 0.0892857143em;
18141
- line-height: normal;
18142
- max-width: 100%;
18143
- outline: none;
18144
- position: relative;
18145
- text-decoration: none;
18146
- text-indent: 0.0892857143em;
18147
- text-transform: uppercase;
18148
- transition-property: box-shadow, transform, opacity, background;
18149
- transition-duration: 0.28s;
18150
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18151
- -webkit-user-select: none;
18152
- user-select: none;
18153
- vertical-align: middle;
18154
- flex-shrink: 0;
18155
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18156
- border-style: solid;
18157
- border-width: 0;
18215
+ }.bottom-sheet-transition-enter-from {
18216
+ transform: translateY(100%);
18158
18217
  }
18159
- .v-btn--size-x-small {
18160
- --v-btn-size: 0.625rem;
18161
- --v-btn-height: 20px;
18162
- font-size: var(--v-btn-size);
18163
- min-width: 36px;
18164
- padding: 0 8px;
18218
+ .bottom-sheet-transition-leave-to {
18219
+ transform: translateY(100%);
18165
18220
  }
18166
18221
 
18167
- .v-btn--size-small {
18168
- --v-btn-size: 0.75rem;
18169
- --v-btn-height: 28px;
18170
- font-size: var(--v-btn-size);
18171
- min-width: 50px;
18172
- padding: 0 12px;
18222
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18223
+ align-self: flex-end;
18224
+ border-radius: 0;
18225
+ flex: 0 1 auto;
18226
+ left: 0;
18227
+ right: 0;
18228
+ margin-inline: 0;
18229
+ margin-bottom: 0;
18230
+ transition-duration: 0.2s;
18231
+ width: 100%;
18232
+ max-width: 100%;
18233
+ overflow: visible;
18234
+ box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18173
18235
  }
18174
-
18175
- .v-btn--size-default {
18176
- --v-btn-size: 0.875rem;
18177
- --v-btn-height: 36px;
18178
- font-size: var(--v-btn-size);
18179
- min-width: 64px;
18180
- padding: 0 16px;
18236
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18237
+ .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18238
+ border-radius: 0;
18181
18239
  }
18182
-
18183
- .v-btn--size-large {
18240
+ .v-bottom-sheet.v-bottom-sheet--inset {
18241
+ max-width: none;
18242
+ }
18243
+ @media (min-width: 600px) {
18244
+ .v-bottom-sheet.v-bottom-sheet--inset {
18245
+ max-width: 70%;
18246
+ }
18247
+ }.v-bottom-navigation {
18248
+ display: flex;
18249
+ max-width: 100%;
18250
+ overflow: hidden;
18251
+ position: absolute;
18252
+ transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18253
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18254
+ border-style: solid;
18255
+ border-width: 0;
18256
+ border-radius: 0;
18257
+ background: rgb(var(--v-theme-surface));
18258
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18259
+ }
18260
+ .v-bottom-navigation--border {
18261
+ border-width: thin;
18262
+ box-shadow: none;
18263
+ }
18264
+ .v-bottom-navigation--active {
18265
+ 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));
18266
+ }
18267
+
18268
+ .v-bottom-navigation__content {
18269
+ display: flex;
18270
+ flex: none;
18271
+ font-size: 0.75rem;
18272
+ justify-content: center;
18273
+ transition: inherit;
18274
+ width: 100%;
18275
+ }
18276
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
18277
+ font-size: inherit;
18278
+ height: 100%;
18279
+ max-width: 168px;
18280
+ min-width: 80px;
18281
+ text-transform: none;
18282
+ transition: inherit;
18283
+ width: auto;
18284
+ border-radius: 0;
18285
+ }
18286
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
18287
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18288
+ transition: inherit;
18289
+ }
18290
+ .v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
18291
+ font-size: 1.5rem;
18292
+ }
18293
+ .v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
18294
+ flex-grow: 1;
18295
+ }
18296
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
18297
+ transition: inherit;
18298
+ opacity: 0;
18299
+ }
18300
+ .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
18301
+ transform: translateY(0.5rem);
18302
+ }.v-btn-group {
18303
+ display: inline-flex;
18304
+ flex-wrap: nowrap;
18305
+ max-width: 100%;
18306
+ min-width: 0;
18307
+ overflow: hidden;
18308
+ vertical-align: middle;
18309
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18310
+ border-style: solid;
18311
+ border-width: 0;
18312
+ 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));
18313
+ border-radius: 4px;
18314
+ background: transparent;
18315
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18316
+ }
18317
+ .v-btn-group--border {
18318
+ border-width: thin;
18319
+ box-shadow: none;
18320
+ }
18321
+ .v-btn-group--density-default.v-btn-group {
18322
+ height: 48px;
18323
+ }
18324
+
18325
+ .v-btn-group--density-comfortable.v-btn-group {
18326
+ height: 40px;
18327
+ }
18328
+
18329
+ .v-btn-group--density-compact.v-btn-group {
18330
+ height: 36px;
18331
+ }
18332
+
18333
+ .v-btn-group .v-btn {
18334
+ border-radius: 0;
18335
+ border-color: inherit;
18336
+ }
18337
+ .v-btn-group .v-btn:not(:last-child) {
18338
+ border-inline-end: none;
18339
+ }
18340
+ .v-btn-group .v-btn:not(:first-child) {
18341
+ border-inline-start: none;
18342
+ }
18343
+ .v-btn-group .v-btn:first-child {
18344
+ border-start-start-radius: inherit;
18345
+ border-end-start-radius: inherit;
18346
+ }
18347
+ .v-btn-group .v-btn:last-child {
18348
+ border-start-end-radius: inherit;
18349
+ border-end-end-radius: inherit;
18350
+ }
18351
+ .v-btn-group--divided .v-btn:not(:last-child) {
18352
+ border-inline-end-width: thin;
18353
+ border-inline-end-style: solid;
18354
+ border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
18355
+ }
18356
+ .v-btn-group--tile {
18357
+ border-radius: 0;
18358
+ }.v-breadcrumbs {
18359
+ display: flex;
18360
+ align-items: center;
18361
+ line-height: 1.375rem;
18362
+ padding: 16px 12px;
18363
+ }
18364
+ .v-breadcrumbs--rounded {
18365
+ border-radius: 4px;
18366
+ }
18367
+ .v-breadcrumbs--density-default {
18368
+ padding-top: 16px;
18369
+ padding-bottom: 16px;
18370
+ }
18371
+
18372
+ .v-breadcrumbs--density-comfortable {
18373
+ padding-top: 12px;
18374
+ padding-bottom: 12px;
18375
+ }
18376
+
18377
+ .v-breadcrumbs--density-compact {
18378
+ padding-top: 8px;
18379
+ padding-bottom: 8px;
18380
+ }
18381
+
18382
+ .v-breadcrumbs__prepend {
18383
+ align-items: center;
18384
+ display: inline-flex;
18385
+ }
18386
+
18387
+ .v-breadcrumbs-item {
18388
+ align-items: center;
18389
+ color: inherit;
18390
+ display: inline-flex;
18391
+ padding: 0 4px;
18392
+ text-decoration: none;
18393
+ vertical-align: middle;
18394
+ }
18395
+ .v-breadcrumbs-item--disabled {
18396
+ opacity: var(--v-disabled-opacity);
18397
+ pointer-events: none;
18398
+ }
18399
+ .v-breadcrumbs-item--link {
18400
+ color: inherit;
18401
+ text-decoration: none;
18402
+ }
18403
+ .v-breadcrumbs-item--link:hover {
18404
+ text-decoration: underline;
18405
+ }
18406
+ .v-breadcrumbs-item .v-icon {
18407
+ font-size: 1rem;
18408
+ margin-inline: -4px 2px;
18409
+ }
18410
+
18411
+ .v-breadcrumbs-divider {
18412
+ display: inline-block;
18413
+ padding: 0 8px;
18414
+ vertical-align: middle;
18415
+ }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
18416
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18417
+ }
18418
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
18419
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18420
+ }
18421
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
18422
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18423
+ }
18424
+ @supports not selector(:focus-visible) {
18425
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18426
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18427
+ }
18428
+ }.v-btn {
18429
+ align-items: center;
18430
+ border-radius: 4px;
18431
+ display: inline-grid;
18432
+ grid-template-areas: "prepend content append";
18433
+ grid-template-columns: max-content auto max-content;
18434
+ font-weight: 500;
18435
+ justify-content: center;
18436
+ letter-spacing: 0.0892857143em;
18437
+ line-height: normal;
18438
+ max-width: 100%;
18439
+ outline: none;
18440
+ position: relative;
18441
+ text-decoration: none;
18442
+ text-indent: 0.0892857143em;
18443
+ text-transform: uppercase;
18444
+ transition-property: box-shadow, transform, opacity, background;
18445
+ transition-duration: 0.28s;
18446
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18447
+ -webkit-user-select: none;
18448
+ user-select: none;
18449
+ vertical-align: middle;
18450
+ flex-shrink: 0;
18451
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18452
+ border-style: solid;
18453
+ border-width: 0;
18454
+ }
18455
+ .v-btn--size-x-small {
18456
+ --v-btn-size: 0.625rem;
18457
+ --v-btn-height: 20px;
18458
+ font-size: var(--v-btn-size);
18459
+ min-width: 36px;
18460
+ padding: 0 8px;
18461
+ }
18462
+
18463
+ .v-btn--size-small {
18464
+ --v-btn-size: 0.75rem;
18465
+ --v-btn-height: 28px;
18466
+ font-size: var(--v-btn-size);
18467
+ min-width: 50px;
18468
+ padding: 0 12px;
18469
+ }
18470
+
18471
+ .v-btn--size-default {
18472
+ --v-btn-size: 0.875rem;
18473
+ --v-btn-height: 36px;
18474
+ font-size: var(--v-btn-size);
18475
+ min-width: 64px;
18476
+ padding: 0 16px;
18477
+ }
18478
+
18479
+ .v-btn--size-large {
18184
18480
  --v-btn-size: 1rem;
18185
18481
  --v-btn-height: 44px;
18186
18482
  font-size: var(--v-btn-size);
@@ -18532,108 +18828,6 @@ html.overflow-y-hidden {
18532
18828
  }
18533
18829
  .v-pagination__item--is-active .v-btn__overlay {
18534
18830
  opacity: var(--v-border-opacity);
18535
- }.bottom-sheet-transition-enter-from {
18536
- transform: translateY(100%);
18537
- }
18538
- .bottom-sheet-transition-leave-to {
18539
- transform: translateY(100%);
18540
- }
18541
-
18542
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
18543
- align-self: flex-end;
18544
- border-radius: 0;
18545
- flex: 0 1 auto;
18546
- left: 0;
18547
- right: 0;
18548
- margin-inline: 0;
18549
- margin-bottom: 0;
18550
- transition-duration: 0.2s;
18551
- width: 100%;
18552
- max-width: 100%;
18553
- overflow: visible;
18554
- box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
18555
- }
18556
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
18557
- .v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
18558
- border-radius: 0;
18559
- }
18560
- .v-bottom-sheet.v-bottom-sheet--inset {
18561
- max-width: none;
18562
- }
18563
- @media (min-width: 600px) {
18564
- .v-bottom-sheet.v-bottom-sheet--inset {
18565
- max-width: 70%;
18566
- }
18567
- }.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
18568
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
18569
- }
18570
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
18571
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
18572
- }
18573
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
18574
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18575
- }
18576
- @supports not selector(:focus-visible) {
18577
- .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18578
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18579
- }
18580
- }.v-breadcrumbs {
18581
- display: flex;
18582
- align-items: center;
18583
- line-height: 1.375rem;
18584
- padding: 16px 12px;
18585
- }
18586
- .v-breadcrumbs--rounded {
18587
- border-radius: 4px;
18588
- }
18589
- .v-breadcrumbs--density-default {
18590
- padding-top: 16px;
18591
- padding-bottom: 16px;
18592
- }
18593
-
18594
- .v-breadcrumbs--density-comfortable {
18595
- padding-top: 12px;
18596
- padding-bottom: 12px;
18597
- }
18598
-
18599
- .v-breadcrumbs--density-compact {
18600
- padding-top: 8px;
18601
- padding-bottom: 8px;
18602
- }
18603
-
18604
- .v-breadcrumbs__prepend {
18605
- align-items: center;
18606
- display: inline-flex;
18607
- }
18608
-
18609
- .v-breadcrumbs-item {
18610
- align-items: center;
18611
- color: inherit;
18612
- display: inline-flex;
18613
- padding: 0 4px;
18614
- text-decoration: none;
18615
- vertical-align: middle;
18616
- }
18617
- .v-breadcrumbs-item--disabled {
18618
- opacity: var(--v-disabled-opacity);
18619
- pointer-events: none;
18620
- }
18621
- .v-breadcrumbs-item--link {
18622
- color: inherit;
18623
- text-decoration: none;
18624
- }
18625
- .v-breadcrumbs-item--link:hover {
18626
- text-decoration: underline;
18627
- }
18628
- .v-breadcrumbs-item .v-icon {
18629
- font-size: 1rem;
18630
- margin-inline: -4px 2px;
18631
- }
18632
-
18633
- .v-breadcrumbs-divider {
18634
- display: inline-block;
18635
- padding: 0 8px;
18636
- vertical-align: middle;
18637
18831
  }.v-card {
18638
18832
  display: block;
18639
18833
  overflow: hidden;
@@ -18993,87 +19187,29 @@ html.overflow-y-hidden {
18993
19187
  flex-direction: column;
18994
19188
  height: 100% !important;
18995
19189
  width: 50px;
18996
- }.v-btn-group {
18997
- display: inline-flex;
18998
- flex-wrap: nowrap;
18999
- max-width: 100%;
19000
- min-width: 0;
19001
- overflow: hidden;
19002
- vertical-align: middle;
19003
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
19004
- border-style: solid;
19005
- border-width: 0;
19006
- 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));
19007
- border-radius: 4px;
19008
- background: transparent;
19009
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
19010
- }
19011
- .v-btn-group--border {
19012
- border-width: thin;
19013
- box-shadow: none;
19014
- }
19015
- .v-btn-group--density-default.v-btn-group {
19016
- height: 48px;
19017
- }
19018
-
19019
- .v-btn-group--density-comfortable.v-btn-group {
19020
- height: 40px;
19021
- }
19022
-
19023
- .v-btn-group--density-compact.v-btn-group {
19024
- height: 36px;
19025
- }
19026
-
19027
- .v-btn-group .v-btn {
19028
- border-radius: 0;
19029
- border-color: inherit;
19030
- }
19031
- .v-btn-group .v-btn:not(:last-child) {
19032
- border-inline-end: none;
19033
- }
19034
- .v-btn-group .v-btn:not(:first-child) {
19035
- border-inline-start: none;
19036
- }
19037
- .v-btn-group .v-btn:first-child {
19038
- border-start-start-radius: inherit;
19039
- border-end-start-radius: inherit;
19040
- }
19041
- .v-btn-group .v-btn:last-child {
19042
- border-start-end-radius: inherit;
19043
- border-end-end-radius: inherit;
19044
- }
19045
- .v-btn-group--divided .v-btn:not(:last-child) {
19046
- border-inline-end-width: thin;
19047
- border-inline-end-style: solid;
19048
- border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
19049
- }
19050
- .v-btn-group--tile {
19051
- border-radius: 0;
19052
19190
  }.v-checkbox.v-input {
19053
19191
  flex: 0 1 auto;
19054
19192
  }
19055
19193
  .v-checkbox .v-selection-control {
19056
19194
  min-height: var(--v-input-control-height);
19057
- }.v-color-picker {
19058
- align-self: flex-start;
19059
- contain: content;
19195
+ }.v-chip-group {
19196
+ display: flex;
19197
+ max-width: 100%;
19198
+ min-width: 0;
19199
+ overflow-x: auto;
19200
+ padding: 4px 0;
19060
19201
  }
19061
- .v-color-picker.v-sheet {
19062
- 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));
19063
- border-radius: 4px;
19202
+ .v-chip-group .v-chip {
19203
+ margin: 4px 8px 4px 0;
19064
19204
  }
19065
-
19066
- .v-color-picker__controls {
19067
- display: flex;
19068
- flex-direction: column;
19069
- padding: 16px;
19205
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19206
+ opacity: var(--v-activated-opacity);
19070
19207
  }
19071
19208
 
19072
- .v-color-picker--flat {
19073
- 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));
19074
- }
19075
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19076
- 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));
19209
+ .v-chip-group--column .v-slide-group__content {
19210
+ white-space: normal;
19211
+ flex-wrap: wrap;
19212
+ max-width: 100%;
19077
19213
  }.v-chip {
19078
19214
  align-items: center;
19079
19215
  display: inline-flex;
@@ -19481,29 +19617,26 @@ html.overflow-y-hidden {
19481
19617
 
19482
19618
  .v-chip--label {
19483
19619
  border-radius: 4px;
19484
- }.v-chip-group {
19485
- display: flex;
19486
- max-width: 100%;
19487
- min-width: 0;
19488
- overflow-x: auto;
19489
- padding: 4px 0;
19620
+ }.v-color-picker {
19621
+ align-self: flex-start;
19622
+ contain: content;
19490
19623
  }
19491
- .v-chip-group .v-chip {
19492
- margin: 4px 8px 4px 0;
19624
+ .v-color-picker.v-sheet {
19625
+ 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));
19626
+ border-radius: 4px;
19493
19627
  }
19494
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19495
- opacity: var(--v-activated-opacity);
19628
+
19629
+ .v-color-picker__controls {
19630
+ display: flex;
19631
+ flex-direction: column;
19632
+ padding: 16px;
19496
19633
  }
19497
19634
 
19498
- .v-chip-group--column .v-slide-group__content {
19499
- white-space: normal;
19500
- flex-wrap: wrap;
19501
- max-width: 100%;
19502
- }.v-counter {
19503
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
19504
- flex: 0 1 auto;
19505
- font-size: 12px;
19506
- transition-duration: 150ms;
19635
+ .v-color-picker--flat {
19636
+ 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));
19637
+ }
19638
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19639
+ 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));
19507
19640
  }.v-container {
19508
19641
  width: 100%;
19509
19642
  padding: 16px;
@@ -20233,7 +20366,7 @@ html.overflow-y-hidden {
20233
20366
  .v-combobox--selecting-index .v-field__input > input {
20234
20367
  caret-color: transparent;
20235
20368
  }
20236
- .v-combobox--single.v-text-field .v-field--focused input {
20369
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field .v-field--focused input {
20237
20370
  flex: 1 1;
20238
20371
  position: absolute;
20239
20372
  left: 0;
@@ -20241,13 +20374,13 @@ html.overflow-y-hidden {
20241
20374
  width: 100%;
20242
20375
  padding-inline: inherit;
20243
20376
  }
20244
- .v-combobox--single .v-field--active input {
20377
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20245
20378
  transition: none;
20246
20379
  }
20247
- .v-combobox--single .v-field--dirty:not(.v-field--focused) input {
20380
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20248
20381
  opacity: 0;
20249
20382
  }
20250
- .v-combobox--single .v-field--focused .v-combobox__selection {
20383
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20251
20384
  opacity: 0;
20252
20385
  }
20253
20386
  .v-combobox__menu-icon {
@@ -20390,6 +20523,11 @@ html.overflow-y-hidden {
20390
20523
  .v-data-table-rows-loading,
20391
20524
  .v-data-table-rows-no-data {
20392
20525
  text-align: center;
20526
+ }.v-counter {
20527
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20528
+ flex: 0 1 auto;
20529
+ font-size: 12px;
20530
+ transition-duration: 150ms;
20393
20531
  }.v-data-table-footer {
20394
20532
  display: flex;
20395
20533
  align-items: center;
@@ -20425,128 +20563,251 @@ html.overflow-y-hidden {
20425
20563
 
20426
20564
  .v-data-table-footer__page {
20427
20565
  padding: 0 8px;
20428
- }.v-date-picker-controls {
20429
- display: flex;
20430
- align-items: center;
20431
- justify-content: space-between;
20432
- font-size: 0.875rem;
20433
- padding-top: 4px;
20434
- padding-bottom: 4px;
20435
- padding-inline-start: 6px;
20436
- padding-inline-end: 12px;
20566
+ }.v-expansion-panel {
20567
+ background-color: rgb(var(--v-theme-surface));
20568
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
20437
20569
  }
20438
- .v-date-picker-controls > .v-btn:first-child {
20439
- text-transform: none;
20440
- font-weight: 400;
20441
- line-height: initial;
20442
- letter-spacing: initial;
20570
+ .v-expansion-panel:not(:first-child)::after {
20571
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
20443
20572
  }
20444
- .v-date-picker-controls--variant-classic {
20445
- padding-inline-start: 12px;
20573
+ .v-expansion-panel--disabled .v-expansion-panel-title {
20574
+ color: rgba(var(--v-theme-on-surface), 0.26);
20446
20575
  }
20447
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20448
- opacity: 0.7;
20576
+ .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
20577
+ opacity: 0.4615384615;
20449
20578
  }
20450
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20451
- cursor: pointer;
20579
+
20580
+ .v-expansion-panels {
20581
+ display: flex;
20582
+ flex-wrap: wrap;
20583
+ justify-content: center;
20584
+ list-style-type: none;
20585
+ padding: 0;
20586
+ width: 100%;
20587
+ position: relative;
20588
+ z-index: 1;
20452
20589
  }
20453
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20454
- opacity: 1;
20590
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
20591
+ border-bottom-left-radius: 0 !important;
20592
+ border-bottom-right-radius: 0 !important;
20455
20593
  }
20456
- .v-date-picker-controls .v-btn:last-child {
20457
- margin-inline-start: 4px;
20594
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
20595
+ border-top-left-radius: 0 !important;
20596
+ border-top-right-radius: 0 !important;
20458
20597
  }
20459
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20460
- transform: rotate(180deg);
20598
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
20599
+ border-bottom-left-radius: 0 !important;
20600
+ border-bottom-right-radius: 0 !important;
20461
20601
  }
20462
-
20463
- .v-date-picker-controls__date {
20464
- margin-inline-end: 4px;
20602
+ .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
20603
+ border-top-left-radius: 0 !important;
20604
+ border-top-right-radius: 0 !important;
20465
20605
  }
20466
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20467
- margin: auto;
20468
- text-align: center;
20606
+ .v-expansion-panels--variant-accordion > :first-child {
20607
+ border-bottom-left-radius: 0 !important;
20608
+ border-bottom-right-radius: 0 !important;
20609
+ }
20610
+ .v-expansion-panels--variant-accordion > :last-child {
20611
+ border-top-left-radius: 0 !important;
20612
+ border-top-right-radius: 0 !important;
20613
+ }
20614
+ .v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
20615
+ border-bottom-left-radius: initial;
20616
+ border-bottom-right-radius: initial;
20617
+ }
20618
+ .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
20619
+ border-radius: 0 !important;
20620
+ }
20621
+ .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
20622
+ transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
20469
20623
  }
20470
20624
 
20471
- .v-date-picker-controls__month {
20472
- display: flex;
20625
+ .v-expansion-panel {
20626
+ flex: 1 0 100%;
20627
+ max-width: 100%;
20628
+ position: relative;
20629
+ transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
20630
+ transition-property: margin-top, border-radius, border, max-width;
20631
+ border-radius: 4px;
20473
20632
  }
20474
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20475
- flex-direction: row-reverse;
20633
+ .v-expansion-panel:not(:first-child)::after {
20634
+ border-top-style: solid;
20635
+ border-top-width: thin;
20636
+ content: "";
20637
+ left: 0;
20638
+ position: absolute;
20639
+ right: 0;
20640
+ top: 0;
20641
+ transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
20642
+ }
20643
+ .v-expansion-panel--disabled .v-expansion-panel-title {
20644
+ pointer-events: none;
20645
+ }
20646
+ .v-expansion-panel--active:not(:first-child),
20647
+ .v-expansion-panel--active + .v-expansion-panel {
20648
+ margin-top: 16px;
20649
+ }
20650
+ .v-expansion-panel--active:not(:first-child)::after,
20651
+ .v-expansion-panel--active + .v-expansion-panel::after {
20652
+ opacity: 0;
20653
+ }
20654
+ .v-expansion-panel--active > .v-expansion-panel-title {
20655
+ border-bottom-left-radius: 0;
20656
+ border-bottom-right-radius: 0;
20657
+ }
20658
+ .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
20659
+ min-height: 64px;
20476
20660
  }
20477
20661
 
20478
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20479
- flex: 1 0 auto;
20662
+ .v-expansion-panel__shadow {
20663
+ position: absolute;
20664
+ top: 0;
20665
+ left: 0;
20666
+ width: 100%;
20667
+ height: 100%;
20668
+ 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));
20669
+ border-radius: inherit;
20670
+ z-index: -1;
20480
20671
  }
20481
20672
 
20482
- .v-date-picker__title {
20483
- display: inline-block;
20484
- }.v-date-picker {
20485
- overflow: hidden;
20486
- width: 328px;
20673
+ .v-expansion-panel-title {
20674
+ align-items: center;
20675
+ text-align: start;
20676
+ border-radius: inherit;
20677
+ display: flex;
20678
+ font-size: 0.9375rem;
20679
+ line-height: 1;
20680
+ min-height: 48px;
20681
+ outline: none;
20682
+ padding: 16px 24px;
20683
+ position: relative;
20684
+ transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
20685
+ width: 100%;
20686
+ justify-content: space-between;
20487
20687
  }
20488
- .v-date-picker--show-week {
20489
- width: 368px;
20490
- }.v-date-picker-header {
20491
- align-items: flex-end;
20492
- height: 70px;
20493
- display: grid;
20494
- grid-template-areas: "prepend content append";
20495
- grid-template-columns: min-content minmax(0, 1fr) min-content;
20496
- overflow: hidden;
20497
- padding-inline: 24px 12px;
20498
- padding-bottom: 12px;
20688
+ .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
20689
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
20499
20690
  }
20500
-
20501
- .v-date-picker-header__append {
20502
- grid-area: append;
20691
+ .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
20692
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20693
+ }
20694
+ @supports not selector(:focus-visible) {
20695
+ .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
20696
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
20697
+ }
20698
+ }
20699
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
20700
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
20701
+ }
20702
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
20703
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
20704
+ }
20705
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
20706
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20707
+ }
20708
+ @supports not selector(:focus-visible) {
20709
+ .v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
20710
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
20711
+ }
20503
20712
  }
20504
20713
 
20505
- .v-date-picker-header__prepend {
20506
- grid-area: prepend;
20507
- padding-inline-start: 8px;
20714
+ .v-expansion-panel-title__overlay {
20715
+ position: absolute;
20716
+ top: 0;
20717
+ left: 0;
20718
+ width: 100%;
20719
+ height: 100%;
20720
+ background-color: currentColor;
20721
+ border-radius: inherit;
20722
+ opacity: 0;
20508
20723
  }
20509
20724
 
20510
- .v-date-picker-header__content {
20511
- align-items: center;
20725
+ .v-expansion-panel-title__icon {
20512
20726
  display: inline-flex;
20513
- font-size: 32px;
20514
- line-height: 40px;
20515
- grid-area: content;
20516
- justify-content: space-between;
20727
+ margin-bottom: -4px;
20728
+ margin-top: -4px;
20729
+ -webkit-user-select: none;
20730
+ user-select: none;
20731
+ margin-inline-start: auto;
20517
20732
  }
20518
- .v-date-picker-header--clickable .v-date-picker-header__content {
20519
- cursor: pointer;
20733
+
20734
+ .v-expansion-panel-text {
20735
+ display: flex;
20520
20736
  }
20521
- .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
20522
- opacity: 0.7;
20737
+ .v-expansion-panel-text__wrapper {
20738
+ padding: 8px 24px 16px;
20739
+ flex: 1 1 auto;
20740
+ max-width: 100%;
20523
20741
  }
20524
20742
 
20525
- .date-picker-header-transition-enter-active,
20526
- .date-picker-header-reverse-transition-enter-active {
20527
- transition-duration: 0.3s;
20528
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20743
+ .v-expansion-panels--variant-accordion > .v-expansion-panel {
20744
+ margin-top: 0;
20529
20745
  }
20530
- .date-picker-header-transition-leave-active,
20531
- .date-picker-header-reverse-transition-leave-active {
20532
- transition-duration: 0.3s;
20533
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20746
+ .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
20747
+ opacity: 1;
20534
20748
  }
20535
20749
 
20536
- .date-picker-header-transition-enter-from {
20537
- transform: translate(0, 100%);
20750
+ .v-expansion-panels--variant-popout > .v-expansion-panel {
20751
+ max-width: calc(100% - 32px);
20538
20752
  }
20539
- .date-picker-header-transition-leave-to {
20540
- opacity: 0;
20541
- transform: translate(0, -100%);
20753
+ .v-expansion-panels--variant-popout > .v-expansion-panel--active {
20754
+ max-width: calc(100% + 16px);
20542
20755
  }
20543
20756
 
20544
- .date-picker-header-reverse-transition-enter-from {
20545
- transform: translate(0, -100%);
20757
+ .v-expansion-panels--variant-inset > .v-expansion-panel {
20758
+ max-width: 100%;
20546
20759
  }
20547
- .date-picker-header-reverse-transition-leave-to {
20548
- opacity: 0;
20549
- transform: translate(0, 100%);
20760
+ .v-expansion-panels--variant-inset > .v-expansion-panel--active {
20761
+ max-width: calc(100% - 32px);
20762
+ }
20763
+
20764
+ .v-expansion-panels--flat > .v-expansion-panel::after {
20765
+ border-top: none;
20766
+ }
20767
+ .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
20768
+ display: none;
20769
+ }
20770
+
20771
+ .v-expansion-panels--tile {
20772
+ border-radius: 0;
20773
+ }
20774
+ .v-expansion-panels--tile > .v-expansion-panel {
20775
+ border-radius: 0;
20776
+ }.v-divider {
20777
+ display: block;
20778
+ flex: 1 1 100%;
20779
+ height: 0px;
20780
+ max-height: 0px;
20781
+ opacity: var(--v-border-opacity);
20782
+ transition: inherit;
20783
+ border-style: solid;
20784
+ border-width: thin 0 0 0;
20785
+ }
20786
+ .v-divider--vertical {
20787
+ align-self: stretch;
20788
+ border-width: 0 thin 0 0;
20789
+ display: inline-flex;
20790
+ height: inherit;
20791
+ margin-left: -1px;
20792
+ max-height: 100%;
20793
+ max-width: 0px;
20794
+ vertical-align: text-bottom;
20795
+ width: 0px;
20796
+ }
20797
+ .v-divider--inset:not(.v-divider--vertical) {
20798
+ max-width: calc(100% - 72px);
20799
+ margin-inline-start: 72px;
20800
+ }
20801
+ .v-divider--inset.v-divider--vertical {
20802
+ margin-bottom: 8px;
20803
+ margin-top: 8px;
20804
+ max-height: calc(100% - 16px);
20805
+ }.v-date-picker {
20806
+ overflow: hidden;
20807
+ width: 328px;
20808
+ }
20809
+ .v-date-picker--show-week {
20810
+ width: 368px;
20550
20811
  }.v-date-picker-months {
20551
20812
  height: 288px;
20552
20813
  }
@@ -20566,12 +20827,68 @@ html.overflow-y-hidden {
20566
20827
  text-transform: none;
20567
20828
  padding-inline-start: 8px;
20568
20829
  padding-inline-end: 8px;
20569
- }.v-date-picker-month {
20830
+ }.v-date-picker-controls {
20570
20831
  display: flex;
20571
- justify-content: center;
20572
- padding: 0 12px 8px;
20573
- --v-date-picker-month-day-diff: 4px;
20574
- }
20832
+ align-items: center;
20833
+ justify-content: space-between;
20834
+ font-size: 0.875rem;
20835
+ padding-top: 4px;
20836
+ padding-bottom: 4px;
20837
+ padding-inline-start: 6px;
20838
+ padding-inline-end: 12px;
20839
+ }
20840
+ .v-date-picker-controls > .v-btn:first-child {
20841
+ text-transform: none;
20842
+ font-weight: 400;
20843
+ line-height: initial;
20844
+ letter-spacing: initial;
20845
+ }
20846
+ .v-date-picker-controls--variant-classic {
20847
+ padding-inline-start: 12px;
20848
+ }
20849
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20850
+ opacity: 0.7;
20851
+ }
20852
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20853
+ cursor: pointer;
20854
+ }
20855
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20856
+ opacity: 1;
20857
+ }
20858
+ .v-date-picker-controls .v-btn:last-child {
20859
+ margin-inline-start: 4px;
20860
+ }
20861
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20862
+ transform: rotate(180deg);
20863
+ }
20864
+
20865
+ .v-date-picker-controls__date {
20866
+ margin-inline-end: 4px;
20867
+ }
20868
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20869
+ margin: auto;
20870
+ text-align: center;
20871
+ }
20872
+
20873
+ .v-date-picker-controls__month {
20874
+ display: flex;
20875
+ }
20876
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20877
+ flex-direction: row-reverse;
20878
+ }
20879
+
20880
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20881
+ flex: 1 0 auto;
20882
+ }
20883
+
20884
+ .v-date-picker__title {
20885
+ display: inline-block;
20886
+ }.v-date-picker-month {
20887
+ display: flex;
20888
+ justify-content: center;
20889
+ padding: 0 12px 8px;
20890
+ --v-date-picker-month-day-diff: 4px;
20891
+ }
20575
20892
 
20576
20893
  .v-date-picker-month__weeks {
20577
20894
  display: grid;
@@ -20636,6 +20953,66 @@ html.overflow-y-hidden {
20636
20953
  }
20637
20954
  .v-date-picker-years__content .v-btn {
20638
20955
  padding-inline: 8px;
20956
+ }.v-date-picker-header {
20957
+ align-items: flex-end;
20958
+ height: 70px;
20959
+ display: grid;
20960
+ grid-template-areas: "prepend content append";
20961
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
20962
+ overflow: hidden;
20963
+ padding-inline: 24px 12px;
20964
+ padding-bottom: 12px;
20965
+ }
20966
+
20967
+ .v-date-picker-header__append {
20968
+ grid-area: append;
20969
+ }
20970
+
20971
+ .v-date-picker-header__prepend {
20972
+ grid-area: prepend;
20973
+ padding-inline-start: 8px;
20974
+ }
20975
+
20976
+ .v-date-picker-header__content {
20977
+ align-items: center;
20978
+ display: inline-flex;
20979
+ font-size: 32px;
20980
+ line-height: 40px;
20981
+ grid-area: content;
20982
+ justify-content: space-between;
20983
+ }
20984
+ .v-date-picker-header--clickable .v-date-picker-header__content {
20985
+ cursor: pointer;
20986
+ }
20987
+ .v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
20988
+ opacity: 0.7;
20989
+ }
20990
+
20991
+ .date-picker-header-transition-enter-active,
20992
+ .date-picker-header-reverse-transition-enter-active {
20993
+ transition-duration: 0.3s;
20994
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
20995
+ }
20996
+ .date-picker-header-transition-leave-active,
20997
+ .date-picker-header-reverse-transition-leave-active {
20998
+ transition-duration: 0.3s;
20999
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
21000
+ }
21001
+
21002
+ .date-picker-header-transition-enter-from {
21003
+ transform: translate(0, 100%);
21004
+ }
21005
+ .date-picker-header-transition-leave-to {
21006
+ opacity: 0;
21007
+ transform: translate(0, -100%);
21008
+ }
21009
+
21010
+ .date-picker-header-reverse-transition-enter-from {
21011
+ transform: translate(0, -100%);
21012
+ }
21013
+ .date-picker-header-reverse-transition-leave-to {
21014
+ opacity: 0;
21015
+ transform: translate(0, 100%);
20639
21016
  }.v-dialog {
20640
21017
  align-items: center;
20641
21018
  justify-content: center;
@@ -21279,419 +21656,67 @@ textarea.v-field__input::placeholder {
21279
21656
  flex-direction: row-reverse;
21280
21657
  }
21281
21658
  .v-field--reverse .v-field__input, .v-field--reverse input {
21282
- text-align: end;
21283
- }
21284
-
21285
- .v-input--disabled .v-field--variant-filled .v-field__outline::before,
21286
- .v-input--disabled .v-field--variant-underlined .v-field__outline::before {
21287
- border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
21288
- }
21289
-
21290
- .v-field--loading .v-field__outline::after,
21291
- .v-field--loading .v-field__outline::before {
21292
- opacity: 0;
21293
- }
21294
-
21295
- /* endregion */.v-divider {
21296
- display: block;
21297
- flex: 1 1 100%;
21298
- height: 0px;
21299
- max-height: 0px;
21300
- opacity: var(--v-border-opacity);
21301
- transition: inherit;
21302
- border-style: solid;
21303
- border-width: thin 0 0 0;
21304
- }
21305
- .v-divider--vertical {
21306
- align-self: stretch;
21307
- border-width: 0 thin 0 0;
21308
- display: inline-flex;
21309
- height: inherit;
21310
- margin-left: -1px;
21311
- max-height: 100%;
21312
- max-width: 0px;
21313
- vertical-align: text-bottom;
21314
- width: 0px;
21315
- }
21316
- .v-divider--inset:not(.v-divider--vertical) {
21317
- max-width: calc(100% - 72px);
21318
- margin-inline-start: 72px;
21319
- }
21320
- .v-divider--inset.v-divider--vertical {
21321
- margin-bottom: 8px;
21322
- margin-top: 8px;
21323
- max-height: calc(100% - 16px);
21324
- }.v-expansion-panel {
21325
- background-color: rgb(var(--v-theme-surface));
21326
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21327
- }
21328
- .v-expansion-panel:not(:first-child)::after {
21329
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21330
- }
21331
- .v-expansion-panel--disabled .v-expansion-panel-title {
21332
- color: rgba(var(--v-theme-on-surface), 0.26);
21333
- }
21334
- .v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
21335
- opacity: 0.4615384615;
21336
- }
21337
-
21338
- .v-expansion-panels {
21339
- display: flex;
21340
- flex-wrap: wrap;
21341
- justify-content: center;
21342
- list-style-type: none;
21343
- padding: 0;
21344
- width: 100%;
21345
- position: relative;
21346
- z-index: 1;
21347
- }
21348
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21349
- border-bottom-left-radius: 0 !important;
21350
- border-bottom-right-radius: 0 !important;
21351
- }
21352
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21353
- border-top-left-radius: 0 !important;
21354
- border-top-right-radius: 0 !important;
21355
- }
21356
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
21357
- border-bottom-left-radius: 0 !important;
21358
- border-bottom-right-radius: 0 !important;
21359
- }
21360
- .v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
21361
- border-top-left-radius: 0 !important;
21362
- border-top-right-radius: 0 !important;
21363
- }
21364
- .v-expansion-panels--variant-accordion > :first-child {
21365
- border-bottom-left-radius: 0 !important;
21366
- border-bottom-right-radius: 0 !important;
21367
- }
21368
- .v-expansion-panels--variant-accordion > :last-child {
21369
- border-top-left-radius: 0 !important;
21370
- border-top-right-radius: 0 !important;
21371
- }
21372
- .v-expansion-panels--variant-accordion > :last-child .v-expansion-panel-title--active {
21373
- border-bottom-left-radius: initial;
21374
- border-bottom-right-radius: initial;
21375
- }
21376
- .v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
21377
- border-radius: 0 !important;
21378
- }
21379
- .v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
21380
- transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
21381
- }
21382
-
21383
- .v-expansion-panel {
21384
- flex: 1 0 100%;
21385
- max-width: 100%;
21386
- position: relative;
21387
- transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
21388
- transition-property: margin-top, border-radius, border, max-width;
21389
- border-radius: 4px;
21390
- }
21391
- .v-expansion-panel:not(:first-child)::after {
21392
- border-top-style: solid;
21393
- border-top-width: thin;
21394
- content: "";
21395
- left: 0;
21396
- position: absolute;
21397
- right: 0;
21398
- top: 0;
21399
- transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
21400
- }
21401
- .v-expansion-panel--disabled .v-expansion-panel-title {
21402
- pointer-events: none;
21403
- }
21404
- .v-expansion-panel--active:not(:first-child),
21405
- .v-expansion-panel--active + .v-expansion-panel {
21406
- margin-top: 16px;
21407
- }
21408
- .v-expansion-panel--active:not(:first-child)::after,
21409
- .v-expansion-panel--active + .v-expansion-panel::after {
21410
- opacity: 0;
21411
- }
21412
- .v-expansion-panel--active > .v-expansion-panel-title {
21413
- border-bottom-left-radius: 0;
21414
- border-bottom-right-radius: 0;
21415
- }
21416
- .v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
21417
- min-height: 64px;
21418
- }
21419
-
21420
- .v-expansion-panel__shadow {
21421
- position: absolute;
21422
- top: 0;
21423
- left: 0;
21424
- width: 100%;
21425
- height: 100%;
21426
- 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));
21427
- border-radius: inherit;
21428
- z-index: -1;
21429
- }
21430
-
21431
- .v-expansion-panel-title {
21432
- align-items: center;
21433
- text-align: start;
21434
- border-radius: inherit;
21435
- display: flex;
21436
- font-size: 0.9375rem;
21437
- line-height: 1;
21438
- min-height: 48px;
21439
- outline: none;
21440
- padding: 16px 24px;
21441
- position: relative;
21442
- transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
21443
- width: 100%;
21444
- justify-content: space-between;
21445
- }
21446
- .v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
21447
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
21448
- }
21449
- .v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
21450
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21451
- }
21452
- @supports not selector(:focus-visible) {
21453
- .v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
21454
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21455
- }
21456
- }
21457
- .v-expansion-panel-title--active > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true] > .v-expansion-panel-title__overlay {
21458
- opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
21459
- }
21460
- .v-expansion-panel-title--active:hover > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:hover > .v-expansion-panel-title__overlay {
21461
- opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
21462
- }
21463
- .v-expansion-panel-title--active:focus-visible > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-expansion-panel-title__overlay {
21464
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21465
- }
21466
- @supports not selector(:focus-visible) {
21467
- .v-expansion-panel-title--active:focus > .v-expansion-panel-title__overlay, .v-expansion-panel-title[aria-haspopup=menu][aria-expanded=true]:focus > .v-expansion-panel-title__overlay {
21468
- opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
21469
- }
21470
- }
21471
- .v-expansion-panel-title--active::before {
21472
- opacity: 0.12;
21473
- }
21474
-
21475
- .v-expansion-panel-title__overlay {
21476
- position: absolute;
21477
- top: 0;
21478
- left: 0;
21479
- width: 100%;
21480
- height: 100%;
21481
- background-color: currentColor;
21482
- border-radius: inherit;
21483
- opacity: 0;
21484
- }
21485
-
21486
- .v-expansion-panel-title__icon {
21487
- display: inline-flex;
21488
- margin-bottom: -4px;
21489
- margin-top: -4px;
21490
- -webkit-user-select: none;
21491
- user-select: none;
21492
- margin-inline-start: auto;
21493
- }
21494
-
21495
- .v-expansion-panel-text {
21496
- display: flex;
21497
- }
21498
- .v-expansion-panel-text__wrapper {
21499
- padding: 8px 24px 16px;
21500
- flex: 1 1 auto;
21501
- max-width: 100%;
21502
- }
21503
-
21504
- .v-expansion-panels--variant-accordion > .v-expansion-panel {
21505
- margin-top: 0;
21506
- }
21507
- .v-expansion-panels--variant-accordion > .v-expansion-panel::after {
21508
- opacity: 1;
21509
- }
21510
-
21511
- .v-expansion-panels--variant-popout > .v-expansion-panel {
21512
- max-width: calc(100% - 32px);
21513
- }
21514
- .v-expansion-panels--variant-popout > .v-expansion-panel--active {
21515
- max-width: calc(100% + 16px);
21516
- }
21517
-
21518
- .v-expansion-panels--variant-inset > .v-expansion-panel {
21519
- max-width: 100%;
21520
- }
21521
- .v-expansion-panels--variant-inset > .v-expansion-panel--active {
21522
- max-width: calc(100% - 32px);
21523
- }
21524
-
21525
- .v-expansion-panels--flat > .v-expansion-panel::after {
21526
- border-top: none;
21527
- }
21528
- .v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
21529
- display: none;
21530
- }
21531
-
21532
- .v-expansion-panels--tile {
21533
- border-radius: 0;
21534
- }
21535
- .v-expansion-panels--tile > .v-expansion-panel {
21536
- border-radius: 0;
21537
- }.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21538
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21539
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21540
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21541
- top: 0px;
21542
- }
21543
- .v-file-input input[type=file] {
21544
- height: 100%;
21545
- left: 0;
21546
- opacity: 0;
21547
- position: absolute;
21548
- top: 0;
21549
- width: 100%;
21550
- z-index: 1;
21551
- }
21552
- .v-file-input .v-input__details {
21553
- padding-inline: 16px;
21554
- }
21555
- .v-input--plain-underlined.v-file-input .v-input__details {
21556
- padding-inline: 0;
21557
- }.v-footer {
21558
- align-items: center;
21559
- display: flex;
21560
- flex: 1 1 auto;
21561
- padding: 8px 16px;
21562
- position: relative;
21563
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21564
- transition-property: height, width, transform, max-width, left, right, top, bottom;
21565
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21566
- border-style: solid;
21567
- border-width: 0;
21568
- 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));
21569
- border-radius: 0;
21570
- background: rgb(var(--v-theme-surface));
21571
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21572
- }
21573
- .v-footer--border {
21574
- border-width: thin;
21575
- box-shadow: none;
21576
- }
21577
- .v-footer--absolute {
21578
- position: absolute;
21579
- }
21580
- .v-footer--fixed {
21581
- position: fixed;
21582
- }
21583
- .v-footer--rounded {
21584
- border-radius: 4px;
21585
- }.v-icon {
21586
- --v-icon-size-multiplier: 1;
21587
- align-items: center;
21588
- display: inline-flex;
21589
- font-feature-settings: "liga";
21590
- height: 1em;
21591
- justify-content: center;
21592
- letter-spacing: normal;
21593
- line-height: 1;
21594
- position: relative;
21595
- text-indent: 0;
21596
- text-align: center;
21597
- -webkit-user-select: none;
21598
- user-select: none;
21599
- vertical-align: middle;
21600
- width: 1em;
21601
- min-width: 1em;
21602
- }
21603
- .v-icon--clickable {
21604
- cursor: pointer;
21605
- }
21606
- .v-icon--size-x-small {
21607
- font-size: calc(var(--v-icon-size-multiplier) * 1em);
21608
- }
21609
- .v-icon--size-small {
21610
- font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
21611
- }
21612
- .v-icon--size-default {
21613
- font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
21614
- }
21615
- .v-icon--size-large {
21616
- font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
21617
- }
21618
- .v-icon--size-x-large {
21619
- font-size: calc(var(--v-icon-size-multiplier) * 2em);
21620
- }
21621
-
21622
- .v-icon__svg {
21623
- fill: currentColor;
21624
- width: 100%;
21625
- height: 100%;
21626
- }
21627
-
21628
- .v-icon--start {
21629
- margin-inline-end: 8px;
21659
+ text-align: end;
21630
21660
  }
21631
21661
 
21632
- .v-icon--end {
21633
- margin-inline-start: 8px;
21634
- }.v-img {
21635
- --v-theme-overlay-multiplier: 3;
21636
- z-index: 0;
21637
- }
21638
- .v-img--booting .v-responsive__sizer {
21639
- transition: none;
21662
+ .v-input--disabled .v-field--variant-filled .v-field__outline::before,
21663
+ .v-input--disabled .v-field--variant-underlined .v-field__outline::before {
21664
+ border-image: repeating-linear-gradient(to right, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 0px, rgba(var(--v-theme-on-surface), var(--v-disabled-opacity)) 2px, transparent 2px, transparent 4px) 1 repeat;
21640
21665
  }
21641
- .v-img--rounded {
21642
- border-radius: 4px;
21666
+
21667
+ .v-field--loading .v-field__outline::after,
21668
+ .v-field--loading .v-field__outline::before {
21669
+ opacity: 0;
21643
21670
  }
21644
21671
 
21645
- .v-img__img,
21646
- .v-img__picture,
21647
- .v-img__gradient,
21648
- .v-img__placeholder,
21649
- .v-img__error {
21650
- z-index: -1;
21672
+ /* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21673
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21674
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21675
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21676
+ top: 0px;
21677
+ }
21678
+ .v-file-input input[type=file] {
21679
+ height: 100%;
21680
+ left: 0;
21681
+ opacity: 0;
21651
21682
  position: absolute;
21652
21683
  top: 0;
21653
- left: 0;
21654
21684
  width: 100%;
21655
- height: 100%;
21656
- }
21657
-
21658
- .v-img__img--preload {
21659
- filter: blur(4px);
21660
- }
21661
- .v-img__img--contain {
21662
- object-fit: contain;
21685
+ z-index: 1;
21663
21686
  }
21664
- .v-img__img--cover {
21665
- object-fit: cover;
21687
+ .v-file-input .v-input__details {
21688
+ padding-inline: 16px;
21666
21689
  }
21667
-
21668
- .v-img__gradient {
21669
- background-repeat: no-repeat;
21670
- }.v-infinite-scroll--horizontal {
21690
+ .v-input--plain-underlined.v-file-input .v-input__details {
21691
+ padding-inline: 0;
21692
+ }.v-footer {
21693
+ align-items: center;
21671
21694
  display: flex;
21672
- flex-direction: row;
21673
- overflow-x: auto;
21695
+ flex: 1 1 auto;
21696
+ padding: 8px 16px;
21697
+ position: relative;
21698
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21699
+ transition-property: height, width, transform, max-width, left, right, top, bottom;
21700
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21701
+ border-style: solid;
21702
+ border-width: 0;
21703
+ 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));
21704
+ border-radius: 0;
21705
+ background: rgb(var(--v-theme-surface));
21706
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21674
21707
  }
21675
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21676
- height: 100%;
21677
- width: 1px;
21708
+ .v-footer--border {
21709
+ border-width: thin;
21710
+ box-shadow: none;
21678
21711
  }
21679
-
21680
- .v-infinite-scroll--vertical {
21681
- display: flex;
21682
- flex-direction: column;
21683
- overflow-y: auto;
21712
+ .v-footer--absolute {
21713
+ position: absolute;
21684
21714
  }
21685
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21686
- height: 1px;
21687
- width: 100%;
21715
+ .v-footer--fixed {
21716
+ position: fixed;
21688
21717
  }
21689
-
21690
- .v-infinite-scroll__side {
21691
- align-items: center;
21692
- display: flex;
21693
- justify-content: center;
21694
- padding: 8px;
21718
+ .v-footer--rounded {
21719
+ border-radius: 4px;
21695
21720
  }.v-input {
21696
21721
  display: grid;
21697
21722
  flex: 1 1 auto;
@@ -21834,137 +21859,129 @@ textarea.v-field__input::placeholder {
21834
21859
 
21835
21860
  .v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
21836
21861
  padding-top: calc(var(--v-input-padding-top) + 0px);
21837
- }.v-item-group {
21838
- flex: 0 1 auto;
21839
- max-width: 100%;
21840
- position: relative;
21841
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21842
- }.v-label {
21843
- align-items: center;
21844
- color: inherit;
21845
- display: inline-flex;
21846
- font-size: 1rem;
21847
- letter-spacing: 0.009375em;
21848
- min-width: 0;
21849
- opacity: var(--v-medium-emphasis-opacity);
21850
- overflow: hidden;
21851
- text-overflow: ellipsis;
21852
- white-space: nowrap;
21853
- }
21854
-
21855
- .v-label--clickable {
21856
- cursor: pointer;
21857
- }.v-locale-provider {
21858
- display: contents;
21859
- }.v-layout {
21860
- --v-scrollbar-offset: 0px;
21862
+ }.v-infinite-scroll--horizontal {
21861
21863
  display: flex;
21862
- flex: 1 1 auto;
21864
+ flex-direction: row;
21865
+ overflow-x: auto;
21863
21866
  }
21864
- .v-layout--full-height {
21865
- --v-scrollbar-offset: inherit;
21867
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21866
21868
  height: 100%;
21867
- }.v-list {
21868
- overflow: auto;
21869
- padding: 8px 0;
21870
- position: relative;
21871
- outline: none;
21872
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
21873
- border-style: solid;
21874
- border-width: 0;
21875
- 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));
21876
- border-radius: 0;
21877
- background: rgba(var(--v-theme-surface));
21878
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
21869
+ width: 1px;
21879
21870
  }
21880
- .v-list--border {
21881
- border-width: thin;
21882
- box-shadow: none;
21871
+
21872
+ .v-infinite-scroll--vertical {
21873
+ display: flex;
21874
+ flex-direction: column;
21875
+ overflow-y: auto;
21883
21876
  }
21884
- .v-list--disabled {
21885
- pointer-events: none;
21886
- -webkit-user-select: none;
21887
- user-select: none;
21877
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21878
+ height: 1px;
21879
+ width: 100%;
21888
21880
  }
21889
- .v-list--nav {
21890
- padding-inline: 8px;
21881
+
21882
+ .v-infinite-scroll__side {
21883
+ align-items: center;
21884
+ display: flex;
21885
+ justify-content: center;
21886
+ padding: 8px;
21887
+ }.v-item-group {
21888
+ flex: 0 1 auto;
21889
+ max-width: 100%;
21890
+ position: relative;
21891
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21892
+ }.v-img {
21893
+ --v-theme-overlay-multiplier: 3;
21894
+ z-index: 0;
21891
21895
  }
21892
- .v-list--rounded {
21893
- border-radius: 4px;
21896
+ .v-img--booting .v-responsive__sizer {
21897
+ transition: none;
21894
21898
  }
21895
- .v-list--subheader {
21896
- padding-top: 0;
21899
+ .v-img--rounded {
21900
+ border-radius: 4px;
21897
21901
  }
21898
21902
 
21899
- .v-list-img {
21900
- border-radius: inherit;
21901
- display: flex;
21902
- height: 100%;
21903
- left: 0;
21904
- overflow: hidden;
21903
+ .v-img__img,
21904
+ .v-img__picture,
21905
+ .v-img__gradient,
21906
+ .v-img__placeholder,
21907
+ .v-img__error {
21908
+ z-index: -1;
21905
21909
  position: absolute;
21906
21910
  top: 0;
21911
+ left: 0;
21907
21912
  width: 100%;
21908
- z-index: -1;
21913
+ height: 100%;
21909
21914
  }
21910
21915
 
21911
- .v-list-subheader {
21912
- align-items: center;
21913
- background: inherit;
21914
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
21915
- display: flex;
21916
- font-size: 0.875rem;
21917
- font-weight: 400;
21918
- line-height: 1.375rem;
21919
- padding-inline-end: 16px;
21920
- min-height: 40px;
21921
- transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
21916
+ .v-img__img--preload {
21917
+ filter: blur(4px);
21922
21918
  }
21923
- .v-list-subheader__text {
21924
- overflow: hidden;
21925
- text-overflow: ellipsis;
21926
- white-space: nowrap;
21919
+ .v-img__img--contain {
21920
+ object-fit: contain;
21927
21921
  }
21928
- .v-list--density-default .v-list-subheader {
21929
- min-height: 40px;
21930
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
21922
+ .v-img__img--cover {
21923
+ object-fit: cover;
21931
21924
  }
21932
21925
 
21933
- .v-list--density-comfortable .v-list-subheader {
21934
- min-height: 36px;
21935
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
21926
+ .v-img__gradient {
21927
+ background-repeat: no-repeat;
21928
+ }.v-icon {
21929
+ --v-icon-size-multiplier: 1;
21930
+ align-items: center;
21931
+ display: inline-flex;
21932
+ font-feature-settings: "liga";
21933
+ height: 1em;
21934
+ justify-content: center;
21935
+ letter-spacing: normal;
21936
+ line-height: 1;
21937
+ position: relative;
21938
+ text-indent: 0;
21939
+ text-align: center;
21940
+ -webkit-user-select: none;
21941
+ user-select: none;
21942
+ vertical-align: middle;
21943
+ width: 1em;
21944
+ min-width: 1em;
21945
+ }
21946
+ .v-icon--clickable {
21947
+ cursor: pointer;
21948
+ }
21949
+ .v-icon--size-x-small {
21950
+ font-size: calc(var(--v-icon-size-multiplier) * 1em);
21951
+ }
21952
+ .v-icon--size-small {
21953
+ font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
21954
+ }
21955
+ .v-icon--size-default {
21956
+ font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
21957
+ }
21958
+ .v-icon--size-large {
21959
+ font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
21960
+ }
21961
+ .v-icon--size-x-large {
21962
+ font-size: calc(var(--v-icon-size-multiplier) * 2em);
21936
21963
  }
21937
21964
 
21938
- .v-list--density-compact .v-list-subheader {
21939
- min-height: 32px;
21940
- padding-inline-start: calc(16px + var(--indent-padding)) !important;
21965
+ .v-icon__svg {
21966
+ fill: currentColor;
21967
+ width: 100%;
21968
+ height: 100%;
21941
21969
  }
21942
21970
 
21943
- .v-list-subheader--inset {
21944
- --indent-padding: 56px;
21945
- }
21946
- .v-list--nav .v-list-subheader {
21947
- font-size: 0.75rem;
21948
- }
21949
- .v-list-subheader--sticky {
21950
- background: inherit;
21951
- left: 0;
21952
- position: sticky;
21953
- top: 0;
21954
- z-index: 1;
21971
+ .v-icon--start {
21972
+ margin-inline-end: 8px;
21955
21973
  }
21956
21974
 
21957
- .v-list__overlay {
21958
- background-color: currentColor;
21959
- border-radius: inherit;
21960
- bottom: 0;
21961
- left: 0;
21962
- opacity: 0;
21963
- pointer-events: none;
21964
- position: absolute;
21965
- right: 0;
21966
- top: 0;
21967
- transition: opacity 0.2s ease-in-out;
21975
+ .v-icon--end {
21976
+ margin-inline-start: 8px;
21977
+ }.v-layout {
21978
+ --v-scrollbar-offset: 0px;
21979
+ display: flex;
21980
+ flex: 1 1 auto;
21981
+ }
21982
+ .v-layout--full-height {
21983
+ --v-scrollbar-offset: inherit;
21984
+ height: 100%;
21968
21985
  }.v-layout-item {
21969
21986
  position: absolute;
21970
21987
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
@@ -21972,6 +21989,8 @@ textarea.v-field__input::placeholder {
21972
21989
 
21973
21990
  .v-layout-item--absolute {
21974
21991
  position: absolute;
21992
+ }.v-locale-provider {
21993
+ display: contents;
21975
21994
  }.v-list-item {
21976
21995
  align-items: center;
21977
21996
  display: grid;
@@ -22423,6 +22442,122 @@ textarea.v-field__input::placeholder {
22423
22442
  }
22424
22443
  .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
22425
22444
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22445
+ }.v-list {
22446
+ overflow: auto;
22447
+ padding: 8px 0;
22448
+ position: relative;
22449
+ outline: none;
22450
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22451
+ border-style: solid;
22452
+ border-width: 0;
22453
+ 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));
22454
+ border-radius: 0;
22455
+ background: rgba(var(--v-theme-surface));
22456
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22457
+ }
22458
+ .v-list--border {
22459
+ border-width: thin;
22460
+ box-shadow: none;
22461
+ }
22462
+ .v-list--disabled {
22463
+ pointer-events: none;
22464
+ -webkit-user-select: none;
22465
+ user-select: none;
22466
+ }
22467
+ .v-list--nav {
22468
+ padding-inline: 8px;
22469
+ }
22470
+ .v-list--rounded {
22471
+ border-radius: 4px;
22472
+ }
22473
+ .v-list--subheader {
22474
+ padding-top: 0;
22475
+ }
22476
+
22477
+ .v-list-img {
22478
+ border-radius: inherit;
22479
+ display: flex;
22480
+ height: 100%;
22481
+ left: 0;
22482
+ overflow: hidden;
22483
+ position: absolute;
22484
+ top: 0;
22485
+ width: 100%;
22486
+ z-index: -1;
22487
+ }
22488
+
22489
+ .v-list-subheader {
22490
+ align-items: center;
22491
+ background: inherit;
22492
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
22493
+ display: flex;
22494
+ font-size: 0.875rem;
22495
+ font-weight: 400;
22496
+ line-height: 1.375rem;
22497
+ padding-inline-end: 16px;
22498
+ min-height: 40px;
22499
+ transition: 0.2s min-height cubic-bezier(0.4, 0, 0.2, 1);
22500
+ }
22501
+ .v-list-subheader__text {
22502
+ overflow: hidden;
22503
+ text-overflow: ellipsis;
22504
+ white-space: nowrap;
22505
+ }
22506
+ .v-list--density-default .v-list-subheader {
22507
+ min-height: 40px;
22508
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
22509
+ }
22510
+
22511
+ .v-list--density-comfortable .v-list-subheader {
22512
+ min-height: 36px;
22513
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
22514
+ }
22515
+
22516
+ .v-list--density-compact .v-list-subheader {
22517
+ min-height: 32px;
22518
+ padding-inline-start: calc(16px + var(--indent-padding)) !important;
22519
+ }
22520
+
22521
+ .v-list-subheader--inset {
22522
+ --indent-padding: 56px;
22523
+ }
22524
+ .v-list--nav .v-list-subheader {
22525
+ font-size: 0.75rem;
22526
+ }
22527
+ .v-list-subheader--sticky {
22528
+ background: inherit;
22529
+ left: 0;
22530
+ position: sticky;
22531
+ top: 0;
22532
+ z-index: 1;
22533
+ }
22534
+
22535
+ .v-list__overlay {
22536
+ background-color: currentColor;
22537
+ border-radius: inherit;
22538
+ bottom: 0;
22539
+ left: 0;
22540
+ opacity: 0;
22541
+ pointer-events: none;
22542
+ position: absolute;
22543
+ right: 0;
22544
+ top: 0;
22545
+ transition: opacity 0.2s ease-in-out;
22546
+ }.v-label {
22547
+ align-items: center;
22548
+ color: inherit;
22549
+ display: inline-flex;
22550
+ font-size: 1rem;
22551
+ letter-spacing: 0.009375em;
22552
+ min-width: 0;
22553
+ opacity: var(--v-medium-emphasis-opacity);
22554
+ overflow: hidden;
22555
+ text-overflow: ellipsis;
22556
+ white-space: nowrap;
22557
+ }
22558
+
22559
+ .v-label--clickable {
22560
+ cursor: pointer;
22426
22561
  }.v-main {
22427
22562
  flex: 1 0 auto;
22428
22563
  max-width: 100%;
@@ -22436,34 +22571,119 @@ textarea.v-field__input::placeholder {
22436
22571
  max-width: 100%;
22437
22572
  position: relative;
22438
22573
  }
22439
- .v-main--scrollable {
22440
- display: flex;
22574
+ .v-main--scrollable {
22575
+ display: flex;
22576
+ position: absolute;
22577
+ top: 0;
22578
+ left: 0;
22579
+ width: 100%;
22580
+ height: 100%;
22581
+ }
22582
+ .v-main--scrollable > .v-main__scroller {
22583
+ flex: 1 1 auto;
22584
+ overflow-y: auto;
22585
+ --v-layout-left: 0px;
22586
+ --v-layout-right: 0px;
22587
+ --v-layout-top: 0px;
22588
+ --v-layout-bottom: 0px;
22589
+ }.v-navigation-drawer {
22590
+ -webkit-overflow-scrolling: touch;
22591
+ background: rgb(var(--v-theme-surface));
22592
+ display: flex;
22593
+ flex-direction: column;
22594
+ height: 100%;
22595
+ max-width: 100%;
22596
+ pointer-events: auto;
22597
+ transition-duration: 0.2s;
22598
+ transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22599
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22600
+ position: absolute;
22601
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22602
+ border-style: solid;
22603
+ border-width: 0;
22604
+ 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));
22605
+ background: rgb(var(--v-theme-surface));
22606
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22607
+ }
22608
+ .v-navigation-drawer--border {
22609
+ border-width: thin;
22610
+ box-shadow: none;
22611
+ }
22612
+ .v-navigation-drawer--rounded {
22613
+ border-radius: 4px;
22614
+ }
22615
+ .v-navigation-drawer--top {
22616
+ top: 0;
22617
+ border-bottom-width: thin;
22618
+ }
22619
+ .v-navigation-drawer--bottom {
22620
+ left: 0;
22621
+ border-top-width: thin;
22622
+ }
22623
+ .v-navigation-drawer--left {
22624
+ top: 0;
22625
+ left: 0;
22626
+ right: auto;
22627
+ border-right-width: thin;
22628
+ }
22629
+ .v-navigation-drawer--right {
22630
+ top: 0;
22631
+ left: auto;
22632
+ right: 0;
22633
+ border-left-width: thin;
22634
+ }
22635
+ .v-navigation-drawer--floating {
22636
+ border: none;
22637
+ }
22638
+ .v-navigation-drawer--temporary {
22639
+ box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
22640
+ }
22641
+ .v-navigation-drawer--sticky {
22642
+ height: auto;
22643
+ transition: box-shadow, transform, visibility, width, height, left, right;
22644
+ }
22645
+ .v-navigation-drawer .v-list {
22646
+ overflow: hidden;
22647
+ }
22648
+
22649
+ .v-navigation-drawer__content {
22650
+ flex: 0 1 auto;
22651
+ height: 100%;
22652
+ max-width: 100%;
22653
+ overflow-x: hidden;
22654
+ overflow-y: auto;
22655
+ }
22656
+
22657
+ .v-navigation-drawer__img {
22658
+ height: 100%;
22659
+ left: 0;
22660
+ position: absolute;
22661
+ top: 0;
22662
+ width: 100%;
22663
+ z-index: -1;
22664
+ }
22665
+ .v-navigation-drawer__img img {
22666
+ height: inherit;
22667
+ object-fit: cover;
22668
+ width: inherit;
22669
+ }
22670
+
22671
+ .v-navigation-drawer__scrim {
22441
22672
  position: absolute;
22442
22673
  top: 0;
22443
22674
  left: 0;
22444
22675
  width: 100%;
22445
22676
  height: 100%;
22677
+ background: black;
22678
+ opacity: 0.2;
22679
+ transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22680
+ z-index: 1;
22446
22681
  }
22447
- .v-main--scrollable > .v-main__scroller {
22448
- flex: 1 1 auto;
22449
- overflow-y: auto;
22450
- --v-layout-left: 0px;
22451
- --v-layout-right: 0px;
22452
- --v-layout-top: 0px;
22453
- --v-layout-bottom: 0px;
22454
- }.v-menu > .v-overlay__content {
22455
- display: flex;
22456
- flex-direction: column;
22457
- border-radius: 4px;
22458
- }
22459
- .v-menu > .v-overlay__content > .v-card,
22460
- .v-menu > .v-overlay__content > .v-sheet,
22461
- .v-menu > .v-overlay__content > .v-list {
22462
- background: rgb(var(--v-theme-surface));
22463
- border-radius: inherit;
22464
- overflow: auto;
22465
- height: 100%;
22466
- 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));
22682
+
22683
+ .v-navigation-drawer__prepend,
22684
+ .v-navigation-drawer__append {
22685
+ flex: none;
22686
+ overflow: hidden;
22467
22687
  }.v-messages {
22468
22688
  flex: 1 1 auto;
22469
22689
  font-size: 12px;
@@ -22536,14 +22756,25 @@ textarea.v-field__input::placeholder {
22536
22756
  }
22537
22757
  .v-otp-input__loader .v-progress-linear {
22538
22758
  position: absolute;
22539
- }.v-pagination__list {
22540
- display: inline-flex;
22541
- list-style-type: none;
22542
- justify-content: center;
22543
- width: 100%;
22759
+ }.v-menu > .v-overlay__content {
22760
+ display: flex;
22761
+ flex-direction: column;
22762
+ border-radius: 4px;
22544
22763
  }
22545
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22546
- margin: 0.3rem;
22764
+ .v-menu > .v-overlay__content > .v-card,
22765
+ .v-menu > .v-overlay__content > .v-sheet,
22766
+ .v-menu > .v-overlay__content > .v-list {
22767
+ background: rgb(var(--v-theme-surface));
22768
+ border-radius: inherit;
22769
+ overflow: auto;
22770
+ height: 100%;
22771
+ 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));
22772
+ }.v-parallax {
22773
+ position: relative;
22774
+ overflow: hidden;
22775
+ }
22776
+ .v-parallax--active > .v-img__img {
22777
+ will-change: transform;
22547
22778
  }.v-overlay-container {
22548
22779
  contain: layout;
22549
22780
  left: 0;
@@ -22582,247 +22813,39 @@ html.v-overlay-scroll-blocked {
22582
22813
  outline: none;
22583
22814
  position: absolute;
22584
22815
  pointer-events: auto;
22585
- contain: layout;
22586
- }
22587
-
22588
- .v-overlay__scrim {
22589
- pointer-events: auto;
22590
- background: rgb(var(--v-theme-on-surface));
22591
- border-radius: inherit;
22592
- bottom: 0;
22593
- left: 0;
22594
- opacity: var(--v-overlay-opacity, 0.32);
22595
- position: fixed;
22596
- right: 0;
22597
- top: 0;
22598
- }
22599
-
22600
- .v-overlay--absolute {
22601
- position: absolute;
22602
- }
22603
-
22604
- .v-overlay--contained .v-overlay__scrim {
22605
- position: absolute;
22606
- }
22607
-
22608
- .v-overlay--scroll-blocked {
22609
- padding-inline-end: var(--v-scrollbar-offset);
22610
- }.v-progress-linear {
22611
- background: transparent;
22612
- overflow: hidden;
22613
- position: relative;
22614
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22615
- width: 100%;
22616
- }
22617
- .v-progress-linear--rounded {
22618
- border-radius: 9999px;
22619
- }
22620
-
22621
- .v-progress-linear__background {
22622
- background: currentColor;
22623
- bottom: 0;
22624
- left: 0;
22625
- opacity: var(--v-border-opacity);
22626
- position: absolute;
22627
- top: 0;
22628
- transition-property: width, left, right;
22629
- transition: inherit;
22630
- }
22631
-
22632
- .v-progress-linear__content {
22633
- align-items: center;
22634
- display: flex;
22635
- height: 100%;
22636
- justify-content: center;
22637
- left: 0;
22638
- pointer-events: none;
22639
- position: absolute;
22640
- top: 0;
22641
- width: 100%;
22642
- }
22643
-
22644
- .v-progress-linear__determinate,
22645
- .v-progress-linear__indeterminate {
22646
- background: currentColor;
22647
- }
22648
-
22649
- .v-progress-linear__determinate {
22650
- height: inherit;
22651
- left: 0;
22652
- position: absolute;
22653
- transition: inherit;
22654
- transition-property: width, left, right;
22655
- }
22656
-
22657
- .v-progress-linear__indeterminate .long, .v-progress-linear__indeterminate .short {
22658
- animation-play-state: paused;
22659
- animation-duration: 2.2s;
22660
- animation-iteration-count: infinite;
22661
- bottom: 0;
22662
- height: inherit;
22663
- left: 0;
22664
- position: absolute;
22665
- right: auto;
22666
- top: 0;
22667
- width: auto;
22668
- will-change: left, right;
22669
- }
22670
- .v-progress-linear__indeterminate .long {
22671
- animation-name: indeterminate-ltr;
22672
- }
22673
- .v-progress-linear__indeterminate .short {
22674
- animation-name: indeterminate-short-ltr;
22675
- }
22676
-
22677
- .v-progress-linear__stream {
22678
- animation: stream 0.25s infinite linear;
22679
- animation-play-state: paused;
22680
- bottom: 0;
22681
- left: auto;
22682
- opacity: 0.3;
22683
- pointer-events: none;
22684
- position: absolute;
22685
- transition: inherit;
22686
- transition-property: width, left, right;
22687
- }
22688
-
22689
- .v-progress-linear--reverse .v-progress-linear__background,
22690
- .v-progress-linear--reverse .v-progress-linear__determinate,
22691
- .v-progress-linear--reverse .v-progress-linear__content {
22692
- left: auto;
22693
- right: 0;
22694
- }
22695
- .v-progress-linear--reverse .v-progress-linear__indeterminate .long, .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
22696
- left: auto;
22697
- right: 0;
22698
- }
22699
- .v-progress-linear--reverse .v-progress-linear__indeterminate .long {
22700
- animation-name: indeterminate-rtl;
22701
- }
22702
- .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
22703
- animation-name: indeterminate-short-rtl;
22704
- }
22705
- .v-progress-linear--reverse .v-progress-linear__stream {
22706
- right: auto;
22707
- }
22708
-
22709
- .v-progress-linear--absolute,
22710
- .v-progress-linear--fixed {
22711
- left: 0;
22712
- z-index: 1;
22713
- }
22714
-
22715
- .v-progress-linear--absolute {
22716
- position: absolute;
22717
- }
22718
-
22719
- .v-progress-linear--fixed {
22720
- position: fixed;
22721
- }
22722
-
22723
- .v-progress-linear--rounded {
22724
- border-radius: 9999px;
22725
- }
22726
- .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,
22727
- .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate {
22728
- border-radius: inherit;
22729
- }
22730
-
22731
- .v-progress-linear--striped .v-progress-linear__determinate {
22732
- animation: progress-linear-stripes 1s infinite linear;
22733
- background-image: linear-gradient(135deg, hsla(0, 0%, 100%, 0.25) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.25) 0, hsla(0, 0%, 100%, 0.25) 75%, transparent 0, transparent);
22734
- background-repeat: repeat;
22735
- background-size: var(--v-progress-linear-height);
22736
- }
22737
-
22738
- .v-progress-linear--active .v-progress-linear__indeterminate .long, .v-progress-linear--active .v-progress-linear__indeterminate .short {
22739
- animation-play-state: running;
22740
- }
22741
- .v-progress-linear--active .v-progress-linear__stream {
22742
- animation-play-state: running;
22743
- }
22744
-
22745
- .v-progress-linear--rounded-bar .v-progress-linear__determinate,
22746
- .v-progress-linear--rounded-bar .v-progress-linear__indeterminate,
22747
- .v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
22748
- border-radius: 9999px;
22749
- }
22750
- .v-progress-linear--rounded-bar .v-progress-linear__determinate {
22751
- border-start-start-radius: 0;
22752
- border-end-start-radius: 0;
22753
- }
22754
-
22755
- @keyframes indeterminate-ltr {
22756
- 0% {
22757
- left: -90%;
22758
- right: 100%;
22759
- }
22760
- 60% {
22761
- left: -90%;
22762
- right: 100%;
22763
- }
22764
- 100% {
22765
- left: 100%;
22766
- right: -35%;
22767
- }
22768
- }
22769
- @keyframes indeterminate-rtl {
22770
- 0% {
22771
- left: 100%;
22772
- right: -90%;
22773
- }
22774
- 60% {
22775
- left: 100%;
22776
- right: -90%;
22777
- }
22778
- 100% {
22779
- left: -35%;
22780
- right: 100%;
22781
- }
22816
+ contain: layout;
22782
22817
  }
22783
- @keyframes indeterminate-short-ltr {
22784
- 0% {
22785
- left: -200%;
22786
- right: 100%;
22787
- }
22788
- 60% {
22789
- left: 107%;
22790
- right: -8%;
22791
- }
22792
- 100% {
22793
- left: 107%;
22794
- right: -8%;
22795
- }
22818
+
22819
+ .v-overlay__scrim {
22820
+ pointer-events: auto;
22821
+ background: rgb(var(--v-theme-on-surface));
22822
+ border-radius: inherit;
22823
+ bottom: 0;
22824
+ left: 0;
22825
+ opacity: var(--v-overlay-opacity, 0.32);
22826
+ position: fixed;
22827
+ right: 0;
22828
+ top: 0;
22796
22829
  }
22797
- @keyframes indeterminate-short-rtl {
22798
- 0% {
22799
- left: 100%;
22800
- right: -200%;
22801
- }
22802
- 60% {
22803
- left: -8%;
22804
- right: 107%;
22805
- }
22806
- 100% {
22807
- left: -8%;
22808
- right: 107%;
22809
- }
22830
+
22831
+ .v-overlay--absolute {
22832
+ position: absolute;
22810
22833
  }
22811
- @keyframes stream {
22812
- to {
22813
- transform: translateX(var(--v-progress-linear-stream-to));
22814
- }
22834
+
22835
+ .v-overlay--contained .v-overlay__scrim {
22836
+ position: absolute;
22815
22837
  }
22816
- @keyframes progress-linear-stripes {
22817
- 0% {
22818
- background-position-x: var(--v-progress-linear-height);
22819
- }
22820
- }.v-parallax {
22821
- position: relative;
22822
- overflow: hidden;
22838
+
22839
+ .v-overlay--scroll-blocked {
22840
+ padding-inline-end: var(--v-scrollbar-offset);
22841
+ }.v-pagination__list {
22842
+ display: inline-flex;
22843
+ list-style-type: none;
22844
+ justify-content: center;
22845
+ width: 100%;
22823
22846
  }
22824
- .v-parallax--active > .v-img__img {
22825
- will-change: transform;
22847
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22848
+ margin: 0.3rem;
22826
22849
  }.v-progress-circular {
22827
22850
  align-items: center;
22828
22851
  display: inline-flex;
@@ -22925,158 +22948,228 @@ html.v-overlay-scroll-blocked {
22925
22948
  100% {
22926
22949
  transform: rotate(270deg);
22927
22950
  }
22928
- }.v-navigation-drawer {
22929
- -webkit-overflow-scrolling: touch;
22930
- background: rgb(var(--v-theme-surface));
22931
- display: flex;
22932
- flex-direction: column;
22933
- height: 100%;
22934
- max-width: 100%;
22935
- pointer-events: auto;
22936
- transition-duration: 0.2s;
22937
- transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
22938
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
22939
- position: absolute;
22940
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
22941
- border-style: solid;
22942
- border-width: 0;
22943
- 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));
22944
- background: rgb(var(--v-theme-surface));
22945
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
22951
+ }.v-progress-linear {
22952
+ background: transparent;
22953
+ overflow: hidden;
22954
+ position: relative;
22955
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22956
+ width: 100%;
22946
22957
  }
22947
- .v-navigation-drawer--border {
22948
- border-width: thin;
22949
- box-shadow: none;
22958
+ .v-progress-linear--rounded {
22959
+ border-radius: 9999px;
22950
22960
  }
22951
- .v-navigation-drawer--rounded {
22952
- border-radius: 4px;
22961
+
22962
+ .v-progress-linear__background {
22963
+ background: currentColor;
22964
+ bottom: 0;
22965
+ left: 0;
22966
+ opacity: var(--v-border-opacity);
22967
+ position: absolute;
22968
+ top: 0;
22969
+ transition-property: width, left, right;
22970
+ transition: inherit;
22953
22971
  }
22954
- .v-navigation-drawer--top {
22972
+
22973
+ .v-progress-linear__content {
22974
+ align-items: center;
22975
+ display: flex;
22976
+ height: 100%;
22977
+ justify-content: center;
22978
+ left: 0;
22979
+ pointer-events: none;
22980
+ position: absolute;
22955
22981
  top: 0;
22956
- border-bottom-width: thin;
22982
+ width: 100%;
22957
22983
  }
22958
- .v-navigation-drawer--bottom {
22984
+
22985
+ .v-progress-linear__determinate,
22986
+ .v-progress-linear__indeterminate {
22987
+ background: currentColor;
22988
+ }
22989
+
22990
+ .v-progress-linear__determinate {
22991
+ height: inherit;
22959
22992
  left: 0;
22960
- border-top-width: thin;
22993
+ position: absolute;
22994
+ transition: inherit;
22995
+ transition-property: width, left, right;
22961
22996
  }
22962
- .v-navigation-drawer--left {
22963
- top: 0;
22997
+
22998
+ .v-progress-linear__indeterminate .long, .v-progress-linear__indeterminate .short {
22999
+ animation-play-state: paused;
23000
+ animation-duration: 2.2s;
23001
+ animation-iteration-count: infinite;
23002
+ bottom: 0;
23003
+ height: inherit;
22964
23004
  left: 0;
23005
+ position: absolute;
22965
23006
  right: auto;
22966
- border-right-width: thin;
22967
- }
22968
- .v-navigation-drawer--right {
22969
23007
  top: 0;
23008
+ width: auto;
23009
+ will-change: left, right;
23010
+ }
23011
+ .v-progress-linear__indeterminate .long {
23012
+ animation-name: indeterminate-ltr;
23013
+ }
23014
+ .v-progress-linear__indeterminate .short {
23015
+ animation-name: indeterminate-short-ltr;
23016
+ }
23017
+
23018
+ .v-progress-linear__stream {
23019
+ animation: stream 0.25s infinite linear;
23020
+ animation-play-state: paused;
23021
+ bottom: 0;
23022
+ left: auto;
23023
+ opacity: 0.3;
23024
+ pointer-events: none;
23025
+ position: absolute;
23026
+ transition: inherit;
23027
+ transition-property: width, left, right;
23028
+ }
23029
+
23030
+ .v-progress-linear--reverse .v-progress-linear__background,
23031
+ .v-progress-linear--reverse .v-progress-linear__determinate,
23032
+ .v-progress-linear--reverse .v-progress-linear__content {
22970
23033
  left: auto;
22971
23034
  right: 0;
22972
- border-left-width: thin;
22973
23035
  }
22974
- .v-navigation-drawer--floating {
22975
- border: none;
23036
+ .v-progress-linear--reverse .v-progress-linear__indeterminate .long, .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
23037
+ left: auto;
23038
+ right: 0;
22976
23039
  }
22977
- .v-navigation-drawer--temporary {
22978
- box-shadow: 0px 8px 10px -5px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 16px 24px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 6px 30px 5px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23040
+ .v-progress-linear--reverse .v-progress-linear__indeterminate .long {
23041
+ animation-name: indeterminate-rtl;
22979
23042
  }
22980
- .v-navigation-drawer--sticky {
22981
- height: auto;
22982
- transition: box-shadow, transform, visibility, width, height, left, right;
23043
+ .v-progress-linear--reverse .v-progress-linear__indeterminate .short {
23044
+ animation-name: indeterminate-short-rtl;
22983
23045
  }
22984
- .v-navigation-drawer .v-list {
22985
- overflow: hidden;
23046
+ .v-progress-linear--reverse .v-progress-linear__stream {
23047
+ right: auto;
22986
23048
  }
22987
23049
 
22988
- .v-navigation-drawer__content {
22989
- flex: 0 1 auto;
22990
- height: 100%;
22991
- max-width: 100%;
22992
- overflow-x: hidden;
22993
- overflow-y: auto;
23050
+ .v-progress-linear--absolute,
23051
+ .v-progress-linear--fixed {
23052
+ left: 0;
23053
+ z-index: 1;
22994
23054
  }
22995
23055
 
22996
- .v-navigation-drawer__img {
22997
- height: 100%;
22998
- left: 0;
23056
+ .v-progress-linear--absolute {
22999
23057
  position: absolute;
23000
- top: 0;
23001
- width: 100%;
23002
- z-index: -1;
23003
23058
  }
23004
- .v-navigation-drawer__img img {
23005
- height: inherit;
23006
- object-fit: cover;
23007
- width: inherit;
23059
+
23060
+ .v-progress-linear--fixed {
23061
+ position: fixed;
23008
23062
  }
23009
23063
 
23010
- .v-navigation-drawer__scrim {
23011
- position: absolute;
23012
- top: 0;
23013
- left: 0;
23014
- width: 100%;
23015
- height: 100%;
23016
- background: black;
23017
- opacity: 0.2;
23018
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23019
- z-index: 1;
23064
+ .v-progress-linear--rounded {
23065
+ border-radius: 9999px;
23066
+ }
23067
+ .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__determinate,
23068
+ .v-progress-linear--rounded.v-progress-linear--rounded-bar .v-progress-linear__indeterminate {
23069
+ border-radius: inherit;
23020
23070
  }
23021
23071
 
23022
- .v-navigation-drawer__prepend,
23023
- .v-navigation-drawer__append {
23024
- flex: none;
23025
- overflow: hidden;
23026
- }.v-rating {
23027
- max-width: 100%;
23028
- display: inline-flex;
23029
- white-space: nowrap;
23072
+ .v-progress-linear--striped .v-progress-linear__determinate {
23073
+ animation: progress-linear-stripes 1s infinite linear;
23074
+ background-image: linear-gradient(135deg, hsla(0, 0%, 100%, 0.25) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.25) 0, hsla(0, 0%, 100%, 0.25) 75%, transparent 0, transparent);
23075
+ background-repeat: repeat;
23076
+ background-size: var(--v-progress-linear-height);
23030
23077
  }
23031
- .v-rating--readonly {
23032
- pointer-events: none;
23078
+
23079
+ .v-progress-linear--active .v-progress-linear__indeterminate .long, .v-progress-linear--active .v-progress-linear__indeterminate .short {
23080
+ animation-play-state: running;
23081
+ }
23082
+ .v-progress-linear--active .v-progress-linear__stream {
23083
+ animation-play-state: running;
23033
23084
  }
23034
23085
 
23035
- .v-rating__wrapper {
23036
- align-items: center;
23037
- display: inline-flex;
23038
- flex-direction: column;
23086
+ .v-progress-linear--rounded-bar .v-progress-linear__determinate,
23087
+ .v-progress-linear--rounded-bar .v-progress-linear__indeterminate,
23088
+ .v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
23089
+ border-radius: 9999px;
23039
23090
  }
23040
- .v-rating__wrapper--bottom {
23041
- flex-direction: column-reverse;
23091
+ .v-progress-linear--rounded-bar .v-progress-linear__determinate {
23092
+ border-start-start-radius: 0;
23093
+ border-end-start-radius: 0;
23042
23094
  }
23043
23095
 
23044
- .v-rating__item {
23045
- display: inline-flex;
23046
- position: relative;
23096
+ @keyframes indeterminate-ltr {
23097
+ 0% {
23098
+ left: -90%;
23099
+ right: 100%;
23100
+ }
23101
+ 60% {
23102
+ left: -90%;
23103
+ right: 100%;
23104
+ }
23105
+ 100% {
23106
+ left: 100%;
23107
+ right: -35%;
23108
+ }
23047
23109
  }
23048
- .v-rating__item label {
23049
- cursor: pointer;
23110
+ @keyframes indeterminate-rtl {
23111
+ 0% {
23112
+ left: 100%;
23113
+ right: -90%;
23114
+ }
23115
+ 60% {
23116
+ left: 100%;
23117
+ right: -90%;
23118
+ }
23119
+ 100% {
23120
+ left: -35%;
23121
+ right: 100%;
23122
+ }
23050
23123
  }
23051
- .v-rating__item .v-btn--variant-plain {
23052
- opacity: 1;
23124
+ @keyframes indeterminate-short-ltr {
23125
+ 0% {
23126
+ left: -200%;
23127
+ right: 100%;
23128
+ }
23129
+ 60% {
23130
+ left: 107%;
23131
+ right: -8%;
23132
+ }
23133
+ 100% {
23134
+ left: 107%;
23135
+ right: -8%;
23136
+ }
23053
23137
  }
23054
- .v-rating__item .v-btn {
23055
- transition-property: transform;
23138
+ @keyframes indeterminate-short-rtl {
23139
+ 0% {
23140
+ left: 100%;
23141
+ right: -200%;
23142
+ }
23143
+ 60% {
23144
+ left: -8%;
23145
+ right: 107%;
23146
+ }
23147
+ 100% {
23148
+ left: -8%;
23149
+ right: 107%;
23150
+ }
23056
23151
  }
23057
- .v-rating__item .v-btn .v-icon {
23058
- transition: inherit;
23059
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23152
+ @keyframes stream {
23153
+ to {
23154
+ transform: translateX(var(--v-progress-linear-stream-to));
23155
+ }
23060
23156
  }
23061
- .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
23062
- transform: scale(1.25);
23157
+ @keyframes progress-linear-stripes {
23158
+ 0% {
23159
+ background-position-x: var(--v-progress-linear-height);
23160
+ }
23161
+ }.v-radio-group > .v-input__control {
23162
+ flex-direction: column;
23063
23163
  }
23064
- .v-rating__item--half {
23065
- overflow: hidden;
23066
- position: absolute;
23067
- -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23068
- clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23069
- z-index: 1;
23164
+ .v-radio-group > .v-input__control > .v-label {
23165
+ margin-inline-start: 16px;
23070
23166
  }
23071
- .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
23072
- opacity: 0;
23167
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23168
+ padding-inline-start: 6px;
23169
+ margin-top: 8px;
23073
23170
  }
23074
-
23075
- .v-rating__hidden {
23076
- height: 0;
23077
- opacity: 0;
23078
- position: absolute;
23079
- width: 0;
23171
+ .v-radio-group .v-input__details {
23172
+ padding-inline: 16px;
23080
23173
  }.v-slider .v-slider__container input {
23081
23174
  cursor: default;
23082
23175
  padding: 0;
@@ -23134,44 +23227,60 @@ html.v-overlay-scroll-blocked {
23134
23227
 
23135
23228
  .v-slider__label {
23136
23229
  margin-inline-end: 12px;
23137
- }.v-radio-group > .v-input__control {
23138
- flex-direction: column;
23230
+ }.v-rating {
23231
+ max-width: 100%;
23232
+ display: inline-flex;
23233
+ white-space: nowrap;
23139
23234
  }
23140
- .v-radio-group > .v-input__control > .v-label {
23141
- margin-inline-start: 16px;
23235
+ .v-rating--readonly {
23236
+ pointer-events: none;
23142
23237
  }
23143
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23144
- padding-inline-start: 6px;
23145
- margin-top: 8px;
23238
+
23239
+ .v-rating__wrapper {
23240
+ align-items: center;
23241
+ display: inline-flex;
23242
+ flex-direction: column;
23146
23243
  }
23147
- .v-radio-group .v-input__details {
23148
- padding-inline: 16px;
23149
- }.v-responsive {
23150
- display: flex;
23151
- flex: 1 0 auto;
23152
- max-height: 100%;
23153
- max-width: 100%;
23154
- overflow: hidden;
23155
- position: relative;
23244
+ .v-rating__wrapper--bottom {
23245
+ flex-direction: column-reverse;
23156
23246
  }
23157
- .v-responsive--inline {
23247
+
23248
+ .v-rating__item {
23158
23249
  display: inline-flex;
23159
- flex: 0 0 auto;
23250
+ position: relative;
23160
23251
  }
23161
-
23162
- .v-responsive__content {
23163
- flex: 1 0 0px;
23164
- max-width: 100%;
23252
+ .v-rating__item label {
23253
+ cursor: pointer;
23165
23254
  }
23166
-
23167
- .v-responsive__sizer ~ .v-responsive__content {
23168
- margin-inline-start: -100%;
23255
+ .v-rating__item .v-btn--variant-plain {
23256
+ opacity: 1;
23257
+ }
23258
+ .v-rating__item .v-btn {
23259
+ transition-property: transform;
23260
+ }
23261
+ .v-rating__item .v-btn .v-icon {
23262
+ transition: inherit;
23263
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23264
+ }
23265
+ .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
23266
+ transform: scale(1.25);
23267
+ }
23268
+ .v-rating__item--half {
23269
+ overflow: hidden;
23270
+ position: absolute;
23271
+ -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23272
+ clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23273
+ z-index: 1;
23274
+ }
23275
+ .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
23276
+ opacity: 0;
23169
23277
  }
23170
23278
 
23171
- .v-responsive__sizer {
23172
- flex: 1 0 0px;
23173
- transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23174
- pointer-events: none;
23279
+ .v-rating__hidden {
23280
+ height: 0;
23281
+ opacity: 0;
23282
+ position: absolute;
23283
+ width: 0;
23175
23284
  }.v-select .v-field .v-text-field__prefix,
23176
23285
  .v-select .v-field .v-text-field__suffix,
23177
23286
  .v-select .v-field .v-field__input, .v-select .v-field.v-field {
@@ -23220,14 +23329,6 @@ html.v-overlay-scroll-blocked {
23220
23329
  .v-select--active-menu .v-select__menu-icon {
23221
23330
  opacity: var(--v-high-emphasis-opacity);
23222
23331
  transform: rotate(180deg);
23223
- }.v-selection-control-group {
23224
- grid-area: control;
23225
- display: flex;
23226
- flex-direction: column;
23227
- }
23228
- .v-selection-control-group--inline {
23229
- flex-direction: row;
23230
- flex-wrap: wrap;
23231
23332
  }.v-selection-control {
23232
23333
  align-items: center;
23233
23334
  contain: layout;
@@ -23329,6 +23430,40 @@ html.v-overlay-scroll-blocked {
23329
23430
  }
23330
23431
  .v-selection-control--focus-visible .v-selection-control__input::before {
23331
23432
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23433
+ }.v-responsive {
23434
+ display: flex;
23435
+ flex: 1 0 auto;
23436
+ max-height: 100%;
23437
+ max-width: 100%;
23438
+ overflow: hidden;
23439
+ position: relative;
23440
+ }
23441
+ .v-responsive--inline {
23442
+ display: inline-flex;
23443
+ flex: 0 0 auto;
23444
+ }
23445
+
23446
+ .v-responsive__content {
23447
+ flex: 1 0 0px;
23448
+ max-width: 100%;
23449
+ }
23450
+
23451
+ .v-responsive__sizer ~ .v-responsive__content {
23452
+ margin-inline-start: -100%;
23453
+ }
23454
+
23455
+ .v-responsive__sizer {
23456
+ flex: 1 0 0px;
23457
+ transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23458
+ pointer-events: none;
23459
+ }.v-selection-control-group {
23460
+ grid-area: control;
23461
+ display: flex;
23462
+ flex-direction: column;
23463
+ }
23464
+ .v-selection-control-group--inline {
23465
+ flex-direction: row;
23466
+ flex-wrap: wrap;
23332
23467
  }.v-sheet {
23333
23468
  display: block;
23334
23469
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -23622,125 +23757,120 @@ html.v-overlay-scroll-blocked {
23622
23757
  .v-slide-group--vertical .v-slide-group__container,
23623
23758
  .v-slide-group--vertical .v-slide-group__content {
23624
23759
  flex-direction: column;
23625
- }.v-snackbar {
23626
- justify-content: center;
23627
- z-index: 10000;
23628
- margin: 8px;
23629
- margin-inline-end: calc(8px + var(--v-scrollbar-offset));
23760
+ }.v-switch .v-label {
23761
+ padding-inline-start: 10px;
23630
23762
  }
23631
- .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
23632
- align-items: flex-end;
23763
+ .v-switch .v-switch__thumb {
23764
+ background-color: rgb(var(--v-theme-surface-bright));
23765
+ color: rgb(var(--v-theme-on-surface-bright));
23633
23766
  }
23634
- .v-snackbar__wrapper {
23635
- align-items: center;
23767
+
23768
+ .v-switch__loader {
23636
23769
  display: flex;
23637
- max-width: 672px;
23638
- min-height: 48px;
23639
- min-width: 344px;
23640
- overflow: hidden;
23641
- padding: 0;
23642
- border-radius: 4px;
23643
- }
23644
- .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
23645
- background: transparent;
23646
- color: inherit;
23647
- }
23648
- .v-snackbar--variant-plain {
23649
- opacity: 0.62;
23650
- }
23651
- .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
23652
- opacity: 1;
23653
- }
23654
- .v-snackbar--variant-plain .v-snackbar__overlay {
23655
- display: none;
23656
23770
  }
23657
- .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
23658
- background: rgb(var(--v-theme-surface-variant));
23659
- color: rgb(var(--v-theme-on-surface-variant));
23771
+ .v-switch__loader .v-progress-circular {
23772
+ color: rgb(var(--v-theme-surface));
23660
23773
  }
23661
- .v-snackbar--variant-elevated {
23662
- box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
23774
+
23775
+ .v-switch__track,
23776
+ .v-switch__thumb {
23777
+ transition: none;
23663
23778
  }
23664
- .v-snackbar--variant-flat {
23665
- 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));
23779
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
23780
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
23781
+ background-color: rgb(var(--v-theme-error));
23782
+ color: rgb(var(--v-theme-on-error));
23666
23783
  }
23667
- .v-snackbar--variant-outlined {
23668
- border: thin solid currentColor;
23784
+
23785
+ .v-switch__track-true {
23786
+ margin-inline-end: auto;
23669
23787
  }
23670
- .v-snackbar--variant-text .v-snackbar__overlay {
23671
- background: currentColor;
23788
+ .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
23789
+ opacity: 0;
23672
23790
  }
23673
- .v-snackbar--variant-tonal .v-snackbar__underlay {
23674
- background: currentColor;
23675
- opacity: var(--v-activated-opacity);
23676
- border-radius: inherit;
23677
- position: absolute;
23678
- top: 0;
23679
- right: 0;
23680
- bottom: 0;
23681
- left: 0;
23682
- pointer-events: none;
23791
+
23792
+ .v-switch__track-false {
23793
+ margin-inline-start: auto;
23794
+ }
23795
+ .v-selection-control--dirty .v-switch__track-false {
23796
+ opacity: 0;
23683
23797
  }
23684
23798
 
23685
- .v-snackbar__content {
23686
- flex-grow: 1;
23687
- font-size: 0.875rem;
23688
- font-weight: 400;
23689
- letter-spacing: 0.0178571429em;
23690
- line-height: 1.25rem;
23691
- margin-right: auto;
23692
- padding: 14px 16px;
23693
- text-align: initial;
23799
+ .v-switch__track {
23800
+ display: inline-flex;
23801
+ align-items: center;
23802
+ font-size: 0.5rem;
23803
+ padding: 0 5px;
23804
+ background-color: rgb(var(--v-theme-surface-variant));
23805
+ border-radius: 9999px;
23806
+ height: 14px;
23807
+ opacity: 0.6;
23808
+ min-width: 36px;
23809
+ cursor: pointer;
23810
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23694
23811
  }
23695
- .v-snackbar__actions {
23812
+ .v-switch--inset .v-switch__track {
23813
+ border-radius: 9999px;
23814
+ font-size: 0.75rem;
23815
+ height: 32px;
23816
+ min-width: 52px;
23817
+ }
23818
+
23819
+ .v-switch__thumb {
23696
23820
  align-items: center;
23697
- align-self: center;
23821
+ border-radius: 50%;
23698
23822
  display: flex;
23699
- margin-inline-end: 8px;
23700
- }
23701
- .v-snackbar__actions > .v-btn {
23702
- padding: 0 8px;
23703
- min-width: auto;
23823
+ font-size: 0.75rem;
23824
+ height: 20px;
23825
+ justify-content: center;
23826
+ width: 20px;
23827
+ pointer-events: none;
23828
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23829
+ position: relative;
23830
+ overflow: hidden;
23831
+ 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));
23704
23832
  }
23705
- .v-snackbar__timer {
23706
- width: 100%;
23707
- position: absolute;
23708
- top: 0;
23833
+ .v-switch--inset .v-switch__thumb {
23834
+ height: 24px;
23835
+ width: 24px;
23836
+ transform: scale(0.6666666667);
23837
+ 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));
23709
23838
  }
23710
- .v-snackbar__timer .v-progress-linear {
23711
- transition: 0.2s linear;
23839
+ .v-switch--inset .v-switch__thumb--filled {
23840
+ transform: none;
23712
23841
  }
23713
- .v-snackbar--absolute {
23714
- position: absolute;
23715
- z-index: 1;
23842
+ .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
23843
+ transform: none;
23844
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
23716
23845
  }
23717
- .v-snackbar--multi-line .v-snackbar__wrapper {
23718
- min-height: 68px;
23846
+
23847
+ .v-switch.v-input {
23848
+ flex: 0 1 auto;
23719
23849
  }
23720
- .v-snackbar--vertical .v-snackbar__wrapper {
23721
- flex-direction: column;
23850
+ .v-switch .v-selection-control {
23851
+ min-height: var(--v-input-control-height);
23722
23852
  }
23723
- .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
23724
- align-self: flex-end;
23725
- margin-bottom: 8px;
23853
+ .v-switch .v-selection-control__input {
23854
+ border-radius: 50%;
23855
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
23856
+ transform: translateX(-10px);
23857
+ position: absolute;
23726
23858
  }
23727
-
23728
- .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
23729
- transition-duration: 0.15s;
23730
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23859
+ .v-switch .v-selection-control__input .v-icon {
23860
+ position: absolute;
23731
23861
  }
23732
- .v-snackbar-transition-enter-active {
23733
- transition-property: opacity, transform;
23862
+ .v-switch .v-selection-control--dirty .v-selection-control__input {
23863
+ transform: translateX(10px);
23734
23864
  }
23735
- .v-snackbar-transition-enter-from {
23736
- opacity: 0;
23865
+ .v-switch.v-switch--indeterminate .v-selection-control__input {
23737
23866
  transform: scale(0.8);
23738
23867
  }
23739
- .v-snackbar-transition-leave-active {
23740
- transition-property: opacity;
23868
+ .v-switch.v-switch--indeterminate .v-switch__thumb {
23869
+ transform: scale(0.75);
23870
+ box-shadow: none;
23741
23871
  }
23742
- .v-snackbar-transition-leave-to {
23743
- opacity: 0;
23872
+ .v-switch.v-switch--inset .v-selection-control__wrapper {
23873
+ width: auto;
23744
23874
  }.v-stepper.v-sheet {
23745
23875
  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));
23746
23876
  border-radius: 4px;
@@ -23802,61 +23932,180 @@ html.v-overlay-scroll-blocked {
23802
23932
  transition-property: opacity;
23803
23933
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
23804
23934
  }
23805
- .v-stepper-item--selected {
23806
- opacity: 1;
23935
+ .v-stepper-item--selected {
23936
+ opacity: 1;
23937
+ }
23938
+ .v-stepper-item--error {
23939
+ color: rgb(var(--v-theme-error));
23940
+ }
23941
+ .v-stepper-item--disabled {
23942
+ opacity: var(--v-medium-emphasis-opacity);
23943
+ pointer-events: none;
23944
+ }
23945
+ .v-stepper--alt-labels .v-stepper-item {
23946
+ flex-direction: column;
23947
+ justify-content: flex-start;
23948
+ align-items: center;
23949
+ flex-basis: 175px;
23950
+ }
23951
+
23952
+ .v-stepper-item__avatar.v-avatar {
23953
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
23954
+ color: rgb(var(--v-theme-on-surface-variant));
23955
+ font-size: 0.75rem;
23956
+ margin-inline-end: 8px;
23957
+ }
23958
+ .v-stepper-item__avatar.v-avatar .v-icon {
23959
+ font-size: 0.875rem;
23960
+ }
23961
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
23962
+ background: rgb(var(--v-theme-surface-variant));
23963
+ }
23964
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
23965
+ background: rgb(var(--v-theme-error));
23966
+ }
23967
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
23968
+ margin-bottom: 16px;
23969
+ margin-inline-end: 0;
23970
+ }
23971
+
23972
+ .v-stepper-item__title {
23973
+ line-height: 1;
23974
+ }
23975
+ .v-stepper--mobile .v-stepper-item__title {
23976
+ display: none;
23977
+ }
23978
+
23979
+ .v-stepper-item__subtitle {
23980
+ font-size: 0.75rem;
23981
+ text-align: left;
23982
+ line-height: 1;
23983
+ opacity: var(--v-medium-emphasis-opacity);
23984
+ }
23985
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
23986
+ text-align: center;
23987
+ }
23988
+ .v-stepper--mobile .v-stepper-item__subtitle {
23989
+ display: none;
23990
+ }.v-snackbar {
23991
+ justify-content: center;
23992
+ z-index: 10000;
23993
+ margin: 8px;
23994
+ margin-inline-end: calc(8px + var(--v-scrollbar-offset));
23995
+ }
23996
+ .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
23997
+ align-items: flex-end;
23998
+ }
23999
+ .v-snackbar__wrapper {
24000
+ align-items: center;
24001
+ display: flex;
24002
+ max-width: 672px;
24003
+ min-height: 48px;
24004
+ min-width: 344px;
24005
+ overflow: hidden;
24006
+ padding: 0;
24007
+ border-radius: 4px;
24008
+ }
24009
+ .v-snackbar--variant-plain, .v-snackbar--variant-outlined, .v-snackbar--variant-text, .v-snackbar--variant-tonal {
24010
+ background: transparent;
24011
+ color: inherit;
24012
+ }
24013
+ .v-snackbar--variant-plain {
24014
+ opacity: 0.62;
24015
+ }
24016
+ .v-snackbar--variant-plain:focus, .v-snackbar--variant-plain:hover {
24017
+ opacity: 1;
24018
+ }
24019
+ .v-snackbar--variant-plain .v-snackbar__overlay {
24020
+ display: none;
24021
+ }
24022
+ .v-snackbar--variant-elevated, .v-snackbar--variant-flat {
24023
+ background: rgb(var(--v-theme-surface-variant));
24024
+ color: rgb(var(--v-theme-on-surface-variant));
24025
+ }
24026
+ .v-snackbar--variant-elevated {
24027
+ box-shadow: 0px 3px 5px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 6px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 18px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
24028
+ }
24029
+ .v-snackbar--variant-flat {
24030
+ 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));
24031
+ }
24032
+ .v-snackbar--variant-outlined {
24033
+ border: thin solid currentColor;
24034
+ }
24035
+ .v-snackbar--variant-text .v-snackbar__overlay {
24036
+ background: currentColor;
24037
+ }
24038
+ .v-snackbar--variant-tonal .v-snackbar__underlay {
24039
+ background: currentColor;
24040
+ opacity: var(--v-activated-opacity);
24041
+ border-radius: inherit;
24042
+ position: absolute;
24043
+ top: 0;
24044
+ right: 0;
24045
+ bottom: 0;
24046
+ left: 0;
24047
+ pointer-events: none;
24048
+ }
24049
+
24050
+ .v-snackbar__content {
24051
+ flex-grow: 1;
24052
+ font-size: 0.875rem;
24053
+ font-weight: 400;
24054
+ letter-spacing: 0.0178571429em;
24055
+ line-height: 1.25rem;
24056
+ margin-right: auto;
24057
+ padding: 14px 16px;
24058
+ text-align: initial;
23807
24059
  }
23808
- .v-stepper-item--error {
23809
- color: rgb(var(--v-theme-error));
24060
+ .v-snackbar__actions {
24061
+ align-items: center;
24062
+ align-self: center;
24063
+ display: flex;
24064
+ margin-inline-end: 8px;
23810
24065
  }
23811
- .v-stepper-item--disabled {
23812
- opacity: var(--v-medium-emphasis-opacity);
23813
- pointer-events: none;
24066
+ .v-snackbar__actions > .v-btn {
24067
+ padding: 0 8px;
24068
+ min-width: auto;
23814
24069
  }
23815
- .v-stepper--alt-labels .v-stepper-item {
23816
- flex-direction: column;
23817
- justify-content: flex-start;
23818
- align-items: center;
23819
- flex-basis: 175px;
24070
+ .v-snackbar__timer {
24071
+ width: 100%;
24072
+ position: absolute;
24073
+ top: 0;
23820
24074
  }
23821
-
23822
- .v-stepper-item__avatar.v-avatar {
23823
- background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
23824
- color: rgb(var(--v-theme-on-surface-variant));
23825
- font-size: 0.75rem;
23826
- margin-inline-end: 8px;
24075
+ .v-snackbar__timer .v-progress-linear {
24076
+ transition: 0.2s linear;
23827
24077
  }
23828
- .v-stepper-item__avatar.v-avatar .v-icon {
23829
- font-size: 0.875rem;
24078
+ .v-snackbar--absolute {
24079
+ position: absolute;
24080
+ z-index: 1;
23830
24081
  }
23831
- .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
23832
- background: rgb(var(--v-theme-surface-variant));
24082
+ .v-snackbar--multi-line .v-snackbar__wrapper {
24083
+ min-height: 68px;
23833
24084
  }
23834
- .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
23835
- background: rgb(var(--v-theme-error));
24085
+ .v-snackbar--vertical .v-snackbar__wrapper {
24086
+ flex-direction: column;
23836
24087
  }
23837
- .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
23838
- margin-bottom: 16px;
23839
- margin-inline-end: 0;
24088
+ .v-snackbar--vertical .v-snackbar__wrapper .v-snackbar__actions {
24089
+ align-self: flex-end;
24090
+ margin-bottom: 8px;
23840
24091
  }
23841
24092
 
23842
- .v-stepper-item__title {
23843
- line-height: 1;
24093
+ .v-snackbar-transition-enter-active, .v-snackbar-transition-leave-active {
24094
+ transition-duration: 0.15s;
24095
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23844
24096
  }
23845
- .v-stepper--mobile .v-stepper-item__title {
23846
- display: none;
24097
+ .v-snackbar-transition-enter-active {
24098
+ transition-property: opacity, transform;
23847
24099
  }
23848
-
23849
- .v-stepper-item__subtitle {
23850
- font-size: 0.75rem;
23851
- text-align: left;
23852
- line-height: 1;
23853
- opacity: var(--v-medium-emphasis-opacity);
24100
+ .v-snackbar-transition-enter-from {
24101
+ opacity: 0;
24102
+ transform: scale(0.8);
23854
24103
  }
23855
- .v-stepper--alt-labels .v-stepper-item__subtitle {
23856
- text-align: center;
24104
+ .v-snackbar-transition-leave-active {
24105
+ transition-property: opacity;
23857
24106
  }
23858
- .v-stepper--mobile .v-stepper-item__subtitle {
23859
- display: none;
24107
+ .v-snackbar-transition-leave-to {
24108
+ opacity: 0;
23860
24109
  }.v-system-bar {
23861
24110
  align-items: center;
23862
24111
  display: flex;
@@ -23894,72 +24143,6 @@ html.v-overlay-scroll-blocked {
23894
24143
  }
23895
24144
  .v-system-bar:not(.v-system-bar--absolute) {
23896
24145
  padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
23897
- }.v-tabs {
23898
- display: flex;
23899
- height: var(--v-tabs-height);
23900
- }
23901
- .v-tabs--density-default {
23902
- --v-tabs-height: 48px;
23903
- }
23904
- .v-tabs--density-default.v-tabs--stacked {
23905
- --v-tabs-height: 72px;
23906
- }
23907
-
23908
- .v-tabs--density-comfortable {
23909
- --v-tabs-height: 44px;
23910
- }
23911
- .v-tabs--density-comfortable.v-tabs--stacked {
23912
- --v-tabs-height: 68px;
23913
- }
23914
-
23915
- .v-tabs--density-compact {
23916
- --v-tabs-height: 36px;
23917
- }
23918
- .v-tabs--density-compact.v-tabs--stacked {
23919
- --v-tabs-height: 60px;
23920
- }
23921
-
23922
- .v-tabs.v-slide-group--vertical {
23923
- height: auto;
23924
- flex: none;
23925
- --v-tabs-height: 48px;
23926
- }
23927
-
23928
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
23929
- margin-inline-start: 42px;
23930
- }
23931
-
23932
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
23933
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
23934
- margin-inline-end: auto;
23935
- }
23936
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
23937
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
23938
- margin-inline-start: auto;
23939
- }
23940
-
23941
- .v-tabs--grow {
23942
- flex-grow: 1;
23943
- }
23944
- .v-tabs--grow .v-tab {
23945
- flex: 1 0 auto;
23946
- max-width: none;
23947
- }
23948
-
23949
- .v-tabs--align-tabs-end .v-tab:first-child {
23950
- margin-inline-start: auto;
23951
- }
23952
- .v-tabs--align-tabs-end .v-tab:last-child {
23953
- margin-inline-end: 0;
23954
- }
23955
-
23956
- @media (max-width: 1279.98px) {
23957
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
23958
- margin-inline-start: 52px;
23959
- }
23960
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
23961
- margin-inline-end: 52px;
23962
- }
23963
24146
  }.v-tab.v-tab.v-btn {
23964
24147
  height: var(--v-tabs-height);
23965
24148
  border-radius: 0;
@@ -23989,159 +24172,72 @@ html.v-overlay-scroll-blocked {
23989
24172
  top: 0;
23990
24173
  height: 100%;
23991
24174
  width: 2px;
23992
- }.v-switch .v-label {
23993
- padding-inline-start: 10px;
23994
- }
23995
- .v-switch .v-switch__thumb {
23996
- background-color: rgb(var(--v-theme-surface-bright));
23997
- color: rgb(var(--v-theme-on-surface-bright));
23998
- }
23999
-
24000
- .v-switch__loader {
24001
- display: flex;
24002
- }
24003
- .v-switch__loader .v-progress-circular {
24004
- color: rgb(var(--v-theme-surface));
24005
- }
24006
-
24007
- .v-switch__track,
24008
- .v-switch__thumb {
24009
- transition: none;
24010
- }
24011
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24012
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24013
- background-color: rgb(var(--v-theme-error));
24014
- color: rgb(var(--v-theme-on-error));
24015
- }
24016
-
24017
- .v-switch__track-true {
24018
- margin-inline-end: auto;
24019
- }
24020
- .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
24021
- opacity: 0;
24022
- }
24023
-
24024
- .v-switch__track-false {
24025
- margin-inline-start: auto;
24026
- }
24027
- .v-selection-control--dirty .v-switch__track-false {
24028
- opacity: 0;
24029
- }
24030
-
24031
- .v-switch__track {
24032
- display: inline-flex;
24033
- align-items: center;
24034
- font-size: 0.5rem;
24035
- padding: 0 5px;
24036
- background-color: rgb(var(--v-theme-surface-variant));
24037
- border-radius: 9999px;
24038
- height: 14px;
24039
- opacity: 0.6;
24040
- min-width: 36px;
24041
- cursor: pointer;
24042
- transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24043
- }
24044
- .v-switch--inset .v-switch__track {
24045
- border-radius: 9999px;
24046
- font-size: 0.75rem;
24047
- height: 32px;
24048
- min-width: 52px;
24049
- }
24050
-
24051
- .v-switch__thumb {
24052
- align-items: center;
24053
- border-radius: 50%;
24175
+ }.v-tabs {
24054
24176
  display: flex;
24055
- font-size: 0.75rem;
24056
- height: 20px;
24057
- justify-content: center;
24058
- width: 20px;
24059
- pointer-events: none;
24060
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24061
- position: relative;
24062
- overflow: hidden;
24063
- 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));
24064
- }
24065
- .v-switch--inset .v-switch__thumb {
24066
- height: 24px;
24067
- width: 24px;
24068
- transform: scale(0.6666666667);
24069
- 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));
24070
- }
24071
- .v-switch--inset .v-switch__thumb--filled {
24072
- transform: none;
24073
- }
24074
- .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
24075
- transform: none;
24076
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
24077
- }
24078
-
24079
- .v-switch.v-input {
24080
- flex: 0 1 auto;
24081
- }
24082
- .v-switch .v-selection-control {
24083
- min-height: var(--v-input-control-height);
24177
+ height: var(--v-tabs-height);
24084
24178
  }
24085
- .v-switch .v-selection-control__input {
24086
- border-radius: 50%;
24087
- transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
24088
- transform: translateX(-10px);
24089
- position: absolute;
24179
+ .v-tabs--density-default {
24180
+ --v-tabs-height: 48px;
24090
24181
  }
24091
- .v-switch .v-selection-control__input .v-icon {
24092
- position: absolute;
24182
+ .v-tabs--density-default.v-tabs--stacked {
24183
+ --v-tabs-height: 72px;
24093
24184
  }
24094
- .v-switch .v-selection-control--dirty .v-selection-control__input {
24095
- transform: translateX(10px);
24185
+
24186
+ .v-tabs--density-comfortable {
24187
+ --v-tabs-height: 44px;
24096
24188
  }
24097
- .v-switch.v-switch--indeterminate .v-selection-control__input {
24098
- transform: scale(0.8);
24189
+ .v-tabs--density-comfortable.v-tabs--stacked {
24190
+ --v-tabs-height: 68px;
24099
24191
  }
24100
- .v-switch.v-switch--indeterminate .v-switch__thumb {
24101
- transform: scale(0.75);
24102
- box-shadow: none;
24192
+
24193
+ .v-tabs--density-compact {
24194
+ --v-tabs-height: 36px;
24103
24195
  }
24104
- .v-switch.v-switch--inset .v-selection-control__wrapper {
24105
- width: auto;
24106
- }.v-textarea .v-field {
24107
- --v-textarea-control-height: var(--v-input-control-height);
24196
+ .v-tabs--density-compact.v-tabs--stacked {
24197
+ --v-tabs-height: 60px;
24108
24198
  }
24109
- .v-textarea .v-field__field {
24110
- --v-input-control-height: var(--v-textarea-control-height);
24199
+
24200
+ .v-tabs.v-slide-group--vertical {
24201
+ height: auto;
24202
+ flex: none;
24203
+ --v-tabs-height: 48px;
24111
24204
  }
24112
- .v-textarea .v-field__input {
24113
- flex: 1 1 auto;
24114
- outline: none;
24115
- -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));
24116
- 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));
24205
+
24206
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
24207
+ margin-inline-start: 42px;
24117
24208
  }
24118
- .v-textarea .v-field__input.v-textarea__sizer {
24119
- visibility: hidden;
24120
- position: absolute;
24121
- top: 0;
24122
- left: 0;
24123
- height: 0 !important;
24124
- min-height: 0 !important;
24125
- pointer-events: none;
24209
+
24210
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
24211
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
24212
+ margin-inline-end: auto;
24126
24213
  }
24127
- .v-textarea--no-resize .v-field__input {
24128
- resize: none;
24214
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
24215
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
24216
+ margin-inline-start: auto;
24129
24217
  }
24130
- .v-textarea .v-field--no-label textarea,
24131
- .v-textarea .v-field--active textarea {
24132
- opacity: 1;
24218
+
24219
+ .v-tabs--grow {
24220
+ flex-grow: 1;
24133
24221
  }
24134
- .v-textarea textarea {
24135
- opacity: 0;
24136
- flex: 1;
24137
- min-width: 0;
24138
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24222
+ .v-tabs--grow .v-tab {
24223
+ flex: 1 0 auto;
24224
+ max-width: none;
24139
24225
  }
24140
- .v-textarea textarea:focus, .v-textarea textarea:active {
24141
- outline: none;
24226
+
24227
+ .v-tabs--align-tabs-end .v-tab:first-child {
24228
+ margin-inline-start: auto;
24142
24229
  }
24143
- .v-textarea textarea:invalid {
24144
- box-shadow: none;
24230
+ .v-tabs--align-tabs-end .v-tab:last-child {
24231
+ margin-inline-end: 0;
24232
+ }
24233
+
24234
+ @media (max-width: 1279.98px) {
24235
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
24236
+ margin-inline-start: 52px;
24237
+ }
24238
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24239
+ margin-inline-end: 52px;
24240
+ }
24145
24241
  }/* region BLOCK */
24146
24242
  .v-text-field input {
24147
24243
  color: inherit;
@@ -24209,7 +24305,46 @@ html.v-overlay-scroll-blocked {
24209
24305
  padding-inline-end: var(--v-field-padding-end);
24210
24306
  }
24211
24307
 
24212
- /* endregion */.v-table {
24308
+ /* endregion */.v-textarea .v-field {
24309
+ --v-textarea-control-height: var(--v-input-control-height);
24310
+ }
24311
+ .v-textarea .v-field__field {
24312
+ --v-input-control-height: var(--v-textarea-control-height);
24313
+ }
24314
+ .v-textarea .v-field__input {
24315
+ flex: 1 1 auto;
24316
+ outline: none;
24317
+ -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));
24318
+ 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));
24319
+ }
24320
+ .v-textarea .v-field__input.v-textarea__sizer {
24321
+ visibility: hidden;
24322
+ position: absolute;
24323
+ top: 0;
24324
+ left: 0;
24325
+ height: 0 !important;
24326
+ min-height: 0 !important;
24327
+ pointer-events: none;
24328
+ }
24329
+ .v-textarea--no-resize .v-field__input {
24330
+ resize: none;
24331
+ }
24332
+ .v-textarea .v-field--no-label textarea,
24333
+ .v-textarea .v-field--active textarea {
24334
+ opacity: 1;
24335
+ }
24336
+ .v-textarea textarea {
24337
+ opacity: 0;
24338
+ flex: 1;
24339
+ min-width: 0;
24340
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24341
+ }
24342
+ .v-textarea textarea:focus, .v-textarea textarea:active {
24343
+ outline: none;
24344
+ }
24345
+ .v-textarea textarea:invalid {
24346
+ box-shadow: none;
24347
+ }.v-table {
24213
24348
  background: rgb(var(--v-theme-surface));
24214
24349
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
24215
24350
  font-size: 0.875rem;
@@ -24766,6 +24901,28 @@ html.v-overlay-scroll-blocked {
24766
24901
 
24767
24902
  .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
24768
24903
  padding-inline-end: 0;
24904
+ }.v-tooltip > .v-overlay__content {
24905
+ background: rgb(var(--v-theme-surface-variant));
24906
+ color: rgb(var(--v-theme-on-surface-variant));
24907
+ border-radius: 4px;
24908
+ font-size: 0.875rem;
24909
+ line-height: 1.6;
24910
+ display: inline-block;
24911
+ padding: 5px 16px;
24912
+ text-transform: initial;
24913
+ width: auto;
24914
+ opacity: 1;
24915
+ pointer-events: none;
24916
+ transition-property: opacity, transform;
24917
+ overflow-wrap: break-word;
24918
+ }
24919
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
24920
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24921
+ transition-duration: 150ms;
24922
+ }
24923
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
24924
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24925
+ transition-duration: 75ms;
24769
24926
  }.v-toolbar {
24770
24927
  align-items: flex-start;
24771
24928
  display: flex;
@@ -24773,7 +24930,6 @@ html.v-overlay-scroll-blocked {
24773
24930
  flex-direction: column;
24774
24931
  justify-content: space-between;
24775
24932
  max-width: 100%;
24776
- overflow: hidden;
24777
24933
  position: relative;
24778
24934
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24779
24935
  transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
@@ -24821,6 +24977,9 @@ html.v-overlay-scroll-blocked {
24821
24977
  width: 100%;
24822
24978
  }
24823
24979
 
24980
+ .v-toolbar__content {
24981
+ overflow: hidden;
24982
+ }
24824
24983
  .v-toolbar__content > .v-btn:first-child {
24825
24984
  margin-inline-start: 10px;
24826
24985
  }
@@ -24902,28 +25061,6 @@ html.v-overlay-scroll-blocked {
24902
25061
  }
24903
25062
  .v-virtual-scroll__container {
24904
25063
  display: block;
24905
- }.v-tooltip > .v-overlay__content {
24906
- background: rgb(var(--v-theme-surface-variant));
24907
- color: rgb(var(--v-theme-on-surface-variant));
24908
- border-radius: 4px;
24909
- font-size: 0.875rem;
24910
- line-height: 1.6;
24911
- display: inline-block;
24912
- padding: 5px 16px;
24913
- text-transform: initial;
24914
- width: auto;
24915
- opacity: 1;
24916
- pointer-events: none;
24917
- transition-property: opacity, transform;
24918
- overflow-wrap: break-word;
24919
- }
24920
- .v-tooltip > .v-overlay__content[class*=enter-active] {
24921
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
24922
- transition-duration: 150ms;
24923
- }
24924
- .v-tooltip > .v-overlay__content[class*=leave-active] {
24925
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
24926
- transition-duration: 75ms;
24927
25064
  }.v-window {
24928
25065
  overflow: hidden;
24929
25066
  }
@@ -24993,18 +25130,6 @@ html.v-overlay-scroll-blocked {
24993
25130
  }
24994
25131
  .v-window-y-reverse-transition-leave-to {
24995
25132
  transform: translateY(100%);
24996
- }.v-app-bar {
24997
- display: flex;
24998
- }
24999
- .v-app-bar.v-toolbar {
25000
- background: rgb(var(--v-theme-surface));
25001
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
25002
- }
25003
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
25004
- 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));
25005
- }
25006
- .v-app-bar:not(.v-toolbar--absolute) {
25007
- padding-inline-end: var(--v-scrollbar-offset);
25008
25133
  }.v-color-picker-canvas {
25009
25134
  display: flex;
25010
25135
  position: relative;
@@ -25055,6 +25180,41 @@ html.v-overlay-scroll-blocked {
25055
25180
  }
25056
25181
  .v-color-picker-edit__input span {
25057
25182
  font-size: 0.75rem;
25183
+ }.v-color-picker-swatches {
25184
+ overflow-y: auto;
25185
+ }
25186
+ .v-color-picker-swatches > div {
25187
+ display: flex;
25188
+ flex-wrap: wrap;
25189
+ justify-content: center;
25190
+ padding: 8px;
25191
+ }
25192
+
25193
+ .v-color-picker-swatches__swatch {
25194
+ display: flex;
25195
+ flex-direction: column;
25196
+ margin-bottom: 10px;
25197
+ }
25198
+
25199
+ .v-color-picker-swatches__color {
25200
+ position: relative;
25201
+ height: 18px;
25202
+ max-height: 18px;
25203
+ width: 45px;
25204
+ margin: 2px 4px;
25205
+ border-radius: 2px;
25206
+ -webkit-user-select: none;
25207
+ user-select: none;
25208
+ overflow: hidden;
25209
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25210
+ cursor: pointer;
25211
+ }
25212
+ .v-color-picker-swatches__color > div {
25213
+ display: flex;
25214
+ align-items: center;
25215
+ justify-content: center;
25216
+ width: 100%;
25217
+ height: 100%;
25058
25218
  }.v-color-picker-preview__alpha .v-slider-track__background {
25059
25219
  background-color: transparent !important;
25060
25220
  }
@@ -25124,41 +25284,6 @@ html.v-overlay-scroll-blocked {
25124
25284
  .v-color-picker-preview__eye-dropper {
25125
25285
  position: relative;
25126
25286
  margin-right: 12px;
25127
- }.v-color-picker-swatches {
25128
- overflow-y: auto;
25129
- }
25130
- .v-color-picker-swatches > div {
25131
- display: flex;
25132
- flex-wrap: wrap;
25133
- justify-content: center;
25134
- padding: 8px;
25135
- }
25136
-
25137
- .v-color-picker-swatches__swatch {
25138
- display: flex;
25139
- flex-direction: column;
25140
- margin-bottom: 10px;
25141
- }
25142
-
25143
- .v-color-picker-swatches__color {
25144
- position: relative;
25145
- height: 18px;
25146
- max-height: 18px;
25147
- width: 45px;
25148
- margin: 2px 4px;
25149
- border-radius: 2px;
25150
- -webkit-user-select: none;
25151
- user-select: none;
25152
- overflow: hidden;
25153
- background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
25154
- cursor: pointer;
25155
- }
25156
- .v-color-picker-swatches__color > div {
25157
- display: flex;
25158
- align-items: center;
25159
- justify-content: center;
25160
- width: 100%;
25161
- height: 100%;
25162
25287
  }.v-slider-thumb {
25163
25288
  touch-action: none;
25164
25289
  color: rgb(var(--v-theme-surface-variant));