vuetify 3.4.0-beta.1 → 3.4.0

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 (41) hide show
  1. package/dist/json/attributes.json +275 -299
  2. package/dist/json/importMap.json +110 -110
  3. package/dist/json/tags.json +1 -7
  4. package/dist/json/web-types.json +577 -735
  5. package/dist/vuetify-labs.css +1149 -1151
  6. package/dist/vuetify-labs.d.ts +41 -134
  7. package/dist/vuetify-labs.esm.js +18 -14
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +18 -14
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +490 -492
  12. package/dist/vuetify.d.ts +74 -167
  13. package/dist/vuetify.esm.js +18 -14
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +18 -14
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +12 -12
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VBtn/VBtn.css +0 -1
  21. package/lib/components/VBtn/_variables.scss +1 -1
  22. package/lib/components/VBtnGroup/VBtnGroup.css +0 -1
  23. package/lib/components/VDataTable/VDataTableServer.mjs +2 -2
  24. package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
  25. package/lib/components/VDataTable/VDataTableVirtual.mjs +2 -2
  26. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  27. package/lib/components/VDataTable/index.d.mts +24 -24
  28. package/lib/components/VGrid/VSpacer.mjs +3 -0
  29. package/lib/components/VGrid/VSpacer.mjs.map +1 -1
  30. package/lib/components/VStepper/VStepperWindow.mjs +8 -6
  31. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperWindowItem.mjs +3 -1
  33. package/lib/components/VStepper/VStepperWindowItem.mjs.map +1 -1
  34. package/lib/components/VStepper/index.d.mts +18 -140
  35. package/lib/components/index.d.mts +41 -134
  36. package/lib/entry-bundler.mjs +1 -1
  37. package/lib/entry-bundler.mjs.map +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/framework.mjs.map +1 -1
  40. package/lib/index.d.mts +33 -33
  41. package/package.json +3 -3
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.0-beta.1
2
+ * Vuetify v3.4.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17219,87 +17219,6 @@ html.overflow-y-hidden {
17219
17219
  text-transform: none;
17220
17220
  word-break: normal;
17221
17221
  word-wrap: break-word;
17222
- }.v-autocomplete .v-field .v-text-field__prefix,
17223
- .v-autocomplete .v-field .v-text-field__suffix,
17224
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17225
- cursor: text;
17226
- }
17227
- .v-autocomplete .v-field .v-field__input > input {
17228
- flex: 1 1;
17229
- }
17230
- .v-autocomplete .v-field input {
17231
- min-width: 64px;
17232
- }
17233
- .v-autocomplete .v-field:not(.v-field--focused) input {
17234
- min-width: 0;
17235
- }
17236
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17237
- margin-inline-end: 2px;
17238
- }
17239
- .v-autocomplete .v-autocomplete__selection-text {
17240
- overflow: hidden;
17241
- text-overflow: ellipsis;
17242
- white-space: nowrap;
17243
- }
17244
-
17245
- .v-autocomplete__content {
17246
- overflow: hidden;
17247
- 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
17248
- border-radius: 4px;
17249
- }
17250
- .v-autocomplete__mask {
17251
- background: rgb(var(--v-theme-on-surface-variant));
17252
- }
17253
- .v-autocomplete__selection {
17254
- display: inline-flex;
17255
- align-items: center;
17256
- height: 1.5rem;
17257
- letter-spacing: inherit;
17258
- line-height: inherit;
17259
- max-width: calc(100% - 2px);
17260
- }
17261
- .v-autocomplete__selection:first-child {
17262
- margin-inline-start: 0;
17263
- }
17264
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17265
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17266
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17267
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17268
- top: 0px;
17269
- }
17270
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17271
- opacity: var(--v-medium-emphasis-opacity);
17272
- }
17273
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17274
- opacity: 1;
17275
- }
17276
- .v-autocomplete--selecting-index .v-field__input > input {
17277
- caret-color: transparent;
17278
- }
17279
- .v-autocomplete--single.v-text-field input {
17280
- flex: 1 1;
17281
- position: absolute;
17282
- left: 0;
17283
- right: 0;
17284
- width: 100%;
17285
- padding-inline: inherit;
17286
- }
17287
- .v-autocomplete--single .v-field--active input {
17288
- transition: none;
17289
- }
17290
- .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
17291
- opacity: 0;
17292
- }
17293
- .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
17294
- opacity: 0;
17295
- }
17296
- .v-autocomplete__menu-icon {
17297
- margin-inline-start: 4px;
17298
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17299
- }
17300
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17301
- opacity: var(--v-high-emphasis-opacity);
17302
- transform: rotate(180deg);
17303
17222
  }.v-avatar {
17304
17223
  flex: none;
17305
17224
  align-items: center;
@@ -17387,6 +17306,87 @@ html.overflow-y-hidden {
17387
17306
  .v-avatar .v-img {
17388
17307
  height: 100%;
17389
17308
  width: 100%;
17309
+ }.v-autocomplete .v-field .v-text-field__prefix,
17310
+ .v-autocomplete .v-field .v-text-field__suffix,
17311
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17312
+ cursor: text;
17313
+ }
17314
+ .v-autocomplete .v-field .v-field__input > input {
17315
+ flex: 1 1;
17316
+ }
17317
+ .v-autocomplete .v-field input {
17318
+ min-width: 64px;
17319
+ }
17320
+ .v-autocomplete .v-field:not(.v-field--focused) input {
17321
+ min-width: 0;
17322
+ }
17323
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17324
+ margin-inline-end: 2px;
17325
+ }
17326
+ .v-autocomplete .v-autocomplete__selection-text {
17327
+ overflow: hidden;
17328
+ text-overflow: ellipsis;
17329
+ white-space: nowrap;
17330
+ }
17331
+
17332
+ .v-autocomplete__content {
17333
+ overflow: hidden;
17334
+ 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
17335
+ border-radius: 4px;
17336
+ }
17337
+ .v-autocomplete__mask {
17338
+ background: rgb(var(--v-theme-on-surface-variant));
17339
+ }
17340
+ .v-autocomplete__selection {
17341
+ display: inline-flex;
17342
+ align-items: center;
17343
+ height: 1.5rem;
17344
+ letter-spacing: inherit;
17345
+ line-height: inherit;
17346
+ max-width: calc(100% - 2px);
17347
+ }
17348
+ .v-autocomplete__selection:first-child {
17349
+ margin-inline-start: 0;
17350
+ }
17351
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17352
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17353
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17354
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17355
+ top: 0px;
17356
+ }
17357
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
17358
+ opacity: var(--v-medium-emphasis-opacity);
17359
+ }
17360
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17361
+ opacity: 1;
17362
+ }
17363
+ .v-autocomplete--selecting-index .v-field__input > input {
17364
+ caret-color: transparent;
17365
+ }
17366
+ .v-autocomplete--single.v-text-field input {
17367
+ flex: 1 1;
17368
+ position: absolute;
17369
+ left: 0;
17370
+ right: 0;
17371
+ width: 100%;
17372
+ padding-inline: inherit;
17373
+ }
17374
+ .v-autocomplete--single .v-field--active input {
17375
+ transition: none;
17376
+ }
17377
+ .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
17378
+ opacity: 0;
17379
+ }
17380
+ .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
17381
+ opacity: 0;
17382
+ }
17383
+ .v-autocomplete__menu-icon {
17384
+ margin-inline-start: 4px;
17385
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17386
+ }
17387
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17388
+ opacity: var(--v-high-emphasis-opacity);
17389
+ transform: rotate(180deg);
17390
17390
  }.v-badge {
17391
17391
  display: inline-block;
17392
17392
  line-height: 1;
@@ -17759,8 +17759,7 @@ html.overflow-y-hidden {
17759
17759
  display: inline-block;
17760
17760
  padding: 0 8px;
17761
17761
  vertical-align: middle;
17762
- }/** if false, disabled buttons will be greyed out */
17763
- .v-btn {
17762
+ }.v-btn {
17764
17763
  align-items: center;
17765
17764
  border-radius: 4px;
17766
17765
  display: inline-grid;
@@ -18160,8 +18159,7 @@ html.overflow-y-hidden {
18160
18159
  }
18161
18160
  .v-pagination__item--is-active .v-btn__overlay {
18162
18161
  opacity: var(--v-border-opacity);
18163
- }/** if false, disabled buttons will be greyed out */
18164
- .v-btn-group {
18162
+ }.v-btn-group {
18165
18163
  display: inline-flex;
18166
18164
  flex-wrap: nowrap;
18167
18165
  max-width: 100%;
@@ -18230,6 +18228,68 @@ html.overflow-y-hidden {
18230
18228
  .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
18231
18229
  opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
18232
18230
  }
18231
+ }.v-carousel {
18232
+ overflow: hidden;
18233
+ position: relative;
18234
+ width: 100%;
18235
+ }
18236
+ .v-carousel__controls {
18237
+ align-items: center;
18238
+ background: rgba(var(--v-theme-surface-variant), 0.3);
18239
+ bottom: 0;
18240
+ display: flex;
18241
+ height: 50px;
18242
+ justify-content: center;
18243
+ list-style-type: none;
18244
+ position: absolute;
18245
+ width: 100%;
18246
+ z-index: 1;
18247
+ }
18248
+ .v-carousel__controls > .v-item-group {
18249
+ flex: 0 1 auto;
18250
+ }
18251
+ .v-carousel__controls__item {
18252
+ margin: 0 8px;
18253
+ }
18254
+ .v-carousel__controls__item .v-icon {
18255
+ opacity: 0.5;
18256
+ }
18257
+ .v-carousel__controls__item--active .v-icon {
18258
+ opacity: 1;
18259
+ vertical-align: middle;
18260
+ }
18261
+ .v-carousel__controls__item:hover {
18262
+ background: none;
18263
+ }
18264
+ .v-carousel__controls__item:hover .v-icon {
18265
+ opacity: 0.8;
18266
+ }
18267
+
18268
+ .v-carousel__progress {
18269
+ margin: 0;
18270
+ position: absolute;
18271
+ bottom: 0;
18272
+ left: 0;
18273
+ right: 0;
18274
+ }
18275
+
18276
+ .v-carousel-item {
18277
+ display: block;
18278
+ height: inherit;
18279
+ text-decoration: none;
18280
+ }
18281
+ .v-carousel-item > .v-img {
18282
+ height: inherit;
18283
+ }
18284
+
18285
+ .v-carousel--hide-delimiter-background .v-carousel__controls {
18286
+ background: transparent;
18287
+ }
18288
+
18289
+ .v-carousel--vertical-delimiters .v-carousel__controls {
18290
+ flex-direction: column;
18291
+ height: 100% !important;
18292
+ width: 50px;
18233
18293
  }.v-card {
18234
18294
  display: block;
18235
18295
  overflow: hidden;
@@ -18522,86 +18582,24 @@ html.overflow-y-hidden {
18522
18582
  pointer-events: none;
18523
18583
  opacity: 0;
18524
18584
  transition: opacity 0.2s ease-in-out;
18525
- }.v-carousel {
18585
+ }.v-checkbox .v-selection-control {
18586
+ min-height: var(--v-input-control-height);
18587
+ }.v-chip {
18588
+ align-items: center;
18589
+ cursor: default;
18590
+ display: inline-flex;
18591
+ font-weight: 400;
18592
+ max-width: 100%;
18593
+ min-width: 0;
18526
18594
  overflow: hidden;
18527
18595
  position: relative;
18528
- width: 100%;
18529
- }
18530
- .v-carousel__controls {
18531
- align-items: center;
18532
- background: rgba(var(--v-theme-surface-variant), 0.3);
18533
- bottom: 0;
18534
- display: flex;
18535
- height: 50px;
18536
- justify-content: center;
18537
- list-style-type: none;
18538
- position: absolute;
18539
- width: 100%;
18540
- z-index: 1;
18541
- }
18542
- .v-carousel__controls > .v-item-group {
18543
- flex: 0 1 auto;
18544
- }
18545
- .v-carousel__controls__item {
18546
- margin: 0 8px;
18547
- }
18548
- .v-carousel__controls__item .v-icon {
18549
- opacity: 0.5;
18550
- }
18551
- .v-carousel__controls__item--active .v-icon {
18552
- opacity: 1;
18553
- vertical-align: middle;
18554
- }
18555
- .v-carousel__controls__item:hover {
18556
- background: none;
18557
- }
18558
- .v-carousel__controls__item:hover .v-icon {
18559
- opacity: 0.8;
18560
- }
18561
-
18562
- .v-carousel__progress {
18563
- margin: 0;
18564
- position: absolute;
18565
- bottom: 0;
18566
- left: 0;
18567
- right: 0;
18568
- }
18569
-
18570
- .v-carousel-item {
18571
- display: block;
18572
- height: inherit;
18573
- text-decoration: none;
18574
- }
18575
- .v-carousel-item > .v-img {
18576
- height: inherit;
18577
- }
18578
-
18579
- .v-carousel--hide-delimiter-background .v-carousel__controls {
18580
- background: transparent;
18581
- }
18582
-
18583
- .v-carousel--vertical-delimiters .v-carousel__controls {
18584
- flex-direction: column;
18585
- height: 100% !important;
18586
- width: 50px;
18587
- }.v-checkbox .v-selection-control {
18588
- min-height: var(--v-input-control-height);
18589
- }.v-chip {
18590
- align-items: center;
18591
- cursor: default;
18592
- display: inline-flex;
18593
- font-weight: 400;
18594
- max-width: 100%;
18595
- min-width: 0;
18596
- overflow: hidden;
18597
- position: relative;
18598
- text-decoration: none;
18599
- white-space: nowrap;
18600
- vertical-align: middle;
18601
- border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18602
- border-style: solid;
18603
- border-width: 0;
18604
- border-radius: 9999px;
18596
+ text-decoration: none;
18597
+ white-space: nowrap;
18598
+ vertical-align: middle;
18599
+ border-color: rgba(var(--v-border-color), var(--v-border-opacity));
18600
+ border-style: solid;
18601
+ border-width: 0;
18602
+ border-radius: 9999px;
18605
18603
  }
18606
18604
  .v-chip.v-chip--size-x-small {
18607
18605
  --v-chip-size: 0.625rem;
@@ -19948,6 +19946,55 @@ html.overflow-y-hidden {
19948
19946
 
19949
19947
  .v-data-table-footer__page {
19950
19948
  padding: 0 8px;
19949
+ }.v-date-picker-month {
19950
+ display: flex;
19951
+ justify-content: center;
19952
+ min-width: 328px;
19953
+ --v-date-picker-month-day-diff: 4px;
19954
+ }
19955
+
19956
+ .v-date-picker-month__weeks {
19957
+ display: grid;
19958
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
19959
+ row-gap: 4px;
19960
+ font-size: 0.875rem;
19961
+ }
19962
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
19963
+ grid-row-gap: 0;
19964
+ }
19965
+
19966
+ .v-date-picker-month__weekday {
19967
+ font-size: 0.875rem;
19968
+ }
19969
+
19970
+ .v-date-picker-month__days {
19971
+ display: grid;
19972
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
19973
+ row-gap: 4px;
19974
+ flex: 1 1;
19975
+ justify-content: space-around;
19976
+ }
19977
+
19978
+ .v-date-picker-month__day {
19979
+ align-items: center;
19980
+ display: flex;
19981
+ justify-content: center;
19982
+ position: relative;
19983
+ }
19984
+ .v-date-picker-month__day--selected .v-btn {
19985
+ background-color: rgb(var(--v-theme-surface-variant));
19986
+ color: rgb(var(--v-theme-on-surface-variant));
19987
+ }
19988
+ .v-date-picker-month__day--week {
19989
+ font-size: var(--v-btn-size);
19990
+ }
19991
+
19992
+ .v-date-picker-month__day--adjacent {
19993
+ opacity: 0.5;
19994
+ }
19995
+
19996
+ .v-date-picker-month__day--hide-adjacent {
19997
+ opacity: 0;
19951
19998
  }.v-date-picker__input {
19952
19999
  padding-top: 16px;
19953
20000
  padding-left: 24px;
@@ -20086,55 +20133,21 @@ html.overflow-y-hidden {
20086
20133
  .date-picker-header-reverse-transition-leave-to {
20087
20134
  opacity: 0;
20088
20135
  transform: translate(0, 100%);
20089
- }.v-date-picker-month {
20090
- display: flex;
20091
- justify-content: center;
20092
- min-width: 328px;
20093
- --v-date-picker-month-day-diff: 4px;
20094
- }
20095
-
20096
- .v-date-picker-month__weeks {
20097
- display: grid;
20098
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20099
- row-gap: 4px;
20100
- font-size: 0.875rem;
20101
- }
20102
- .v-date-picker-month__weeks + .v-date-picker-month__days {
20103
- grid-row-gap: 0;
20104
- }
20105
-
20106
- .v-date-picker-month__weekday {
20107
- font-size: 0.875rem;
20136
+ }.v-date-picker-years {
20137
+ height: 320px;
20138
+ overflow-y: scroll;
20108
20139
  }
20109
20140
 
20110
- .v-date-picker-month__days {
20141
+ .v-date-picker-years__content {
20111
20142
  display: grid;
20112
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20113
- row-gap: 4px;
20114
20143
  flex: 1 1;
20115
20144
  justify-content: space-around;
20145
+ grid-template-columns: repeat(3, 1fr);
20146
+ gap: 8px 24px;
20147
+ padding-inline: 36px;
20116
20148
  }
20117
-
20118
- .v-date-picker-month__day {
20119
- align-items: center;
20120
- display: flex;
20121
- justify-content: center;
20122
- position: relative;
20123
- }
20124
- .v-date-picker-month__day--selected .v-btn {
20125
- background-color: rgb(var(--v-theme-surface-variant));
20126
- color: rgb(var(--v-theme-on-surface-variant));
20127
- }
20128
- .v-date-picker-month__day--week {
20129
- font-size: var(--v-btn-size);
20130
- }
20131
-
20132
- .v-date-picker-month__day--adjacent {
20133
- opacity: 0.5;
20134
- }
20135
-
20136
- .v-date-picker-month__day--hide-adjacent {
20137
- opacity: 0;
20149
+ .v-date-picker-years__content .v-btn {
20150
+ padding-inline: 8px;
20138
20151
  }.v-date-picker-months {
20139
20152
  height: 320px;
20140
20153
  overflow-y: scroll;
@@ -20155,21 +20168,6 @@ html.overflow-y-hidden {
20155
20168
  text-transform: none;
20156
20169
  padding-inline-start: 8px;
20157
20170
  padding-inline-end: 8px;
20158
- }.v-date-picker-years {
20159
- height: 320px;
20160
- overflow-y: scroll;
20161
- }
20162
-
20163
- .v-date-picker-years__content {
20164
- display: grid;
20165
- flex: 1 1;
20166
- justify-content: space-around;
20167
- grid-template-columns: repeat(3, 1fr);
20168
- gap: 8px 24px;
20169
- padding-inline: 36px;
20170
- }
20171
- .v-date-picker-years__content .v-btn {
20172
- padding-inline: 8px;
20173
20171
  }.v-dialog {
20174
20172
  align-items: center;
20175
20173
  justify-content: center;
@@ -22101,6 +22099,14 @@ textarea.v-field__input::placeholder {
22101
22099
  height: 100%;
22102
22100
  justify-content: center;
22103
22101
  width: 100%;
22102
+ }.v-pagination__list {
22103
+ display: inline-flex;
22104
+ list-style-type: none;
22105
+ justify-content: center;
22106
+ width: 100%;
22107
+ }
22108
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22109
+ margin: 0.3rem;
22104
22110
  }.v-overlay-container {
22105
22111
  contain: layout;
22106
22112
  left: 0;
@@ -22164,14 +22170,6 @@ html.v-overlay-scroll-blocked {
22164
22170
 
22165
22171
  .v-overlay--scroll-blocked {
22166
22172
  padding-inline-end: var(--v-scrollbar-offset);
22167
- }.v-pagination__list {
22168
- display: inline-flex;
22169
- list-style-type: none;
22170
- justify-content: center;
22171
- width: 100%;
22172
- }
22173
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
22174
- margin: 0.3rem;
22175
22173
  }.v-parallax {
22176
22174
  position: relative;
22177
22175
  overflow: hidden;
@@ -22490,18 +22488,6 @@ html.v-overlay-scroll-blocked {
22490
22488
  0% {
22491
22489
  background-position-x: var(--v-progress-linear-height);
22492
22490
  }
22493
- }.v-radio-group > .v-input__control {
22494
- flex-direction: column;
22495
- }
22496
- .v-radio-group > .v-input__control > .v-label {
22497
- margin-inline-start: 16px;
22498
- }
22499
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
22500
- padding-inline-start: 6px;
22501
- margin-top: 8px;
22502
- }
22503
- .v-radio-group .v-input__details {
22504
- padding-inline: 16px;
22505
22491
  }.v-slider .v-slider__container input {
22506
22492
  cursor: default;
22507
22493
  padding: 0;
@@ -22559,6 +22545,18 @@ html.v-overlay-scroll-blocked {
22559
22545
 
22560
22546
  .v-slider__label {
22561
22547
  margin-inline-end: 12px;
22548
+ }.v-radio-group > .v-input__control {
22549
+ flex-direction: column;
22550
+ }
22551
+ .v-radio-group > .v-input__control > .v-label {
22552
+ margin-inline-start: 16px;
22553
+ }
22554
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
22555
+ padding-inline-start: 6px;
22556
+ margin-top: 8px;
22557
+ }
22558
+ .v-radio-group .v-input__details {
22559
+ padding-inline: 16px;
22562
22560
  }.v-rating {
22563
22561
  max-width: 100%;
22564
22562
  display: inline-flex;
@@ -22639,78 +22637,30 @@ html.v-overlay-scroll-blocked {
22639
22637
  flex: 1 0 0px;
22640
22638
  transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22641
22639
  pointer-events: none;
22642
- }.v-select .v-field .v-text-field__prefix,
22643
- .v-select .v-field .v-text-field__suffix,
22644
- .v-select .v-field .v-field__input, .v-select .v-field.v-field {
22645
- cursor: pointer;
22640
+ }.v-selection-control {
22641
+ align-items: center;
22642
+ contain: layout;
22643
+ display: flex;
22644
+ flex: 1 0;
22645
+ grid-area: control;
22646
+ position: relative;
22647
+ -webkit-user-select: none;
22648
+ user-select: none;
22646
22649
  }
22647
- .v-select .v-field .v-field__input > input {
22648
- align-self: flex-start;
22649
- opacity: 1;
22650
- flex: 0 0;
22651
- position: absolute;
22652
- width: 100%;
22653
- transition: none;
22650
+ .v-selection-control .v-label {
22651
+ white-space: normal;
22652
+ word-break: break-word;
22653
+ height: 100%;
22654
+ }
22655
+ .v-selection-control--disabled {
22656
+ opacity: var(--v-disabled-opacity);
22654
22657
  pointer-events: none;
22655
- caret-color: transparent;
22656
22658
  }
22657
- .v-select .v-field--dirty .v-select__selection {
22658
- margin-inline-end: 2px;
22659
+ .v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
22660
+ opacity: 1;
22659
22661
  }
22660
- .v-select .v-select__selection-text {
22661
- overflow: hidden;
22662
- text-overflow: ellipsis;
22663
- white-space: nowrap;
22664
- }
22665
- .v-select__content {
22666
- overflow: hidden;
22667
- 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
22668
- border-radius: 4px;
22669
- }
22670
- .v-select__selection {
22671
- display: inline-flex;
22672
- align-items: center;
22673
- letter-spacing: inherit;
22674
- line-height: inherit;
22675
- max-width: 100%;
22676
- }
22677
- .v-select .v-select__selection:first-child {
22678
- margin-inline-start: 0;
22679
- }
22680
- .v-select--selected .v-field .v-field__input > input {
22681
- opacity: 0;
22682
- }
22683
- .v-select__menu-icon {
22684
- margin-inline-start: 4px;
22685
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22686
- }
22687
- .v-select--active-menu .v-select__menu-icon {
22688
- opacity: var(--v-high-emphasis-opacity);
22689
- transform: rotate(180deg);
22690
- }.v-selection-control {
22691
- align-items: center;
22692
- contain: layout;
22693
- display: flex;
22694
- flex: 1 0;
22695
- grid-area: control;
22696
- position: relative;
22697
- -webkit-user-select: none;
22698
- user-select: none;
22699
- }
22700
- .v-selection-control .v-label {
22701
- white-space: normal;
22702
- word-break: break-word;
22703
- height: 100%;
22704
- }
22705
- .v-selection-control--disabled {
22706
- opacity: var(--v-disabled-opacity);
22707
- pointer-events: none;
22708
- }
22709
- .v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
22710
- opacity: 1;
22711
- }
22712
- .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
22713
- color: rgb(var(--v-theme-error));
22662
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
22663
+ color: rgb(var(--v-theme-error));
22714
22664
  }
22715
22665
  .v-selection-control--inline {
22716
22666
  display: inline-flex;
@@ -22788,6 +22738,54 @@ html.v-overlay-scroll-blocked {
22788
22738
  }
22789
22739
  .v-selection-control--focus-visible .v-selection-control__input::before {
22790
22740
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
22741
+ }.v-select .v-field .v-text-field__prefix,
22742
+ .v-select .v-field .v-text-field__suffix,
22743
+ .v-select .v-field .v-field__input, .v-select .v-field.v-field {
22744
+ cursor: pointer;
22745
+ }
22746
+ .v-select .v-field .v-field__input > input {
22747
+ align-self: flex-start;
22748
+ opacity: 1;
22749
+ flex: 0 0;
22750
+ position: absolute;
22751
+ width: 100%;
22752
+ transition: none;
22753
+ pointer-events: none;
22754
+ caret-color: transparent;
22755
+ }
22756
+ .v-select .v-field--dirty .v-select__selection {
22757
+ margin-inline-end: 2px;
22758
+ }
22759
+ .v-select .v-select__selection-text {
22760
+ overflow: hidden;
22761
+ text-overflow: ellipsis;
22762
+ white-space: nowrap;
22763
+ }
22764
+ .v-select__content {
22765
+ overflow: hidden;
22766
+ 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
22767
+ border-radius: 4px;
22768
+ }
22769
+ .v-select__selection {
22770
+ display: inline-flex;
22771
+ align-items: center;
22772
+ letter-spacing: inherit;
22773
+ line-height: inherit;
22774
+ max-width: 100%;
22775
+ }
22776
+ .v-select .v-select__selection:first-child {
22777
+ margin-inline-start: 0;
22778
+ }
22779
+ .v-select--selected .v-field .v-field__input > input {
22780
+ opacity: 0;
22781
+ }
22782
+ .v-select__menu-icon {
22783
+ margin-inline-start: 4px;
22784
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22785
+ }
22786
+ .v-select--active-menu .v-select__menu-icon {
22787
+ opacity: var(--v-high-emphasis-opacity);
22788
+ transform: rotate(180deg);
22791
22789
  }.v-selection-control-group {
22792
22790
  grid-area: control;
22793
22791
  display: flex;
@@ -23208,56 +23206,6 @@ html.v-overlay-scroll-blocked {
23208
23206
  }
23209
23207
  .v-snackbar-transition-leave-to {
23210
23208
  opacity: 0;
23211
- }.v-stepper.v-sheet {
23212
- 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23213
- border-radius: 4px;
23214
- overflow: hidden;
23215
- }
23216
- .v-stepper.v-sheet.v-stepper--flat {
23217
- 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23218
- }
23219
-
23220
- .v-stepper-header {
23221
- 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23222
- align-items: center;
23223
- display: flex;
23224
- position: relative;
23225
- overflow-x: auto;
23226
- justify-content: space-between;
23227
- z-index: 1;
23228
- }
23229
- .v-stepper-header .v-divider {
23230
- margin: 0 -16px;
23231
- }
23232
- .v-stepper-header .v-divider:last-child {
23233
- margin-inline-end: 0;
23234
- }
23235
- .v-stepper-header .v-divider:first-child {
23236
- margin-inline-start: 0;
23237
- }
23238
- .v-stepper--alt-labels .v-stepper-header {
23239
- height: auto;
23240
- }
23241
- .v-stepper--alt-labels .v-stepper-header .v-divider {
23242
- align-self: flex-start;
23243
- margin: 35px -67px 0;
23244
- }
23245
-
23246
- .v-stepper-window {
23247
- margin: 1.5rem;
23248
- }
23249
-
23250
- .v-stepper-actions {
23251
- display: flex;
23252
- align-items: center;
23253
- justify-content: space-between;
23254
- padding: 1rem;
23255
- }
23256
- .v-stepper .v-stepper-actions {
23257
- padding: 0 1.5rem 1rem;
23258
- }
23259
- .v-stepper-window-item .v-stepper-actions {
23260
- padding: 1.5rem 0 0;
23261
23209
  }.v-stepper-item {
23262
23210
  align-items: center;
23263
23211
  align-self: stretch;
@@ -23324,6 +23272,93 @@ html.v-overlay-scroll-blocked {
23324
23272
  }
23325
23273
  .v-stepper--mobile .v-stepper-item__subtitle {
23326
23274
  display: none;
23275
+ }.v-stepper.v-sheet {
23276
+ 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23277
+ border-radius: 4px;
23278
+ overflow: hidden;
23279
+ }
23280
+ .v-stepper.v-sheet.v-stepper--flat {
23281
+ 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23282
+ }
23283
+
23284
+ .v-stepper-header {
23285
+ 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23286
+ align-items: center;
23287
+ display: flex;
23288
+ position: relative;
23289
+ overflow-x: auto;
23290
+ justify-content: space-between;
23291
+ z-index: 1;
23292
+ }
23293
+ .v-stepper-header .v-divider {
23294
+ margin: 0 -16px;
23295
+ }
23296
+ .v-stepper-header .v-divider:last-child {
23297
+ margin-inline-end: 0;
23298
+ }
23299
+ .v-stepper-header .v-divider:first-child {
23300
+ margin-inline-start: 0;
23301
+ }
23302
+ .v-stepper--alt-labels .v-stepper-header {
23303
+ height: auto;
23304
+ }
23305
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
23306
+ align-self: flex-start;
23307
+ margin: 35px -67px 0;
23308
+ }
23309
+
23310
+ .v-stepper-window {
23311
+ margin: 1.5rem;
23312
+ }
23313
+
23314
+ .v-stepper-actions {
23315
+ display: flex;
23316
+ align-items: center;
23317
+ justify-content: space-between;
23318
+ padding: 1rem;
23319
+ }
23320
+ .v-stepper .v-stepper-actions {
23321
+ padding: 0 1.5rem 1rem;
23322
+ }
23323
+ .v-stepper-window-item .v-stepper-actions {
23324
+ padding: 1.5rem 0 0;
23325
+ }.v-system-bar {
23326
+ align-items: center;
23327
+ display: flex;
23328
+ flex: 1 1 auto;
23329
+ height: 24px;
23330
+ justify-content: flex-end;
23331
+ max-width: 100%;
23332
+ padding-inline: 8px;
23333
+ position: relative;
23334
+ text-align: end;
23335
+ width: 100%;
23336
+ 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23337
+ background: rgba(var(--v-theme-on-surface-variant));
23338
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23339
+ font-size: 0.75rem;
23340
+ font-weight: 400;
23341
+ letter-spacing: 0.0333333333em;
23342
+ line-height: 1.25rem;
23343
+ text-transform: none;
23344
+ }
23345
+ .v-system-bar .v-icon {
23346
+ opacity: var(--v-medium-emphasis-opacity);
23347
+ }
23348
+ .v-system-bar--absolute {
23349
+ position: absolute;
23350
+ }
23351
+ .v-system-bar--fixed {
23352
+ position: fixed;
23353
+ }
23354
+ .v-system-bar--rounded {
23355
+ border-radius: 0;
23356
+ }
23357
+ .v-system-bar--window {
23358
+ height: 32px;
23359
+ }
23360
+ .v-system-bar:not(.v-system-bar--absolute) {
23361
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
23327
23362
  }.v-switch .v-label {
23328
23363
  padding-inline-start: 10px;
23329
23364
  }
@@ -23415,138 +23450,6 @@ html.v-overlay-scroll-blocked {
23415
23450
  }
23416
23451
  .v-switch.v-switch--inset .v-selection-control__wrapper {
23417
23452
  width: auto;
23418
- }.v-system-bar {
23419
- align-items: center;
23420
- display: flex;
23421
- flex: 1 1 auto;
23422
- height: 24px;
23423
- justify-content: flex-end;
23424
- max-width: 100%;
23425
- padding-inline: 8px;
23426
- position: relative;
23427
- text-align: end;
23428
- width: 100%;
23429
- 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-penumbra-opacity, rgba(0, 0, 0, 0.12));
23430
- background: rgba(var(--v-theme-on-surface-variant));
23431
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
23432
- font-size: 0.75rem;
23433
- font-weight: 400;
23434
- letter-spacing: 0.0333333333em;
23435
- line-height: 1.25rem;
23436
- text-transform: none;
23437
- }
23438
- .v-system-bar .v-icon {
23439
- opacity: var(--v-medium-emphasis-opacity);
23440
- }
23441
- .v-system-bar--absolute {
23442
- position: absolute;
23443
- }
23444
- .v-system-bar--fixed {
23445
- position: fixed;
23446
- }
23447
- .v-system-bar--rounded {
23448
- border-radius: 0;
23449
- }
23450
- .v-system-bar--window {
23451
- height: 32px;
23452
- }
23453
- .v-system-bar:not(.v-system-bar--absolute) {
23454
- padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
23455
- }.v-tabs {
23456
- display: flex;
23457
- height: var(--v-tabs-height);
23458
- }
23459
- .v-tabs--density-default {
23460
- --v-tabs-height: 48px;
23461
- }
23462
- .v-tabs--density-default.v-tabs--stacked {
23463
- --v-tabs-height: 72px;
23464
- }
23465
-
23466
- .v-tabs--density-comfortable {
23467
- --v-tabs-height: 44px;
23468
- }
23469
- .v-tabs--density-comfortable.v-tabs--stacked {
23470
- --v-tabs-height: 68px;
23471
- }
23472
-
23473
- .v-tabs--density-compact {
23474
- --v-tabs-height: 36px;
23475
- }
23476
- .v-tabs--density-compact.v-tabs--stacked {
23477
- --v-tabs-height: 60px;
23478
- }
23479
-
23480
- .v-tabs.v-slide-group--vertical {
23481
- height: auto;
23482
- flex: none;
23483
- --v-tabs-height: 48px;
23484
- }
23485
-
23486
- .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
23487
- margin-inline-start: 42px;
23488
- }
23489
-
23490
- .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
23491
- .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
23492
- margin-inline-end: auto;
23493
- }
23494
- .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
23495
- .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
23496
- margin-inline-start: auto;
23497
- }
23498
-
23499
- .v-tabs--grow {
23500
- flex-grow: 1;
23501
- }
23502
- .v-tabs--grow .v-tab {
23503
- flex: 1 0 auto;
23504
- max-width: none;
23505
- }
23506
-
23507
- .v-tabs--align-tabs-end .v-tab:first-child {
23508
- margin-inline-start: auto;
23509
- }
23510
- .v-tabs--align-tabs-end .v-tab:last-child {
23511
- margin-inline-end: 0;
23512
- }
23513
-
23514
- @media (max-width: 1279.98px) {
23515
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
23516
- margin-inline-start: 52px;
23517
- }
23518
- .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
23519
- margin-inline-end: 52px;
23520
- }
23521
- }.v-tab.v-tab {
23522
- --v-btn-height: var(--v-tabs-height);
23523
- border-radius: 0;
23524
- min-width: 90px;
23525
- }
23526
- .v-slide-group--horizontal .v-tab {
23527
- max-width: 360px;
23528
- }
23529
- .v-slide-group--vertical .v-tab {
23530
- justify-content: start;
23531
- }
23532
-
23533
- .v-tab__slider {
23534
- position: absolute;
23535
- bottom: 0;
23536
- left: 0;
23537
- height: 2px;
23538
- width: 100%;
23539
- background: currentColor;
23540
- pointer-events: none;
23541
- opacity: 0;
23542
- }
23543
- .v-tab--selected .v-tab__slider {
23544
- opacity: 1;
23545
- }
23546
- .v-slide-group--vertical .v-tab__slider {
23547
- top: 0;
23548
- height: 100%;
23549
- width: 2px;
23550
23453
  }.v-table {
23551
23454
  background: rgb(var(--v-theme-surface));
23552
23455
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -23698,6 +23601,101 @@ html.v-overlay-scroll-blocked {
23698
23601
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
23699
23602
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
23700
23603
  border-top: 0px !important;
23604
+ }.v-tabs {
23605
+ display: flex;
23606
+ height: var(--v-tabs-height);
23607
+ }
23608
+ .v-tabs--density-default {
23609
+ --v-tabs-height: 48px;
23610
+ }
23611
+ .v-tabs--density-default.v-tabs--stacked {
23612
+ --v-tabs-height: 72px;
23613
+ }
23614
+
23615
+ .v-tabs--density-comfortable {
23616
+ --v-tabs-height: 44px;
23617
+ }
23618
+ .v-tabs--density-comfortable.v-tabs--stacked {
23619
+ --v-tabs-height: 68px;
23620
+ }
23621
+
23622
+ .v-tabs--density-compact {
23623
+ --v-tabs-height: 36px;
23624
+ }
23625
+ .v-tabs--density-compact.v-tabs--stacked {
23626
+ --v-tabs-height: 60px;
23627
+ }
23628
+
23629
+ .v-tabs.v-slide-group--vertical {
23630
+ height: auto;
23631
+ flex: none;
23632
+ --v-tabs-height: 48px;
23633
+ }
23634
+
23635
+ .v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
23636
+ margin-inline-start: 42px;
23637
+ }
23638
+
23639
+ .v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
23640
+ .v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
23641
+ margin-inline-end: auto;
23642
+ }
23643
+ .v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
23644
+ .v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
23645
+ margin-inline-start: auto;
23646
+ }
23647
+
23648
+ .v-tabs--grow {
23649
+ flex-grow: 1;
23650
+ }
23651
+ .v-tabs--grow .v-tab {
23652
+ flex: 1 0 auto;
23653
+ max-width: none;
23654
+ }
23655
+
23656
+ .v-tabs--align-tabs-end .v-tab:first-child {
23657
+ margin-inline-start: auto;
23658
+ }
23659
+ .v-tabs--align-tabs-end .v-tab:last-child {
23660
+ margin-inline-end: 0;
23661
+ }
23662
+
23663
+ @media (max-width: 1279.98px) {
23664
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
23665
+ margin-inline-start: 52px;
23666
+ }
23667
+ .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
23668
+ margin-inline-end: 52px;
23669
+ }
23670
+ }.v-tab.v-tab {
23671
+ --v-btn-height: var(--v-tabs-height);
23672
+ border-radius: 0;
23673
+ min-width: 90px;
23674
+ }
23675
+ .v-slide-group--horizontal .v-tab {
23676
+ max-width: 360px;
23677
+ }
23678
+ .v-slide-group--vertical .v-tab {
23679
+ justify-content: start;
23680
+ }
23681
+
23682
+ .v-tab__slider {
23683
+ position: absolute;
23684
+ bottom: 0;
23685
+ left: 0;
23686
+ height: 2px;
23687
+ width: 100%;
23688
+ background: currentColor;
23689
+ pointer-events: none;
23690
+ opacity: 0;
23691
+ }
23692
+ .v-tab--selected .v-tab__slider {
23693
+ opacity: 1;
23694
+ }
23695
+ .v-slide-group--vertical .v-tab__slider {
23696
+ top: 0;
23697
+ height: 100%;
23698
+ width: 2px;
23701
23699
  }.v-textarea .v-field {
23702
23700
  --v-textarea-control-height: var(--v-input-control-height);
23703
23701
  }