vuetify 3.5.6 → 3.5.8

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 (96) hide show
  1. package/dist/_component-variables-labs.sass +2 -0
  2. package/dist/json/attributes.json +461 -41
  3. package/dist/json/importMap-labs.json +16 -4
  4. package/dist/json/importMap.json +120 -120
  5. package/dist/json/tags.json +120 -0
  6. package/dist/json/web-types.json +1173 -53
  7. package/dist/vuetify-labs.css +1547 -1407
  8. package/dist/vuetify-labs.d.ts +1672 -127
  9. package/dist/vuetify-labs.esm.js +428 -94
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +428 -94
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +438 -432
  14. package/dist/vuetify.d.ts +78 -142
  15. package/dist/vuetify.esm.js +121 -82
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +121 -82
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +147 -135
  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 +28 -27
  25. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  26. package/lib/components/VAutocomplete/VAutocomplete.sass +2 -2
  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 +40 -27
  31. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  32. package/lib/components/VCombobox/VCombobox.sass +2 -2
  33. package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
  34. package/lib/components/VDataIterator/index.d.mts +50 -94
  35. package/lib/components/VDatePicker/VDatePickerMonth.mjs +1 -1
  36. package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  37. package/lib/components/VLayout/index.d.mts +8 -6
  38. package/lib/components/VSelect/VSelect.mjs +18 -17
  39. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  40. package/lib/components/VSwitch/VSwitch.css +9 -5
  41. package/lib/components/VSwitch/VSwitch.mjs +2 -0
  42. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  43. package/lib/components/VSwitch/VSwitch.sass +10 -7
  44. package/lib/components/VSwitch/_variables.scss +2 -0
  45. package/lib/components/VToolbar/VToolbar.css +3 -1
  46. package/lib/components/VToolbar/VToolbar.sass +2 -1
  47. package/lib/components/index.d.mts +38 -105
  48. package/lib/composables/date/adapters/vuetify.mjs +21 -3
  49. package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
  50. package/lib/composables/layout.mjs.map +1 -1
  51. package/lib/composables/transition.mjs +7 -5
  52. package/lib/composables/transition.mjs.map +1 -1
  53. package/lib/entry-bundler.mjs +1 -1
  54. package/lib/framework.mjs +1 -1
  55. package/lib/index.d.mts +42 -37
  56. package/lib/labs/VCalendar/VCalendarInterval.css +1 -0
  57. package/lib/labs/VCalendar/VCalendarInterval.sass +1 -0
  58. package/lib/labs/VCalendar/VCalendarIntervalEvent.css +6 -0
  59. package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs +5 -2
  60. package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs.map +1 -1
  61. package/lib/labs/VCalendar/VCalendarIntervalEvent.sass +6 -0
  62. package/lib/labs/VEmptyState/VEmptyState.css +59 -0
  63. package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
  64. package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
  65. package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
  66. package/lib/labs/VEmptyState/_variables.scss +22 -0
  67. package/lib/labs/VEmptyState/index.d.mts +415 -0
  68. package/lib/labs/VEmptyState/index.mjs +2 -0
  69. package/lib/labs/VEmptyState/index.mjs.map +1 -0
  70. package/lib/labs/VFab/VFab.css +69 -0
  71. package/lib/labs/VFab/VFab.mjs +114 -0
  72. package/lib/labs/VFab/VFab.mjs.map +1 -0
  73. package/lib/labs/VFab/VFab.sass +82 -0
  74. package/lib/labs/VFab/_mixins.scss +22 -0
  75. package/lib/labs/VFab/_variables.scss +33 -0
  76. package/lib/labs/VFab/index.d.mts +656 -0
  77. package/lib/labs/VFab/index.mjs +2 -0
  78. package/lib/labs/VFab/index.mjs.map +1 -0
  79. package/lib/labs/VSparkline/VBarline.mjs +8 -7
  80. package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
  81. package/lib/labs/VSparkline/VTrendline.mjs +14 -6
  82. package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
  83. package/lib/labs/VSparkline/index.d.mts +27 -0
  84. package/lib/labs/VSparkline/util/line.mjs +6 -0
  85. package/lib/labs/VSparkline/util/line.mjs.map +1 -1
  86. package/lib/labs/VSpeedDial/VSpeedDial.css +3 -0
  87. package/lib/labs/VSpeedDial/VSpeedDial.mjs +56 -0
  88. package/lib/labs/VSpeedDial/VSpeedDial.mjs.map +1 -0
  89. package/lib/labs/VSpeedDial/VSpeedDial.sass +2 -0
  90. package/lib/labs/VSpeedDial/index.d.mts +649 -0
  91. package/lib/labs/VSpeedDial/index.mjs +2 -0
  92. package/lib/labs/VSpeedDial/index.mjs.map +1 -0
  93. package/lib/labs/components.d.mts +1907 -193
  94. package/lib/labs/components.mjs +3 -0
  95. package/lib/labs/components.mjs.map +1 -1
  96. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.6
2
+ * Vuetify v3.5.8
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17061,6 +17061,61 @@ html.overflow-y-hidden {
17061
17061
  }
17062
17062
  .v-calendar-weekly .v-calendar__container.days__0 {
17063
17063
  grid-template-columns: repeat(1, 1fr);
17064
+ }.v-calendar-header {
17065
+ align-items: center;
17066
+ display: flex;
17067
+ min-height: 64px;
17068
+ }
17069
+
17070
+ .v-calendar-header__today {
17071
+ margin-inline-end: 24px;
17072
+ }
17073
+
17074
+ .v-calendar-header__title {
17075
+ font-size: 1.5rem;
17076
+ margin-inline-start: 24px;
17077
+ }.v-calendar-day__row-with-label {
17078
+ display: grid;
17079
+ grid-template-columns: 48px 8px 1fr;
17080
+ border-right: thin solid #e0e0e0;
17081
+ }
17082
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
17083
+ position: relative;
17084
+ border-right: thin solid #e0e0e0;
17085
+ }
17086
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
17087
+ content: "";
17088
+ border-bottom: thin solid #e0e0e0;
17089
+ position: absolute;
17090
+ width: 100%;
17091
+ margin-top: -1px;
17092
+ z-index: 3;
17093
+ pointer-events: none;
17094
+ }
17095
+ .v-calendar-day__row-with-label .v-calendar-day__row-label {
17096
+ font-size: 10px;
17097
+ text-align: center;
17098
+ position: relative;
17099
+ top: -8px;
17100
+ }
17101
+ .v-calendar-day__row-with-label .v-calendar-day__row-content {
17102
+ border-bottom: thin solid #e0e0e0;
17103
+ }
17104
+ .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17105
+ border-bottom: none;
17106
+ }
17107
+
17108
+ .v-calendar-day__row-without-label {
17109
+ display: grid;
17110
+ grid-template-columns: 1fr;
17111
+ border-right: thin solid #e0e0e0;
17112
+ }
17113
+ .v-calendar-day__row-without-label .v-calendar-day__row-content {
17114
+ overflow: hidden;
17115
+ border-bottom: thin solid #e0e0e0;
17116
+ }
17117
+ .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17118
+ border-bottom: none;
17064
17119
  }.v-calendar-weekly {
17065
17120
  width: 100%;
17066
17121
  height: 100%;
@@ -17284,111 +17339,6 @@ html.overflow-y-hidden {
17284
17339
  }
17285
17340
  .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
17286
17341
  border-right: none;
17287
- }.v-calendar-header {
17288
- align-items: center;
17289
- display: flex;
17290
- min-height: 64px;
17291
- }
17292
-
17293
- .v-calendar-header__today {
17294
- margin-inline-end: 24px;
17295
- }
17296
-
17297
- .v-calendar-header__title {
17298
- font-size: 1.5rem;
17299
- margin-inline-start: 24px;
17300
- }.v-picker.v-sheet {
17301
- 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));
17302
- border-radius: 4px;
17303
- display: grid;
17304
- grid-auto-rows: min-content;
17305
- grid-template-areas: "title" "header" "body";
17306
- overflow: hidden;
17307
- }
17308
- .v-picker.v-sheet.v-picker--with-actions {
17309
- grid-template-areas: "title" "header" "body" "actions";
17310
- }
17311
-
17312
- .v-picker__body {
17313
- grid-area: body;
17314
- }
17315
-
17316
- .v-picker__header {
17317
- grid-area: header;
17318
- }
17319
-
17320
- .v-picker__actions {
17321
- grid-area: actions;
17322
- padding: 0 12px 12px;
17323
- display: flex;
17324
- align-items: center;
17325
- justify-content: flex-end;
17326
- }
17327
- .v-picker__actions .v-btn {
17328
- min-width: 48px;
17329
- }
17330
- .v-picker__actions .v-btn:not(:last-child) {
17331
- margin-inline-end: 8px;
17332
- }
17333
-
17334
- .v-picker--landscape {
17335
- grid-template-areas: "title" "header body" "header body";
17336
- }
17337
-
17338
- .v-picker--landscape.v-picker--with-actions {
17339
- grid-template-areas: "title" "header body" "header actions";
17340
- }
17341
-
17342
- .v-picker-title {
17343
- text-transform: uppercase;
17344
- font-size: 0.75rem;
17345
- grid-area: title;
17346
- padding-inline: 24px 12px;
17347
- padding-top: 16px;
17348
- padding-bottom: 16px;
17349
- font-weight: 400;
17350
- letter-spacing: 0.1666666667em;
17351
- }.v-calendar-day__row-with-label {
17352
- display: grid;
17353
- grid-template-columns: 48px 8px 1fr;
17354
- border-right: thin solid #e0e0e0;
17355
- }
17356
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
17357
- position: relative;
17358
- border-right: thin solid #e0e0e0;
17359
- }
17360
- .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
17361
- content: "";
17362
- border-bottom: thin solid #e0e0e0;
17363
- position: absolute;
17364
- width: 100%;
17365
- margin-top: -1px;
17366
- z-index: 3;
17367
- pointer-events: none;
17368
- }
17369
- .v-calendar-day__row-with-label .v-calendar-day__row-label {
17370
- font-size: 10px;
17371
- text-align: center;
17372
- position: relative;
17373
- top: -8px;
17374
- }
17375
- .v-calendar-day__row-with-label .v-calendar-day__row-content {
17376
- border-bottom: thin solid #e0e0e0;
17377
- }
17378
- .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17379
- border-bottom: none;
17380
- }
17381
-
17382
- .v-calendar-day__row-without-label {
17383
- display: grid;
17384
- grid-template-columns: 1fr;
17385
- border-right: thin solid #e0e0e0;
17386
- }
17387
- .v-calendar-day__row-without-label .v-calendar-day__row-content {
17388
- border-bottom: thin solid #e0e0e0;
17389
- }
17390
- .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
17391
- border-bottom: none;
17392
17342
  }.v-calendar-month__day {
17393
17343
  position: relative;
17394
17344
  display: flex;
@@ -17452,115 +17402,190 @@ html.overflow-y-hidden {
17452
17402
 
17453
17403
  .v-calendar-weekly__day-alldayevents-container {
17454
17404
  min-height: 24px;
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));
17459
- }
17460
-
17461
- .v-application__wrap {
17462
- -webkit-backface-visibility: hidden;
17463
- backface-visibility: hidden;
17464
- display: flex;
17465
- flex-direction: column;
17405
+ }.v-fab {
17406
+ align-items: center;
17407
+ display: inline-flex;
17466
17408
  flex: 1 1 auto;
17467
- max-width: 100%;
17468
- min-height: 100vh;
17469
- min-height: 100dvh;
17409
+ pointer-events: none;
17470
17410
  position: relative;
17471
- }.v-app-bar {
17472
- display: flex;
17473
- }
17474
- .v-app-bar.v-toolbar {
17475
- background: rgb(var(--v-theme-surface));
17476
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17411
+ transition-duration: 0.2s;
17412
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
17413
+ vertical-align: middle;
17477
17414
  }
17478
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
17479
- 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));
17415
+ .v-fab .v-btn {
17416
+ pointer-events: auto;
17480
17417
  }
17481
- .v-app-bar:not(.v-toolbar--absolute) {
17482
- padding-inline-end: var(--v-scrollbar-offset);
17483
- }.v-autocomplete .v-field .v-text-field__prefix,
17484
- .v-autocomplete .v-field .v-text-field__suffix,
17485
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17486
- cursor: text;
17418
+ .v-fab .v-btn--variant-elevated {
17419
+ 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));
17487
17420
  }
17488
- .v-autocomplete .v-field .v-field__input > input {
17489
- flex: 1 1;
17421
+ .v-fab--app, .v-fab--absolute {
17422
+ display: flex;
17490
17423
  }
17491
- .v-autocomplete .v-field input {
17492
- min-width: 64px;
17424
+ .v-fab--start, .v-fab--left {
17425
+ justify-content: flex-start;
17493
17426
  }
17494
- .v-autocomplete .v-field:not(.v-field--focused) input {
17495
- min-width: 0;
17427
+ .v-fab--center {
17428
+ align-items: center;
17429
+ justify-content: center;
17496
17430
  }
17497
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17498
- margin-inline-end: 2px;
17431
+ .v-fab--end, .v-fab--right {
17432
+ justify-content: flex-end;
17499
17433
  }
17500
- .v-autocomplete .v-autocomplete__selection-text {
17501
- overflow: hidden;
17502
- text-overflow: ellipsis;
17503
- white-space: nowrap;
17434
+ .v-fab--bottom {
17435
+ align-items: flex-end;
17504
17436
  }
17505
-
17506
- .v-autocomplete__content {
17507
- overflow: hidden;
17508
- 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));
17509
- border-radius: 4px;
17437
+ .v-fab--top {
17438
+ align-items: flex-start;
17510
17439
  }
17511
- .v-autocomplete__mask {
17512
- background: rgb(var(--v-theme-surface-light));
17440
+ .v-fab--extended .v-btn {
17441
+ border-radius: 9999px !important;
17513
17442
  }
17514
- .v-autocomplete__selection {
17443
+
17444
+ .v-fab__container {
17445
+ align-self: center;
17515
17446
  display: inline-flex;
17516
- align-items: center;
17517
- height: 1.5rem;
17518
- letter-spacing: inherit;
17519
- line-height: inherit;
17520
- max-width: calc(100% - 2px - 2px);
17447
+ vertical-align: middle;
17521
17448
  }
17522
- .v-autocomplete__selection:first-child {
17523
- margin-inline-start: 0;
17449
+ .v-fab--app .v-fab__container {
17450
+ margin: 12px;
17524
17451
  }
17525
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17526
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17527
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17528
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17529
- top: 0px;
17452
+ .v-fab--absolute .v-fab__container {
17453
+ position: absolute;
17454
+ z-index: 4;
17530
17455
  }
17531
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17532
- opacity: var(--v-medium-emphasis-opacity);
17456
+ .v-fab--offset.v-fab--top .v-fab__container {
17457
+ transform: translateY(-50%);
17533
17458
  }
17534
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17535
- opacity: 1;
17459
+ .v-fab--offset.v-fab--bottom .v-fab__container {
17460
+ transform: translateY(50%);
17536
17461
  }
17537
- .v-autocomplete--selecting-index .v-field__input > input {
17538
- caret-color: transparent;
17462
+ .v-fab--top .v-fab__container {
17463
+ top: 0;
17539
17464
  }
17540
- .v-autocomplete--single.v-text-field .v-field--focused input {
17541
- flex: 1 1;
17542
- position: absolute;
17543
- left: 0;
17544
- right: 0;
17545
- width: 100%;
17546
- padding-inline: inherit;
17465
+ .v-fab--bottom .v-fab__container {
17466
+ bottom: 0;
17547
17467
  }
17548
- .v-autocomplete--single .v-field--active input {
17549
- transition: none;
17468
+ .v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
17469
+ left: 0;
17550
17470
  }
17551
- .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
17552
- opacity: 0;
17471
+ .v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
17472
+ right: 0;
17473
+ }.v-calendar-internal-event {
17474
+ overflow: hidden;
17475
+ padding: 4px;
17476
+ text-overflow: ellipsis;
17477
+ white-space: nowrap;
17478
+ }.v-picker.v-sheet {
17479
+ 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));
17480
+ border-radius: 4px;
17481
+ display: grid;
17482
+ grid-auto-rows: min-content;
17483
+ grid-template-areas: "title" "header" "body";
17484
+ overflow: hidden;
17553
17485
  }
17554
- .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
17555
- opacity: 0;
17486
+ .v-picker.v-sheet.v-picker--with-actions {
17487
+ grid-template-areas: "title" "header" "body" "actions";
17556
17488
  }
17557
- .v-autocomplete__menu-icon {
17558
- margin-inline-start: 4px;
17559
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17489
+
17490
+ .v-picker__body {
17491
+ grid-area: body;
17560
17492
  }
17561
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17562
- opacity: var(--v-high-emphasis-opacity);
17563
- transform: rotate(180deg);
17493
+
17494
+ .v-picker__header {
17495
+ grid-area: header;
17496
+ }
17497
+
17498
+ .v-picker__actions {
17499
+ grid-area: actions;
17500
+ padding: 0 12px 12px;
17501
+ display: flex;
17502
+ align-items: center;
17503
+ justify-content: flex-end;
17504
+ }
17505
+ .v-picker__actions .v-btn {
17506
+ min-width: 48px;
17507
+ }
17508
+ .v-picker__actions .v-btn:not(:last-child) {
17509
+ margin-inline-end: 8px;
17510
+ }
17511
+
17512
+ .v-picker--landscape {
17513
+ grid-template-areas: "title" "header body" "header body";
17514
+ }
17515
+
17516
+ .v-picker--landscape.v-picker--with-actions {
17517
+ grid-template-areas: "title" "header body" "header actions";
17518
+ }
17519
+
17520
+ .v-picker-title {
17521
+ text-transform: uppercase;
17522
+ font-size: 0.75rem;
17523
+ grid-area: title;
17524
+ padding-inline: 24px 12px;
17525
+ padding-top: 16px;
17526
+ padding-bottom: 16px;
17527
+ font-weight: 400;
17528
+ letter-spacing: 0.1666666667em;
17529
+ }.v-empty-state {
17530
+ align-items: center;
17531
+ display: flex;
17532
+ flex-direction: column;
17533
+ justify-content: center;
17534
+ min-height: 100%;
17535
+ padding: 16px;
17536
+ }
17537
+ .v-empty-state--start {
17538
+ align-items: flex-start;
17539
+ }
17540
+ .v-empty-state--center {
17541
+ align-items: center;
17542
+ }
17543
+ .v-empty-state--end {
17544
+ align-items: flex-end;
17545
+ }
17546
+
17547
+ .v-empty-state__media {
17548
+ text-align: center;
17549
+ width: 100%;
17550
+ }
17551
+
17552
+ .v-empty-state__headline {
17553
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
17554
+ font-size: 3.75rem;
17555
+ font-weight: 300;
17556
+ line-height: 3.75rem;
17557
+ }
17558
+
17559
+ .v-empty-state__title {
17560
+ font-size: 1.25rem;
17561
+ font-weight: 500;
17562
+ line-height: 2rem;
17563
+ text-align: center;
17564
+ }
17565
+
17566
+ .v-empty-state__text {
17567
+ font-size: 1rem;
17568
+ font-weight: 400;
17569
+ line-height: 1.5rem;
17570
+ padding: 0 16px;
17571
+ text-align: center;
17572
+ }
17573
+
17574
+ .v-empty-state__content {
17575
+ padding: 24px 0;
17576
+ }
17577
+
17578
+ .v-empty-state__actions {
17579
+ display: flex;
17580
+ gap: 8px;
17581
+ padding: 16px;
17582
+ }
17583
+
17584
+ .v-empty-state__action-btn.v-btn {
17585
+ background-color: rgb(var(--v-theme-surface-variant));
17586
+ color: rgb(var(--v-theme-on-surface-variant));
17587
+ }.v-speed-dial__content {
17588
+ gap: 8px;
17564
17589
  }.v-alert {
17565
17590
  display: grid;
17566
17591
  flex: 1 1;
@@ -17771,6 +17796,34 @@ html.overflow-y-hidden {
17771
17796
  text-transform: none;
17772
17797
  word-break: normal;
17773
17798
  word-wrap: break-word;
17799
+ }.v-application {
17800
+ display: flex;
17801
+ background: rgb(var(--v-theme-background));
17802
+ color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
17803
+ }
17804
+
17805
+ .v-application__wrap {
17806
+ -webkit-backface-visibility: hidden;
17807
+ backface-visibility: hidden;
17808
+ display: flex;
17809
+ flex-direction: column;
17810
+ flex: 1 1 auto;
17811
+ max-width: 100%;
17812
+ min-height: 100vh;
17813
+ min-height: 100dvh;
17814
+ position: relative;
17815
+ }.v-app-bar {
17816
+ display: flex;
17817
+ }
17818
+ .v-app-bar.v-toolbar {
17819
+ background: rgb(var(--v-theme-surface));
17820
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17821
+ }
17822
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
17823
+ 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));
17824
+ }
17825
+ .v-app-bar:not(.v-toolbar--absolute) {
17826
+ padding-inline-end: var(--v-scrollbar-offset);
17774
17827
  }.v-avatar {
17775
17828
  flex: none;
17776
17829
  align-items: center;
@@ -17858,105 +17911,115 @@ html.overflow-y-hidden {
17858
17911
  .v-avatar .v-img {
17859
17912
  height: 100%;
17860
17913
  width: 100%;
17861
- }.v-badge {
17862
- display: inline-block;
17863
- line-height: 1;
17914
+ }.v-autocomplete .v-field .v-text-field__prefix,
17915
+ .v-autocomplete .v-field .v-text-field__suffix,
17916
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17917
+ cursor: text;
17864
17918
  }
17865
-
17866
- .v-badge__badge {
17867
- align-items: center;
17868
- display: inline-flex;
17869
- border-radius: 10px;
17870
- font-size: 0.75rem;
17871
- font-weight: 500;
17872
- height: 1.25rem;
17873
- justify-content: center;
17874
- min-width: 20px;
17875
- padding: 4px 6px;
17876
- pointer-events: auto;
17877
- position: absolute;
17878
- text-align: center;
17879
- text-indent: 0;
17880
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
17881
- white-space: nowrap;
17882
- background: rgb(var(--v-theme-surface-variant));
17883
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
17919
+ .v-autocomplete .v-field .v-field__input > input {
17920
+ flex: 1 1;
17884
17921
  }
17885
- .v-badge--bordered .v-badge__badge::after {
17886
- border-radius: inherit;
17887
- border-style: solid;
17888
- border-width: 2px;
17889
- bottom: 0;
17890
- color: rgb(var(--v-theme-background));
17891
- content: "";
17892
- left: 0;
17893
- position: absolute;
17894
- right: 0;
17895
- top: 0;
17896
- transform: scale(1.05);
17922
+ .v-autocomplete .v-field input {
17923
+ min-width: 64px;
17897
17924
  }
17898
- .v-badge--dot .v-badge__badge {
17899
- border-radius: 4.5px;
17900
- height: 9px;
17925
+ .v-autocomplete .v-field:not(.v-field--focused) input {
17901
17926
  min-width: 0;
17902
- padding: 0;
17903
- width: 9px;
17904
- }
17905
- .v-badge--dot .v-badge__badge::after {
17906
- border-width: 1.5px;
17907
17927
  }
17908
- .v-badge--inline .v-badge__badge {
17909
- position: relative;
17910
- vertical-align: middle;
17911
- }
17912
- .v-badge__badge .v-icon {
17913
- color: inherit;
17914
- font-size: 0.75rem;
17915
- margin: 0 -2px;
17928
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17929
+ margin-inline-end: 2px;
17916
17930
  }
17917
- .v-badge__badge img,
17918
- .v-badge__badge .v-img {
17919
- height: 100%;
17920
- width: 100%;
17931
+ .v-autocomplete .v-autocomplete__selection-text {
17932
+ overflow: hidden;
17933
+ text-overflow: ellipsis;
17934
+ white-space: nowrap;
17921
17935
  }
17922
17936
 
17923
- .v-badge__wrapper {
17924
- display: flex;
17925
- position: relative;
17937
+ .v-autocomplete__content {
17938
+ overflow: hidden;
17939
+ 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));
17940
+ border-radius: 4px;
17926
17941
  }
17927
- .v-badge--inline .v-badge__wrapper {
17928
- align-items: center;
17942
+ .v-autocomplete__mask {
17943
+ background: rgb(var(--v-theme-surface-light));
17944
+ }
17945
+ .v-autocomplete__selection {
17929
17946
  display: inline-flex;
17930
- justify-content: center;
17931
- margin: 0 4px;
17932
- }.v-bottom-navigation {
17933
- display: flex;
17934
- max-width: 100%;
17935
- overflow: hidden;
17936
- position: absolute;
17937
- transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17938
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
17939
- border-style: solid;
17940
- border-width: 0;
17941
- border-radius: 0;
17942
- background: rgb(var(--v-theme-surface));
17943
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
17947
+ align-items: center;
17948
+ height: 1.5rem;
17949
+ letter-spacing: inherit;
17950
+ line-height: inherit;
17951
+ max-width: calc(100% - 2px - 2px);
17944
17952
  }
17945
- .v-bottom-navigation--border {
17946
- border-width: thin;
17947
- box-shadow: none;
17953
+ .v-autocomplete__selection:first-child {
17954
+ margin-inline-start: 0;
17948
17955
  }
17949
- .v-bottom-navigation--active {
17950
- 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));
17956
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17957
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17958
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17959
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17960
+ top: 0px;
17951
17961
  }
17952
-
17953
- .v-bottom-navigation__content {
17954
- display: flex;
17955
- flex: none;
17956
- font-size: 0.75rem;
17957
- justify-content: center;
17958
- transition: inherit;
17959
- width: 100%;
17962
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
17963
+ opacity: var(--v-medium-emphasis-opacity);
17964
+ }
17965
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17966
+ opacity: 1;
17967
+ }
17968
+ .v-autocomplete--selecting-index .v-field__input > input {
17969
+ caret-color: transparent;
17970
+ }
17971
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
17972
+ flex: 1 1;
17973
+ position: absolute;
17974
+ left: 0;
17975
+ right: 0;
17976
+ width: 100%;
17977
+ padding-inline: inherit;
17978
+ }
17979
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
17980
+ transition: none;
17981
+ }
17982
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
17983
+ opacity: 0;
17984
+ }
17985
+ .v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
17986
+ opacity: 0;
17987
+ }
17988
+ .v-autocomplete__menu-icon {
17989
+ margin-inline-start: 4px;
17990
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17991
+ }
17992
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17993
+ opacity: var(--v-high-emphasis-opacity);
17994
+ transform: rotate(180deg);
17995
+ }.v-bottom-navigation {
17996
+ display: flex;
17997
+ max-width: 100%;
17998
+ overflow: hidden;
17999
+ position: absolute;
18000
+ transition: transform, color 0.2s, 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18001
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18002
+ border-style: solid;
18003
+ border-width: 0;
18004
+ border-radius: 0;
18005
+ background: rgb(var(--v-theme-surface));
18006
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
18007
+ }
18008
+ .v-bottom-navigation--border {
18009
+ border-width: thin;
18010
+ box-shadow: none;
18011
+ }
18012
+ .v-bottom-navigation--active {
18013
+ 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));
18014
+ }
18015
+
18016
+ .v-bottom-navigation__content {
18017
+ display: flex;
18018
+ flex: none;
18019
+ font-size: 0.75rem;
18020
+ justify-content: center;
18021
+ transition: inherit;
18022
+ width: 100%;
17960
18023
  }
17961
18024
  .v-bottom-navigation .v-bottom-navigation__content > .v-btn {
17962
18025
  font-size: inherit;
@@ -17984,63 +18047,6 @@ html.overflow-y-hidden {
17984
18047
  }
17985
18048
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
17986
18049
  transform: translateY(0.5rem);
17987
- }.v-breadcrumbs {
17988
- display: flex;
17989
- align-items: center;
17990
- line-height: 1.375rem;
17991
- padding: 16px 12px;
17992
- }
17993
- .v-breadcrumbs--rounded {
17994
- border-radius: 4px;
17995
- }
17996
- .v-breadcrumbs--density-default {
17997
- padding-top: 16px;
17998
- padding-bottom: 16px;
17999
- }
18000
-
18001
- .v-breadcrumbs--density-comfortable {
18002
- padding-top: 12px;
18003
- padding-bottom: 12px;
18004
- }
18005
-
18006
- .v-breadcrumbs--density-compact {
18007
- padding-top: 8px;
18008
- padding-bottom: 8px;
18009
- }
18010
-
18011
- .v-breadcrumbs__prepend {
18012
- align-items: center;
18013
- display: inline-flex;
18014
- }
18015
-
18016
- .v-breadcrumbs-item {
18017
- align-items: center;
18018
- color: inherit;
18019
- display: inline-flex;
18020
- padding: 0 4px;
18021
- text-decoration: none;
18022
- vertical-align: middle;
18023
- }
18024
- .v-breadcrumbs-item--disabled {
18025
- opacity: var(--v-disabled-opacity);
18026
- pointer-events: none;
18027
- }
18028
- .v-breadcrumbs-item--link {
18029
- color: inherit;
18030
- text-decoration: none;
18031
- }
18032
- .v-breadcrumbs-item--link:hover {
18033
- text-decoration: underline;
18034
- }
18035
- .v-breadcrumbs-item .v-icon {
18036
- font-size: 1rem;
18037
- margin-inline: -4px 2px;
18038
- }
18039
-
18040
- .v-breadcrumbs-divider {
18041
- display: inline-block;
18042
- padding: 0 8px;
18043
- vertical-align: middle;
18044
18050
  }.v-banner {
18045
18051
  display: grid;
18046
18052
  flex: 1 1;
@@ -18198,6 +18204,134 @@ html.overflow-y-hidden {
18198
18204
  }
18199
18205
  .v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
18200
18206
  align-self: flex-start;
18207
+ }.v-badge {
18208
+ display: inline-block;
18209
+ line-height: 1;
18210
+ }
18211
+
18212
+ .v-badge__badge {
18213
+ align-items: center;
18214
+ display: inline-flex;
18215
+ border-radius: 10px;
18216
+ font-size: 0.75rem;
18217
+ font-weight: 500;
18218
+ height: 1.25rem;
18219
+ justify-content: center;
18220
+ min-width: 20px;
18221
+ padding: 4px 6px;
18222
+ pointer-events: auto;
18223
+ position: absolute;
18224
+ text-align: center;
18225
+ text-indent: 0;
18226
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
18227
+ white-space: nowrap;
18228
+ background: rgb(var(--v-theme-surface-variant));
18229
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
18230
+ }
18231
+ .v-badge--bordered .v-badge__badge::after {
18232
+ border-radius: inherit;
18233
+ border-style: solid;
18234
+ border-width: 2px;
18235
+ bottom: 0;
18236
+ color: rgb(var(--v-theme-background));
18237
+ content: "";
18238
+ left: 0;
18239
+ position: absolute;
18240
+ right: 0;
18241
+ top: 0;
18242
+ transform: scale(1.05);
18243
+ }
18244
+ .v-badge--dot .v-badge__badge {
18245
+ border-radius: 4.5px;
18246
+ height: 9px;
18247
+ min-width: 0;
18248
+ padding: 0;
18249
+ width: 9px;
18250
+ }
18251
+ .v-badge--dot .v-badge__badge::after {
18252
+ border-width: 1.5px;
18253
+ }
18254
+ .v-badge--inline .v-badge__badge {
18255
+ position: relative;
18256
+ vertical-align: middle;
18257
+ }
18258
+ .v-badge__badge .v-icon {
18259
+ color: inherit;
18260
+ font-size: 0.75rem;
18261
+ margin: 0 -2px;
18262
+ }
18263
+ .v-badge__badge img,
18264
+ .v-badge__badge .v-img {
18265
+ height: 100%;
18266
+ width: 100%;
18267
+ }
18268
+
18269
+ .v-badge__wrapper {
18270
+ display: flex;
18271
+ position: relative;
18272
+ }
18273
+ .v-badge--inline .v-badge__wrapper {
18274
+ align-items: center;
18275
+ display: inline-flex;
18276
+ justify-content: center;
18277
+ margin: 0 4px;
18278
+ }.v-breadcrumbs {
18279
+ display: flex;
18280
+ align-items: center;
18281
+ line-height: 1.375rem;
18282
+ padding: 16px 12px;
18283
+ }
18284
+ .v-breadcrumbs--rounded {
18285
+ border-radius: 4px;
18286
+ }
18287
+ .v-breadcrumbs--density-default {
18288
+ padding-top: 16px;
18289
+ padding-bottom: 16px;
18290
+ }
18291
+
18292
+ .v-breadcrumbs--density-comfortable {
18293
+ padding-top: 12px;
18294
+ padding-bottom: 12px;
18295
+ }
18296
+
18297
+ .v-breadcrumbs--density-compact {
18298
+ padding-top: 8px;
18299
+ padding-bottom: 8px;
18300
+ }
18301
+
18302
+ .v-breadcrumbs__prepend {
18303
+ align-items: center;
18304
+ display: inline-flex;
18305
+ }
18306
+
18307
+ .v-breadcrumbs-item {
18308
+ align-items: center;
18309
+ color: inherit;
18310
+ display: inline-flex;
18311
+ padding: 0 4px;
18312
+ text-decoration: none;
18313
+ vertical-align: middle;
18314
+ }
18315
+ .v-breadcrumbs-item--disabled {
18316
+ opacity: var(--v-disabled-opacity);
18317
+ pointer-events: none;
18318
+ }
18319
+ .v-breadcrumbs-item--link {
18320
+ color: inherit;
18321
+ text-decoration: none;
18322
+ }
18323
+ .v-breadcrumbs-item--link:hover {
18324
+ text-decoration: underline;
18325
+ }
18326
+ .v-breadcrumbs-item .v-icon {
18327
+ font-size: 1rem;
18328
+ margin-inline: -4px 2px;
18329
+ }
18330
+
18331
+ .v-breadcrumbs-divider {
18332
+ display: inline-block;
18333
+ padding: 0 8px;
18334
+ vertical-align: middle;
18201
18335
  }.bottom-sheet-transition-enter-from {
18202
18336
  transform: translateY(100%);
18203
18337
  }
@@ -19061,53 +19195,10 @@ html.overflow-y-hidden {
19061
19195
  flex-direction: column;
19062
19196
  height: 100% !important;
19063
19197
  width: 50px;
19064
- }.v-checkbox.v-input {
19065
- flex: 0 1 auto;
19066
- }
19067
- .v-checkbox .v-selection-control {
19068
- min-height: var(--v-input-control-height);
19069
- }.v-chip-group {
19070
- display: flex;
19071
- max-width: 100%;
19072
- min-width: 0;
19073
- overflow-x: auto;
19074
- padding: 4px 0;
19075
- }
19076
- .v-chip-group .v-chip {
19077
- margin: 4px 8px 4px 0;
19078
- }
19079
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19080
- opacity: var(--v-activated-opacity);
19081
- }
19082
-
19083
- .v-chip-group--column .v-slide-group__content {
19084
- white-space: normal;
19085
- flex-wrap: wrap;
19086
- max-width: 100%;
19087
- }.v-color-picker {
19088
- align-self: flex-start;
19089
- contain: content;
19090
- }
19091
- .v-color-picker.v-sheet {
19092
- 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));
19093
- border-radius: 4px;
19094
- }
19095
-
19096
- .v-color-picker__controls {
19097
- display: flex;
19098
- flex-direction: column;
19099
- padding: 16px;
19100
- }
19101
-
19102
- .v-color-picker--flat {
19103
- 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));
19104
- }
19105
- .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19106
- 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));
19107
- }.v-chip {
19108
- align-items: center;
19109
- display: inline-flex;
19110
- font-weight: 400;
19198
+ }.v-chip {
19199
+ align-items: center;
19200
+ display: inline-flex;
19201
+ font-weight: 400;
19111
19202
  max-width: 100%;
19112
19203
  min-width: 0;
19113
19204
  overflow: hidden;
@@ -19511,87 +19602,49 @@ html.overflow-y-hidden {
19511
19602
 
19512
19603
  .v-chip--label {
19513
19604
  border-radius: 4px;
19514
- }.v-combobox .v-field .v-text-field__prefix,
19515
- .v-combobox .v-field .v-text-field__suffix,
19516
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
19517
- cursor: text;
19518
- }
19519
- .v-combobox .v-field .v-field__input > input {
19520
- flex: 1 1;
19521
- }
19522
- .v-combobox .v-field input {
19523
- min-width: 64px;
19524
- }
19525
- .v-combobox .v-field:not(.v-field--focused) input {
19526
- min-width: 0;
19527
- }
19528
- .v-combobox .v-field--dirty .v-combobox__selection {
19529
- margin-inline-end: 2px;
19605
+ }.v-checkbox.v-input {
19606
+ flex: 0 1 auto;
19530
19607
  }
19531
- .v-combobox .v-combobox__selection-text {
19532
- overflow: hidden;
19533
- text-overflow: ellipsis;
19534
- white-space: nowrap;
19608
+ .v-checkbox .v-selection-control {
19609
+ min-height: var(--v-input-control-height);
19610
+ }.v-color-picker {
19611
+ align-self: flex-start;
19612
+ contain: content;
19535
19613
  }
19536
-
19537
- .v-combobox__content {
19538
- overflow: hidden;
19539
- 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));
19614
+ .v-color-picker.v-sheet {
19615
+ 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));
19540
19616
  border-radius: 4px;
19541
19617
  }
19542
- .v-combobox__mask {
19543
- background: rgb(var(--v-theme-surface-light));
19544
- }
19545
- .v-combobox__selection {
19546
- display: inline-flex;
19547
- align-items: center;
19548
- height: 1.5rem;
19549
- letter-spacing: inherit;
19550
- line-height: inherit;
19551
- max-width: calc(100% - 2px - 2px);
19552
- }
19553
- .v-combobox__selection:first-child {
19554
- margin-inline-start: 0;
19555
- }
19556
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
19557
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
19558
- .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
19559
- .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
19560
- top: 0px;
19561
- }
19562
- .v-combobox--selecting-index .v-combobox__selection {
19563
- opacity: var(--v-medium-emphasis-opacity);
19564
- }
19565
- .v-combobox--selecting-index .v-combobox__selection--selected {
19566
- opacity: 1;
19567
- }
19568
- .v-combobox--selecting-index .v-field__input > input {
19569
- caret-color: transparent;
19570
- }
19571
- .v-combobox--single.v-text-field .v-field--focused input {
19572
- flex: 1 1;
19573
- position: absolute;
19574
- left: 0;
19575
- right: 0;
19576
- width: 100%;
19577
- padding-inline: inherit;
19618
+
19619
+ .v-color-picker__controls {
19620
+ display: flex;
19621
+ flex-direction: column;
19622
+ padding: 16px;
19578
19623
  }
19579
- .v-combobox--single .v-field--active input {
19580
- transition: none;
19624
+
19625
+ .v-color-picker--flat {
19626
+ 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));
19581
19627
  }
19582
- .v-combobox--single .v-field--dirty:not(.v-field--focused) input {
19583
- opacity: 0;
19628
+ .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
19629
+ 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));
19630
+ }.v-chip-group {
19631
+ display: flex;
19632
+ max-width: 100%;
19633
+ min-width: 0;
19634
+ overflow-x: auto;
19635
+ padding: 4px 0;
19584
19636
  }
19585
- .v-combobox--single .v-field--focused .v-combobox__selection {
19586
- opacity: 0;
19637
+ .v-chip-group .v-chip {
19638
+ margin: 4px 8px 4px 0;
19587
19639
  }
19588
- .v-combobox__menu-icon {
19589
- margin-inline-start: 4px;
19590
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
19640
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
19641
+ opacity: var(--v-activated-opacity);
19591
19642
  }
19592
- .v-combobox--active-menu .v-combobox__menu-icon {
19593
- opacity: var(--v-high-emphasis-opacity);
19594
- transform: rotate(180deg);
19643
+
19644
+ .v-chip-group--column .v-slide-group__content {
19645
+ white-space: normal;
19646
+ flex-wrap: wrap;
19647
+ max-width: 100%;
19595
19648
  }.v-container {
19596
19649
  width: 100%;
19597
19650
  padding: 16px;
@@ -20264,11 +20317,127 @@ html.overflow-y-hidden {
20264
20317
  .offset-xxl-11 {
20265
20318
  margin-inline-start: 91.6666666667%;
20266
20319
  }
20320
+ }.v-combobox .v-field .v-text-field__prefix,
20321
+ .v-combobox .v-field .v-text-field__suffix,
20322
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
20323
+ cursor: text;
20324
+ }
20325
+ .v-combobox .v-field .v-field__input > input {
20326
+ flex: 1 1;
20327
+ }
20328
+ .v-combobox .v-field input {
20329
+ min-width: 64px;
20330
+ }
20331
+ .v-combobox .v-field:not(.v-field--focused) input {
20332
+ min-width: 0;
20333
+ }
20334
+ .v-combobox .v-field--dirty .v-combobox__selection {
20335
+ margin-inline-end: 2px;
20336
+ }
20337
+ .v-combobox .v-combobox__selection-text {
20338
+ overflow: hidden;
20339
+ text-overflow: ellipsis;
20340
+ white-space: nowrap;
20341
+ }
20342
+
20343
+ .v-combobox__content {
20344
+ overflow: hidden;
20345
+ 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));
20346
+ border-radius: 4px;
20347
+ }
20348
+ .v-combobox__mask {
20349
+ background: rgb(var(--v-theme-surface-light));
20350
+ }
20351
+ .v-combobox__selection {
20352
+ display: inline-flex;
20353
+ align-items: center;
20354
+ height: 1.5rem;
20355
+ letter-spacing: inherit;
20356
+ line-height: inherit;
20357
+ max-width: calc(100% - 2px - 2px);
20358
+ }
20359
+ .v-combobox__selection:first-child {
20360
+ margin-inline-start: 0;
20361
+ }
20362
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
20363
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
20364
+ .v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
20365
+ .v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
20366
+ top: 0px;
20367
+ }
20368
+ .v-combobox--selecting-index .v-combobox__selection {
20369
+ opacity: var(--v-medium-emphasis-opacity);
20370
+ }
20371
+ .v-combobox--selecting-index .v-combobox__selection--selected {
20372
+ opacity: 1;
20373
+ }
20374
+ .v-combobox--selecting-index .v-field__input > input {
20375
+ caret-color: transparent;
20376
+ }
20377
+ .v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
20378
+ flex: 1 1;
20379
+ position: absolute;
20380
+ left: 0;
20381
+ right: 0;
20382
+ width: 100%;
20383
+ padding-inline: inherit;
20384
+ }
20385
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
20386
+ transition: none;
20387
+ }
20388
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
20389
+ opacity: 0;
20390
+ }
20391
+ .v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
20392
+ opacity: 0;
20393
+ }
20394
+ .v-combobox__menu-icon {
20395
+ margin-inline-start: 4px;
20396
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20397
+ }
20398
+ .v-combobox--active-menu .v-combobox__menu-icon {
20399
+ opacity: var(--v-high-emphasis-opacity);
20400
+ transform: rotate(180deg);
20267
20401
  }.v-counter {
20268
20402
  color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
20269
20403
  flex: 0 1 auto;
20270
20404
  font-size: 12px;
20271
20405
  transition-duration: 150ms;
20406
+ }.v-data-table-footer {
20407
+ display: flex;
20408
+ align-items: center;
20409
+ flex-wrap: wrap;
20410
+ padding: 4px;
20411
+ justify-content: flex-end;
20412
+ }
20413
+
20414
+ .v-data-table-footer__items-per-page {
20415
+ display: flex;
20416
+ align-items: center;
20417
+ justify-content: center;
20418
+ }
20419
+ .v-data-table-footer__items-per-page > span {
20420
+ padding-inline-end: 8px;
20421
+ }
20422
+ .v-data-table-footer__items-per-page > .v-select {
20423
+ width: 90px;
20424
+ }
20425
+
20426
+ .v-data-table-footer__info {
20427
+ display: flex;
20428
+ justify-content: flex-end;
20429
+ min-width: 116px;
20430
+ padding: 0 16px;
20431
+ }
20432
+
20433
+ .v-data-table-footer__pagination {
20434
+ display: flex;
20435
+ align-items: center;
20436
+ margin-inline-start: 16px;
20437
+ }
20438
+
20439
+ .v-data-table-footer__page {
20440
+ padding: 0 8px;
20272
20441
  }.v-data-table {
20273
20442
  width: 100%;
20274
20443
  }
@@ -20402,42 +20571,7 @@ html.overflow-y-hidden {
20402
20571
  .v-data-table-rows-loading,
20403
20572
  .v-data-table-rows-no-data {
20404
20573
  text-align: center;
20405
- }.v-data-table-footer {
20406
- display: flex;
20407
- align-items: center;
20408
- flex-wrap: wrap;
20409
- padding: 4px;
20410
- justify-content: flex-end;
20411
- }
20412
-
20413
- .v-data-table-footer__items-per-page {
20414
- display: flex;
20415
- align-items: center;
20416
- justify-content: center;
20417
- }
20418
- .v-data-table-footer__items-per-page > span {
20419
- padding-inline-end: 8px;
20420
- }
20421
- .v-data-table-footer__items-per-page > .v-select {
20422
- width: 90px;
20423
- }
20424
-
20425
- .v-data-table-footer__info {
20426
- display: flex;
20427
- justify-content: flex-end;
20428
- min-width: 116px;
20429
- padding: 0 16px;
20430
- }
20431
-
20432
- .v-data-table-footer__pagination {
20433
- display: flex;
20434
- align-items: center;
20435
- margin-inline-start: 16px;
20436
- }
20437
-
20438
- .v-data-table-footer__page {
20439
- padding: 0 8px;
20440
- }.v-dialog {
20574
+ }.v-dialog {
20441
20575
  align-items: center;
20442
20576
  justify-content: center;
20443
20577
  margin: auto;
@@ -20525,6 +20659,91 @@ html.overflow-y-hidden {
20525
20659
  -webkit-backface-visibility: hidden;
20526
20660
  backface-visibility: hidden;
20527
20661
  overflow-y: auto;
20662
+ }.v-divider {
20663
+ display: block;
20664
+ flex: 1 1 100%;
20665
+ height: 0px;
20666
+ max-height: 0px;
20667
+ opacity: var(--v-border-opacity);
20668
+ transition: inherit;
20669
+ border-style: solid;
20670
+ border-width: thin 0 0 0;
20671
+ }
20672
+ .v-divider--vertical {
20673
+ align-self: stretch;
20674
+ border-width: 0 thin 0 0;
20675
+ display: inline-flex;
20676
+ height: inherit;
20677
+ margin-left: -1px;
20678
+ max-height: 100%;
20679
+ max-width: 0px;
20680
+ vertical-align: text-bottom;
20681
+ width: 0px;
20682
+ }
20683
+ .v-divider--inset:not(.v-divider--vertical) {
20684
+ max-width: calc(100% - 72px);
20685
+ margin-inline-start: 72px;
20686
+ }
20687
+ .v-divider--inset.v-divider--vertical {
20688
+ margin-bottom: 8px;
20689
+ margin-top: 8px;
20690
+ max-height: calc(100% - 16px);
20691
+ }.v-date-picker-controls {
20692
+ display: flex;
20693
+ align-items: center;
20694
+ justify-content: space-between;
20695
+ font-size: 0.875rem;
20696
+ padding-top: 4px;
20697
+ padding-bottom: 4px;
20698
+ padding-inline-start: 6px;
20699
+ padding-inline-end: 12px;
20700
+ }
20701
+ .v-date-picker-controls > .v-btn:first-child {
20702
+ text-transform: none;
20703
+ font-weight: 400;
20704
+ line-height: initial;
20705
+ letter-spacing: initial;
20706
+ }
20707
+ .v-date-picker-controls--variant-classic {
20708
+ padding-inline-start: 12px;
20709
+ }
20710
+ .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20711
+ opacity: 0.7;
20712
+ }
20713
+ .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20714
+ cursor: pointer;
20715
+ }
20716
+ .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20717
+ opacity: 1;
20718
+ }
20719
+ .v-date-picker-controls .v-btn:last-child {
20720
+ margin-inline-start: 4px;
20721
+ }
20722
+ .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20723
+ transform: rotate(180deg);
20724
+ }
20725
+
20726
+ .v-date-picker-controls__date {
20727
+ margin-inline-end: 4px;
20728
+ }
20729
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20730
+ margin: auto;
20731
+ text-align: center;
20732
+ }
20733
+
20734
+ .v-date-picker-controls__month {
20735
+ display: flex;
20736
+ }
20737
+ .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20738
+ flex-direction: row-reverse;
20739
+ }
20740
+
20741
+ .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20742
+ flex: 1 0 auto;
20743
+ }
20744
+
20745
+ .v-date-picker__title {
20746
+ display: inline-block;
20528
20747
  }.v-date-picker-header {
20529
20748
  align-items: flex-end;
20530
20749
  height: 70px;
@@ -20585,6 +20804,31 @@ html.overflow-y-hidden {
20585
20804
  .date-picker-header-reverse-transition-leave-to {
20586
20805
  opacity: 0;
20587
20806
  transform: translate(0, 100%);
20807
+ }.v-date-picker-months {
20808
+ height: 288px;
20809
+ }
20810
+
20811
+ .v-date-picker-months__content {
20812
+ align-items: center;
20813
+ display: grid;
20814
+ flex: 1 1;
20815
+ height: inherit;
20816
+ justify-content: space-around;
20817
+ grid-template-columns: repeat(2, 1fr);
20818
+ grid-gap: 0px 24px;
20819
+ padding-inline-start: 36px;
20820
+ padding-inline-end: 36px;
20821
+ }
20822
+ .v-date-picker-months__content .v-btn {
20823
+ text-transform: none;
20824
+ padding-inline-start: 8px;
20825
+ padding-inline-end: 8px;
20826
+ }.v-date-picker {
20827
+ overflow: hidden;
20828
+ width: 328px;
20829
+ }
20830
+ .v-date-picker--show-week {
20831
+ width: 368px;
20588
20832
  }.v-date-picker-month {
20589
20833
  display: flex;
20590
20834
  justify-content: center;
@@ -20640,87 +20884,6 @@ html.overflow-y-hidden {
20640
20884
 
20641
20885
  .v-date-picker-month__day--hide-adjacent {
20642
20886
  opacity: 0;
20643
- }.v-date-picker {
20644
- overflow: hidden;
20645
- width: 328px;
20646
- }
20647
- .v-date-picker--show-week {
20648
- width: 368px;
20649
- }.v-date-picker-controls {
20650
- display: flex;
20651
- align-items: center;
20652
- justify-content: space-between;
20653
- font-size: 0.875rem;
20654
- padding-top: 4px;
20655
- padding-bottom: 4px;
20656
- padding-inline-start: 6px;
20657
- padding-inline-end: 12px;
20658
- }
20659
- .v-date-picker-controls > .v-btn:first-child {
20660
- text-transform: none;
20661
- font-weight: 400;
20662
- line-height: initial;
20663
- letter-spacing: initial;
20664
- }
20665
- .v-date-picker-controls--variant-classic {
20666
- padding-inline-start: 12px;
20667
- }
20668
- .v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
20669
- opacity: 0.7;
20670
- }
20671
- .v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
20672
- cursor: pointer;
20673
- }
20674
- .v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
20675
- opacity: 1;
20676
- }
20677
- .v-date-picker-controls .v-btn:last-child {
20678
- margin-inline-start: 4px;
20679
- }
20680
- .v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
20681
- transform: rotate(180deg);
20682
- }
20683
-
20684
- .v-date-picker-controls__date {
20685
- margin-inline-end: 4px;
20686
- }
20687
- .v-date-picker-controls--variant-classic .v-date-picker-controls__date {
20688
- margin: auto;
20689
- text-align: center;
20690
- }
20691
-
20692
- .v-date-picker-controls__month {
20693
- display: flex;
20694
- }
20695
- .v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
20696
- flex-direction: row-reverse;
20697
- }
20698
-
20699
- .v-date-picker-controls--variant-classic .v-date-picker-controls__month {
20700
- flex: 1 0 auto;
20701
- }
20702
-
20703
- .v-date-picker__title {
20704
- display: inline-block;
20705
- }.v-date-picker-months {
20706
- height: 288px;
20707
- }
20708
-
20709
- .v-date-picker-months__content {
20710
- align-items: center;
20711
- display: grid;
20712
- flex: 1 1;
20713
- height: inherit;
20714
- justify-content: space-around;
20715
- grid-template-columns: repeat(2, 1fr);
20716
- grid-gap: 0px 24px;
20717
- padding-inline-start: 36px;
20718
- padding-inline-end: 36px;
20719
- }
20720
- .v-date-picker-months__content .v-btn {
20721
- text-transform: none;
20722
- padding-inline-start: 8px;
20723
- padding-inline-end: 8px;
20724
20887
  }.v-date-picker-years {
20725
20888
  height: 288px;
20726
20889
  overflow-y: scroll;
@@ -20946,35 +21109,6 @@ html.overflow-y-hidden {
20946
21109
  }
20947
21110
  .v-expansion-panels--tile > .v-expansion-panel {
20948
21111
  border-radius: 0;
20949
- }.v-divider {
20950
- display: block;
20951
- flex: 1 1 100%;
20952
- height: 0px;
20953
- max-height: 0px;
20954
- opacity: var(--v-border-opacity);
20955
- transition: inherit;
20956
- border-style: solid;
20957
- border-width: thin 0 0 0;
20958
- }
20959
- .v-divider--vertical {
20960
- align-self: stretch;
20961
- border-width: 0 thin 0 0;
20962
- display: inline-flex;
20963
- height: inherit;
20964
- margin-left: -1px;
20965
- max-height: 100%;
20966
- max-width: 0px;
20967
- vertical-align: text-bottom;
20968
- width: 0px;
20969
- }
20970
- .v-divider--inset:not(.v-divider--vertical) {
20971
- max-width: calc(100% - 72px);
20972
- margin-inline-start: 72px;
20973
- }
20974
- .v-divider--inset.v-divider--vertical {
20975
- margin-bottom: 8px;
20976
- margin-top: 8px;
20977
- max-height: calc(100% - 16px);
20978
21112
  }/* region INPUT */
20979
21113
  .v-field {
20980
21114
  display: grid;
@@ -21543,27 +21677,7 @@ textarea.v-field__input::placeholder {
21543
21677
  opacity: 0;
21544
21678
  }
21545
21679
 
21546
- /* endregion */.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21547
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21548
- .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21549
- .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21550
- top: 0px;
21551
- }
21552
- .v-file-input input[type=file] {
21553
- height: 100%;
21554
- left: 0;
21555
- opacity: 0;
21556
- position: absolute;
21557
- top: 0;
21558
- width: 100%;
21559
- z-index: 1;
21560
- }
21561
- .v-file-input .v-input__details {
21562
- padding-inline: 16px;
21563
- }
21564
- .v-input--plain-underlined.v-file-input .v-input__details {
21565
- padding-inline: 0;
21566
- }.v-footer {
21680
+ /* endregion */.v-footer {
21567
21681
  align-items: center;
21568
21682
  display: flex;
21569
21683
  flex: 1 1 auto;
@@ -21591,42 +21705,26 @@ textarea.v-field__input::placeholder {
21591
21705
  }
21592
21706
  .v-footer--rounded {
21593
21707
  border-radius: 4px;
21594
- }.v-img {
21595
- --v-theme-overlay-multiplier: 3;
21596
- z-index: 0;
21597
- }
21598
- .v-img--booting .v-responsive__sizer {
21599
- transition: none;
21600
- }
21601
- .v-img--rounded {
21602
- border-radius: 4px;
21708
+ }.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
21709
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
21710
+ .v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
21711
+ .v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
21712
+ top: 0px;
21603
21713
  }
21604
-
21605
- .v-img__img,
21606
- .v-img__picture,
21607
- .v-img__gradient,
21608
- .v-img__placeholder,
21609
- .v-img__error {
21610
- z-index: -1;
21714
+ .v-file-input input[type=file] {
21715
+ height: 100%;
21716
+ left: 0;
21717
+ opacity: 0;
21611
21718
  position: absolute;
21612
21719
  top: 0;
21613
- left: 0;
21614
21720
  width: 100%;
21615
- height: 100%;
21616
- }
21617
-
21618
- .v-img__img--preload {
21619
- filter: blur(4px);
21620
- }
21621
- .v-img__img--contain {
21622
- object-fit: contain;
21721
+ z-index: 1;
21623
21722
  }
21624
- .v-img__img--cover {
21625
- object-fit: cover;
21723
+ .v-file-input .v-input__details {
21724
+ padding-inline: 16px;
21626
21725
  }
21627
-
21628
- .v-img__gradient {
21629
- background-repeat: no-repeat;
21726
+ .v-input--plain-underlined.v-file-input .v-input__details {
21727
+ padding-inline: 0;
21630
21728
  }.v-icon {
21631
21729
  --v-icon-size-multiplier: 1;
21632
21730
  align-items: center;
@@ -21676,6 +21774,42 @@ textarea.v-field__input::placeholder {
21676
21774
 
21677
21775
  .v-icon--end {
21678
21776
  margin-inline-start: 8px;
21777
+ }.v-img {
21778
+ --v-theme-overlay-multiplier: 3;
21779
+ z-index: 0;
21780
+ }
21781
+ .v-img--booting .v-responsive__sizer {
21782
+ transition: none;
21783
+ }
21784
+ .v-img--rounded {
21785
+ border-radius: 4px;
21786
+ }
21787
+
21788
+ .v-img__img,
21789
+ .v-img__picture,
21790
+ .v-img__gradient,
21791
+ .v-img__placeholder,
21792
+ .v-img__error {
21793
+ z-index: -1;
21794
+ position: absolute;
21795
+ top: 0;
21796
+ left: 0;
21797
+ width: 100%;
21798
+ height: 100%;
21799
+ }
21800
+
21801
+ .v-img__img--preload {
21802
+ filter: blur(4px);
21803
+ }
21804
+ .v-img__img--contain {
21805
+ object-fit: contain;
21806
+ }
21807
+ .v-img__img--cover {
21808
+ object-fit: cover;
21809
+ }
21810
+
21811
+ .v-img__gradient {
21812
+ background-repeat: no-repeat;
21679
21813
  }.v-infinite-scroll--horizontal {
21680
21814
  display: flex;
21681
21815
  flex-direction: row;
@@ -21848,6 +21982,13 @@ textarea.v-field__input::placeholder {
21848
21982
  max-width: 100%;
21849
21983
  position: relative;
21850
21984
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21985
+ }.v-layout-item {
21986
+ position: absolute;
21987
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
21988
+ }
21989
+
21990
+ .v-layout-item--absolute {
21991
+ position: absolute;
21851
21992
  }.v-layout {
21852
21993
  --v-scrollbar-offset: 0px;
21853
21994
  display: flex;
@@ -21856,13 +21997,21 @@ textarea.v-field__input::placeholder {
21856
21997
  .v-layout--full-height {
21857
21998
  --v-scrollbar-offset: inherit;
21858
21999
  height: 100%;
21859
- }.v-layout-item {
21860
- position: absolute;
21861
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22000
+ }.v-label {
22001
+ align-items: center;
22002
+ color: inherit;
22003
+ display: inline-flex;
22004
+ font-size: 1rem;
22005
+ letter-spacing: 0.009375em;
22006
+ min-width: 0;
22007
+ opacity: var(--v-medium-emphasis-opacity);
22008
+ overflow: hidden;
22009
+ text-overflow: ellipsis;
22010
+ white-space: nowrap;
21862
22011
  }
21863
22012
 
21864
- .v-layout-item--absolute {
21865
- position: absolute;
22013
+ .v-label--clickable {
22014
+ cursor: pointer;
21866
22015
  }.v-list {
21867
22016
  overflow: auto;
21868
22017
  padding: 8px 0;
@@ -22415,21 +22564,37 @@ textarea.v-field__input::placeholder {
22415
22564
  }
22416
22565
  .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
22417
22566
  opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
22418
- }.v-label {
22419
- align-items: center;
22420
- color: inherit;
22421
- display: inline-flex;
22422
- font-size: 1rem;
22423
- letter-spacing: 0.009375em;
22424
- min-width: 0;
22567
+ }.v-menu > .v-overlay__content {
22568
+ display: flex;
22569
+ flex-direction: column;
22570
+ border-radius: 4px;
22571
+ }
22572
+ .v-menu > .v-overlay__content > .v-card,
22573
+ .v-menu > .v-overlay__content > .v-sheet,
22574
+ .v-menu > .v-overlay__content > .v-list {
22575
+ background: rgb(var(--v-theme-surface));
22576
+ border-radius: inherit;
22577
+ overflow: auto;
22578
+ height: 100%;
22579
+ 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));
22580
+ }.v-messages {
22581
+ flex: 1 1 auto;
22582
+ font-size: 12px;
22583
+ min-height: 14px;
22584
+ min-width: 1px;
22425
22585
  opacity: var(--v-medium-emphasis-opacity);
22426
- overflow: hidden;
22427
- text-overflow: ellipsis;
22428
- white-space: nowrap;
22586
+ position: relative;
22429
22587
  }
22430
-
22431
- .v-label--clickable {
22432
- cursor: pointer;
22588
+ .v-messages__message {
22589
+ line-height: 12px;
22590
+ word-break: break-word;
22591
+ overflow-wrap: break-word;
22592
+ word-wrap: break-word;
22593
+ -webkit-hyphens: auto;
22594
+ hyphens: auto;
22595
+ transition-duration: 150ms;
22596
+ }.v-locale-provider {
22597
+ display: contents;
22433
22598
  }.v-main {
22434
22599
  flex: 1 0 auto;
22435
22600
  max-width: 100%;
@@ -22458,8 +22623,62 @@ textarea.v-field__input::placeholder {
22458
22623
  --v-layout-right: 0px;
22459
22624
  --v-layout-top: 0px;
22460
22625
  --v-layout-bottom: 0px;
22461
- }.v-locale-provider {
22462
- display: contents;
22626
+ }.v-otp-input {
22627
+ border-radius: 4px;
22628
+ align-items: center;
22629
+ display: flex;
22630
+ justify-content: center;
22631
+ padding: 0.5rem 0;
22632
+ position: relative;
22633
+ }
22634
+ .v-otp-input .v-field {
22635
+ height: 100%;
22636
+ }
22637
+
22638
+ .v-otp-input__divider {
22639
+ margin: 0 8px;
22640
+ }
22641
+
22642
+ .v-otp-input__content {
22643
+ align-items: center;
22644
+ display: flex;
22645
+ gap: 0.5rem;
22646
+ height: 64px;
22647
+ padding: 0.5rem;
22648
+ justify-content: center;
22649
+ max-width: 320px;
22650
+ position: relative;
22651
+ border-radius: inherit;
22652
+ }
22653
+ .v-otp-input--divided .v-otp-input__content {
22654
+ max-width: 360px;
22655
+ }
22656
+
22657
+ .v-otp-input__field {
22658
+ color: inherit;
22659
+ font-size: 1.25rem;
22660
+ height: 100%;
22661
+ outline: none;
22662
+ text-align: center;
22663
+ width: 100%;
22664
+ }
22665
+ .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
22666
+ -webkit-appearance: none;
22667
+ margin: 0;
22668
+ }
22669
+ .v-otp-input__field[type=number] {
22670
+ -moz-appearance: textfield;
22671
+ }
22672
+
22673
+ .v-otp-input__loader {
22674
+ align-items: center;
22675
+ display: flex;
22676
+ height: 100%;
22677
+ justify-content: center;
22678
+ width: 100%;
22679
+ }
22680
+ .v-otp-input__loader .v-progress-linear {
22681
+ position: absolute;
22463
22682
  }.v-navigation-drawer {
22464
22683
  -webkit-overflow-scrolling: touch;
22465
22684
  background: rgb(var(--v-theme-surface));
@@ -22558,119 +22777,26 @@ textarea.v-field__input::placeholder {
22558
22777
  .v-navigation-drawer__append {
22559
22778
  flex: none;
22560
22779
  overflow: hidden;
22561
- }.v-menu > .v-overlay__content {
22562
- display: flex;
22563
- flex-direction: column;
22564
- border-radius: 4px;
22780
+ }.v-overlay-container {
22781
+ contain: layout;
22782
+ left: 0;
22783
+ pointer-events: none;
22784
+ position: absolute;
22785
+ top: 0;
22786
+ display: contents;
22565
22787
  }
22566
- .v-menu > .v-overlay__content > .v-card,
22567
- .v-menu > .v-overlay__content > .v-sheet,
22568
- .v-menu > .v-overlay__content > .v-list {
22569
- background: rgb(var(--v-theme-surface));
22570
- border-radius: inherit;
22571
- overflow: auto;
22572
- height: 100%;
22573
- 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));
22574
- }.v-messages {
22575
- flex: 1 1 auto;
22576
- font-size: 12px;
22577
- min-height: 14px;
22578
- min-width: 1px;
22579
- opacity: var(--v-medium-emphasis-opacity);
22580
- position: relative;
22581
- }
22582
- .v-messages__message {
22583
- line-height: 12px;
22584
- word-break: break-word;
22585
- overflow-wrap: break-word;
22586
- word-wrap: break-word;
22587
- -webkit-hyphens: auto;
22588
- hyphens: auto;
22589
- transition-duration: 150ms;
22590
- }.v-otp-input {
22591
- border-radius: 4px;
22592
- align-items: center;
22593
- display: flex;
22594
- justify-content: center;
22595
- padding: 0.5rem 0;
22596
- position: relative;
22597
- }
22598
- .v-otp-input .v-field {
22599
- height: 100%;
22600
- }
22601
-
22602
- .v-otp-input__divider {
22603
- margin: 0 8px;
22604
- }
22605
-
22606
- .v-otp-input__content {
22607
- align-items: center;
22608
- display: flex;
22609
- gap: 0.5rem;
22610
- height: 64px;
22611
- padding: 0.5rem;
22612
- justify-content: center;
22613
- max-width: 320px;
22614
- position: relative;
22615
- border-radius: inherit;
22616
- }
22617
- .v-otp-input--divided .v-otp-input__content {
22618
- max-width: 360px;
22619
- }
22620
-
22621
- .v-otp-input__field {
22622
- color: inherit;
22623
- font-size: 1.25rem;
22624
- height: 100%;
22625
- outline: none;
22626
- text-align: center;
22627
- width: 100%;
22628
- }
22629
- .v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
22630
- -webkit-appearance: none;
22631
- margin: 0;
22632
- }
22633
- .v-otp-input__field[type=number] {
22634
- -moz-appearance: textfield;
22635
- }
22636
-
22637
- .v-otp-input__loader {
22638
- align-items: center;
22639
- display: flex;
22640
- height: 100%;
22641
- justify-content: center;
22642
- width: 100%;
22643
- }
22644
- .v-otp-input__loader .v-progress-linear {
22645
- position: absolute;
22646
- }.v-pagination__list {
22647
- display: inline-flex;
22648
- list-style-type: none;
22649
- justify-content: center;
22650
- width: 100%;
22651
- }
22652
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22653
- margin: 0.3rem;
22654
- }.v-overlay-container {
22655
- contain: layout;
22656
- left: 0;
22657
- pointer-events: none;
22658
- position: absolute;
22659
- top: 0;
22660
- display: contents;
22661
- }
22662
-
22663
- .v-overlay-scroll-blocked {
22664
- padding-inline-end: var(--v-scrollbar-offset);
22665
- }
22666
- .v-overlay-scroll-blocked:not(html) {
22667
- overflow-y: hidden !important;
22668
- }
22669
- html.v-overlay-scroll-blocked {
22670
- position: fixed;
22671
- top: var(--v-body-scroll-y);
22672
- left: var(--v-body-scroll-x);
22673
- width: 100%;
22788
+
22789
+ .v-overlay-scroll-blocked {
22790
+ padding-inline-end: var(--v-scrollbar-offset);
22791
+ }
22792
+ .v-overlay-scroll-blocked:not(html) {
22793
+ overflow-y: hidden !important;
22794
+ }
22795
+ html.v-overlay-scroll-blocked {
22796
+ position: fixed;
22797
+ top: var(--v-body-scroll-y);
22798
+ left: var(--v-body-scroll-x);
22799
+ width: 100%;
22674
22800
  height: 100%;
22675
22801
  }
22676
22802
 
@@ -22720,6 +22846,116 @@ html.v-overlay-scroll-blocked {
22720
22846
  }
22721
22847
  .v-parallax--active > .v-img__img {
22722
22848
  will-change: transform;
22849
+ }.v-pagination__list {
22850
+ display: inline-flex;
22851
+ list-style-type: none;
22852
+ justify-content: center;
22853
+ width: 100%;
22854
+ }
22855
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22856
+ margin: 0.3rem;
22857
+ }.v-progress-circular {
22858
+ align-items: center;
22859
+ display: inline-flex;
22860
+ justify-content: center;
22861
+ position: relative;
22862
+ vertical-align: middle;
22863
+ }
22864
+ .v-progress-circular > svg {
22865
+ width: 100%;
22866
+ height: 100%;
22867
+ margin: auto;
22868
+ position: absolute;
22869
+ top: 0;
22870
+ bottom: 0;
22871
+ left: 0;
22872
+ right: 0;
22873
+ z-index: 0;
22874
+ }
22875
+
22876
+ .v-progress-circular__content {
22877
+ align-items: center;
22878
+ display: flex;
22879
+ justify-content: center;
22880
+ }
22881
+
22882
+ .v-progress-circular__underlay {
22883
+ color: rgba(var(--v-border-color), var(--v-border-opacity));
22884
+ stroke: currentColor;
22885
+ z-index: 1;
22886
+ }
22887
+
22888
+ .v-progress-circular__overlay {
22889
+ stroke: currentColor;
22890
+ transition: all 0.2s ease-in-out, stroke-width 0s;
22891
+ z-index: 2;
22892
+ }
22893
+
22894
+ .v-progress-circular--size-x-small {
22895
+ height: 16px;
22896
+ width: 16px;
22897
+ }
22898
+ .v-progress-circular--size-small {
22899
+ height: 24px;
22900
+ width: 24px;
22901
+ }
22902
+ .v-progress-circular--size-default {
22903
+ height: 32px;
22904
+ width: 32px;
22905
+ }
22906
+ .v-progress-circular--size-large {
22907
+ height: 48px;
22908
+ width: 48px;
22909
+ }
22910
+ .v-progress-circular--size-x-large {
22911
+ height: 64px;
22912
+ width: 64px;
22913
+ }
22914
+
22915
+ .v-progress-circular--indeterminate > svg {
22916
+ animation: progress-circular-rotate 1.4s linear infinite;
22917
+ transform-origin: center center;
22918
+ transition: all 0.2s ease-in-out;
22919
+ }
22920
+ .v-progress-circular--indeterminate .v-progress-circular__overlay {
22921
+ animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
22922
+ stroke-dasharray: 25, 200;
22923
+ stroke-dashoffset: 0;
22924
+ stroke-linecap: round;
22925
+ transform-origin: center center;
22926
+ transform: rotate(-90deg);
22927
+ }
22928
+
22929
+ .v-progress-circular--disable-shrink > svg {
22930
+ animation-duration: 0.7s;
22931
+ }
22932
+ .v-progress-circular--disable-shrink .v-progress-circular__overlay {
22933
+ animation: none;
22934
+ }
22935
+
22936
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
22937
+ .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
22938
+ animation-play-state: paused !important;
22939
+ }
22940
+
22941
+ @keyframes progress-circular-dash {
22942
+ 0% {
22943
+ stroke-dasharray: 1, 200;
22944
+ stroke-dashoffset: 0px;
22945
+ }
22946
+ 50% {
22947
+ stroke-dasharray: 100, 200;
22948
+ stroke-dashoffset: -15px;
22949
+ }
22950
+ 100% {
22951
+ stroke-dasharray: 100, 200;
22952
+ stroke-dashoffset: -124px;
22953
+ }
22954
+ }
22955
+ @keyframes progress-circular-rotate {
22956
+ 100% {
22957
+ transform: rotate(270deg);
22958
+ }
22723
22959
  }.v-progress-linear {
22724
22960
  background: transparent;
22725
22961
  overflow: hidden;
@@ -22930,120 +23166,72 @@ html.v-overlay-scroll-blocked {
22930
23166
  0% {
22931
23167
  background-position-x: var(--v-progress-linear-height);
22932
23168
  }
22933
- }.v-progress-circular {
22934
- align-items: center;
23169
+ }.v-radio-group > .v-input__control {
23170
+ flex-direction: column;
23171
+ }
23172
+ .v-radio-group > .v-input__control > .v-label {
23173
+ margin-inline-start: 16px;
23174
+ }
23175
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23176
+ padding-inline-start: 6px;
23177
+ margin-top: 8px;
23178
+ }
23179
+ .v-radio-group .v-input__details {
23180
+ padding-inline: 16px;
23181
+ }.v-rating {
23182
+ max-width: 100%;
22935
23183
  display: inline-flex;
22936
- justify-content: center;
22937
- position: relative;
22938
- vertical-align: middle;
23184
+ white-space: nowrap;
22939
23185
  }
22940
- .v-progress-circular > svg {
22941
- width: 100%;
22942
- height: 100%;
22943
- margin: auto;
22944
- position: absolute;
22945
- top: 0;
22946
- bottom: 0;
22947
- left: 0;
22948
- right: 0;
22949
- z-index: 0;
23186
+ .v-rating--readonly {
23187
+ pointer-events: none;
22950
23188
  }
22951
23189
 
22952
- .v-progress-circular__content {
23190
+ .v-rating__wrapper {
22953
23191
  align-items: center;
22954
- display: flex;
22955
- justify-content: center;
23192
+ display: inline-flex;
23193
+ flex-direction: column;
22956
23194
  }
22957
-
22958
- .v-progress-circular__underlay {
22959
- color: rgba(var(--v-border-color), var(--v-border-opacity));
22960
- stroke: currentColor;
22961
- z-index: 1;
23195
+ .v-rating__wrapper--bottom {
23196
+ flex-direction: column-reverse;
22962
23197
  }
22963
23198
 
22964
- .v-progress-circular__overlay {
22965
- stroke: currentColor;
22966
- transition: all 0.2s ease-in-out, stroke-width 0s;
22967
- z-index: 2;
23199
+ .v-rating__item {
23200
+ display: inline-flex;
23201
+ position: relative;
22968
23202
  }
22969
-
22970
- .v-progress-circular--size-x-small {
22971
- height: 16px;
22972
- width: 16px;
22973
- }
22974
- .v-progress-circular--size-small {
22975
- height: 24px;
22976
- width: 24px;
22977
- }
22978
- .v-progress-circular--size-default {
22979
- height: 32px;
22980
- width: 32px;
22981
- }
22982
- .v-progress-circular--size-large {
22983
- height: 48px;
22984
- width: 48px;
23203
+ .v-rating__item label {
23204
+ cursor: pointer;
22985
23205
  }
22986
- .v-progress-circular--size-x-large {
22987
- height: 64px;
22988
- width: 64px;
23206
+ .v-rating__item .v-btn--variant-plain {
23207
+ opacity: 1;
22989
23208
  }
22990
-
22991
- .v-progress-circular--indeterminate > svg {
22992
- animation: progress-circular-rotate 1.4s linear infinite;
22993
- transform-origin: center center;
22994
- transition: all 0.2s ease-in-out;
23209
+ .v-rating__item .v-btn {
23210
+ transition-property: transform;
22995
23211
  }
22996
- .v-progress-circular--indeterminate .v-progress-circular__overlay {
22997
- animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
22998
- stroke-dasharray: 25, 200;
22999
- stroke-dashoffset: 0;
23000
- stroke-linecap: round;
23001
- transform-origin: center center;
23002
- transform: rotate(-90deg);
23212
+ .v-rating__item .v-btn .v-icon {
23213
+ transition: inherit;
23214
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23003
23215
  }
23004
-
23005
- .v-progress-circular--disable-shrink > svg {
23006
- animation-duration: 0.7s;
23216
+ .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
23217
+ transform: scale(1.25);
23007
23218
  }
23008
- .v-progress-circular--disable-shrink .v-progress-circular__overlay {
23009
- animation: none;
23219
+ .v-rating__item--half {
23220
+ overflow: hidden;
23221
+ position: absolute;
23222
+ -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23223
+ clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23224
+ z-index: 1;
23010
23225
  }
23011
-
23012
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
23013
- .v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
23014
- animation-play-state: paused !important;
23226
+ .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
23227
+ opacity: 0;
23015
23228
  }
23016
23229
 
23017
- @keyframes progress-circular-dash {
23018
- 0% {
23019
- stroke-dasharray: 1, 200;
23020
- stroke-dashoffset: 0px;
23021
- }
23022
- 50% {
23023
- stroke-dasharray: 100, 200;
23024
- stroke-dashoffset: -15px;
23025
- }
23026
- 100% {
23027
- stroke-dasharray: 100, 200;
23028
- stroke-dashoffset: -124px;
23029
- }
23030
- }
23031
- @keyframes progress-circular-rotate {
23032
- 100% {
23033
- transform: rotate(270deg);
23034
- }
23035
- }.v-radio-group > .v-input__control {
23036
- flex-direction: column;
23037
- }
23038
- .v-radio-group > .v-input__control > .v-label {
23039
- margin-inline-start: 16px;
23040
- }
23041
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23042
- padding-inline-start: 6px;
23043
- margin-top: 8px;
23044
- }
23045
- .v-radio-group .v-input__details {
23046
- padding-inline: 16px;
23230
+ .v-rating__hidden {
23231
+ height: 0;
23232
+ opacity: 0;
23233
+ position: absolute;
23234
+ width: 0;
23047
23235
  }.v-slider .v-slider__container input {
23048
23236
  cursor: default;
23049
23237
  padding: 0;
@@ -23127,108 +23315,6 @@ html.v-overlay-scroll-blocked {
23127
23315
  flex: 1 0 0px;
23128
23316
  transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23129
23317
  pointer-events: none;
23130
- }.v-rating {
23131
- max-width: 100%;
23132
- display: inline-flex;
23133
- white-space: nowrap;
23134
- }
23135
- .v-rating--readonly {
23136
- pointer-events: none;
23137
- }
23138
-
23139
- .v-rating__wrapper {
23140
- align-items: center;
23141
- display: inline-flex;
23142
- flex-direction: column;
23143
- }
23144
- .v-rating__wrapper--bottom {
23145
- flex-direction: column-reverse;
23146
- }
23147
-
23148
- .v-rating__item {
23149
- display: inline-flex;
23150
- position: relative;
23151
- }
23152
- .v-rating__item label {
23153
- cursor: pointer;
23154
- }
23155
- .v-rating__item .v-btn--variant-plain {
23156
- opacity: 1;
23157
- }
23158
- .v-rating__item .v-btn {
23159
- transition-property: transform;
23160
- }
23161
- .v-rating__item .v-btn .v-icon {
23162
- transition: inherit;
23163
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
23164
- }
23165
- .v-rating--hover .v-rating__item:hover:not(.v-rating__item--focused) .v-btn {
23166
- transform: scale(1.25);
23167
- }
23168
- .v-rating__item--half {
23169
- overflow: hidden;
23170
- position: absolute;
23171
- -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23172
- clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
23173
- z-index: 1;
23174
- }
23175
- .v-rating__item--half .v-btn__overlay, .v-rating__item--half:hover .v-btn__overlay {
23176
- opacity: 0;
23177
- }
23178
-
23179
- .v-rating__hidden {
23180
- height: 0;
23181
- opacity: 0;
23182
- position: absolute;
23183
- width: 0;
23184
- }.v-select .v-field .v-text-field__prefix,
23185
- .v-select .v-field .v-text-field__suffix,
23186
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23187
- cursor: pointer;
23188
- }
23189
- .v-select .v-field .v-field__input > input {
23190
- align-self: flex-start;
23191
- opacity: 1;
23192
- flex: 0 0;
23193
- position: absolute;
23194
- width: 100%;
23195
- transition: none;
23196
- pointer-events: none;
23197
- caret-color: transparent;
23198
- }
23199
- .v-select .v-field--dirty .v-select__selection {
23200
- margin-inline-end: 2px;
23201
- }
23202
- .v-select .v-select__selection-text {
23203
- overflow: hidden;
23204
- text-overflow: ellipsis;
23205
- white-space: nowrap;
23206
- }
23207
- .v-select__content {
23208
- overflow: hidden;
23209
- 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));
23210
- border-radius: 4px;
23211
- }
23212
- .v-select__selection {
23213
- display: inline-flex;
23214
- align-items: center;
23215
- letter-spacing: inherit;
23216
- line-height: inherit;
23217
- max-width: 100%;
23218
- }
23219
- .v-select .v-select__selection:first-child {
23220
- margin-inline-start: 0;
23221
- }
23222
- .v-select--selected .v-field .v-field__input > input {
23223
- opacity: 0;
23224
- }
23225
- .v-select__menu-icon {
23226
- margin-inline-start: 4px;
23227
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23228
- }
23229
- .v-select--active-menu .v-select__menu-icon {
23230
- opacity: var(--v-high-emphasis-opacity);
23231
- transform: rotate(180deg);
23232
23318
  }.v-selection-control {
23233
23319
  align-items: center;
23234
23320
  contain: layout;
@@ -23330,6 +23416,62 @@ html.v-overlay-scroll-blocked {
23330
23416
  }
23331
23417
  .v-selection-control--focus-visible .v-selection-control__input::before {
23332
23418
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
23419
+ }.v-select .v-field .v-text-field__prefix,
23420
+ .v-select .v-field .v-text-field__suffix,
23421
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
23422
+ cursor: pointer;
23423
+ }
23424
+ .v-select .v-field .v-field__input > input {
23425
+ align-self: flex-start;
23426
+ opacity: 1;
23427
+ flex: 0 0;
23428
+ position: absolute;
23429
+ width: 100%;
23430
+ transition: none;
23431
+ pointer-events: none;
23432
+ caret-color: transparent;
23433
+ }
23434
+ .v-select .v-field--dirty .v-select__selection {
23435
+ margin-inline-end: 2px;
23436
+ }
23437
+ .v-select .v-select__selection-text {
23438
+ overflow: hidden;
23439
+ text-overflow: ellipsis;
23440
+ white-space: nowrap;
23441
+ }
23442
+ .v-select__content {
23443
+ overflow: hidden;
23444
+ 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));
23445
+ border-radius: 4px;
23446
+ }
23447
+ .v-select__selection {
23448
+ display: inline-flex;
23449
+ align-items: center;
23450
+ letter-spacing: inherit;
23451
+ line-height: inherit;
23452
+ max-width: 100%;
23453
+ }
23454
+ .v-select .v-select__selection:first-child {
23455
+ margin-inline-start: 0;
23456
+ }
23457
+ .v-select--selected .v-field .v-field__input > input {
23458
+ opacity: 0;
23459
+ }
23460
+ .v-select__menu-icon {
23461
+ margin-inline-start: 4px;
23462
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
23463
+ }
23464
+ .v-select--active-menu .v-select__menu-icon {
23465
+ opacity: var(--v-high-emphasis-opacity);
23466
+ transform: rotate(180deg);
23467
+ }.v-selection-control-group {
23468
+ grid-area: control;
23469
+ display: flex;
23470
+ flex-direction: column;
23471
+ }
23472
+ .v-selection-control-group--inline {
23473
+ flex-direction: row;
23474
+ flex-wrap: wrap;
23333
23475
  }.v-sheet {
23334
23476
  display: block;
23335
23477
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -23358,18 +23500,10 @@ html.v-overlay-scroll-blocked {
23358
23500
  }
23359
23501
  .v-sheet--rounded {
23360
23502
  border-radius: 4px;
23361
- }.v-selection-control-group {
23362
- grid-area: control;
23363
- display: flex;
23364
- flex-direction: column;
23365
- }
23366
- .v-selection-control-group--inline {
23367
- flex-direction: row;
23368
- flex-wrap: wrap;
23369
- }.v-skeleton-loader {
23370
- align-items: center;
23371
- background: rgb(var(--v-theme-surface));
23372
- border-radius: 4px;
23503
+ }.v-skeleton-loader {
23504
+ align-items: center;
23505
+ background: rgb(var(--v-theme-surface));
23506
+ border-radius: 4px;
23373
23507
  display: flex;
23374
23508
  flex-wrap: wrap;
23375
23509
  position: relative;
@@ -23631,120 +23765,6 @@ html.v-overlay-scroll-blocked {
23631
23765
  .v-slide-group--vertical .v-slide-group__container,
23632
23766
  .v-slide-group--vertical .v-slide-group__content {
23633
23767
  flex-direction: column;
23634
- }.v-switch .v-label {
23635
- padding-inline-start: 10px;
23636
- }
23637
- .v-switch .v-switch__thumb {
23638
- background-color: rgb(var(--v-theme-surface-bright));
23639
- color: rgb(var(--v-theme-on-surface-bright));
23640
- }
23641
-
23642
- .v-switch__loader {
23643
- display: flex;
23644
- }
23645
- .v-switch__loader .v-progress-circular {
23646
- color: rgb(var(--v-theme-surface));
23647
- }
23648
-
23649
- .v-switch__track,
23650
- .v-switch__thumb {
23651
- transition: none;
23652
- }
23653
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
23654
- .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
23655
- background-color: rgb(var(--v-theme-error));
23656
- color: rgb(var(--v-theme-on-error));
23657
- }
23658
-
23659
- .v-switch__track-true {
23660
- margin-inline-end: auto;
23661
- }
23662
- .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
23663
- opacity: 0;
23664
- }
23665
-
23666
- .v-switch__track-false {
23667
- margin-inline-start: auto;
23668
- }
23669
- .v-selection-control--dirty .v-switch__track-false {
23670
- opacity: 0;
23671
- }
23672
-
23673
- .v-switch__track {
23674
- display: inline-flex;
23675
- align-items: center;
23676
- font-size: 0.5rem;
23677
- padding: 0 5px;
23678
- background-color: rgb(var(--v-theme-surface-variant));
23679
- border-radius: 9999px;
23680
- height: 14px;
23681
- opacity: 0.6;
23682
- min-width: 36px;
23683
- cursor: pointer;
23684
- transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
23685
- }
23686
- .v-switch--inset .v-switch__track {
23687
- border-radius: 9999px;
23688
- font-size: 0.75rem;
23689
- height: 32px;
23690
- min-width: 52px;
23691
- }
23692
-
23693
- .v-switch__thumb {
23694
- align-items: center;
23695
- border-radius: 50%;
23696
- display: flex;
23697
- font-size: 0.75rem;
23698
- height: 20px;
23699
- justify-content: center;
23700
- width: 20px;
23701
- pointer-events: none;
23702
- 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);
23703
- position: relative;
23704
- overflow: hidden;
23705
- 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));
23706
- }
23707
- .v-switch--inset .v-switch__thumb {
23708
- height: 24px;
23709
- width: 24px;
23710
- transform: scale(0.6666666667);
23711
- 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));
23712
- }
23713
- .v-switch--inset .v-switch__thumb--filled {
23714
- transform: none;
23715
- }
23716
- .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
23717
- transform: none;
23718
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
23719
- }
23720
-
23721
- .v-switch.v-input {
23722
- flex: 0 1 auto;
23723
- }
23724
- .v-switch .v-selection-control {
23725
- min-height: var(--v-input-control-height);
23726
- }
23727
- .v-switch .v-selection-control__input {
23728
- border-radius: 50%;
23729
- transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
23730
- transform: translateX(-10px);
23731
- position: absolute;
23732
- }
23733
- .v-switch .v-selection-control__input .v-icon {
23734
- position: absolute;
23735
- }
23736
- .v-switch .v-selection-control--dirty .v-selection-control__input {
23737
- transform: translateX(10px);
23738
- }
23739
- .v-switch.v-switch--indeterminate .v-selection-control__input {
23740
- transform: scale(0.8);
23741
- }
23742
- .v-switch.v-switch--indeterminate .v-switch__thumb {
23743
- transform: scale(0.75);
23744
- box-shadow: none;
23745
- }
23746
- .v-switch.v-switch--inset .v-selection-control__wrapper {
23747
- width: auto;
23748
23768
  }.v-snackbar {
23749
23769
  justify-content: center;
23750
23770
  z-index: 10000;
@@ -23948,75 +23968,260 @@ html.v-overlay-scroll-blocked {
23948
23968
  font-size: 0.75rem;
23949
23969
  margin-inline-end: 8px;
23950
23970
  }
23951
- .v-stepper-item__avatar.v-avatar .v-icon {
23952
- font-size: 0.875rem;
23971
+ .v-stepper-item__avatar.v-avatar .v-icon {
23972
+ font-size: 0.875rem;
23973
+ }
23974
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
23975
+ background: rgb(var(--v-theme-surface-variant));
23976
+ }
23977
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
23978
+ background: rgb(var(--v-theme-error));
23979
+ }
23980
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
23981
+ margin-bottom: 16px;
23982
+ margin-inline-end: 0;
23983
+ }
23984
+
23985
+ .v-stepper-item__title {
23986
+ line-height: 1;
23987
+ }
23988
+ .v-stepper--mobile .v-stepper-item__title {
23989
+ display: none;
23990
+ }
23991
+
23992
+ .v-stepper-item__subtitle {
23993
+ font-size: 0.75rem;
23994
+ text-align: left;
23995
+ line-height: 1;
23996
+ opacity: var(--v-medium-emphasis-opacity);
23997
+ }
23998
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
23999
+ text-align: center;
24000
+ }
24001
+ .v-stepper--mobile .v-stepper-item__subtitle {
24002
+ display: none;
24003
+ }.v-system-bar {
24004
+ align-items: center;
24005
+ display: flex;
24006
+ flex: 1 1 auto;
24007
+ height: 24px;
24008
+ justify-content: flex-end;
24009
+ max-width: 100%;
24010
+ padding-inline: 8px;
24011
+ position: relative;
24012
+ text-align: end;
24013
+ width: 100%;
24014
+ 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));
24015
+ background: rgba(var(--v-theme-surface-light));
24016
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24017
+ font-size: 0.75rem;
24018
+ font-weight: 400;
24019
+ letter-spacing: 0.0333333333em;
24020
+ line-height: 1.25rem;
24021
+ text-transform: none;
24022
+ }
24023
+ .v-system-bar .v-icon {
24024
+ opacity: var(--v-medium-emphasis-opacity);
24025
+ }
24026
+ .v-system-bar--absolute {
24027
+ position: absolute;
24028
+ }
24029
+ .v-system-bar--fixed {
24030
+ position: fixed;
24031
+ }
24032
+ .v-system-bar--rounded {
24033
+ border-radius: 0;
24034
+ }
24035
+ .v-system-bar--window {
24036
+ height: 32px;
24037
+ }
24038
+ .v-system-bar:not(.v-system-bar--absolute) {
24039
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24040
+ }/* region BLOCK */
24041
+ .v-text-field input {
24042
+ color: inherit;
24043
+ opacity: 0;
24044
+ flex: 1;
24045
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24046
+ min-width: 0;
24047
+ }
24048
+ .v-text-field input:focus, .v-text-field input:active {
24049
+ outline: none;
24050
+ }
24051
+ .v-text-field input:invalid {
24052
+ box-shadow: none;
24053
+ }
24054
+ .v-text-field .v-field {
24055
+ cursor: text;
24056
+ }
24057
+ .v-text-field--prefixed.v-text-field .v-field__input {
24058
+ --v-field-padding-start: 6px;
24059
+ }
24060
+
24061
+ .v-text-field--suffixed.v-text-field .v-field__input {
24062
+ --v-field-padding-end: 0;
24063
+ }
24064
+
24065
+ .v-text-field .v-input__details {
24066
+ padding-inline: 16px;
24067
+ }
24068
+ .v-input--plain-underlined.v-text-field .v-input__details {
24069
+ padding-inline: 0;
24070
+ }
24071
+
24072
+ .v-text-field .v-field--no-label input,
24073
+ .v-text-field .v-field--active input {
24074
+ opacity: 1;
24075
+ }
24076
+ .v-text-field .v-field--single-line input {
24077
+ transition: none;
24078
+ }
24079
+
24080
+ /* endregion */
24081
+ /* region ELEMENTS */
24082
+ .v-text-field__prefix, .v-text-field__suffix {
24083
+ align-items: center;
24084
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
24085
+ cursor: default;
24086
+ display: flex;
24087
+ opacity: 0;
24088
+ transition: inherit;
24089
+ white-space: nowrap;
24090
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
24091
+ padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
24092
+ padding-bottom: var(--v-field-padding-bottom, 6px);
24093
+ }
24094
+ .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
24095
+ opacity: 1;
24096
+ }
24097
+ .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
24098
+ color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
24099
+ }
24100
+ .v-text-field__prefix {
24101
+ padding-inline-start: var(--v-field-padding-start);
24102
+ }
24103
+ .v-text-field__suffix {
24104
+ padding-inline-end: var(--v-field-padding-end);
24105
+ }
24106
+
24107
+ /* endregion */.v-switch .v-label {
24108
+ padding-inline-start: 10px;
24109
+ }
24110
+
24111
+ .v-switch__loader {
24112
+ display: flex;
24113
+ }
24114
+ .v-switch__loader .v-progress-circular {
24115
+ color: rgb(var(--v-theme-surface));
24116
+ }
24117
+
24118
+ .v-switch__track,
24119
+ .v-switch__thumb {
24120
+ transition: none;
24121
+ }
24122
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
24123
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
24124
+ background-color: rgb(var(--v-theme-error));
24125
+ color: rgb(var(--v-theme-on-error));
24126
+ }
24127
+
24128
+ .v-switch__track-true {
24129
+ margin-inline-end: auto;
24130
+ }
24131
+ .v-selection-control:not(.v-selection-control--dirty) .v-switch__track-true {
24132
+ opacity: 0;
24133
+ }
24134
+
24135
+ .v-switch__track-false {
24136
+ margin-inline-start: auto;
24137
+ }
24138
+ .v-selection-control--dirty .v-switch__track-false {
24139
+ opacity: 0;
24140
+ }
24141
+
24142
+ .v-switch__track {
24143
+ display: inline-flex;
24144
+ align-items: center;
24145
+ font-size: 0.5rem;
24146
+ padding: 0 5px;
24147
+ background-color: rgb(var(--v-theme-surface-variant));
24148
+ border-radius: 9999px;
24149
+ height: 14px;
24150
+ opacity: 0.6;
24151
+ min-width: 36px;
24152
+ cursor: pointer;
24153
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
24154
+ }
24155
+ .v-switch--inset .v-switch__track {
24156
+ border-radius: 9999px;
24157
+ font-size: 0.75rem;
24158
+ height: 32px;
24159
+ min-width: 52px;
24160
+ }
24161
+
24162
+ .v-switch__thumb {
24163
+ align-items: center;
24164
+ background-color: rgb(var(--v-theme-surface-bright));
24165
+ color: rgb(var(--v-theme-on-surface-bright));
24166
+ border-radius: 50%;
24167
+ display: flex;
24168
+ font-size: 0.75rem;
24169
+ height: 20px;
24170
+ justify-content: center;
24171
+ width: 20px;
24172
+ pointer-events: none;
24173
+ 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);
24174
+ position: relative;
24175
+ overflow: hidden;
24176
+ }
24177
+ .v-switch:not(.v-switch--inset) .v-switch__thumb {
24178
+ 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));
23953
24179
  }
23954
- .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
24180
+ .v-switch.v-switch--flat:not(.v-switch--inset) .v-switch__thumb {
23955
24181
  background: rgb(var(--v-theme-surface-variant));
24182
+ color: rgb(var(--v-theme-on-surface-variant));
24183
+ 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));
23956
24184
  }
23957
- .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
23958
- background: rgb(var(--v-theme-error));
23959
- }
23960
- .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
23961
- margin-bottom: 16px;
23962
- margin-inline-end: 0;
24185
+ .v-switch--inset .v-switch__thumb {
24186
+ height: 24px;
24187
+ width: 24px;
24188
+ transform: scale(0.6666666667);
23963
24189
  }
23964
-
23965
- .v-stepper-item__title {
23966
- line-height: 1;
24190
+ .v-switch--inset .v-switch__thumb--filled {
24191
+ transform: none;
23967
24192
  }
23968
- .v-stepper--mobile .v-stepper-item__title {
23969
- display: none;
24193
+ .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
24194
+ transform: none;
24195
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
23970
24196
  }
23971
24197
 
23972
- .v-stepper-item__subtitle {
23973
- font-size: 0.75rem;
23974
- text-align: left;
23975
- line-height: 1;
23976
- opacity: var(--v-medium-emphasis-opacity);
23977
- }
23978
- .v-stepper--alt-labels .v-stepper-item__subtitle {
23979
- text-align: center;
24198
+ .v-switch.v-input {
24199
+ flex: 0 1 auto;
23980
24200
  }
23981
- .v-stepper--mobile .v-stepper-item__subtitle {
23982
- display: none;
23983
- }.v-system-bar {
23984
- align-items: center;
23985
- display: flex;
23986
- flex: 1 1 auto;
23987
- height: 24px;
23988
- justify-content: flex-end;
23989
- max-width: 100%;
23990
- padding-inline: 8px;
23991
- position: relative;
23992
- text-align: end;
23993
- width: 100%;
23994
- 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));
23995
- background: rgba(var(--v-theme-surface-light));
23996
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
23997
- font-size: 0.75rem;
23998
- font-weight: 400;
23999
- letter-spacing: 0.0333333333em;
24000
- line-height: 1.25rem;
24001
- text-transform: none;
24201
+ .v-switch .v-selection-control {
24202
+ min-height: var(--v-input-control-height);
24002
24203
  }
24003
- .v-system-bar .v-icon {
24004
- opacity: var(--v-medium-emphasis-opacity);
24204
+ .v-switch .v-selection-control__input {
24205
+ border-radius: 50%;
24206
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
24207
+ transform: translateX(-10px);
24208
+ position: absolute;
24005
24209
  }
24006
- .v-system-bar--absolute {
24210
+ .v-switch .v-selection-control__input .v-icon {
24007
24211
  position: absolute;
24008
24212
  }
24009
- .v-system-bar--fixed {
24010
- position: fixed;
24213
+ .v-switch .v-selection-control--dirty .v-selection-control__input {
24214
+ transform: translateX(10px);
24011
24215
  }
24012
- .v-system-bar--rounded {
24013
- border-radius: 0;
24216
+ .v-switch.v-switch--indeterminate .v-selection-control__input {
24217
+ transform: scale(0.8);
24014
24218
  }
24015
- .v-system-bar--window {
24016
- height: 32px;
24219
+ .v-switch.v-switch--indeterminate .v-switch__thumb {
24220
+ transform: scale(0.75);
24221
+ box-shadow: none;
24017
24222
  }
24018
- .v-system-bar:not(.v-system-bar--absolute) {
24019
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
24223
+ .v-switch.v-switch--inset .v-selection-control__wrapper {
24224
+ width: auto;
24020
24225
  }.v-tabs {
24021
24226
  display: flex;
24022
24227
  height: var(--v-tabs-height);
@@ -24112,112 +24317,6 @@ html.v-overlay-scroll-blocked {
24112
24317
  top: 0;
24113
24318
  height: 100%;
24114
24319
  width: 2px;
24115
- }/* region BLOCK */
24116
- .v-text-field input {
24117
- color: inherit;
24118
- opacity: 0;
24119
- flex: 1;
24120
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24121
- min-width: 0;
24122
- }
24123
- .v-text-field input:focus, .v-text-field input:active {
24124
- outline: none;
24125
- }
24126
- .v-text-field input:invalid {
24127
- box-shadow: none;
24128
- }
24129
- .v-text-field .v-field {
24130
- cursor: text;
24131
- }
24132
- .v-text-field--prefixed.v-text-field .v-field__input {
24133
- --v-field-padding-start: 6px;
24134
- }
24135
-
24136
- .v-text-field--suffixed.v-text-field .v-field__input {
24137
- --v-field-padding-end: 0;
24138
- }
24139
-
24140
- .v-text-field .v-input__details {
24141
- padding-inline: 16px;
24142
- }
24143
- .v-input--plain-underlined.v-text-field .v-input__details {
24144
- padding-inline: 0;
24145
- }
24146
-
24147
- .v-text-field .v-field--no-label input,
24148
- .v-text-field .v-field--active input {
24149
- opacity: 1;
24150
- }
24151
- .v-text-field .v-field--single-line input {
24152
- transition: none;
24153
- }
24154
-
24155
- /* endregion */
24156
- /* region ELEMENTS */
24157
- .v-text-field__prefix, .v-text-field__suffix {
24158
- align-items: center;
24159
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
24160
- cursor: default;
24161
- display: flex;
24162
- opacity: 0;
24163
- transition: inherit;
24164
- white-space: nowrap;
24165
- min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
24166
- padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
24167
- padding-bottom: var(--v-field-padding-bottom, 6px);
24168
- }
24169
- .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
24170
- opacity: 1;
24171
- }
24172
- .v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
24173
- color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
24174
- }
24175
- .v-text-field__prefix {
24176
- padding-inline-start: var(--v-field-padding-start);
24177
- }
24178
- .v-text-field__suffix {
24179
- padding-inline-end: var(--v-field-padding-end);
24180
- }
24181
-
24182
- /* endregion */.v-textarea .v-field {
24183
- --v-textarea-control-height: var(--v-input-control-height);
24184
- }
24185
- .v-textarea .v-field__field {
24186
- --v-input-control-height: var(--v-textarea-control-height);
24187
- }
24188
- .v-textarea .v-field__input {
24189
- flex: 1 1 auto;
24190
- outline: none;
24191
- -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));
24192
- 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));
24193
- }
24194
- .v-textarea .v-field__input.v-textarea__sizer {
24195
- visibility: hidden;
24196
- position: absolute;
24197
- top: 0;
24198
- left: 0;
24199
- height: 0 !important;
24200
- min-height: 0 !important;
24201
- pointer-events: none;
24202
- }
24203
- .v-textarea--no-resize .v-field__input {
24204
- resize: none;
24205
- }
24206
- .v-textarea .v-field--no-label textarea,
24207
- .v-textarea .v-field--active textarea {
24208
- opacity: 1;
24209
- }
24210
- .v-textarea textarea {
24211
- opacity: 0;
24212
- flex: 1;
24213
- min-width: 0;
24214
- transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24215
- }
24216
- .v-textarea textarea:focus, .v-textarea textarea:active {
24217
- outline: none;
24218
- }
24219
- .v-textarea textarea:invalid {
24220
- box-shadow: none;
24221
24320
  }.v-table {
24222
24321
  background: rgb(var(--v-theme-surface));
24223
24322
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -24356,136 +24455,48 @@ html.v-overlay-scroll-blocked {
24356
24455
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
24357
24456
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
24358
24457
  border-top: 0px !important;
24359
- }.v-theme-provider {
24360
- background: rgb(var(--v-theme-background));
24361
- color: rgb(var(--v-theme-on-background));
24362
- }.v-toolbar {
24363
- align-items: flex-start;
24364
- display: flex;
24365
- flex: none;
24366
- flex-direction: column;
24367
- justify-content: space-between;
24368
- max-width: 100%;
24369
- overflow: hidden;
24370
- position: relative;
24371
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24372
- transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
24373
- width: 100%;
24374
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24375
- border-style: solid;
24376
- border-width: 0;
24377
- 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));
24378
- border-radius: 0;
24379
- background: rgb(var(--v-theme-surface-light));
24380
- color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24381
- }
24382
- .v-toolbar--border {
24383
- border-width: thin;
24384
- box-shadow: none;
24385
- }
24386
- .v-toolbar--absolute {
24387
- position: absolute;
24388
- }
24389
- .v-toolbar--collapse {
24390
- max-width: 112px;
24391
- overflow: hidden;
24392
- border-end-end-radius: 24px;
24393
- }
24394
- .v-toolbar--collapse .v-toolbar-title {
24395
- display: none;
24396
- }
24397
- .v-toolbar--flat {
24398
- 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));
24399
- }
24400
- .v-toolbar--floating {
24401
- display: inline-flex;
24402
- }
24403
- .v-toolbar--rounded {
24404
- border-radius: 4px;
24405
- }
24406
-
24407
- .v-toolbar__content,
24408
- .v-toolbar__extension {
24409
- align-items: center;
24410
- display: flex;
24411
- flex: 0 0 auto;
24412
- position: relative;
24413
- transition: inherit;
24414
- width: 100%;
24415
- }
24416
-
24417
- .v-toolbar__content > .v-btn:first-child {
24418
- margin-inline-start: 10px;
24419
- }
24420
- .v-toolbar__content > .v-btn:last-child {
24421
- margin-inline-end: 10px;
24458
+ }.v-textarea .v-field {
24459
+ --v-textarea-control-height: var(--v-input-control-height);
24422
24460
  }
24423
- .v-toolbar__content > .v-toolbar-title {
24424
- margin-inline-start: 16px;
24461
+ .v-textarea .v-field__field {
24462
+ --v-input-control-height: var(--v-textarea-control-height);
24425
24463
  }
24426
- .v-toolbar--density-prominent .v-toolbar__content {
24427
- align-items: flex-start;
24464
+ .v-textarea .v-field__input {
24465
+ flex: 1 1 auto;
24466
+ outline: none;
24467
+ -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));
24468
+ 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));
24428
24469
  }
24429
-
24430
- .v-toolbar__image {
24470
+ .v-textarea .v-field__input.v-textarea__sizer {
24471
+ visibility: hidden;
24431
24472
  position: absolute;
24432
24473
  top: 0;
24433
24474
  left: 0;
24434
- width: 100%;
24435
- height: 100%;
24436
- display: flex;
24437
- opacity: var(--v-toolbar-image-opacity, 1);
24438
- transition-property: opacity;
24439
- }
24440
-
24441
- .v-toolbar__prepend,
24442
- .v-toolbar__append {
24443
- align-items: center;
24444
- align-self: stretch;
24445
- display: flex;
24475
+ height: 0 !important;
24476
+ min-height: 0 !important;
24477
+ pointer-events: none;
24446
24478
  }
24447
-
24448
- .v-toolbar__prepend {
24449
- margin-inline: 10px auto;
24479
+ .v-textarea--no-resize .v-field__input {
24480
+ resize: none;
24450
24481
  }
24451
-
24452
- .v-toolbar__append {
24453
- margin-inline: auto 10px;
24482
+ .v-textarea .v-field--no-label textarea,
24483
+ .v-textarea .v-field--active textarea {
24484
+ opacity: 1;
24454
24485
  }
24455
-
24456
- .v-toolbar-title {
24457
- flex: 1 1;
24458
- font-size: 1.25rem;
24486
+ .v-textarea textarea {
24487
+ opacity: 0;
24488
+ flex: 1;
24459
24489
  min-width: 0;
24460
- font-size: 1.25rem;
24461
- font-weight: 400;
24462
- letter-spacing: 0;
24463
- line-height: 1.75rem;
24464
- text-transform: none;
24465
- }
24466
- .v-toolbar--density-prominent .v-toolbar-title {
24467
- align-self: flex-end;
24468
- padding-bottom: 6px;
24469
- font-size: 1.5rem;
24470
- font-weight: 400;
24471
- letter-spacing: 0;
24472
- line-height: 2.25rem;
24473
- text-transform: none;
24474
- }
24475
-
24476
- .v-toolbar-title__placeholder {
24477
- overflow: hidden;
24478
- text-overflow: ellipsis;
24479
- white-space: nowrap;
24490
+ transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
24480
24491
  }
24481
-
24482
- .v-toolbar-items {
24483
- display: flex;
24484
- height: inherit;
24485
- align-self: stretch;
24492
+ .v-textarea textarea:focus, .v-textarea textarea:active {
24493
+ outline: none;
24486
24494
  }
24487
- .v-toolbar-items > .v-btn {
24488
- border-radius: 0;
24495
+ .v-textarea textarea:invalid {
24496
+ box-shadow: none;
24497
+ }.v-theme-provider {
24498
+ background: rgb(var(--v-theme-background));
24499
+ color: rgb(var(--v-theme-on-background));
24489
24500
  }.v-timeline .v-timeline-divider__dot {
24490
24501
  background: rgb(var(--v-theme-surface-light));
24491
24502
  }
@@ -24902,6 +24913,135 @@ html.v-overlay-scroll-blocked {
24902
24913
 
24903
24914
  .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 {
24904
24915
  padding-inline-end: 0;
24916
+ }.v-toolbar {
24917
+ align-items: flex-start;
24918
+ display: flex;
24919
+ flex: none;
24920
+ flex-direction: column;
24921
+ justify-content: space-between;
24922
+ max-width: 100%;
24923
+ position: relative;
24924
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
24925
+ transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
24926
+ width: 100%;
24927
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
24928
+ border-style: solid;
24929
+ border-width: 0;
24930
+ 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));
24931
+ border-radius: 0;
24932
+ background: rgb(var(--v-theme-surface-light));
24933
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
24934
+ }
24935
+ .v-toolbar--border {
24936
+ border-width: thin;
24937
+ box-shadow: none;
24938
+ }
24939
+ .v-toolbar--absolute {
24940
+ position: absolute;
24941
+ }
24942
+ .v-toolbar--collapse {
24943
+ max-width: 112px;
24944
+ overflow: hidden;
24945
+ border-end-end-radius: 24px;
24946
+ }
24947
+ .v-toolbar--collapse .v-toolbar-title {
24948
+ display: none;
24949
+ }
24950
+ .v-toolbar--flat {
24951
+ 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));
24952
+ }
24953
+ .v-toolbar--floating {
24954
+ display: inline-flex;
24955
+ }
24956
+ .v-toolbar--rounded {
24957
+ border-radius: 4px;
24958
+ }
24959
+
24960
+ .v-toolbar__content,
24961
+ .v-toolbar__extension {
24962
+ align-items: center;
24963
+ display: flex;
24964
+ flex: 0 0 auto;
24965
+ position: relative;
24966
+ transition: inherit;
24967
+ width: 100%;
24968
+ }
24969
+
24970
+ .v-toolbar__content {
24971
+ overflow: hidden;
24972
+ }
24973
+ .v-toolbar__content > .v-btn:first-child {
24974
+ margin-inline-start: 10px;
24975
+ }
24976
+ .v-toolbar__content > .v-btn:last-child {
24977
+ margin-inline-end: 10px;
24978
+ }
24979
+ .v-toolbar__content > .v-toolbar-title {
24980
+ margin-inline-start: 16px;
24981
+ }
24982
+ .v-toolbar--density-prominent .v-toolbar__content {
24983
+ align-items: flex-start;
24984
+ }
24985
+
24986
+ .v-toolbar__image {
24987
+ position: absolute;
24988
+ top: 0;
24989
+ left: 0;
24990
+ width: 100%;
24991
+ height: 100%;
24992
+ display: flex;
24993
+ opacity: var(--v-toolbar-image-opacity, 1);
24994
+ transition-property: opacity;
24995
+ }
24996
+
24997
+ .v-toolbar__prepend,
24998
+ .v-toolbar__append {
24999
+ align-items: center;
25000
+ align-self: stretch;
25001
+ display: flex;
25002
+ }
25003
+
25004
+ .v-toolbar__prepend {
25005
+ margin-inline: 10px auto;
25006
+ }
25007
+
25008
+ .v-toolbar__append {
25009
+ margin-inline: auto 10px;
25010
+ }
25011
+
25012
+ .v-toolbar-title {
25013
+ flex: 1 1;
25014
+ font-size: 1.25rem;
25015
+ min-width: 0;
25016
+ font-size: 1.25rem;
25017
+ font-weight: 400;
25018
+ letter-spacing: 0;
25019
+ line-height: 1.75rem;
25020
+ text-transform: none;
25021
+ }
25022
+ .v-toolbar--density-prominent .v-toolbar-title {
25023
+ align-self: flex-end;
25024
+ padding-bottom: 6px;
25025
+ font-size: 1.5rem;
25026
+ font-weight: 400;
25027
+ letter-spacing: 0;
25028
+ line-height: 2.25rem;
25029
+ text-transform: none;
25030
+ }
25031
+
25032
+ .v-toolbar-title__placeholder {
25033
+ overflow: hidden;
25034
+ text-overflow: ellipsis;
25035
+ white-space: nowrap;
25036
+ }
25037
+
25038
+ .v-toolbar-items {
25039
+ display: flex;
25040
+ height: inherit;
25041
+ align-self: stretch;
25042
+ }
25043
+ .v-toolbar-items > .v-btn {
25044
+ border-radius: 0;
24905
25045
  }.v-tooltip > .v-overlay__content {
24906
25046
  background: rgb(var(--v-theme-surface-variant));
24907
25047
  color: rgb(var(--v-theme-on-surface-variant));
@@ -25030,28 +25170,6 @@ html.v-overlay-scroll-blocked {
25030
25170
  }
25031
25171
  .v-color-picker-edit__input span {
25032
25172
  font-size: 0.75rem;
25033
- }.v-color-picker-canvas {
25034
- display: flex;
25035
- position: relative;
25036
- overflow: hidden;
25037
- contain: content;
25038
- touch-action: none;
25039
- }
25040
- .v-color-picker-canvas__dot {
25041
- position: absolute;
25042
- top: 0;
25043
- left: 0;
25044
- width: 15px;
25045
- height: 15px;
25046
- background: transparent;
25047
- border-radius: 50%;
25048
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25049
- }
25050
- .v-color-picker-canvas__dot--disabled {
25051
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25052
- }
25053
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25054
- will-change: transform;
25055
25173
  }.v-color-picker-preview__alpha .v-slider-track__background {
25056
25174
  background-color: transparent !important;
25057
25175
  }
@@ -25121,6 +25239,28 @@ html.v-overlay-scroll-blocked {
25121
25239
  .v-color-picker-preview__eye-dropper {
25122
25240
  position: relative;
25123
25241
  margin-right: 12px;
25242
+ }.v-color-picker-canvas {
25243
+ display: flex;
25244
+ position: relative;
25245
+ overflow: hidden;
25246
+ contain: content;
25247
+ touch-action: none;
25248
+ }
25249
+ .v-color-picker-canvas__dot {
25250
+ position: absolute;
25251
+ top: 0;
25252
+ left: 0;
25253
+ width: 15px;
25254
+ height: 15px;
25255
+ background: transparent;
25256
+ border-radius: 50%;
25257
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25258
+ }
25259
+ .v-color-picker-canvas__dot--disabled {
25260
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25261
+ }
25262
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25263
+ will-change: transform;
25124
25264
  }.v-color-picker-swatches {
25125
25265
  overflow-y: auto;
25126
25266
  }