@vuetify/nightly 3.8.5-master.2025-05-16 → 3.8.5-master.2025-05-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -3
- package/dist/json/attributes.json +3141 -3125
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +194 -194
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +5562 -5526
- package/dist/vuetify-labs.cjs +10 -9
- package/dist/vuetify-labs.css +3836 -3825
- package/dist/vuetify-labs.d.ts +87 -67
- package/dist/vuetify-labs.esm.js +10 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -9
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -9
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2092 -2081
- package/dist/vuetify.d.ts +77 -67
- package/dist/vuetify.esm.js +10 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.css +15 -4
- package/lib/components/VNumberInput/VNumberInput.sass +18 -6
- package/lib/composables/calendar.d.ts +5 -0
- package/lib/composables/calendar.js +2 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +1 -1
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +1 -1
- package/lib/entry-bundler.d.ts +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +67 -67
- package/lib/framework.js +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +10 -0
- package/lib/labs/entry-bundler.d.ts +1 -1
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.5-master.2025-05-
|
2
|
+
* Vuetify v3.8.5-master.2025-05-20
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -18213,6 +18213,90 @@ html.overflow-y-hidden {
|
|
18213
18213
|
text-transform: none;
|
18214
18214
|
word-break: normal;
|
18215
18215
|
word-wrap: break-word;
|
18216
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18217
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18218
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18219
|
+
cursor: text;
|
18220
|
+
}
|
18221
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18222
|
+
flex: 1 1;
|
18223
|
+
}
|
18224
|
+
.v-autocomplete .v-field input {
|
18225
|
+
min-width: 64px;
|
18226
|
+
}
|
18227
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18228
|
+
min-width: 0;
|
18229
|
+
}
|
18230
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18231
|
+
margin-inline-end: 2px;
|
18232
|
+
}
|
18233
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
18234
|
+
overflow: hidden;
|
18235
|
+
text-overflow: ellipsis;
|
18236
|
+
white-space: nowrap;
|
18237
|
+
}
|
18238
|
+
|
18239
|
+
.v-autocomplete__content {
|
18240
|
+
overflow: hidden;
|
18241
|
+
}
|
18242
|
+
.v-autocomplete__content {
|
18243
|
+
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));
|
18244
|
+
}
|
18245
|
+
.v-autocomplete__content {
|
18246
|
+
border-radius: 4px;
|
18247
|
+
}
|
18248
|
+
.v-autocomplete__mask {
|
18249
|
+
background: rgb(var(--v-theme-surface-light));
|
18250
|
+
}
|
18251
|
+
.v-autocomplete__selection {
|
18252
|
+
display: inline-flex;
|
18253
|
+
align-items: center;
|
18254
|
+
height: 1.5rem;
|
18255
|
+
letter-spacing: inherit;
|
18256
|
+
line-height: inherit;
|
18257
|
+
max-width: calc(100% - 2px - 2px);
|
18258
|
+
}
|
18259
|
+
.v-autocomplete__selection:first-child {
|
18260
|
+
margin-inline-start: 0;
|
18261
|
+
}
|
18262
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18263
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18264
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18265
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18266
|
+
top: 0px;
|
18267
|
+
}
|
18268
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18269
|
+
opacity: var(--v-medium-emphasis-opacity);
|
18270
|
+
}
|
18271
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18272
|
+
opacity: 1;
|
18273
|
+
}
|
18274
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
18275
|
+
caret-color: transparent;
|
18276
|
+
}
|
18277
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18278
|
+
flex: 1 1;
|
18279
|
+
position: absolute;
|
18280
|
+
left: 0;
|
18281
|
+
right: 0;
|
18282
|
+
width: 100%;
|
18283
|
+
padding-inline: inherit;
|
18284
|
+
}
|
18285
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18286
|
+
transition: none;
|
18287
|
+
}
|
18288
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18289
|
+
opacity: 0;
|
18290
|
+
}
|
18291
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18292
|
+
opacity: 0;
|
18293
|
+
}
|
18294
|
+
.v-autocomplete__menu-icon {
|
18295
|
+
margin-inline-start: 4px;
|
18296
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18297
|
+
}
|
18298
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18299
|
+
transform: rotate(180deg);
|
18216
18300
|
}.v-avatar {
|
18217
18301
|
flex: none;
|
18218
18302
|
align-items: center;
|
@@ -18319,6 +18403,70 @@ html.overflow-y-hidden {
|
|
18319
18403
|
.v-avatar .v-img {
|
18320
18404
|
height: 100%;
|
18321
18405
|
width: 100%;
|
18406
|
+
}.v-bottom-navigation {
|
18407
|
+
display: flex;
|
18408
|
+
max-width: 100%;
|
18409
|
+
overflow: hidden;
|
18410
|
+
position: absolute;
|
18411
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18412
|
+
}
|
18413
|
+
.v-bottom-navigation {
|
18414
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18415
|
+
border-style: solid;
|
18416
|
+
border-width: 0;
|
18417
|
+
}
|
18418
|
+
.v-bottom-navigation--border {
|
18419
|
+
border-width: thin;
|
18420
|
+
box-shadow: none;
|
18421
|
+
}
|
18422
|
+
.v-bottom-navigation {
|
18423
|
+
border-radius: 0;
|
18424
|
+
}
|
18425
|
+
.v-bottom-navigation {
|
18426
|
+
background: rgb(var(--v-theme-surface));
|
18427
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18428
|
+
}
|
18429
|
+
.v-bottom-navigation--active {
|
18430
|
+
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));
|
18431
|
+
}
|
18432
|
+
|
18433
|
+
.v-bottom-navigation__content {
|
18434
|
+
display: flex;
|
18435
|
+
flex: none;
|
18436
|
+
font-size: 0.75rem;
|
18437
|
+
justify-content: center;
|
18438
|
+
transition: inherit;
|
18439
|
+
width: 100%;
|
18440
|
+
}
|
18441
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18442
|
+
font-size: inherit;
|
18443
|
+
height: 100%;
|
18444
|
+
max-width: 168px;
|
18445
|
+
min-width: 80px;
|
18446
|
+
text-transform: none;
|
18447
|
+
transition: inherit;
|
18448
|
+
width: auto;
|
18449
|
+
}
|
18450
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18451
|
+
border-radius: 0;
|
18452
|
+
}
|
18453
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
18454
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18455
|
+
transition: inherit;
|
18456
|
+
}
|
18457
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18458
|
+
font-size: 1.5rem;
|
18459
|
+
}
|
18460
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
18461
|
+
flex-basis: 0;
|
18462
|
+
flex-grow: 1;
|
18463
|
+
}
|
18464
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
18465
|
+
transition: inherit;
|
18466
|
+
opacity: 0;
|
18467
|
+
}
|
18468
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18469
|
+
transform: translateY(0.5rem);
|
18322
18470
|
}.v-badge {
|
18323
18471
|
display: inline-block;
|
18324
18472
|
line-height: 1;
|
@@ -18396,252 +18544,70 @@ html.overflow-y-hidden {
|
|
18396
18544
|
display: inline-flex;
|
18397
18545
|
justify-content: center;
|
18398
18546
|
margin: 0 4px;
|
18399
|
-
}.
|
18400
|
-
|
18401
|
-
|
18402
|
-
|
18547
|
+
}.bottom-sheet-transition-enter-from {
|
18548
|
+
transform: translateY(100%);
|
18549
|
+
}
|
18550
|
+
.bottom-sheet-transition-leave-to {
|
18551
|
+
transform: translateY(100%);
|
18403
18552
|
}
|
18404
18553
|
|
18405
|
-
.v-
|
18406
|
-
-
|
18407
|
-
|
18408
|
-
|
18409
|
-
|
18410
|
-
|
18411
|
-
|
18412
|
-
|
18413
|
-
|
18414
|
-
position: relative;
|
18415
|
-
}.v-banner {
|
18416
|
-
display: grid;
|
18417
|
-
flex: 1 1;
|
18418
|
-
font-size: 0.875rem;
|
18419
|
-
grid-template-areas: "prepend content actions";
|
18420
|
-
grid-template-columns: max-content auto max-content;
|
18421
|
-
grid-template-rows: max-content max-content;
|
18422
|
-
line-height: 1.6;
|
18423
|
-
overflow: hidden;
|
18424
|
-
padding-inline: 16px 8px;
|
18425
|
-
padding-top: 16px;
|
18426
|
-
padding-bottom: 16px;
|
18427
|
-
position: relative;
|
18554
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18555
|
+
align-self: flex-end;
|
18556
|
+
border-radius: 0;
|
18557
|
+
flex: 0 1 auto;
|
18558
|
+
left: 0;
|
18559
|
+
right: 0;
|
18560
|
+
margin-inline: auto;
|
18561
|
+
margin-bottom: 0;
|
18562
|
+
transition-duration: 0.2s;
|
18428
18563
|
width: 100%;
|
18564
|
+
max-width: 100%;
|
18565
|
+
overflow: visible;
|
18429
18566
|
}
|
18430
|
-
.v-
|
18431
|
-
|
18432
|
-
border-style: solid;
|
18433
|
-
border-width: 0 0 thin 0;
|
18434
|
-
}
|
18435
|
-
.v-banner--border {
|
18436
|
-
border-width: thin;
|
18437
|
-
box-shadow: none;
|
18438
|
-
}
|
18439
|
-
.v-banner {
|
18440
|
-
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));
|
18441
|
-
}
|
18442
|
-
.v-banner--absolute {
|
18443
|
-
position: absolute;
|
18444
|
-
}
|
18445
|
-
.v-banner--fixed {
|
18446
|
-
position: fixed;
|
18447
|
-
}
|
18448
|
-
.v-banner--sticky {
|
18449
|
-
position: sticky;
|
18567
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18568
|
+
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18450
18569
|
}
|
18451
|
-
.v-
|
18570
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18571
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18452
18572
|
border-radius: 0;
|
18453
18573
|
}
|
18454
|
-
.v-
|
18455
|
-
|
18456
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18574
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18575
|
+
max-width: none;
|
18457
18576
|
}
|
18458
|
-
|
18577
|
+
@media (min-width: 600px) {
|
18578
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18579
|
+
max-width: 70%;
|
18580
|
+
}
|
18581
|
+
}.v-btn {
|
18582
|
+
align-items: center;
|
18459
18583
|
border-radius: 4px;
|
18584
|
+
display: inline-grid;
|
18585
|
+
grid-template-areas: "prepend content append";
|
18586
|
+
grid-template-columns: max-content auto max-content;
|
18587
|
+
font-weight: 500;
|
18588
|
+
justify-content: center;
|
18589
|
+
letter-spacing: 0.0892857143em;
|
18590
|
+
line-height: normal;
|
18591
|
+
max-width: 100%;
|
18592
|
+
outline: none;
|
18593
|
+
position: relative;
|
18594
|
+
text-decoration: none;
|
18595
|
+
text-indent: 0.0892857143em;
|
18596
|
+
text-transform: uppercase;
|
18597
|
+
transition-property: box-shadow, transform, opacity, background;
|
18598
|
+
transition-duration: 0.28s;
|
18599
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
18600
|
+
-webkit-user-select: none;
|
18601
|
+
user-select: none;
|
18602
|
+
vertical-align: middle;
|
18603
|
+
flex-shrink: 0;
|
18460
18604
|
}
|
18461
|
-
.v-
|
18462
|
-
|
18463
|
-
|
18464
|
-
|
18465
|
-
|
18466
|
-
|
18467
|
-
.v-banner--density-default .v-banner-actions {
|
18468
|
-
margin-bottom: -8px;
|
18469
|
-
}
|
18470
|
-
.v-banner--density-default.v-banner--one-line {
|
18471
|
-
padding-top: 8px;
|
18472
|
-
padding-bottom: 8px;
|
18473
|
-
}
|
18474
|
-
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
18475
|
-
margin-bottom: 0;
|
18476
|
-
}
|
18477
|
-
.v-banner--density-default.v-banner--one-line {
|
18478
|
-
padding-top: 10px;
|
18479
|
-
}
|
18480
|
-
.v-banner--density-default.v-banner--two-line {
|
18481
|
-
padding-top: 16px;
|
18482
|
-
padding-bottom: 16px;
|
18483
|
-
}
|
18484
|
-
.v-banner--density-default.v-banner--three-line {
|
18485
|
-
padding-top: 24px;
|
18486
|
-
padding-bottom: 16px;
|
18487
|
-
}
|
18488
|
-
.v-banner--density-default:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-default.v-banner--two-line .v-banner-actions, .v-banner--density-default.v-banner--three-line .v-banner-actions {
|
18489
|
-
margin-top: 20px;
|
18490
|
-
}
|
18491
|
-
|
18492
|
-
.v-banner--density-comfortable .v-banner-actions {
|
18493
|
-
margin-bottom: -4px;
|
18494
|
-
}
|
18495
|
-
.v-banner--density-comfortable.v-banner--one-line {
|
18496
|
-
padding-top: 4px;
|
18497
|
-
padding-bottom: 4px;
|
18498
|
-
}
|
18499
|
-
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
18500
|
-
margin-bottom: 0;
|
18501
|
-
}
|
18502
|
-
.v-banner--density-comfortable.v-banner--two-line {
|
18503
|
-
padding-top: 12px;
|
18504
|
-
padding-bottom: 12px;
|
18505
|
-
}
|
18506
|
-
.v-banner--density-comfortable.v-banner--three-line {
|
18507
|
-
padding-top: 20px;
|
18508
|
-
padding-bottom: 12px;
|
18509
|
-
}
|
18510
|
-
.v-banner--density-comfortable:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-comfortable.v-banner--two-line .v-banner-actions, .v-banner--density-comfortable.v-banner--three-line .v-banner-actions {
|
18511
|
-
margin-top: 16px;
|
18512
|
-
}
|
18513
|
-
|
18514
|
-
.v-banner--density-compact .v-banner-actions {
|
18515
|
-
margin-bottom: 0px;
|
18516
|
-
}
|
18517
|
-
.v-banner--density-compact.v-banner--one-line {
|
18518
|
-
padding-top: 0px;
|
18519
|
-
padding-bottom: 0px;
|
18520
|
-
}
|
18521
|
-
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
18522
|
-
margin-bottom: 0;
|
18523
|
-
}
|
18524
|
-
.v-banner--density-compact.v-banner--two-line {
|
18525
|
-
padding-top: 8px;
|
18526
|
-
padding-bottom: 8px;
|
18527
|
-
}
|
18528
|
-
.v-banner--density-compact.v-banner--three-line {
|
18529
|
-
padding-top: 16px;
|
18530
|
-
padding-bottom: 8px;
|
18531
|
-
}
|
18532
|
-
.v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
|
18533
|
-
margin-top: 12px;
|
18534
|
-
}
|
18535
|
-
|
18536
|
-
.v-banner--sticky {
|
18537
|
-
top: 0;
|
18538
|
-
z-index: 1;
|
18539
|
-
}
|
18540
|
-
|
18541
|
-
.v-banner__content {
|
18542
|
-
align-items: center;
|
18543
|
-
display: flex;
|
18544
|
-
grid-area: content;
|
18545
|
-
}
|
18546
|
-
|
18547
|
-
.v-banner__prepend {
|
18548
|
-
align-self: flex-start;
|
18549
|
-
grid-area: prepend;
|
18550
|
-
margin-inline-end: 24px;
|
18551
|
-
}
|
18552
|
-
|
18553
|
-
.v-banner-actions {
|
18554
|
-
align-self: flex-end;
|
18555
|
-
display: flex;
|
18556
|
-
flex: 0 1;
|
18557
|
-
grid-area: actions;
|
18558
|
-
justify-content: flex-end;
|
18559
|
-
}
|
18560
|
-
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
18561
|
-
margin-top: 20px;
|
18562
|
-
}
|
18563
|
-
|
18564
|
-
.v-banner-text {
|
18565
|
-
-webkit-box-orient: vertical;
|
18566
|
-
display: -webkit-box;
|
18567
|
-
padding-inline-end: 90px;
|
18568
|
-
overflow: hidden;
|
18569
|
-
}
|
18570
|
-
.v-banner--one-line .v-banner-text {
|
18571
|
-
-webkit-line-clamp: 1;
|
18572
|
-
}
|
18573
|
-
.v-banner--two-line .v-banner-text {
|
18574
|
-
-webkit-line-clamp: 2;
|
18575
|
-
}
|
18576
|
-
.v-banner--three-line .v-banner-text {
|
18577
|
-
-webkit-line-clamp: 3;
|
18578
|
-
}
|
18579
|
-
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18580
|
-
align-self: flex-start;
|
18581
|
-
}.bottom-sheet-transition-enter-from {
|
18582
|
-
transform: translateY(100%);
|
18583
|
-
}
|
18584
|
-
.bottom-sheet-transition-leave-to {
|
18585
|
-
transform: translateY(100%);
|
18586
|
-
}
|
18587
|
-
|
18588
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18589
|
-
align-self: flex-end;
|
18590
|
-
border-radius: 0;
|
18591
|
-
flex: 0 1 auto;
|
18592
|
-
left: 0;
|
18593
|
-
right: 0;
|
18594
|
-
margin-inline: auto;
|
18595
|
-
margin-bottom: 0;
|
18596
|
-
transition-duration: 0.2s;
|
18597
|
-
width: 100%;
|
18598
|
-
max-width: 100%;
|
18599
|
-
overflow: visible;
|
18600
|
-
}
|
18601
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18602
|
-
box-shadow: 0px 7px 8px -4px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 12px 17px 2px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 5px 22px 4px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
18603
|
-
}
|
18604
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18605
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18606
|
-
border-radius: 0;
|
18607
|
-
}
|
18608
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18609
|
-
max-width: none;
|
18610
|
-
}
|
18611
|
-
@media (min-width: 600px) {
|
18612
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18613
|
-
max-width: 70%;
|
18614
|
-
}
|
18615
|
-
}.v-btn {
|
18616
|
-
align-items: center;
|
18617
|
-
border-radius: 4px;
|
18618
|
-
display: inline-grid;
|
18619
|
-
grid-template-areas: "prepend content append";
|
18620
|
-
grid-template-columns: max-content auto max-content;
|
18621
|
-
font-weight: 500;
|
18622
|
-
justify-content: center;
|
18623
|
-
letter-spacing: 0.0892857143em;
|
18624
|
-
line-height: normal;
|
18625
|
-
max-width: 100%;
|
18626
|
-
outline: none;
|
18627
|
-
position: relative;
|
18628
|
-
text-decoration: none;
|
18629
|
-
text-indent: 0.0892857143em;
|
18630
|
-
text-transform: uppercase;
|
18631
|
-
transition-property: box-shadow, transform, opacity, background;
|
18632
|
-
transition-duration: 0.28s;
|
18633
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
18634
|
-
-webkit-user-select: none;
|
18635
|
-
user-select: none;
|
18636
|
-
vertical-align: middle;
|
18637
|
-
flex-shrink: 0;
|
18638
|
-
}
|
18639
|
-
.v-btn--size-x-small {
|
18640
|
-
--v-btn-size: 0.625rem;
|
18641
|
-
--v-btn-height: 20px;
|
18642
|
-
font-size: var(--v-btn-size);
|
18643
|
-
min-width: 36px;
|
18644
|
-
padding: 0 8px;
|
18605
|
+
.v-btn--size-x-small {
|
18606
|
+
--v-btn-size: 0.625rem;
|
18607
|
+
--v-btn-height: 20px;
|
18608
|
+
font-size: var(--v-btn-size);
|
18609
|
+
min-width: 36px;
|
18610
|
+
padding: 0 8px;
|
18645
18611
|
}
|
18646
18612
|
|
18647
18613
|
.v-btn--size-small {
|
@@ -19125,63 +19091,6 @@ html.overflow-y-hidden {
|
|
19125
19091
|
}
|
19126
19092
|
.v-btn-group--tile {
|
19127
19093
|
border-radius: 0;
|
19128
|
-
}.v-breadcrumbs {
|
19129
|
-
display: flex;
|
19130
|
-
align-items: center;
|
19131
|
-
line-height: 1.6;
|
19132
|
-
padding: 16px 12px;
|
19133
|
-
}
|
19134
|
-
.v-breadcrumbs--rounded {
|
19135
|
-
border-radius: 4px;
|
19136
|
-
}
|
19137
|
-
.v-breadcrumbs--density-default {
|
19138
|
-
padding-top: 16px;
|
19139
|
-
padding-bottom: 16px;
|
19140
|
-
}
|
19141
|
-
|
19142
|
-
.v-breadcrumbs--density-comfortable {
|
19143
|
-
padding-top: 12px;
|
19144
|
-
padding-bottom: 12px;
|
19145
|
-
}
|
19146
|
-
|
19147
|
-
.v-breadcrumbs--density-compact {
|
19148
|
-
padding-top: 8px;
|
19149
|
-
padding-bottom: 8px;
|
19150
|
-
}
|
19151
|
-
|
19152
|
-
.v-breadcrumbs__prepend {
|
19153
|
-
align-items: center;
|
19154
|
-
display: inline-flex;
|
19155
|
-
}
|
19156
|
-
|
19157
|
-
.v-breadcrumbs-item {
|
19158
|
-
align-items: center;
|
19159
|
-
color: inherit;
|
19160
|
-
display: inline-flex;
|
19161
|
-
padding: 0 4px;
|
19162
|
-
text-decoration: none;
|
19163
|
-
vertical-align: middle;
|
19164
|
-
}
|
19165
|
-
.v-breadcrumbs-item--disabled {
|
19166
|
-
opacity: var(--v-disabled-opacity);
|
19167
|
-
pointer-events: none;
|
19168
|
-
}
|
19169
|
-
.v-breadcrumbs-item--link {
|
19170
|
-
color: inherit;
|
19171
|
-
text-decoration: none;
|
19172
|
-
}
|
19173
|
-
.v-breadcrumbs-item--link:hover {
|
19174
|
-
text-decoration: underline;
|
19175
|
-
}
|
19176
|
-
.v-breadcrumbs-item .v-icon {
|
19177
|
-
font-size: 1rem;
|
19178
|
-
margin-inline: -4px 2px;
|
19179
|
-
}
|
19180
|
-
|
19181
|
-
.v-breadcrumbs-divider {
|
19182
|
-
display: inline-block;
|
19183
|
-
padding: 0 8px;
|
19184
|
-
vertical-align: middle;
|
19185
19094
|
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19186
19095
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19187
19096
|
}
|
@@ -19198,314 +19107,229 @@ html.overflow-y-hidden {
|
|
19198
19107
|
}
|
19199
19108
|
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19200
19109
|
opacity: 1;
|
19201
|
-
}.v-
|
19202
|
-
display:
|
19110
|
+
}.v-banner {
|
19111
|
+
display: grid;
|
19112
|
+
flex: 1 1;
|
19113
|
+
font-size: 0.875rem;
|
19114
|
+
grid-template-areas: "prepend content actions";
|
19115
|
+
grid-template-columns: max-content auto max-content;
|
19116
|
+
grid-template-rows: max-content max-content;
|
19117
|
+
line-height: 1.6;
|
19203
19118
|
overflow: hidden;
|
19204
|
-
|
19119
|
+
padding-inline: 16px 8px;
|
19120
|
+
padding-top: 16px;
|
19121
|
+
padding-bottom: 16px;
|
19205
19122
|
position: relative;
|
19206
|
-
|
19207
|
-
text-decoration: none;
|
19208
|
-
transition-duration: 0.28s;
|
19209
|
-
transition-property: box-shadow, opacity, background;
|
19210
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
19211
|
-
z-index: 0;
|
19123
|
+
width: 100%;
|
19212
19124
|
}
|
19213
|
-
.v-
|
19125
|
+
.v-banner {
|
19214
19126
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19215
19127
|
border-style: solid;
|
19216
|
-
border-width: 0;
|
19128
|
+
border-width: 0 0 thin 0;
|
19217
19129
|
}
|
19218
|
-
.v-
|
19130
|
+
.v-banner--border {
|
19219
19131
|
border-width: thin;
|
19220
19132
|
box-shadow: none;
|
19221
19133
|
}
|
19222
|
-
.v-
|
19134
|
+
.v-banner {
|
19135
|
+
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));
|
19136
|
+
}
|
19137
|
+
.v-banner--absolute {
|
19223
19138
|
position: absolute;
|
19224
19139
|
}
|
19225
|
-
.v-
|
19140
|
+
.v-banner--fixed {
|
19226
19141
|
position: fixed;
|
19227
19142
|
}
|
19228
|
-
.v-
|
19229
|
-
|
19143
|
+
.v-banner--sticky {
|
19144
|
+
position: sticky;
|
19230
19145
|
}
|
19231
|
-
.v-
|
19232
|
-
|
19146
|
+
.v-banner {
|
19147
|
+
border-radius: 0;
|
19233
19148
|
}
|
19234
|
-
.v-
|
19235
|
-
|
19149
|
+
.v-banner {
|
19150
|
+
background: rgb(var(--v-theme-surface));
|
19151
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19236
19152
|
}
|
19237
|
-
|
19238
|
-
|
19239
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
19240
|
-
}
|
19153
|
+
.v-banner--rounded {
|
19154
|
+
border-radius: 4px;
|
19241
19155
|
}
|
19242
|
-
.v-
|
19243
|
-
|
19156
|
+
.v-banner--stacked:not(.v-banner--one-line) {
|
19157
|
+
grid-template-areas: "prepend content" ". actions";
|
19244
19158
|
}
|
19245
|
-
.v-
|
19246
|
-
|
19159
|
+
.v-banner--stacked .v-banner-text {
|
19160
|
+
padding-inline-end: 36px;
|
19247
19161
|
}
|
19248
|
-
.v-
|
19249
|
-
|
19162
|
+
.v-banner--density-default .v-banner-actions {
|
19163
|
+
margin-bottom: -8px;
|
19250
19164
|
}
|
19251
|
-
|
19252
|
-
|
19253
|
-
|
19254
|
-
}
|
19165
|
+
.v-banner--density-default.v-banner--one-line {
|
19166
|
+
padding-top: 8px;
|
19167
|
+
padding-bottom: 8px;
|
19255
19168
|
}
|
19256
|
-
.v-
|
19257
|
-
|
19258
|
-
color: inherit;
|
19169
|
+
.v-banner--density-default.v-banner--one-line .v-banner-actions {
|
19170
|
+
margin-bottom: 0;
|
19259
19171
|
}
|
19260
|
-
.v-
|
19261
|
-
|
19172
|
+
.v-banner--density-default.v-banner--one-line {
|
19173
|
+
padding-top: 10px;
|
19262
19174
|
}
|
19263
|
-
.v-
|
19264
|
-
|
19175
|
+
.v-banner--density-default.v-banner--two-line {
|
19176
|
+
padding-top: 16px;
|
19177
|
+
padding-bottom: 16px;
|
19265
19178
|
}
|
19266
|
-
.v-
|
19267
|
-
|
19179
|
+
.v-banner--density-default.v-banner--three-line {
|
19180
|
+
padding-top: 24px;
|
19181
|
+
padding-bottom: 16px;
|
19268
19182
|
}
|
19269
|
-
.v-
|
19270
|
-
|
19271
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19183
|
+
.v-banner--density-default:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-default.v-banner--two-line .v-banner-actions, .v-banner--density-default.v-banner--three-line .v-banner-actions {
|
19184
|
+
margin-top: 20px;
|
19272
19185
|
}
|
19273
|
-
|
19274
|
-
|
19186
|
+
|
19187
|
+
.v-banner--density-comfortable .v-banner-actions {
|
19188
|
+
margin-bottom: -4px;
|
19275
19189
|
}
|
19276
|
-
.v-
|
19277
|
-
|
19190
|
+
.v-banner--density-comfortable.v-banner--one-line {
|
19191
|
+
padding-top: 4px;
|
19192
|
+
padding-bottom: 4px;
|
19278
19193
|
}
|
19279
|
-
.v-
|
19280
|
-
|
19194
|
+
.v-banner--density-comfortable.v-banner--one-line .v-banner-actions {
|
19195
|
+
margin-bottom: 0;
|
19281
19196
|
}
|
19282
|
-
.v-
|
19283
|
-
|
19197
|
+
.v-banner--density-comfortable.v-banner--two-line {
|
19198
|
+
padding-top: 12px;
|
19199
|
+
padding-bottom: 12px;
|
19284
19200
|
}
|
19285
|
-
.v-
|
19286
|
-
|
19287
|
-
|
19288
|
-
border-radius: inherit;
|
19289
|
-
top: 0;
|
19290
|
-
right: 0;
|
19291
|
-
bottom: 0;
|
19292
|
-
left: 0;
|
19293
|
-
pointer-events: none;
|
19201
|
+
.v-banner--density-comfortable.v-banner--three-line {
|
19202
|
+
padding-top: 20px;
|
19203
|
+
padding-bottom: 12px;
|
19294
19204
|
}
|
19295
|
-
.v-
|
19296
|
-
|
19205
|
+
.v-banner--density-comfortable:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-comfortable.v-banner--two-line .v-banner-actions, .v-banner--density-comfortable.v-banner--three-line .v-banner-actions {
|
19206
|
+
margin-top: 16px;
|
19297
19207
|
}
|
19298
|
-
|
19299
|
-
|
19300
|
-
-
|
19301
|
-
user-select: none;
|
19208
|
+
|
19209
|
+
.v-banner--density-compact .v-banner-actions {
|
19210
|
+
margin-bottom: 0px;
|
19302
19211
|
}
|
19303
|
-
.v-
|
19304
|
-
|
19212
|
+
.v-banner--density-compact.v-banner--one-line {
|
19213
|
+
padding-top: 0px;
|
19214
|
+
padding-bottom: 0px;
|
19305
19215
|
}
|
19306
|
-
.v-
|
19307
|
-
|
19216
|
+
.v-banner--density-compact.v-banner--one-line .v-banner-actions {
|
19217
|
+
margin-bottom: 0;
|
19308
19218
|
}
|
19309
|
-
.v-
|
19310
|
-
|
19219
|
+
.v-banner--density-compact.v-banner--two-line {
|
19220
|
+
padding-top: 8px;
|
19221
|
+
padding-bottom: 8px;
|
19311
19222
|
}
|
19312
|
-
.v-
|
19313
|
-
|
19314
|
-
bottom:
|
19315
|
-
|
19316
|
-
|
19317
|
-
|
19318
|
-
|
19319
|
-
|
19320
|
-
|
19223
|
+
.v-banner--density-compact.v-banner--three-line {
|
19224
|
+
padding-top: 16px;
|
19225
|
+
padding-bottom: 8px;
|
19226
|
+
}
|
19227
|
+
.v-banner--density-compact:not(.v-banner--one-line) .v-banner-actions, .v-banner--density-compact.v-banner--two-line .v-banner-actions, .v-banner--density-compact.v-banner--three-line .v-banner-actions {
|
19228
|
+
margin-top: 12px;
|
19229
|
+
}
|
19230
|
+
|
19231
|
+
.v-banner--sticky {
|
19321
19232
|
top: 0;
|
19322
|
-
|
19233
|
+
z-index: 1;
|
19323
19234
|
}
|
19324
|
-
|
19325
|
-
|
19326
|
-
|
19235
|
+
|
19236
|
+
.v-banner__content {
|
19237
|
+
align-items: center;
|
19238
|
+
display: flex;
|
19239
|
+
grid-area: content;
|
19327
19240
|
}
|
19328
|
-
|
19329
|
-
|
19241
|
+
|
19242
|
+
.v-banner__prepend {
|
19243
|
+
align-self: flex-start;
|
19244
|
+
grid-area: prepend;
|
19245
|
+
margin-inline-end: 24px;
|
19330
19246
|
}
|
19331
|
-
|
19332
|
-
|
19333
|
-
|
19247
|
+
|
19248
|
+
.v-banner-actions {
|
19249
|
+
align-self: flex-end;
|
19250
|
+
display: flex;
|
19251
|
+
flex: 0 1;
|
19252
|
+
grid-area: actions;
|
19253
|
+
justify-content: flex-end;
|
19334
19254
|
}
|
19335
|
-
.v-
|
19336
|
-
|
19255
|
+
.v-banner--two-line .v-banner-actions, .v-banner--three-line .v-banner-actions {
|
19256
|
+
margin-top: 20px;
|
19337
19257
|
}
|
19338
|
-
|
19339
|
-
|
19258
|
+
|
19259
|
+
.v-banner-text {
|
19260
|
+
-webkit-box-orient: vertical;
|
19261
|
+
display: -webkit-box;
|
19262
|
+
padding-inline-end: 90px;
|
19263
|
+
overflow: hidden;
|
19340
19264
|
}
|
19341
|
-
.v-
|
19342
|
-
|
19265
|
+
.v-banner--one-line .v-banner-text {
|
19266
|
+
-webkit-line-clamp: 1;
|
19343
19267
|
}
|
19344
|
-
.v-
|
19345
|
-
|
19268
|
+
.v-banner--two-line .v-banner-text {
|
19269
|
+
-webkit-line-clamp: 2;
|
19346
19270
|
}
|
19347
|
-
.v-
|
19348
|
-
|
19271
|
+
.v-banner--three-line .v-banner-text {
|
19272
|
+
-webkit-line-clamp: 3;
|
19349
19273
|
}
|
19350
|
-
|
19351
|
-
|
19352
|
-
|
19274
|
+
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
19275
|
+
align-self: flex-start;
|
19276
|
+
}.v-breadcrumbs {
|
19353
19277
|
display: flex;
|
19354
|
-
flex: none;
|
19355
|
-
min-height: 52px;
|
19356
|
-
padding: 0.5rem;
|
19357
|
-
gap: 0.5rem;
|
19358
|
-
}
|
19359
|
-
|
19360
|
-
.v-card-item {
|
19361
19278
|
align-items: center;
|
19362
|
-
|
19363
|
-
|
19364
|
-
grid-template-areas: "prepend content append";
|
19365
|
-
grid-template-columns: max-content auto max-content;
|
19366
|
-
padding: 0.625rem 1rem;
|
19279
|
+
line-height: 1.6;
|
19280
|
+
padding: 16px 12px;
|
19367
19281
|
}
|
19368
|
-
.v-
|
19369
|
-
|
19282
|
+
.v-breadcrumbs--rounded {
|
19283
|
+
border-radius: 4px;
|
19370
19284
|
}
|
19371
|
-
.v-
|
19372
|
-
|
19373
|
-
|
19285
|
+
.v-breadcrumbs--density-default {
|
19286
|
+
padding-top: 16px;
|
19287
|
+
padding-bottom: 16px;
|
19374
19288
|
}
|
19375
|
-
|
19376
|
-
|
19377
|
-
padding-
|
19289
|
+
|
19290
|
+
.v-breadcrumbs--density-comfortable {
|
19291
|
+
padding-top: 12px;
|
19292
|
+
padding-bottom: 12px;
|
19378
19293
|
}
|
19379
|
-
|
19380
|
-
|
19381
|
-
padding-
|
19294
|
+
|
19295
|
+
.v-breadcrumbs--density-compact {
|
19296
|
+
padding-top: 8px;
|
19297
|
+
padding-bottom: 8px;
|
19382
19298
|
}
|
19383
19299
|
|
19384
|
-
.v-
|
19385
|
-
align-
|
19386
|
-
|
19387
|
-
overflow: hidden;
|
19300
|
+
.v-breadcrumbs__prepend {
|
19301
|
+
align-items: center;
|
19302
|
+
display: inline-flex;
|
19388
19303
|
}
|
19389
19304
|
|
19390
|
-
.v-
|
19391
|
-
|
19392
|
-
|
19393
|
-
|
19394
|
-
|
19395
|
-
-
|
19396
|
-
|
19397
|
-
letter-spacing: 0.0125em;
|
19398
|
-
min-width: 0;
|
19399
|
-
overflow-wrap: normal;
|
19400
|
-
overflow: hidden;
|
19401
|
-
padding: 0.5rem 1rem;
|
19402
|
-
text-overflow: ellipsis;
|
19403
|
-
text-transform: none;
|
19404
|
-
white-space: nowrap;
|
19405
|
-
word-break: normal;
|
19406
|
-
word-wrap: break-word;
|
19407
|
-
}
|
19408
|
-
.v-card .v-card-title {
|
19409
|
-
line-height: 1.6;
|
19410
|
-
}
|
19411
|
-
.v-card--density-comfortable .v-card-title {
|
19412
|
-
line-height: 1.75rem;
|
19413
|
-
}
|
19414
|
-
.v-card--density-compact .v-card-title {
|
19415
|
-
line-height: 1.55rem;
|
19416
|
-
}
|
19417
|
-
.v-card-item .v-card-title {
|
19418
|
-
padding: 0;
|
19419
|
-
}
|
19420
|
-
.v-card-title + .v-card-text,
|
19421
|
-
.v-card-title + .v-card-actions {
|
19422
|
-
padding-top: 0;
|
19423
|
-
}
|
19424
|
-
|
19425
|
-
.v-card-subtitle {
|
19426
|
-
display: block;
|
19427
|
-
flex: none;
|
19428
|
-
font-size: 0.875rem;
|
19429
|
-
font-weight: 400;
|
19430
|
-
letter-spacing: 0.0178571429em;
|
19431
|
-
opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
|
19432
|
-
overflow: hidden;
|
19433
|
-
padding: 0 1rem;
|
19434
|
-
text-overflow: ellipsis;
|
19435
|
-
text-transform: none;
|
19436
|
-
white-space: nowrap;
|
19437
|
-
}
|
19438
|
-
.v-card .v-card-subtitle {
|
19439
|
-
line-height: 1.425;
|
19440
|
-
}
|
19441
|
-
.v-card--density-comfortable .v-card-subtitle {
|
19442
|
-
line-height: 1.125rem;
|
19443
|
-
}
|
19444
|
-
.v-card--density-compact .v-card-subtitle {
|
19445
|
-
line-height: 1rem;
|
19446
|
-
}
|
19447
|
-
.v-card-item .v-card-subtitle {
|
19448
|
-
padding: 0 0 0.25rem;
|
19449
|
-
}
|
19450
|
-
|
19451
|
-
.v-card-text {
|
19452
|
-
flex: 1 1 auto;
|
19453
|
-
font-size: 0.875rem;
|
19454
|
-
font-weight: 400;
|
19455
|
-
letter-spacing: 0.0178571429em;
|
19456
|
-
opacity: var(--v-card-text-opacity, 1);
|
19457
|
-
padding: 1rem;
|
19458
|
-
text-transform: none;
|
19459
|
-
}
|
19460
|
-
.v-card .v-card-text {
|
19461
|
-
line-height: 1.425;
|
19462
|
-
}
|
19463
|
-
.v-card--density-comfortable .v-card-text {
|
19464
|
-
line-height: 1.2rem;
|
19305
|
+
.v-breadcrumbs-item {
|
19306
|
+
align-items: center;
|
19307
|
+
color: inherit;
|
19308
|
+
display: inline-flex;
|
19309
|
+
padding: 0 4px;
|
19310
|
+
text-decoration: none;
|
19311
|
+
vertical-align: middle;
|
19465
19312
|
}
|
19466
|
-
.v-
|
19467
|
-
|
19313
|
+
.v-breadcrumbs-item--disabled {
|
19314
|
+
opacity: var(--v-disabled-opacity);
|
19315
|
+
pointer-events: none;
|
19468
19316
|
}
|
19469
|
-
|
19470
|
-
|
19471
|
-
|
19472
|
-
height: 100%;
|
19473
|
-
flex: 1 1 auto;
|
19474
|
-
left: 0;
|
19475
|
-
overflow: hidden;
|
19476
|
-
position: absolute;
|
19477
|
-
top: 0;
|
19478
|
-
width: 100%;
|
19479
|
-
z-index: -1;
|
19317
|
+
.v-breadcrumbs-item--link {
|
19318
|
+
color: inherit;
|
19319
|
+
text-decoration: none;
|
19480
19320
|
}
|
19481
|
-
|
19482
|
-
|
19483
|
-
border-radius: inherit;
|
19484
|
-
overflow: hidden;
|
19485
|
-
position: relative;
|
19321
|
+
.v-breadcrumbs-item--link:hover {
|
19322
|
+
text-decoration: underline;
|
19486
19323
|
}
|
19487
|
-
|
19488
|
-
|
19489
|
-
|
19490
|
-
top: 0;
|
19491
|
-
left: 0;
|
19492
|
-
position: absolute;
|
19493
|
-
right: 0;
|
19494
|
-
width: 100%;
|
19495
|
-
z-index: 1;
|
19324
|
+
.v-breadcrumbs-item .v-icon {
|
19325
|
+
font-size: 1rem;
|
19326
|
+
margin-inline: -4px 2px;
|
19496
19327
|
}
|
19497
19328
|
|
19498
|
-
.v-
|
19499
|
-
|
19500
|
-
|
19501
|
-
|
19502
|
-
top: 0;
|
19503
|
-
right: 0;
|
19504
|
-
bottom: 0;
|
19505
|
-
left: 0;
|
19506
|
-
pointer-events: none;
|
19507
|
-
opacity: 0;
|
19508
|
-
transition: opacity 0.2s ease-in-out;
|
19329
|
+
.v-breadcrumbs-divider {
|
19330
|
+
display: inline-block;
|
19331
|
+
padding: 0 8px;
|
19332
|
+
vertical-align: middle;
|
19509
19333
|
}.v-checkbox.v-input {
|
19510
19334
|
flex: 0 1 auto;
|
19511
19335
|
}
|
@@ -19576,24 +19400,6 @@ html.overflow-y-hidden {
|
|
19576
19400
|
flex-direction: column;
|
19577
19401
|
height: 100% !important;
|
19578
19402
|
width: 50px;
|
19579
|
-
}.v-chip-group {
|
19580
|
-
display: flex;
|
19581
|
-
max-width: 100%;
|
19582
|
-
min-width: 0;
|
19583
|
-
overflow-x: auto;
|
19584
|
-
padding: 4px 0;
|
19585
|
-
}
|
19586
|
-
.v-chip-group .v-chip {
|
19587
|
-
margin: 4px 8px 4px 0;
|
19588
|
-
}
|
19589
|
-
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
19590
|
-
opacity: var(--v-activated-opacity);
|
19591
|
-
}
|
19592
|
-
|
19593
|
-
.v-chip-group--column .v-slide-group__content {
|
19594
|
-
white-space: normal;
|
19595
|
-
flex-wrap: wrap;
|
19596
|
-
max-width: 100%;
|
19597
19403
|
}.v-chip {
|
19598
19404
|
align-items: center;
|
19599
19405
|
display: inline-flex;
|
@@ -20012,78 +19818,488 @@ html.overflow-y-hidden {
|
|
20012
19818
|
|
20013
19819
|
.v-chip--label {
|
20014
19820
|
border-radius: 4px;
|
20015
|
-
}.v-
|
20016
|
-
|
20017
|
-
|
20018
|
-
|
19821
|
+
}.v-card {
|
19822
|
+
display: block;
|
19823
|
+
overflow: hidden;
|
19824
|
+
overflow-wrap: break-word;
|
19825
|
+
position: relative;
|
19826
|
+
padding: 0;
|
19827
|
+
text-decoration: none;
|
19828
|
+
transition-duration: 0.28s;
|
19829
|
+
transition-property: box-shadow, opacity, background;
|
19830
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
19831
|
+
z-index: 0;
|
20019
19832
|
}
|
20020
|
-
.v-
|
20021
|
-
|
19833
|
+
.v-card {
|
19834
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19835
|
+
border-style: solid;
|
19836
|
+
border-width: 0;
|
20022
19837
|
}
|
20023
|
-
.v-
|
20024
|
-
border-
|
19838
|
+
.v-card--border {
|
19839
|
+
border-width: thin;
|
19840
|
+
box-shadow: none;
|
20025
19841
|
}
|
20026
|
-
|
20027
|
-
|
20028
|
-
display: flex;
|
20029
|
-
flex-direction: column;
|
20030
|
-
padding: 16px;
|
19842
|
+
.v-card--absolute {
|
19843
|
+
position: absolute;
|
20031
19844
|
}
|
20032
|
-
|
20033
|
-
|
20034
|
-
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));
|
19845
|
+
.v-card--fixed {
|
19846
|
+
position: fixed;
|
20035
19847
|
}
|
20036
|
-
.v-
|
20037
|
-
|
20038
|
-
}.v-container {
|
20039
|
-
width: 100%;
|
20040
|
-
padding: 16px;
|
20041
|
-
margin-right: auto;
|
20042
|
-
margin-left: auto;
|
19848
|
+
.v-card {
|
19849
|
+
border-radius: 4px;
|
20043
19850
|
}
|
20044
|
-
|
20045
|
-
|
20046
|
-
max-width: 900px;
|
20047
|
-
}
|
19851
|
+
.v-card:hover > .v-card__overlay {
|
19852
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
20048
19853
|
}
|
20049
|
-
|
20050
|
-
|
20051
|
-
max-width: 1200px;
|
20052
|
-
}
|
19854
|
+
.v-card:focus-visible > .v-card__overlay {
|
19855
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
20053
19856
|
}
|
20054
|
-
@
|
20055
|
-
.v-
|
20056
|
-
|
19857
|
+
@supports not selector(:focus-visible) {
|
19858
|
+
.v-card:focus > .v-card__overlay {
|
19859
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
20057
19860
|
}
|
20058
19861
|
}
|
20059
|
-
|
20060
|
-
|
20061
|
-
max-width: 2400px;
|
20062
|
-
}
|
19862
|
+
.v-card--active > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true] > .v-card__overlay {
|
19863
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
20063
19864
|
}
|
20064
|
-
.v-
|
20065
|
-
|
19865
|
+
.v-card--active:hover > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:hover > .v-card__overlay {
|
19866
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
20066
19867
|
}
|
20067
|
-
.v-
|
20068
|
-
|
20069
|
-
display: flex;
|
20070
|
-
flex-wrap: wrap;
|
19868
|
+
.v-card--active:focus-visible > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-card__overlay {
|
19869
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
20071
19870
|
}
|
20072
|
-
|
20073
|
-
.v-
|
20074
|
-
|
20075
|
-
|
20076
|
-
flex: 1 1 auto;
|
20077
|
-
margin: -12px;
|
19871
|
+
@supports not selector(:focus-visible) {
|
19872
|
+
.v-card--active:focus > .v-card__overlay, .v-card[aria-haspopup=menu][aria-expanded=true]:focus > .v-card__overlay {
|
19873
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19874
|
+
}
|
20078
19875
|
}
|
20079
|
-
.v-
|
20080
|
-
|
19876
|
+
.v-card--variant-plain, .v-card--variant-outlined, .v-card--variant-text, .v-card--variant-tonal {
|
19877
|
+
background: transparent;
|
19878
|
+
color: inherit;
|
20081
19879
|
}
|
20082
|
-
.v-
|
20083
|
-
|
19880
|
+
.v-card--variant-plain {
|
19881
|
+
opacity: 0.62;
|
20084
19882
|
}
|
20085
|
-
.v-
|
20086
|
-
|
19883
|
+
.v-card--variant-plain:focus, .v-card--variant-plain:hover {
|
19884
|
+
opacity: 1;
|
19885
|
+
}
|
19886
|
+
.v-card--variant-plain .v-card__overlay {
|
19887
|
+
display: none;
|
19888
|
+
}
|
19889
|
+
.v-card--variant-elevated, .v-card--variant-flat {
|
19890
|
+
background: rgb(var(--v-theme-surface));
|
19891
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19892
|
+
}
|
19893
|
+
.v-card--variant-elevated {
|
19894
|
+
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19895
|
+
}
|
19896
|
+
.v-card--variant-flat {
|
19897
|
+
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));
|
19898
|
+
}
|
19899
|
+
.v-card--variant-outlined {
|
19900
|
+
border: thin solid currentColor;
|
19901
|
+
}
|
19902
|
+
.v-card--variant-text .v-card__overlay {
|
19903
|
+
background: currentColor;
|
19904
|
+
}
|
19905
|
+
.v-card--variant-tonal .v-card__underlay {
|
19906
|
+
background: currentColor;
|
19907
|
+
opacity: var(--v-activated-opacity);
|
19908
|
+
border-radius: inherit;
|
19909
|
+
top: 0;
|
19910
|
+
right: 0;
|
19911
|
+
bottom: 0;
|
19912
|
+
left: 0;
|
19913
|
+
pointer-events: none;
|
19914
|
+
}
|
19915
|
+
.v-card .v-card__underlay {
|
19916
|
+
position: absolute;
|
19917
|
+
}
|
19918
|
+
.v-card--disabled {
|
19919
|
+
pointer-events: none;
|
19920
|
+
-webkit-user-select: none;
|
19921
|
+
user-select: none;
|
19922
|
+
}
|
19923
|
+
.v-card--disabled > :not(.v-card__loader) {
|
19924
|
+
opacity: 0.6;
|
19925
|
+
}
|
19926
|
+
.v-card--flat {
|
19927
|
+
box-shadow: none;
|
19928
|
+
}
|
19929
|
+
.v-card--hover {
|
19930
|
+
cursor: pointer;
|
19931
|
+
}
|
19932
|
+
.v-card--hover::before, .v-card--hover::after {
|
19933
|
+
border-radius: inherit;
|
19934
|
+
bottom: 0;
|
19935
|
+
content: "";
|
19936
|
+
display: block;
|
19937
|
+
left: 0;
|
19938
|
+
pointer-events: none;
|
19939
|
+
position: absolute;
|
19940
|
+
right: 0;
|
19941
|
+
top: 0;
|
19942
|
+
transition: inherit;
|
19943
|
+
}
|
19944
|
+
.v-card--hover::before {
|
19945
|
+
opacity: 1;
|
19946
|
+
z-index: -1;
|
19947
|
+
}
|
19948
|
+
.v-card--hover::before {
|
19949
|
+
box-shadow: 0px 2px 1px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 1px 1px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 3px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
19950
|
+
}
|
19951
|
+
.v-card--hover::after {
|
19952
|
+
z-index: 1;
|
19953
|
+
opacity: 0;
|
19954
|
+
}
|
19955
|
+
.v-card--hover::after {
|
19956
|
+
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));
|
19957
|
+
}
|
19958
|
+
.v-card--hover:hover::after {
|
19959
|
+
opacity: 1;
|
19960
|
+
}
|
19961
|
+
.v-card--hover:hover::before {
|
19962
|
+
opacity: 0;
|
19963
|
+
}
|
19964
|
+
.v-card--hover:hover {
|
19965
|
+
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));
|
19966
|
+
}
|
19967
|
+
.v-card--link {
|
19968
|
+
cursor: pointer;
|
19969
|
+
}
|
19970
|
+
|
19971
|
+
.v-card-actions {
|
19972
|
+
align-items: center;
|
19973
|
+
display: flex;
|
19974
|
+
flex: none;
|
19975
|
+
min-height: 52px;
|
19976
|
+
padding: 0.5rem;
|
19977
|
+
gap: 0.5rem;
|
19978
|
+
}
|
19979
|
+
|
19980
|
+
.v-card-item {
|
19981
|
+
align-items: center;
|
19982
|
+
display: grid;
|
19983
|
+
flex: none;
|
19984
|
+
grid-template-areas: "prepend content append";
|
19985
|
+
grid-template-columns: max-content auto max-content;
|
19986
|
+
padding: 0.625rem 1rem;
|
19987
|
+
}
|
19988
|
+
.v-card-item + .v-card-text {
|
19989
|
+
padding-top: 0;
|
19990
|
+
}
|
19991
|
+
.v-card-item__prepend, .v-card-item__append {
|
19992
|
+
align-items: center;
|
19993
|
+
display: flex;
|
19994
|
+
}
|
19995
|
+
.v-card-item__prepend {
|
19996
|
+
grid-area: prepend;
|
19997
|
+
padding-inline-end: 0.5rem;
|
19998
|
+
}
|
19999
|
+
.v-card-item__append {
|
20000
|
+
grid-area: append;
|
20001
|
+
padding-inline-start: 0.5rem;
|
20002
|
+
}
|
20003
|
+
|
20004
|
+
.v-card-item__content {
|
20005
|
+
align-self: center;
|
20006
|
+
grid-area: content;
|
20007
|
+
overflow: hidden;
|
20008
|
+
}
|
20009
|
+
|
20010
|
+
.v-card-title {
|
20011
|
+
display: block;
|
20012
|
+
flex: none;
|
20013
|
+
font-size: 1.25rem;
|
20014
|
+
font-weight: 500;
|
20015
|
+
-webkit-hyphens: auto;
|
20016
|
+
hyphens: auto;
|
20017
|
+
letter-spacing: 0.0125em;
|
20018
|
+
min-width: 0;
|
20019
|
+
overflow-wrap: normal;
|
20020
|
+
overflow: hidden;
|
20021
|
+
padding: 0.5rem 1rem;
|
20022
|
+
text-overflow: ellipsis;
|
20023
|
+
text-transform: none;
|
20024
|
+
white-space: nowrap;
|
20025
|
+
word-break: normal;
|
20026
|
+
word-wrap: break-word;
|
20027
|
+
}
|
20028
|
+
.v-card .v-card-title {
|
20029
|
+
line-height: 1.6;
|
20030
|
+
}
|
20031
|
+
.v-card--density-comfortable .v-card-title {
|
20032
|
+
line-height: 1.75rem;
|
20033
|
+
}
|
20034
|
+
.v-card--density-compact .v-card-title {
|
20035
|
+
line-height: 1.55rem;
|
20036
|
+
}
|
20037
|
+
.v-card-item .v-card-title {
|
20038
|
+
padding: 0;
|
20039
|
+
}
|
20040
|
+
.v-card-title + .v-card-text,
|
20041
|
+
.v-card-title + .v-card-actions {
|
20042
|
+
padding-top: 0;
|
20043
|
+
}
|
20044
|
+
|
20045
|
+
.v-card-subtitle {
|
20046
|
+
display: block;
|
20047
|
+
flex: none;
|
20048
|
+
font-size: 0.875rem;
|
20049
|
+
font-weight: 400;
|
20050
|
+
letter-spacing: 0.0178571429em;
|
20051
|
+
opacity: var(--v-card-subtitle-opacity, var(--v-medium-emphasis-opacity));
|
20052
|
+
overflow: hidden;
|
20053
|
+
padding: 0 1rem;
|
20054
|
+
text-overflow: ellipsis;
|
20055
|
+
text-transform: none;
|
20056
|
+
white-space: nowrap;
|
20057
|
+
}
|
20058
|
+
.v-card .v-card-subtitle {
|
20059
|
+
line-height: 1.425;
|
20060
|
+
}
|
20061
|
+
.v-card--density-comfortable .v-card-subtitle {
|
20062
|
+
line-height: 1.125rem;
|
20063
|
+
}
|
20064
|
+
.v-card--density-compact .v-card-subtitle {
|
20065
|
+
line-height: 1rem;
|
20066
|
+
}
|
20067
|
+
.v-card-item .v-card-subtitle {
|
20068
|
+
padding: 0 0 0.25rem;
|
20069
|
+
}
|
20070
|
+
|
20071
|
+
.v-card-text {
|
20072
|
+
flex: 1 1 auto;
|
20073
|
+
font-size: 0.875rem;
|
20074
|
+
font-weight: 400;
|
20075
|
+
letter-spacing: 0.0178571429em;
|
20076
|
+
opacity: var(--v-card-text-opacity, 1);
|
20077
|
+
padding: 1rem;
|
20078
|
+
text-transform: none;
|
20079
|
+
}
|
20080
|
+
.v-card .v-card-text {
|
20081
|
+
line-height: 1.425;
|
20082
|
+
}
|
20083
|
+
.v-card--density-comfortable .v-card-text {
|
20084
|
+
line-height: 1.2rem;
|
20085
|
+
}
|
20086
|
+
.v-card--density-compact .v-card-text {
|
20087
|
+
line-height: 1.15rem;
|
20088
|
+
}
|
20089
|
+
|
20090
|
+
.v-card__image {
|
20091
|
+
display: flex;
|
20092
|
+
height: 100%;
|
20093
|
+
flex: 1 1 auto;
|
20094
|
+
left: 0;
|
20095
|
+
overflow: hidden;
|
20096
|
+
position: absolute;
|
20097
|
+
top: 0;
|
20098
|
+
width: 100%;
|
20099
|
+
z-index: -1;
|
20100
|
+
}
|
20101
|
+
|
20102
|
+
.v-card__content {
|
20103
|
+
border-radius: inherit;
|
20104
|
+
overflow: hidden;
|
20105
|
+
position: relative;
|
20106
|
+
}
|
20107
|
+
|
20108
|
+
.v-card__loader {
|
20109
|
+
bottom: auto;
|
20110
|
+
top: 0;
|
20111
|
+
left: 0;
|
20112
|
+
position: absolute;
|
20113
|
+
right: 0;
|
20114
|
+
width: 100%;
|
20115
|
+
z-index: 1;
|
20116
|
+
}
|
20117
|
+
|
20118
|
+
.v-card__overlay {
|
20119
|
+
background-color: currentColor;
|
20120
|
+
border-radius: inherit;
|
20121
|
+
position: absolute;
|
20122
|
+
top: 0;
|
20123
|
+
right: 0;
|
20124
|
+
bottom: 0;
|
20125
|
+
left: 0;
|
20126
|
+
pointer-events: none;
|
20127
|
+
opacity: 0;
|
20128
|
+
transition: opacity 0.2s ease-in-out;
|
20129
|
+
}.v-chip-group {
|
20130
|
+
display: flex;
|
20131
|
+
max-width: 100%;
|
20132
|
+
min-width: 0;
|
20133
|
+
overflow-x: auto;
|
20134
|
+
padding: 4px 0;
|
20135
|
+
}
|
20136
|
+
.v-chip-group .v-chip {
|
20137
|
+
margin: 4px 8px 4px 0;
|
20138
|
+
}
|
20139
|
+
.v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
|
20140
|
+
opacity: var(--v-activated-opacity);
|
20141
|
+
}
|
20142
|
+
|
20143
|
+
.v-chip-group--column .v-slide-group__content {
|
20144
|
+
white-space: normal;
|
20145
|
+
flex-wrap: wrap;
|
20146
|
+
max-width: 100%;
|
20147
|
+
}.v-color-picker {
|
20148
|
+
align-self: flex-start;
|
20149
|
+
contain: content;
|
20150
|
+
width: 300px;
|
20151
|
+
}
|
20152
|
+
.v-color-picker.v-sheet.v-picker {
|
20153
|
+
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));
|
20154
|
+
}
|
20155
|
+
.v-color-picker.v-sheet.v-picker {
|
20156
|
+
border-radius: 4px;
|
20157
|
+
}
|
20158
|
+
|
20159
|
+
.v-color-picker__controls {
|
20160
|
+
display: flex;
|
20161
|
+
flex-direction: column;
|
20162
|
+
padding: 16px;
|
20163
|
+
}
|
20164
|
+
|
20165
|
+
.v-color-picker--flat {
|
20166
|
+
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));
|
20167
|
+
}
|
20168
|
+
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20169
|
+
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));
|
20170
|
+
}.v-combobox .v-field .v-text-field__prefix,
|
20171
|
+
.v-combobox .v-field .v-text-field__suffix,
|
20172
|
+
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20173
|
+
cursor: text;
|
20174
|
+
}
|
20175
|
+
.v-combobox .v-field .v-field__input > input {
|
20176
|
+
flex: 1 1;
|
20177
|
+
}
|
20178
|
+
.v-combobox .v-field input {
|
20179
|
+
min-width: 64px;
|
20180
|
+
}
|
20181
|
+
.v-combobox .v-field:not(.v-field--focused) input {
|
20182
|
+
min-width: 0;
|
20183
|
+
}
|
20184
|
+
.v-combobox .v-field--dirty .v-combobox__selection {
|
20185
|
+
margin-inline-end: 2px;
|
20186
|
+
}
|
20187
|
+
.v-combobox .v-combobox__selection-text {
|
20188
|
+
overflow: hidden;
|
20189
|
+
text-overflow: ellipsis;
|
20190
|
+
white-space: nowrap;
|
20191
|
+
}
|
20192
|
+
|
20193
|
+
.v-combobox__content {
|
20194
|
+
overflow: hidden;
|
20195
|
+
}
|
20196
|
+
.v-combobox__content {
|
20197
|
+
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));
|
20198
|
+
}
|
20199
|
+
.v-combobox__content {
|
20200
|
+
border-radius: 4px;
|
20201
|
+
}
|
20202
|
+
.v-combobox__mask {
|
20203
|
+
background: rgb(var(--v-theme-surface-light));
|
20204
|
+
}
|
20205
|
+
.v-combobox__selection {
|
20206
|
+
display: inline-flex;
|
20207
|
+
align-items: center;
|
20208
|
+
height: 1.5rem;
|
20209
|
+
letter-spacing: inherit;
|
20210
|
+
line-height: inherit;
|
20211
|
+
max-width: calc(100% - 2px - 2px);
|
20212
|
+
}
|
20213
|
+
.v-combobox__selection:first-child {
|
20214
|
+
margin-inline-start: 0;
|
20215
|
+
}
|
20216
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20217
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20218
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20219
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20220
|
+
top: 0px;
|
20221
|
+
}
|
20222
|
+
.v-combobox--selecting-index .v-combobox__selection {
|
20223
|
+
opacity: var(--v-medium-emphasis-opacity);
|
20224
|
+
}
|
20225
|
+
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20226
|
+
opacity: 1;
|
20227
|
+
}
|
20228
|
+
.v-combobox--selecting-index .v-field__input > input {
|
20229
|
+
caret-color: transparent;
|
20230
|
+
}
|
20231
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20232
|
+
flex: 1 1;
|
20233
|
+
position: absolute;
|
20234
|
+
left: 0;
|
20235
|
+
right: 0;
|
20236
|
+
width: 100%;
|
20237
|
+
padding-inline: inherit;
|
20238
|
+
}
|
20239
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20240
|
+
transition: none;
|
20241
|
+
}
|
20242
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20243
|
+
opacity: 0;
|
20244
|
+
}
|
20245
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20246
|
+
opacity: 0;
|
20247
|
+
}
|
20248
|
+
.v-combobox__menu-icon {
|
20249
|
+
margin-inline-start: 4px;
|
20250
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20251
|
+
}
|
20252
|
+
.v-combobox--active-menu .v-combobox__menu-icon {
|
20253
|
+
transform: rotate(180deg);
|
20254
|
+
}.v-container {
|
20255
|
+
width: 100%;
|
20256
|
+
padding: 16px;
|
20257
|
+
margin-right: auto;
|
20258
|
+
margin-left: auto;
|
20259
|
+
}
|
20260
|
+
@media (min-width: 960px) {
|
20261
|
+
.v-container {
|
20262
|
+
max-width: 900px;
|
20263
|
+
}
|
20264
|
+
}
|
20265
|
+
@media (min-width: 1280px) {
|
20266
|
+
.v-container {
|
20267
|
+
max-width: 1200px;
|
20268
|
+
}
|
20269
|
+
}
|
20270
|
+
@media (min-width: 1920px) {
|
20271
|
+
.v-container {
|
20272
|
+
max-width: 1800px;
|
20273
|
+
}
|
20274
|
+
}
|
20275
|
+
@media (min-width: 2560px) {
|
20276
|
+
.v-container {
|
20277
|
+
max-width: 2400px;
|
20278
|
+
}
|
20279
|
+
}
|
20280
|
+
.v-container--fluid {
|
20281
|
+
max-width: 100%;
|
20282
|
+
}
|
20283
|
+
.v-container.fill-height {
|
20284
|
+
align-items: center;
|
20285
|
+
display: flex;
|
20286
|
+
flex-wrap: wrap;
|
20287
|
+
}
|
20288
|
+
|
20289
|
+
.v-row {
|
20290
|
+
display: flex;
|
20291
|
+
flex-wrap: wrap;
|
20292
|
+
flex: 1 1 auto;
|
20293
|
+
margin: -12px;
|
20294
|
+
}
|
20295
|
+
.v-row + .v-row {
|
20296
|
+
margin-top: 12px;
|
20297
|
+
}
|
20298
|
+
.v-row + .v-row--dense {
|
20299
|
+
margin-top: 4px;
|
20300
|
+
}
|
20301
|
+
.v-row--dense {
|
20302
|
+
margin: -4px;
|
20087
20303
|
}
|
20088
20304
|
.v-row--dense > .v-col,
|
20089
20305
|
.v-row--dense > [class*=v-col-] {
|
@@ -20707,90 +20923,6 @@ html.overflow-y-hidden {
|
|
20707
20923
|
.offset-xxl-11 {
|
20708
20924
|
margin-inline-start: 91.6666666667%;
|
20709
20925
|
}
|
20710
|
-
}.v-combobox .v-field .v-text-field__prefix,
|
20711
|
-
.v-combobox .v-field .v-text-field__suffix,
|
20712
|
-
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20713
|
-
cursor: text;
|
20714
|
-
}
|
20715
|
-
.v-combobox .v-field .v-field__input > input {
|
20716
|
-
flex: 1 1;
|
20717
|
-
}
|
20718
|
-
.v-combobox .v-field input {
|
20719
|
-
min-width: 64px;
|
20720
|
-
}
|
20721
|
-
.v-combobox .v-field:not(.v-field--focused) input {
|
20722
|
-
min-width: 0;
|
20723
|
-
}
|
20724
|
-
.v-combobox .v-field--dirty .v-combobox__selection {
|
20725
|
-
margin-inline-end: 2px;
|
20726
|
-
}
|
20727
|
-
.v-combobox .v-combobox__selection-text {
|
20728
|
-
overflow: hidden;
|
20729
|
-
text-overflow: ellipsis;
|
20730
|
-
white-space: nowrap;
|
20731
|
-
}
|
20732
|
-
|
20733
|
-
.v-combobox__content {
|
20734
|
-
overflow: hidden;
|
20735
|
-
}
|
20736
|
-
.v-combobox__content {
|
20737
|
-
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));
|
20738
|
-
}
|
20739
|
-
.v-combobox__content {
|
20740
|
-
border-radius: 4px;
|
20741
|
-
}
|
20742
|
-
.v-combobox__mask {
|
20743
|
-
background: rgb(var(--v-theme-surface-light));
|
20744
|
-
}
|
20745
|
-
.v-combobox__selection {
|
20746
|
-
display: inline-flex;
|
20747
|
-
align-items: center;
|
20748
|
-
height: 1.5rem;
|
20749
|
-
letter-spacing: inherit;
|
20750
|
-
line-height: inherit;
|
20751
|
-
max-width: calc(100% - 2px - 2px);
|
20752
|
-
}
|
20753
|
-
.v-combobox__selection:first-child {
|
20754
|
-
margin-inline-start: 0;
|
20755
|
-
}
|
20756
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20757
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20758
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20759
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20760
|
-
top: 0px;
|
20761
|
-
}
|
20762
|
-
.v-combobox--selecting-index .v-combobox__selection {
|
20763
|
-
opacity: var(--v-medium-emphasis-opacity);
|
20764
|
-
}
|
20765
|
-
.v-combobox--selecting-index .v-combobox__selection--selected {
|
20766
|
-
opacity: 1;
|
20767
|
-
}
|
20768
|
-
.v-combobox--selecting-index .v-field__input > input {
|
20769
|
-
caret-color: transparent;
|
20770
|
-
}
|
20771
|
-
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field input {
|
20772
|
-
flex: 1 1;
|
20773
|
-
position: absolute;
|
20774
|
-
left: 0;
|
20775
|
-
right: 0;
|
20776
|
-
width: 100%;
|
20777
|
-
padding-inline: inherit;
|
20778
|
-
}
|
20779
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
20780
|
-
transition: none;
|
20781
|
-
}
|
20782
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
20783
|
-
opacity: 0;
|
20784
|
-
}
|
20785
|
-
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
20786
|
-
opacity: 0;
|
20787
|
-
}
|
20788
|
-
.v-combobox__menu-icon {
|
20789
|
-
margin-inline-start: 4px;
|
20790
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
20791
|
-
}
|
20792
|
-
.v-combobox--active-menu .v-combobox__menu-icon {
|
20793
|
-
transform: rotate(180deg);
|
20794
20926
|
}.v-counter {
|
20795
20927
|
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20796
20928
|
flex: 0 1 auto;
|
@@ -21014,69 +21146,86 @@ html.overflow-y-hidden {
|
|
21014
21146
|
}
|
21015
21147
|
.v-data-table-footer__page {
|
21016
21148
|
padding: 0 8px;
|
21017
|
-
}.v-date-picker
|
21018
|
-
|
21019
|
-
|
21020
|
-
justify-content: space-between;
|
21021
|
-
font-size: 0.875rem;
|
21022
|
-
height: var(--v-date-picker-controls-height, 56px);
|
21023
|
-
padding-top: 4px;
|
21024
|
-
padding-bottom: 4px;
|
21025
|
-
padding-inline-start: 6px;
|
21026
|
-
padding-inline-end: 12px;
|
21027
|
-
}
|
21028
|
-
.v-date-picker-controls > .v-btn:first-child {
|
21029
|
-
text-transform: none;
|
21030
|
-
font-weight: 400;
|
21031
|
-
line-height: initial;
|
21032
|
-
letter-spacing: initial;
|
21149
|
+
}.v-date-picker {
|
21150
|
+
overflow: hidden;
|
21151
|
+
width: 328px;
|
21033
21152
|
}
|
21034
|
-
.v-date-picker
|
21035
|
-
|
21153
|
+
.v-date-picker--show-week {
|
21154
|
+
width: 368px;
|
21155
|
+
}.v-date-picker-months {
|
21156
|
+
height: 288px;
|
21036
21157
|
}
|
21037
|
-
|
21038
|
-
|
21158
|
+
|
21159
|
+
.v-date-picker-months__content {
|
21160
|
+
align-items: center;
|
21161
|
+
display: grid;
|
21162
|
+
flex: 1 1;
|
21163
|
+
height: inherit;
|
21164
|
+
justify-content: space-around;
|
21165
|
+
grid-template-columns: repeat(2, 1fr);
|
21166
|
+
grid-gap: 0px 24px;
|
21167
|
+
padding-inline-start: 36px;
|
21168
|
+
padding-inline-end: 36px;
|
21039
21169
|
}
|
21040
|
-
.v-date-picker
|
21041
|
-
|
21170
|
+
.v-date-picker-months__content .v-btn {
|
21171
|
+
text-transform: none;
|
21172
|
+
padding-inline-start: 8px;
|
21173
|
+
padding-inline-end: 8px;
|
21174
|
+
}.v-date-picker-month {
|
21175
|
+
display: flex;
|
21176
|
+
justify-content: center;
|
21177
|
+
padding: 0 12px 8px;
|
21178
|
+
--v-date-picker-month-day-diff: 4px;
|
21042
21179
|
}
|
21043
|
-
|
21044
|
-
|
21180
|
+
|
21181
|
+
.v-date-picker-month__weeks {
|
21182
|
+
display: grid;
|
21183
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
21184
|
+
column-gap: 4px;
|
21185
|
+
font-size: 0.85rem;
|
21045
21186
|
}
|
21046
|
-
.v-date-picker-
|
21047
|
-
|
21187
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
21188
|
+
grid-row-gap: 0;
|
21048
21189
|
}
|
21049
|
-
|
21050
|
-
|
21190
|
+
|
21191
|
+
.v-date-picker-month__weekday {
|
21192
|
+
font-size: 0.85rem;
|
21051
21193
|
}
|
21052
21194
|
|
21053
|
-
.v-date-picker-
|
21054
|
-
|
21055
|
-
|
21056
|
-
|
21057
|
-
|
21058
|
-
|
21195
|
+
.v-date-picker-month__days {
|
21196
|
+
display: grid;
|
21197
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
21198
|
+
column-gap: 4px;
|
21199
|
+
flex: 1 1;
|
21200
|
+
justify-content: space-around;
|
21059
21201
|
}
|
21060
21202
|
|
21061
|
-
.v-date-picker-
|
21203
|
+
.v-date-picker-month__day {
|
21204
|
+
align-items: center;
|
21062
21205
|
display: flex;
|
21206
|
+
justify-content: center;
|
21207
|
+
position: relative;
|
21208
|
+
height: 40px;
|
21209
|
+
width: 40px;
|
21063
21210
|
}
|
21064
|
-
.v-
|
21065
|
-
|
21211
|
+
.v-date-picker-month__day--selected .v-btn {
|
21212
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
21213
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
21066
21214
|
}
|
21067
|
-
|
21068
|
-
|
21069
|
-
|
21215
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
21216
|
+
--v-btn-height: 24px;
|
21217
|
+
--v-btn-size: 0.85rem;
|
21218
|
+
}
|
21219
|
+
.v-date-picker-month__day--week {
|
21220
|
+
font-size: var(--v-btn-size);
|
21070
21221
|
}
|
21071
21222
|
|
21072
|
-
.v-date-
|
21073
|
-
|
21074
|
-
}.v-date-picker {
|
21075
|
-
overflow: hidden;
|
21076
|
-
width: 328px;
|
21223
|
+
.v-date-picker-month__day--adjacent {
|
21224
|
+
opacity: 0.5;
|
21077
21225
|
}
|
21078
|
-
|
21079
|
-
|
21226
|
+
|
21227
|
+
.v-date-picker-month__day--hide-adjacent {
|
21228
|
+
opacity: 0;
|
21080
21229
|
}.v-date-picker-header {
|
21081
21230
|
align-items: flex-end;
|
21082
21231
|
height: 70px;
|
@@ -21137,25 +21286,6 @@ html.overflow-y-hidden {
|
|
21137
21286
|
.date-picker-header-reverse-transition-leave-to {
|
21138
21287
|
opacity: 0;
|
21139
21288
|
transform: translate(0, 100%);
|
21140
|
-
}.v-date-picker-months {
|
21141
|
-
height: 288px;
|
21142
|
-
}
|
21143
|
-
|
21144
|
-
.v-date-picker-months__content {
|
21145
|
-
align-items: center;
|
21146
|
-
display: grid;
|
21147
|
-
flex: 1 1;
|
21148
|
-
height: inherit;
|
21149
|
-
justify-content: space-around;
|
21150
|
-
grid-template-columns: repeat(2, 1fr);
|
21151
|
-
grid-gap: 0px 24px;
|
21152
|
-
padding-inline-start: 36px;
|
21153
|
-
padding-inline-end: 36px;
|
21154
|
-
}
|
21155
|
-
.v-date-picker-months__content .v-btn {
|
21156
|
-
text-transform: none;
|
21157
|
-
padding-inline-start: 8px;
|
21158
|
-
padding-inline-end: 8px;
|
21159
21289
|
}.v-date-picker-years {
|
21160
21290
|
height: 288px;
|
21161
21291
|
overflow-y: scroll;
|
@@ -21171,61 +21301,63 @@ html.overflow-y-hidden {
|
|
21171
21301
|
}
|
21172
21302
|
.v-date-picker-years__content .v-btn {
|
21173
21303
|
padding-inline: 8px;
|
21174
|
-
}.v-date-picker-
|
21304
|
+
}.v-date-picker-controls {
|
21175
21305
|
display: flex;
|
21176
|
-
|
21177
|
-
|
21178
|
-
|
21306
|
+
align-items: center;
|
21307
|
+
justify-content: space-between;
|
21308
|
+
font-size: 0.875rem;
|
21309
|
+
height: var(--v-date-picker-controls-height, 56px);
|
21310
|
+
padding-top: 4px;
|
21311
|
+
padding-bottom: 4px;
|
21312
|
+
padding-inline-start: 6px;
|
21313
|
+
padding-inline-end: 12px;
|
21179
21314
|
}
|
21180
|
-
|
21181
|
-
|
21182
|
-
|
21183
|
-
|
21184
|
-
|
21185
|
-
font-size: 0.85rem;
|
21315
|
+
.v-date-picker-controls > .v-btn:first-child {
|
21316
|
+
text-transform: none;
|
21317
|
+
font-weight: 400;
|
21318
|
+
line-height: initial;
|
21319
|
+
letter-spacing: initial;
|
21186
21320
|
}
|
21187
|
-
.v-date-picker-
|
21188
|
-
|
21321
|
+
.v-date-picker-controls--variant-classic {
|
21322
|
+
padding-inline-start: 12px;
|
21189
21323
|
}
|
21190
|
-
|
21191
|
-
.
|
21192
|
-
font-size: 0.85rem;
|
21324
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
21325
|
+
opacity: 0.7;
|
21193
21326
|
}
|
21194
|
-
|
21195
|
-
|
21196
|
-
|
21197
|
-
|
21198
|
-
|
21199
|
-
|
21200
|
-
|
21327
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21328
|
+
cursor: pointer;
|
21329
|
+
}
|
21330
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
21331
|
+
opacity: 1;
|
21332
|
+
}
|
21333
|
+
.v-date-picker-controls .v-btn:last-child {
|
21334
|
+
margin-inline-start: 4px;
|
21335
|
+
}
|
21336
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
21337
|
+
transform: rotate(180deg);
|
21201
21338
|
}
|
21202
21339
|
|
21203
|
-
.v-date-picker-
|
21204
|
-
|
21205
|
-
display: flex;
|
21206
|
-
justify-content: center;
|
21207
|
-
position: relative;
|
21208
|
-
height: 40px;
|
21209
|
-
width: 40px;
|
21340
|
+
.v-date-picker-controls__date {
|
21341
|
+
margin-inline-end: 4px;
|
21210
21342
|
}
|
21211
|
-
.v-date-picker-
|
21212
|
-
|
21213
|
-
|
21343
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
21344
|
+
margin: auto;
|
21345
|
+
text-align: center;
|
21214
21346
|
}
|
21215
|
-
|
21216
|
-
|
21217
|
-
|
21347
|
+
|
21348
|
+
.v-date-picker-controls__month {
|
21349
|
+
display: flex;
|
21218
21350
|
}
|
21219
|
-
.v-date-picker-
|
21220
|
-
|
21351
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
21352
|
+
flex-direction: row-reverse;
|
21221
21353
|
}
|
21222
21354
|
|
21223
|
-
.v-date-picker-
|
21224
|
-
|
21355
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
21356
|
+
flex: 1 0 auto;
|
21225
21357
|
}
|
21226
21358
|
|
21227
|
-
.v-date-
|
21228
|
-
|
21359
|
+
.v-date-picker__title {
|
21360
|
+
display: inline-block;
|
21229
21361
|
}.v-dialog {
|
21230
21362
|
align-items: center;
|
21231
21363
|
justify-content: center;
|
@@ -21647,124 +21779,19 @@ html.overflow-y-hidden {
|
|
21647
21779
|
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
21648
21780
|
max-width: calc(100% - 32px);
|
21649
21781
|
}
|
21650
|
-
|
21651
|
-
.v-expansion-panels--flat > .v-expansion-panel::after {
|
21652
|
-
border-top: none;
|
21653
|
-
}
|
21654
|
-
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
21655
|
-
display: none;
|
21656
|
-
}
|
21657
|
-
|
21658
|
-
.v-expansion-panels--tile {
|
21659
|
-
border-radius: 0;
|
21660
|
-
}
|
21661
|
-
.v-expansion-panels--tile > .v-expansion-panel {
|
21662
|
-
border-radius: 0;
|
21663
|
-
}.v-fab {
|
21664
|
-
align-items: center;
|
21665
|
-
display: inline-flex;
|
21666
|
-
flex: 1 1 auto;
|
21667
|
-
pointer-events: none;
|
21668
|
-
position: relative;
|
21669
|
-
transition-duration: 0.2s;
|
21670
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21671
|
-
vertical-align: middle;
|
21672
|
-
}
|
21673
|
-
.v-fab .v-btn {
|
21674
|
-
pointer-events: auto;
|
21675
|
-
}
|
21676
|
-
.v-fab .v-btn--variant-elevated {
|
21677
|
-
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));
|
21678
|
-
}
|
21679
|
-
.v-fab--app, .v-fab--absolute {
|
21680
|
-
display: flex;
|
21681
|
-
}
|
21682
|
-
.v-fab--absolute {
|
21683
|
-
position: absolute;
|
21684
|
-
inset: 0;
|
21685
|
-
}
|
21686
|
-
.v-fab--start, .v-fab--left {
|
21687
|
-
justify-content: flex-start;
|
21688
|
-
}
|
21689
|
-
.v-fab--center {
|
21690
|
-
align-items: center;
|
21691
|
-
justify-content: center;
|
21692
|
-
}
|
21693
|
-
.v-fab--end, .v-fab--right {
|
21694
|
-
justify-content: flex-end;
|
21695
|
-
}
|
21696
|
-
.v-fab--bottom {
|
21697
|
-
align-items: flex-end;
|
21698
|
-
}
|
21699
|
-
.v-fab--top {
|
21700
|
-
align-items: flex-start;
|
21701
|
-
}
|
21702
|
-
.v-fab--extended .v-btn {
|
21703
|
-
border-radius: 9999px !important;
|
21704
|
-
}
|
21705
|
-
|
21706
|
-
.v-fab__container {
|
21707
|
-
align-self: center;
|
21708
|
-
display: inline-flex;
|
21709
|
-
vertical-align: middle;
|
21710
|
-
}
|
21711
|
-
.v-fab--app .v-fab__container {
|
21712
|
-
margin: 12px;
|
21713
|
-
position: fixed;
|
21714
|
-
}
|
21715
|
-
.v-fab--absolute .v-fab__container {
|
21716
|
-
position: absolute;
|
21717
|
-
z-index: 4;
|
21718
|
-
}
|
21719
|
-
.v-fab--offset.v-fab--top .v-fab__container {
|
21720
|
-
transform: translateY(-50%);
|
21721
|
-
}
|
21722
|
-
.v-fab--offset.v-fab--bottom .v-fab__container {
|
21723
|
-
transform: translateY(50%);
|
21724
|
-
}
|
21725
|
-
.v-fab--top .v-fab__container {
|
21726
|
-
top: 0;
|
21727
|
-
}
|
21728
|
-
.v-fab--bottom .v-fab__container {
|
21729
|
-
bottom: 0;
|
21730
|
-
}
|
21731
|
-
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
21732
|
-
left: 0;
|
21733
|
-
}
|
21734
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21735
|
-
right: 0;
|
21736
|
-
}.v-file-input--hide.v-input .v-field,
|
21737
|
-
.v-file-input--hide.v-input .v-input__control,
|
21738
|
-
.v-file-input--hide.v-input .v-input__details {
|
21739
|
-
display: none;
|
21740
|
-
}
|
21741
|
-
.v-file-input--hide.v-input .v-input__prepend {
|
21742
|
-
grid-area: control;
|
21743
|
-
margin: 0 auto;
|
21744
|
-
}
|
21745
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21746
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21747
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21748
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21749
|
-
top: 0px;
|
21750
|
-
}
|
21751
|
-
.v-file-input input[type=file] {
|
21752
|
-
height: 100%;
|
21753
|
-
left: 0;
|
21754
|
-
opacity: 0;
|
21755
|
-
position: absolute;
|
21756
|
-
top: 0;
|
21757
|
-
width: 100%;
|
21758
|
-
z-index: 0;
|
21782
|
+
|
21783
|
+
.v-expansion-panels--flat > .v-expansion-panel::after {
|
21784
|
+
border-top: none;
|
21759
21785
|
}
|
21760
|
-
.v-
|
21761
|
-
|
21786
|
+
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
21787
|
+
display: none;
|
21762
21788
|
}
|
21763
|
-
|
21764
|
-
|
21789
|
+
|
21790
|
+
.v-expansion-panels--tile {
|
21791
|
+
border-radius: 0;
|
21765
21792
|
}
|
21766
|
-
.v-
|
21767
|
-
|
21793
|
+
.v-expansion-panels--tile > .v-expansion-panel {
|
21794
|
+
border-radius: 0;
|
21768
21795
|
}/* region INPUT */
|
21769
21796
|
.v-field {
|
21770
21797
|
display: grid;
|
@@ -22358,7 +22385,112 @@ textarea.v-field__input::placeholder {
|
|
22358
22385
|
opacity: 0;
|
22359
22386
|
}
|
22360
22387
|
|
22361
|
-
/* endregion */.v-
|
22388
|
+
/* endregion */.v-fab {
|
22389
|
+
align-items: center;
|
22390
|
+
display: inline-flex;
|
22391
|
+
flex: 1 1 auto;
|
22392
|
+
pointer-events: none;
|
22393
|
+
position: relative;
|
22394
|
+
transition-duration: 0.2s;
|
22395
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
22396
|
+
vertical-align: middle;
|
22397
|
+
}
|
22398
|
+
.v-fab .v-btn {
|
22399
|
+
pointer-events: auto;
|
22400
|
+
}
|
22401
|
+
.v-fab .v-btn--variant-elevated {
|
22402
|
+
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));
|
22403
|
+
}
|
22404
|
+
.v-fab--app, .v-fab--absolute {
|
22405
|
+
display: flex;
|
22406
|
+
}
|
22407
|
+
.v-fab--absolute {
|
22408
|
+
position: absolute;
|
22409
|
+
inset: 0;
|
22410
|
+
}
|
22411
|
+
.v-fab--start, .v-fab--left {
|
22412
|
+
justify-content: flex-start;
|
22413
|
+
}
|
22414
|
+
.v-fab--center {
|
22415
|
+
align-items: center;
|
22416
|
+
justify-content: center;
|
22417
|
+
}
|
22418
|
+
.v-fab--end, .v-fab--right {
|
22419
|
+
justify-content: flex-end;
|
22420
|
+
}
|
22421
|
+
.v-fab--bottom {
|
22422
|
+
align-items: flex-end;
|
22423
|
+
}
|
22424
|
+
.v-fab--top {
|
22425
|
+
align-items: flex-start;
|
22426
|
+
}
|
22427
|
+
.v-fab--extended .v-btn {
|
22428
|
+
border-radius: 9999px !important;
|
22429
|
+
}
|
22430
|
+
|
22431
|
+
.v-fab__container {
|
22432
|
+
align-self: center;
|
22433
|
+
display: inline-flex;
|
22434
|
+
vertical-align: middle;
|
22435
|
+
}
|
22436
|
+
.v-fab--app .v-fab__container {
|
22437
|
+
margin: 12px;
|
22438
|
+
position: fixed;
|
22439
|
+
}
|
22440
|
+
.v-fab--absolute .v-fab__container {
|
22441
|
+
position: absolute;
|
22442
|
+
z-index: 4;
|
22443
|
+
}
|
22444
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
22445
|
+
transform: translateY(-50%);
|
22446
|
+
}
|
22447
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
22448
|
+
transform: translateY(50%);
|
22449
|
+
}
|
22450
|
+
.v-fab--top .v-fab__container {
|
22451
|
+
top: 0;
|
22452
|
+
}
|
22453
|
+
.v-fab--bottom .v-fab__container {
|
22454
|
+
bottom: 0;
|
22455
|
+
}
|
22456
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
22457
|
+
left: 0;
|
22458
|
+
}
|
22459
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
22460
|
+
right: 0;
|
22461
|
+
}.v-file-input--hide.v-input .v-field,
|
22462
|
+
.v-file-input--hide.v-input .v-input__control,
|
22463
|
+
.v-file-input--hide.v-input .v-input__details {
|
22464
|
+
display: none;
|
22465
|
+
}
|
22466
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
22467
|
+
grid-area: control;
|
22468
|
+
margin: 0 auto;
|
22469
|
+
}
|
22470
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
22471
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
22472
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
22473
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
22474
|
+
top: 0px;
|
22475
|
+
}
|
22476
|
+
.v-file-input input[type=file] {
|
22477
|
+
height: 100%;
|
22478
|
+
left: 0;
|
22479
|
+
opacity: 0;
|
22480
|
+
position: absolute;
|
22481
|
+
top: 0;
|
22482
|
+
width: 100%;
|
22483
|
+
z-index: 0;
|
22484
|
+
}
|
22485
|
+
.v-file-input--dragging input[type=file] {
|
22486
|
+
z-index: 1;
|
22487
|
+
}
|
22488
|
+
.v-file-input .v-input__details {
|
22489
|
+
padding-inline: 16px;
|
22490
|
+
}
|
22491
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
22492
|
+
padding-inline: 0;
|
22493
|
+
}.v-footer {
|
22362
22494
|
align-items: center;
|
22363
22495
|
display: flex;
|
22364
22496
|
flex: 1 1 auto;
|
@@ -22485,57 +22617,11 @@ textarea.v-field__input::placeholder {
|
|
22485
22617
|
display: flex;
|
22486
22618
|
justify-content: center;
|
22487
22619
|
padding: 8px;
|
22488
|
-
}.v-
|
22489
|
-
|
22490
|
-
|
22491
|
-
|
22492
|
-
.
|
22493
|
-
height: 100%;
|
22494
|
-
left: 0;
|
22495
|
-
overflow: hidden;
|
22496
|
-
position: absolute;
|
22497
|
-
top: 0;
|
22498
|
-
width: 100%;
|
22499
|
-
z-index: -1;
|
22500
|
-
}
|
22501
|
-
.v-img--booting .v-responsive__sizer {
|
22502
|
-
transition: none;
|
22503
|
-
}
|
22504
|
-
.v-img--rounded {
|
22505
|
-
border-radius: 4px;
|
22506
|
-
}
|
22507
|
-
|
22508
|
-
.v-img__img,
|
22509
|
-
.v-img__picture,
|
22510
|
-
.v-img__gradient,
|
22511
|
-
.v-img__placeholder,
|
22512
|
-
.v-img__error {
|
22513
|
-
z-index: -1;
|
22514
|
-
}
|
22515
|
-
.v-img__img,
|
22516
|
-
.v-img__picture,
|
22517
|
-
.v-img__gradient,
|
22518
|
-
.v-img__placeholder,
|
22519
|
-
.v-img__error {
|
22520
|
-
position: absolute;
|
22521
|
-
top: 0;
|
22522
|
-
left: 0;
|
22523
|
-
width: 100%;
|
22524
|
-
height: 100%;
|
22525
|
-
}
|
22526
|
-
|
22527
|
-
.v-img__img--preload {
|
22528
|
-
filter: blur(4px);
|
22529
|
-
}
|
22530
|
-
.v-img__img--contain {
|
22531
|
-
object-fit: contain;
|
22532
|
-
}
|
22533
|
-
.v-img__img--cover {
|
22534
|
-
object-fit: cover;
|
22535
|
-
}
|
22536
|
-
|
22537
|
-
.v-img__gradient {
|
22538
|
-
background-repeat: no-repeat;
|
22620
|
+
}.v-item-group {
|
22621
|
+
flex: 0 1 auto;
|
22622
|
+
max-width: 100%;
|
22623
|
+
position: relative;
|
22624
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22539
22625
|
}.v-input {
|
22540
22626
|
display: grid;
|
22541
22627
|
flex: 1 1 auto;
|
@@ -22683,11 +22769,6 @@ textarea.v-field__input::placeholder {
|
|
22683
22769
|
|
22684
22770
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22685
22771
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22686
|
-
}.v-item-group {
|
22687
|
-
flex: 0 1 auto;
|
22688
|
-
max-width: 100%;
|
22689
|
-
position: relative;
|
22690
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22691
22772
|
}.v-label {
|
22692
22773
|
align-items: center;
|
22693
22774
|
color: inherit;
|
@@ -22827,6 +22908,38 @@ textarea.v-field__input::placeholder {
|
|
22827
22908
|
right: 0;
|
22828
22909
|
top: 0;
|
22829
22910
|
transition: opacity 0.2s ease-in-out;
|
22911
|
+
}.v-locale-provider {
|
22912
|
+
display: contents;
|
22913
|
+
}.v-main {
|
22914
|
+
flex: 1 0 auto;
|
22915
|
+
max-width: 100%;
|
22916
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22917
|
+
padding-left: var(--v-layout-left);
|
22918
|
+
padding-right: var(--v-layout-right);
|
22919
|
+
padding-top: var(--v-layout-top);
|
22920
|
+
padding-bottom: var(--v-layout-bottom);
|
22921
|
+
}
|
22922
|
+
.v-main__scroller {
|
22923
|
+
max-width: 100%;
|
22924
|
+
position: relative;
|
22925
|
+
}
|
22926
|
+
.v-main--scrollable {
|
22927
|
+
display: flex;
|
22928
|
+
}
|
22929
|
+
.v-main--scrollable {
|
22930
|
+
position: absolute;
|
22931
|
+
top: 0;
|
22932
|
+
left: 0;
|
22933
|
+
width: 100%;
|
22934
|
+
height: 100%;
|
22935
|
+
}
|
22936
|
+
.v-main--scrollable > .v-main__scroller {
|
22937
|
+
flex: 1 1 auto;
|
22938
|
+
overflow-y: auto;
|
22939
|
+
--v-layout-left: 0px;
|
22940
|
+
--v-layout-right: 0px;
|
22941
|
+
--v-layout-top: 0px;
|
22942
|
+
--v-layout-bottom: 0px;
|
22830
22943
|
}.v-list-item {
|
22831
22944
|
align-items: center;
|
22832
22945
|
display: grid;
|
@@ -23294,38 +23407,6 @@ textarea.v-field__input::placeholder {
|
|
23294
23407
|
}
|
23295
23408
|
.v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23296
23409
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23297
|
-
}.v-locale-provider {
|
23298
|
-
display: contents;
|
23299
|
-
}.v-main {
|
23300
|
-
flex: 1 0 auto;
|
23301
|
-
max-width: 100%;
|
23302
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23303
|
-
padding-left: var(--v-layout-left);
|
23304
|
-
padding-right: var(--v-layout-right);
|
23305
|
-
padding-top: var(--v-layout-top);
|
23306
|
-
padding-bottom: var(--v-layout-bottom);
|
23307
|
-
}
|
23308
|
-
.v-main__scroller {
|
23309
|
-
max-width: 100%;
|
23310
|
-
position: relative;
|
23311
|
-
}
|
23312
|
-
.v-main--scrollable {
|
23313
|
-
display: flex;
|
23314
|
-
}
|
23315
|
-
.v-main--scrollable {
|
23316
|
-
position: absolute;
|
23317
|
-
top: 0;
|
23318
|
-
left: 0;
|
23319
|
-
width: 100%;
|
23320
|
-
height: 100%;
|
23321
|
-
}
|
23322
|
-
.v-main--scrollable > .v-main__scroller {
|
23323
|
-
flex: 1 1 auto;
|
23324
|
-
overflow-y: auto;
|
23325
|
-
--v-layout-left: 0px;
|
23326
|
-
--v-layout-right: 0px;
|
23327
|
-
--v-layout-top: 0px;
|
23328
|
-
--v-layout-bottom: 0px;
|
23329
23410
|
}.v-menu > .v-overlay__content {
|
23330
23411
|
display: flex;
|
23331
23412
|
flex-direction: column;
|
@@ -23345,6 +23426,22 @@ textarea.v-field__input::placeholder {
|
|
23345
23426
|
.v-menu > .v-overlay__content > .v-sheet,
|
23346
23427
|
.v-menu > .v-overlay__content > .v-list {
|
23347
23428
|
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));
|
23429
|
+
}.v-messages {
|
23430
|
+
flex: 1 1 auto;
|
23431
|
+
font-size: 12px;
|
23432
|
+
min-height: 14px;
|
23433
|
+
min-width: 1px;
|
23434
|
+
opacity: var(--v-medium-emphasis-opacity);
|
23435
|
+
position: relative;
|
23436
|
+
}
|
23437
|
+
.v-messages__message {
|
23438
|
+
line-height: 12px;
|
23439
|
+
word-break: break-word;
|
23440
|
+
overflow-wrap: break-word;
|
23441
|
+
word-wrap: break-word;
|
23442
|
+
-webkit-hyphens: auto;
|
23443
|
+
hyphens: auto;
|
23444
|
+
transition-duration: 150ms;
|
23348
23445
|
}.v-navigation-drawer {
|
23349
23446
|
-webkit-overflow-scrolling: touch;
|
23350
23447
|
background: rgb(var(--v-theme-surface));
|
@@ -23449,39 +23546,34 @@ textarea.v-field__input::placeholder {
|
|
23449
23546
|
.v-navigation-drawer__append {
|
23450
23547
|
flex: none;
|
23451
23548
|
overflow: hidden;
|
23452
|
-
}.v-messages {
|
23453
|
-
flex: 1 1 auto;
|
23454
|
-
font-size: 12px;
|
23455
|
-
min-height: 14px;
|
23456
|
-
min-width: 1px;
|
23457
|
-
opacity: var(--v-medium-emphasis-opacity);
|
23458
|
-
position: relative;
|
23459
|
-
}
|
23460
|
-
.v-messages__message {
|
23461
|
-
line-height: 12px;
|
23462
|
-
word-break: break-word;
|
23463
|
-
overflow-wrap: break-word;
|
23464
|
-
word-wrap: break-word;
|
23465
|
-
-webkit-hyphens: auto;
|
23466
|
-
hyphens: auto;
|
23467
|
-
transition-duration: 150ms;
|
23468
23549
|
}.v-number-input input[type=number] {
|
23469
23550
|
-moz-appearance: textfield;
|
23470
23551
|
}
|
23471
23552
|
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
23472
23553
|
-webkit-appearance: none;
|
23473
23554
|
}
|
23474
|
-
.v-number-input .v-field:
|
23555
|
+
.v-number-input .v-field:has(.v-field__prepend-inner > .v-number-input__control:first-child) {
|
23475
23556
|
padding-inline-start: 0;
|
23476
23557
|
}
|
23477
|
-
.v-number-input .v-field:
|
23558
|
+
.v-number-input .v-field:has(.v-field__append-inner > .v-number-input__control:last-child) {
|
23478
23559
|
padding-inline-end: 0;
|
23479
23560
|
}
|
23480
23561
|
.v-number-input .v-field__prepend-inner:has(.v-number-input__control) > .v-icon {
|
23481
|
-
margin-inline-end:
|
23562
|
+
margin-inline-end: 4px;
|
23563
|
+
}
|
23564
|
+
.v-number-input .v-field__prepend-inner:has(.v-number-input__control) > hr + .v-icon,
|
23565
|
+
.v-number-input .v-field__prepend-inner:has(.v-number-input__control) > .v-number-input__control + .v-icon {
|
23566
|
+
margin-inline: 8px 0;
|
23482
23567
|
}
|
23483
23568
|
.v-number-input .v-field__append-inner:has(.v-number-input__control) > .v-icon {
|
23484
|
-
margin-inline-start:
|
23569
|
+
margin-inline-start: 4px;
|
23570
|
+
}
|
23571
|
+
.v-number-input .v-field__append-inner:has(.v-number-input__control) > .v-icon:has(+ hr),
|
23572
|
+
.v-number-input .v-field__append-inner:has(.v-number-input__control) > .v-icon:has(+ .v-number-input__control) {
|
23573
|
+
margin-inline: 0 8px;
|
23574
|
+
}
|
23575
|
+
.v-number-input .v-field__clearable:has(+ .v-field__append-inner > hr:first-child) {
|
23576
|
+
margin-inline-end: 8px;
|
23485
23577
|
}
|
23486
23578
|
.v-number-input--inset .v-divider {
|
23487
23579
|
height: 55%;
|
@@ -23977,6 +24069,18 @@ html.v-overlay-scroll-blocked {
|
|
23977
24069
|
0% {
|
23978
24070
|
background-position-x: var(--v-progress-linear-height);
|
23979
24071
|
}
|
24072
|
+
}.v-radio-group > .v-input__control {
|
24073
|
+
flex-direction: column;
|
24074
|
+
}
|
24075
|
+
.v-radio-group > .v-input__control > .v-label {
|
24076
|
+
margin-inline-start: 16px;
|
24077
|
+
}
|
24078
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24079
|
+
padding-inline-start: 6px;
|
24080
|
+
margin-top: 8px;
|
24081
|
+
}
|
24082
|
+
.v-radio-group .v-input__details {
|
24083
|
+
padding-inline: 16px;
|
23980
24084
|
}.v-slider .v-slider__container input {
|
23981
24085
|
cursor: default;
|
23982
24086
|
padding: 0;
|
@@ -24034,18 +24138,6 @@ html.v-overlay-scroll-blocked {
|
|
24034
24138
|
|
24035
24139
|
.v-slider__label {
|
24036
24140
|
margin-inline-end: 12px;
|
24037
|
-
}.v-radio-group > .v-input__control {
|
24038
|
-
flex-direction: column;
|
24039
|
-
}
|
24040
|
-
.v-radio-group > .v-input__control > .v-label {
|
24041
|
-
margin-inline-start: 16px;
|
24042
|
-
}
|
24043
|
-
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24044
|
-
padding-inline-start: 6px;
|
24045
|
-
margin-top: 8px;
|
24046
|
-
}
|
24047
|
-
.v-radio-group .v-input__details {
|
24048
|
-
padding-inline: 16px;
|
24049
24141
|
}.v-rating {
|
24050
24142
|
max-width: 100%;
|
24051
24143
|
display: inline-flex;
|
@@ -24125,6 +24217,57 @@ html.v-overlay-scroll-blocked {
|
|
24125
24217
|
flex: 1 0 0px;
|
24126
24218
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24127
24219
|
pointer-events: none;
|
24220
|
+
}.v-select .v-field .v-text-field__prefix,
|
24221
|
+
.v-select .v-field .v-text-field__suffix,
|
24222
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24223
|
+
cursor: pointer;
|
24224
|
+
}
|
24225
|
+
.v-select .v-field .v-field__input > input {
|
24226
|
+
align-self: flex-start;
|
24227
|
+
opacity: 1;
|
24228
|
+
flex: 0 0;
|
24229
|
+
position: absolute;
|
24230
|
+
width: 100%;
|
24231
|
+
transition: none;
|
24232
|
+
pointer-events: none;
|
24233
|
+
caret-color: transparent;
|
24234
|
+
}
|
24235
|
+
.v-select .v-field--dirty .v-select__selection {
|
24236
|
+
margin-inline-end: 2px;
|
24237
|
+
}
|
24238
|
+
.v-select .v-select__selection-text {
|
24239
|
+
overflow: hidden;
|
24240
|
+
text-overflow: ellipsis;
|
24241
|
+
white-space: nowrap;
|
24242
|
+
}
|
24243
|
+
.v-select__content {
|
24244
|
+
overflow: hidden;
|
24245
|
+
}
|
24246
|
+
.v-select__content {
|
24247
|
+
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));
|
24248
|
+
}
|
24249
|
+
.v-select__content {
|
24250
|
+
border-radius: 4px;
|
24251
|
+
}
|
24252
|
+
.v-select__selection {
|
24253
|
+
display: inline-flex;
|
24254
|
+
align-items: center;
|
24255
|
+
letter-spacing: inherit;
|
24256
|
+
line-height: inherit;
|
24257
|
+
max-width: 100%;
|
24258
|
+
}
|
24259
|
+
.v-select .v-select__selection:first-child {
|
24260
|
+
margin-inline-start: 0;
|
24261
|
+
}
|
24262
|
+
.v-select--selected .v-field .v-field__input > input {
|
24263
|
+
opacity: 0;
|
24264
|
+
}
|
24265
|
+
.v-select__menu-icon {
|
24266
|
+
margin-inline-start: 4px;
|
24267
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24268
|
+
}
|
24269
|
+
.v-select--active-menu .v-select__menu-icon {
|
24270
|
+
transform: rotate(180deg);
|
24128
24271
|
}.v-selection-control {
|
24129
24272
|
align-items: center;
|
24130
24273
|
contain: layout;
|
@@ -24226,57 +24369,6 @@ html.v-overlay-scroll-blocked {
|
|
24226
24369
|
}
|
24227
24370
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24228
24371
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24229
|
-
}.v-select .v-field .v-text-field__prefix,
|
24230
|
-
.v-select .v-field .v-text-field__suffix,
|
24231
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24232
|
-
cursor: pointer;
|
24233
|
-
}
|
24234
|
-
.v-select .v-field .v-field__input > input {
|
24235
|
-
align-self: flex-start;
|
24236
|
-
opacity: 1;
|
24237
|
-
flex: 0 0;
|
24238
|
-
position: absolute;
|
24239
|
-
width: 100%;
|
24240
|
-
transition: none;
|
24241
|
-
pointer-events: none;
|
24242
|
-
caret-color: transparent;
|
24243
|
-
}
|
24244
|
-
.v-select .v-field--dirty .v-select__selection {
|
24245
|
-
margin-inline-end: 2px;
|
24246
|
-
}
|
24247
|
-
.v-select .v-select__selection-text {
|
24248
|
-
overflow: hidden;
|
24249
|
-
text-overflow: ellipsis;
|
24250
|
-
white-space: nowrap;
|
24251
|
-
}
|
24252
|
-
.v-select__content {
|
24253
|
-
overflow: hidden;
|
24254
|
-
}
|
24255
|
-
.v-select__content {
|
24256
|
-
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));
|
24257
|
-
}
|
24258
|
-
.v-select__content {
|
24259
|
-
border-radius: 4px;
|
24260
|
-
}
|
24261
|
-
.v-select__selection {
|
24262
|
-
display: inline-flex;
|
24263
|
-
align-items: center;
|
24264
|
-
letter-spacing: inherit;
|
24265
|
-
line-height: inherit;
|
24266
|
-
max-width: 100%;
|
24267
|
-
}
|
24268
|
-
.v-select .v-select__selection:first-child {
|
24269
|
-
margin-inline-start: 0;
|
24270
|
-
}
|
24271
|
-
.v-select--selected .v-field .v-field__input > input {
|
24272
|
-
opacity: 0;
|
24273
|
-
}
|
24274
|
-
.v-select__menu-icon {
|
24275
|
-
margin-inline-start: 4px;
|
24276
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24277
|
-
}
|
24278
|
-
.v-select--active-menu .v-select__menu-icon {
|
24279
|
-
transform: rotate(180deg);
|
24280
24372
|
}.v-selection-control-group {
|
24281
24373
|
grid-area: control;
|
24282
24374
|
display: flex;
|
@@ -24285,42 +24377,6 @@ html.v-overlay-scroll-blocked {
|
|
24285
24377
|
.v-selection-control-group--inline {
|
24286
24378
|
flex-direction: row;
|
24287
24379
|
flex-wrap: wrap;
|
24288
|
-
}.v-sheet {
|
24289
|
-
display: block;
|
24290
|
-
}
|
24291
|
-
.v-sheet {
|
24292
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24293
|
-
border-style: solid;
|
24294
|
-
border-width: 0;
|
24295
|
-
}
|
24296
|
-
.v-sheet--border {
|
24297
|
-
border-width: thin;
|
24298
|
-
box-shadow: none;
|
24299
|
-
}
|
24300
|
-
.v-sheet {
|
24301
|
-
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));
|
24302
|
-
}
|
24303
|
-
.v-sheet--absolute {
|
24304
|
-
position: absolute;
|
24305
|
-
}
|
24306
|
-
.v-sheet--fixed {
|
24307
|
-
position: fixed;
|
24308
|
-
}
|
24309
|
-
.v-sheet--relative {
|
24310
|
-
position: relative;
|
24311
|
-
}
|
24312
|
-
.v-sheet--sticky {
|
24313
|
-
position: sticky;
|
24314
|
-
}
|
24315
|
-
.v-sheet {
|
24316
|
-
border-radius: 0;
|
24317
|
-
}
|
24318
|
-
.v-sheet {
|
24319
|
-
background: rgb(var(--v-theme-surface));
|
24320
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24321
|
-
}
|
24322
|
-
.v-sheet--rounded {
|
24323
|
-
border-radius: 4px;
|
24324
24380
|
}.v-skeleton-loader {
|
24325
24381
|
align-items: center;
|
24326
24382
|
background: rgb(var(--v-theme-surface));
|
@@ -24546,61 +24602,42 @@ html.v-overlay-scroll-blocked {
|
|
24546
24602
|
100% {
|
24547
24603
|
transform: translateX(100%);
|
24548
24604
|
}
|
24549
|
-
}.v-
|
24550
|
-
display:
|
24551
|
-
overflow: hidden;
|
24605
|
+
}.v-sheet {
|
24606
|
+
display: block;
|
24552
24607
|
}
|
24553
|
-
|
24554
|
-
|
24555
|
-
|
24556
|
-
|
24557
|
-
display: flex;
|
24558
|
-
flex: 0 1 52px;
|
24559
|
-
justify-content: center;
|
24560
|
-
min-width: 52px;
|
24561
|
-
cursor: pointer;
|
24608
|
+
.v-sheet {
|
24609
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24610
|
+
border-style: solid;
|
24611
|
+
border-width: 0;
|
24562
24612
|
}
|
24563
|
-
.v-
|
24564
|
-
|
24565
|
-
|
24566
|
-
opacity: var(--v-disabled-opacity);
|
24613
|
+
.v-sheet--border {
|
24614
|
+
border-width: thin;
|
24615
|
+
box-shadow: none;
|
24567
24616
|
}
|
24568
|
-
|
24569
|
-
.v-
|
24570
|
-
display: flex;
|
24571
|
-
flex: 1 0 auto;
|
24572
|
-
position: relative;
|
24573
|
-
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
24574
|
-
white-space: nowrap;
|
24617
|
+
.v-sheet {
|
24618
|
+
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));
|
24575
24619
|
}
|
24576
|
-
.v-
|
24577
|
-
|
24620
|
+
.v-sheet--absolute {
|
24621
|
+
position: absolute;
|
24578
24622
|
}
|
24579
|
-
|
24580
|
-
|
24581
|
-
contain: content;
|
24582
|
-
display: flex;
|
24583
|
-
flex: 1 1 auto;
|
24584
|
-
overflow-x: auto;
|
24585
|
-
overflow-y: hidden;
|
24586
|
-
scrollbar-width: none;
|
24587
|
-
scrollbar-color: rgba(0, 0, 0, 0);
|
24623
|
+
.v-sheet--fixed {
|
24624
|
+
position: fixed;
|
24588
24625
|
}
|
24589
|
-
.v-
|
24590
|
-
|
24626
|
+
.v-sheet--relative {
|
24627
|
+
position: relative;
|
24591
24628
|
}
|
24592
|
-
|
24593
|
-
|
24594
|
-
max-height: inherit;
|
24629
|
+
.v-sheet--sticky {
|
24630
|
+
position: sticky;
|
24595
24631
|
}
|
24596
|
-
.v-
|
24597
|
-
|
24598
|
-
|
24599
|
-
|
24632
|
+
.v-sheet {
|
24633
|
+
border-radius: 0;
|
24634
|
+
}
|
24635
|
+
.v-sheet {
|
24636
|
+
background: rgb(var(--v-theme-surface));
|
24637
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24600
24638
|
}
|
24601
|
-
.v-
|
24602
|
-
|
24603
|
-
overflow-y: auto;
|
24639
|
+
.v-sheet--rounded {
|
24640
|
+
border-radius: 4px;
|
24604
24641
|
}.v-snackbar {
|
24605
24642
|
justify-content: center;
|
24606
24643
|
z-index: 10000;
|
@@ -24741,131 +24778,222 @@ html.v-overlay-scroll-blocked {
|
|
24741
24778
|
}
|
24742
24779
|
.v-snackbar-transition-leave-to {
|
24743
24780
|
opacity: 0;
|
24744
|
-
}.v-
|
24745
|
-
|
24781
|
+
}.v-stepper.v-sheet {
|
24782
|
+
overflow: hidden;
|
24746
24783
|
}
|
24747
|
-
.v-
|
24748
|
-
|
24784
|
+
.v-stepper.v-sheet {
|
24785
|
+
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));
|
24749
24786
|
}
|
24750
|
-
.v-
|
24751
|
-
|
24787
|
+
.v-stepper.v-sheet {
|
24788
|
+
border-radius: 4px;
|
24752
24789
|
}
|
24753
|
-
.v-
|
24754
|
-
|
24790
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
24791
|
+
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));
|
24755
24792
|
}
|
24756
|
-
|
24757
|
-
|
24793
|
+
|
24794
|
+
.v-stepper-header {
|
24795
|
+
align-items: center;
|
24796
|
+
display: flex;
|
24797
|
+
position: relative;
|
24798
|
+
overflow-x: auto;
|
24799
|
+
justify-content: space-between;
|
24800
|
+
z-index: 1;
|
24758
24801
|
}
|
24759
|
-
.v-
|
24760
|
-
|
24802
|
+
.v-stepper-header {
|
24803
|
+
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));
|
24761
24804
|
}
|
24762
|
-
.v-
|
24763
|
-
|
24805
|
+
.v-stepper-header .v-divider {
|
24806
|
+
margin: 0 -16px;
|
24764
24807
|
}
|
24765
|
-
.v-
|
24766
|
-
|
24808
|
+
.v-stepper-header .v-divider:last-child {
|
24809
|
+
margin-inline-end: 0;
|
24767
24810
|
}
|
24768
|
-
.v-
|
24769
|
-
|
24811
|
+
.v-stepper-header .v-divider:first-child {
|
24812
|
+
margin-inline-start: 0;
|
24770
24813
|
}
|
24771
|
-
.v-
|
24772
|
-
|
24814
|
+
.v-stepper--alt-labels .v-stepper-header {
|
24815
|
+
height: auto;
|
24773
24816
|
}
|
24774
|
-
.v-
|
24775
|
-
|
24817
|
+
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
24818
|
+
align-self: flex-start;
|
24819
|
+
margin: 35px -67px 0;
|
24776
24820
|
}
|
24777
|
-
|
24778
|
-
|
24821
|
+
|
24822
|
+
.v-stepper-window {
|
24823
|
+
margin: 1.5rem;
|
24779
24824
|
}
|
24780
|
-
|
24781
|
-
|
24825
|
+
|
24826
|
+
.v-stepper-actions {
|
24827
|
+
display: flex;
|
24828
|
+
align-items: center;
|
24829
|
+
justify-content: space-between;
|
24830
|
+
padding: 1rem;
|
24782
24831
|
}
|
24783
|
-
.v-
|
24784
|
-
|
24785
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
24786
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
24787
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
24788
|
-
cursor: text;
|
24832
|
+
.v-stepper .v-stepper-actions {
|
24833
|
+
padding: 0 1.5rem 1rem;
|
24789
24834
|
}
|
24790
|
-
.v-
|
24791
|
-
|
24835
|
+
.v-stepper-window-item .v-stepper-actions {
|
24836
|
+
padding: 1.5rem 0 0;
|
24837
|
+
}.v-stepper-item {
|
24838
|
+
align-items: center;
|
24839
|
+
align-self: stretch;
|
24840
|
+
display: inline-flex;
|
24841
|
+
flex: none;
|
24842
|
+
outline: none;
|
24843
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24844
|
+
padding: 1.5rem;
|
24845
|
+
position: relative;
|
24846
|
+
transition-duration: 0.2s;
|
24847
|
+
transition-property: opacity;
|
24848
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
24792
24849
|
}
|
24793
|
-
.v-
|
24794
|
-
|
24850
|
+
.v-stepper-item:hover > .v-stepper-item__overlay {
|
24851
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
24795
24852
|
}
|
24796
|
-
.v-
|
24797
|
-
|
24853
|
+
.v-stepper-item:focus-visible > .v-stepper-item__overlay {
|
24854
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24798
24855
|
}
|
24799
|
-
|
24800
|
-
|
24856
|
+
@supports not selector(:focus-visible) {
|
24857
|
+
.v-stepper-item:focus > .v-stepper-item__overlay {
|
24858
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24859
|
+
}
|
24801
24860
|
}
|
24802
|
-
.v-
|
24803
|
-
|
24804
|
-
text-overflow: ellipsis;
|
24805
|
-
white-space: nowrap;
|
24861
|
+
.v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
|
24862
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
24806
24863
|
}
|
24807
|
-
|
24808
|
-
|
24809
|
-
overflow: hidden;
|
24864
|
+
.v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
|
24865
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
24810
24866
|
}
|
24811
|
-
.v-
|
24812
|
-
|
24867
|
+
.v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
|
24868
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
24813
24869
|
}
|
24814
|
-
|
24815
|
-
|
24870
|
+
@supports not selector(:focus-visible) {
|
24871
|
+
.v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
|
24872
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
24873
|
+
}
|
24816
24874
|
}
|
24817
|
-
.v-
|
24818
|
-
|
24875
|
+
.v-stepper--non-linear .v-stepper-item {
|
24876
|
+
opacity: var(--v-high-emphasis-opacity);
|
24819
24877
|
}
|
24820
|
-
.v-
|
24821
|
-
|
24878
|
+
.v-stepper-item--selected {
|
24879
|
+
opacity: 1;
|
24880
|
+
}
|
24881
|
+
.v-stepper-item--error {
|
24882
|
+
color: rgb(var(--v-theme-error));
|
24883
|
+
}
|
24884
|
+
.v-stepper-item--disabled {
|
24885
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24886
|
+
pointer-events: none;
|
24887
|
+
}
|
24888
|
+
.v-stepper--alt-labels .v-stepper-item {
|
24889
|
+
flex-direction: column;
|
24890
|
+
justify-content: flex-start;
|
24822
24891
|
align-items: center;
|
24823
|
-
|
24824
|
-
letter-spacing: inherit;
|
24825
|
-
line-height: inherit;
|
24826
|
-
max-width: calc(100% - 2px - 2px);
|
24892
|
+
flex-basis: 175px;
|
24827
24893
|
}
|
24828
|
-
|
24829
|
-
|
24894
|
+
|
24895
|
+
.v-stepper-item__avatar.v-avatar {
|
24896
|
+
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
24897
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
24898
|
+
font-size: 0.75rem;
|
24899
|
+
margin-inline-end: 8px;
|
24830
24900
|
}
|
24831
|
-
.v-
|
24832
|
-
|
24833
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
24834
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
24835
|
-
top: 0px;
|
24901
|
+
.v-stepper--mobile .v-stepper-item__avatar.v-avatar {
|
24902
|
+
margin-inline-end: 0;
|
24836
24903
|
}
|
24837
|
-
.v-
|
24904
|
+
.v-stepper-item__avatar.v-avatar .v-icon {
|
24905
|
+
font-size: 0.875rem;
|
24906
|
+
}
|
24907
|
+
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
24908
|
+
background: rgb(var(--v-theme-surface-variant));
|
24909
|
+
}
|
24910
|
+
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
24911
|
+
background: rgb(var(--v-theme-error));
|
24912
|
+
}
|
24913
|
+
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
24914
|
+
margin-bottom: 16px;
|
24915
|
+
margin-inline-end: 0;
|
24916
|
+
}
|
24917
|
+
|
24918
|
+
.v-stepper-item__title {
|
24919
|
+
line-height: 1;
|
24920
|
+
}
|
24921
|
+
.v-stepper--mobile .v-stepper-item__title {
|
24922
|
+
display: none;
|
24923
|
+
}
|
24924
|
+
|
24925
|
+
.v-stepper-item__subtitle {
|
24926
|
+
font-size: 0.75rem;
|
24927
|
+
text-align: left;
|
24928
|
+
line-height: 1;
|
24838
24929
|
opacity: var(--v-medium-emphasis-opacity);
|
24839
24930
|
}
|
24840
|
-
.v-
|
24841
|
-
|
24931
|
+
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
24932
|
+
text-align: center;
|
24842
24933
|
}
|
24843
|
-
.v-
|
24844
|
-
|
24934
|
+
.v-stepper--mobile .v-stepper-item__subtitle {
|
24935
|
+
display: none;
|
24845
24936
|
}
|
24846
|
-
|
24847
|
-
|
24937
|
+
|
24938
|
+
.v-stepper-item__overlay {
|
24939
|
+
background-color: currentColor;
|
24940
|
+
border-radius: inherit;
|
24941
|
+
opacity: 0;
|
24942
|
+
transition: opacity 0.2s ease-in-out;
|
24943
|
+
}
|
24944
|
+
|
24945
|
+
.v-stepper-item__overlay,
|
24946
|
+
.v-stepper-item__underlay {
|
24947
|
+
pointer-events: none;
|
24948
|
+
}
|
24949
|
+
.v-stepper-item__overlay,
|
24950
|
+
.v-stepper-item__underlay {
|
24848
24951
|
position: absolute;
|
24952
|
+
top: 0;
|
24849
24953
|
left: 0;
|
24850
|
-
right: 0;
|
24851
24954
|
width: 100%;
|
24852
|
-
|
24955
|
+
height: 100%;
|
24956
|
+
}.v-speed-dial__content {
|
24957
|
+
gap: 8px;
|
24853
24958
|
}
|
24854
|
-
.v-
|
24855
|
-
|
24959
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--end, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--end-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--right-center {
|
24960
|
+
flex-direction: row;
|
24856
24961
|
}
|
24857
|
-
.v-
|
24858
|
-
|
24962
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--left, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--left-center, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--start-center {
|
24963
|
+
flex-direction: row-reverse;
|
24964
|
+
}
|
24965
|
+
.v-speed-dial__content.v-overlay__content.v-speed-dial__content--top, .v-speed-dial__content.v-overlay__content.v-speed-dial__content--top-center {
|
24966
|
+
flex-direction: column-reverse;
|
24967
|
+
}
|
24968
|
+
.v-speed-dial__content > *:nth-child(1) {
|
24969
|
+
transition-delay: 0s;
|
24970
|
+
}
|
24971
|
+
.v-speed-dial__content > *:nth-child(2) {
|
24972
|
+
transition-delay: 0.05s;
|
24973
|
+
}
|
24974
|
+
.v-speed-dial__content > *:nth-child(3) {
|
24975
|
+
transition-delay: 0.1s;
|
24976
|
+
}
|
24977
|
+
.v-speed-dial__content > *:nth-child(4) {
|
24978
|
+
transition-delay: 0.15s;
|
24979
|
+
}
|
24980
|
+
.v-speed-dial__content > *:nth-child(5) {
|
24981
|
+
transition-delay: 0.2s;
|
24982
|
+
}
|
24983
|
+
.v-speed-dial__content > *:nth-child(6) {
|
24984
|
+
transition-delay: 0.25s;
|
24985
|
+
}
|
24986
|
+
.v-speed-dial__content > *:nth-child(7) {
|
24987
|
+
transition-delay: 0.3s;
|
24859
24988
|
}
|
24860
|
-
.v-
|
24861
|
-
|
24989
|
+
.v-speed-dial__content > *:nth-child(8) {
|
24990
|
+
transition-delay: 0.35s;
|
24862
24991
|
}
|
24863
|
-
.v-
|
24864
|
-
|
24865
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24992
|
+
.v-speed-dial__content > *:nth-child(9) {
|
24993
|
+
transition-delay: 0.4s;
|
24866
24994
|
}
|
24867
|
-
.v-
|
24868
|
-
|
24995
|
+
.v-speed-dial__content > *:nth-child(10) {
|
24996
|
+
transition-delay: 0.45s;
|
24869
24997
|
}.v-switch .v-label {
|
24870
24998
|
padding-inline-start: 10px;
|
24871
24999
|
}
|
@@ -25048,181 +25176,49 @@ html.v-overlay-scroll-blocked {
|
|
25048
25176
|
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
25049
25177
|
border-width: 0;
|
25050
25178
|
}
|
25051
|
-
}.v-
|
25179
|
+
}.v-system-bar {
|
25052
25180
|
align-items: center;
|
25053
|
-
|
25054
|
-
|
25055
|
-
|
25056
|
-
|
25057
|
-
|
25058
|
-
padding:
|
25181
|
+
display: flex;
|
25182
|
+
flex: 1 1 auto;
|
25183
|
+
height: 24px;
|
25184
|
+
justify-content: flex-end;
|
25185
|
+
max-width: 100%;
|
25186
|
+
padding-inline: 8px;
|
25059
25187
|
position: relative;
|
25060
|
-
|
25061
|
-
transition-property: opacity;
|
25062
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25063
|
-
}
|
25064
|
-
.v-stepper-item:hover > .v-stepper-item__overlay {
|
25065
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
25066
|
-
}
|
25067
|
-
.v-stepper-item:focus-visible > .v-stepper-item__overlay {
|
25068
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
25069
|
-
}
|
25070
|
-
@supports not selector(:focus-visible) {
|
25071
|
-
.v-stepper-item:focus > .v-stepper-item__overlay {
|
25072
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
25073
|
-
}
|
25074
|
-
}
|
25075
|
-
.v-stepper-item--active > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true] > .v-stepper-item__overlay {
|
25076
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
25077
|
-
}
|
25078
|
-
.v-stepper-item--active:hover > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:hover > .v-stepper-item__overlay {
|
25079
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
25080
|
-
}
|
25081
|
-
.v-stepper-item--active:focus-visible > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus-visible > .v-stepper-item__overlay {
|
25082
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
25083
|
-
}
|
25084
|
-
@supports not selector(:focus-visible) {
|
25085
|
-
.v-stepper-item--active:focus > .v-stepper-item__overlay, .v-stepper-item[aria-haspopup=menu][aria-expanded=true]:focus > .v-stepper-item__overlay {
|
25086
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
25087
|
-
}
|
25088
|
-
}
|
25089
|
-
.v-stepper--non-linear .v-stepper-item {
|
25090
|
-
opacity: var(--v-high-emphasis-opacity);
|
25091
|
-
}
|
25092
|
-
.v-stepper-item--selected {
|
25093
|
-
opacity: 1;
|
25094
|
-
}
|
25095
|
-
.v-stepper-item--error {
|
25096
|
-
color: rgb(var(--v-theme-error));
|
25097
|
-
}
|
25098
|
-
.v-stepper-item--disabled {
|
25099
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25100
|
-
pointer-events: none;
|
25101
|
-
}
|
25102
|
-
.v-stepper--alt-labels .v-stepper-item {
|
25103
|
-
flex-direction: column;
|
25104
|
-
justify-content: flex-start;
|
25105
|
-
align-items: center;
|
25106
|
-
flex-basis: 175px;
|
25107
|
-
}
|
25108
|
-
|
25109
|
-
.v-stepper-item__avatar.v-avatar {
|
25110
|
-
background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
|
25111
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25112
|
-
font-size: 0.75rem;
|
25113
|
-
margin-inline-end: 8px;
|
25114
|
-
}
|
25115
|
-
.v-stepper--mobile .v-stepper-item__avatar.v-avatar {
|
25116
|
-
margin-inline-end: 0;
|
25117
|
-
}
|
25118
|
-
.v-stepper-item__avatar.v-avatar .v-icon {
|
25119
|
-
font-size: 0.875rem;
|
25120
|
-
}
|
25121
|
-
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
25122
|
-
background: rgb(var(--v-theme-surface-variant));
|
25123
|
-
}
|
25124
|
-
.v-stepper-item--error .v-stepper-item__avatar.v-avatar {
|
25125
|
-
background: rgb(var(--v-theme-error));
|
25126
|
-
}
|
25127
|
-
.v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
|
25128
|
-
margin-bottom: 16px;
|
25129
|
-
margin-inline-end: 0;
|
25130
|
-
}
|
25131
|
-
|
25132
|
-
.v-stepper-item__title {
|
25133
|
-
line-height: 1;
|
25134
|
-
}
|
25135
|
-
.v-stepper--mobile .v-stepper-item__title {
|
25136
|
-
display: none;
|
25137
|
-
}
|
25138
|
-
|
25139
|
-
.v-stepper-item__subtitle {
|
25140
|
-
font-size: 0.75rem;
|
25141
|
-
text-align: left;
|
25142
|
-
line-height: 1;
|
25143
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25144
|
-
}
|
25145
|
-
.v-stepper--alt-labels .v-stepper-item__subtitle {
|
25146
|
-
text-align: center;
|
25147
|
-
}
|
25148
|
-
.v-stepper--mobile .v-stepper-item__subtitle {
|
25149
|
-
display: none;
|
25150
|
-
}
|
25151
|
-
|
25152
|
-
.v-stepper-item__overlay {
|
25153
|
-
background-color: currentColor;
|
25154
|
-
border-radius: inherit;
|
25155
|
-
opacity: 0;
|
25156
|
-
transition: opacity 0.2s ease-in-out;
|
25157
|
-
}
|
25158
|
-
|
25159
|
-
.v-stepper-item__overlay,
|
25160
|
-
.v-stepper-item__underlay {
|
25161
|
-
pointer-events: none;
|
25162
|
-
}
|
25163
|
-
.v-stepper-item__overlay,
|
25164
|
-
.v-stepper-item__underlay {
|
25165
|
-
position: absolute;
|
25166
|
-
top: 0;
|
25167
|
-
left: 0;
|
25188
|
+
text-align: end;
|
25168
25189
|
width: 100%;
|
25169
|
-
height: 100%;
|
25170
|
-
}.v-stepper.v-sheet {
|
25171
|
-
overflow: hidden;
|
25172
|
-
}
|
25173
|
-
.v-stepper.v-sheet {
|
25174
|
-
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));
|
25175
25190
|
}
|
25176
|
-
.v-
|
25177
|
-
|
25191
|
+
.v-system-bar .v-icon {
|
25192
|
+
opacity: var(--v-medium-emphasis-opacity);
|
25178
25193
|
}
|
25179
|
-
.v-
|
25194
|
+
.v-system-bar {
|
25180
25195
|
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));
|
25181
25196
|
}
|
25182
|
-
|
25183
|
-
|
25184
|
-
align-items: center;
|
25185
|
-
display: flex;
|
25186
|
-
position: relative;
|
25187
|
-
overflow-x: auto;
|
25188
|
-
justify-content: space-between;
|
25189
|
-
z-index: 1;
|
25190
|
-
}
|
25191
|
-
.v-stepper-header {
|
25192
|
-
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));
|
25193
|
-
}
|
25194
|
-
.v-stepper-header .v-divider {
|
25195
|
-
margin: 0 -16px;
|
25196
|
-
}
|
25197
|
-
.v-stepper-header .v-divider:last-child {
|
25198
|
-
margin-inline-end: 0;
|
25199
|
-
}
|
25200
|
-
.v-stepper-header .v-divider:first-child {
|
25201
|
-
margin-inline-start: 0;
|
25197
|
+
.v-system-bar--absolute {
|
25198
|
+
position: absolute;
|
25202
25199
|
}
|
25203
|
-
.v-
|
25204
|
-
|
25200
|
+
.v-system-bar--fixed {
|
25201
|
+
position: fixed;
|
25205
25202
|
}
|
25206
|
-
.v-
|
25207
|
-
|
25208
|
-
|
25203
|
+
.v-system-bar {
|
25204
|
+
background: rgba(var(--v-theme-surface-light));
|
25205
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25209
25206
|
}
|
25210
|
-
|
25211
|
-
|
25212
|
-
|
25207
|
+
.v-system-bar {
|
25208
|
+
font-size: 0.75rem;
|
25209
|
+
font-weight: 400;
|
25210
|
+
letter-spacing: 0.0333333333em;
|
25211
|
+
line-height: 1.667;
|
25212
|
+
text-transform: none;
|
25213
25213
|
}
|
25214
|
-
|
25215
|
-
|
25216
|
-
display: flex;
|
25217
|
-
align-items: center;
|
25218
|
-
justify-content: space-between;
|
25219
|
-
padding: 1rem;
|
25214
|
+
.v-system-bar--rounded {
|
25215
|
+
border-radius: 0;
|
25220
25216
|
}
|
25221
|
-
.v-
|
25222
|
-
|
25217
|
+
.v-system-bar--window {
|
25218
|
+
height: 32px;
|
25223
25219
|
}
|
25224
|
-
.v-
|
25225
|
-
padding:
|
25220
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25221
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25226
25222
|
}.v-tab.v-tab.v-btn {
|
25227
25223
|
height: var(--v-tabs-height);
|
25228
25224
|
border-radius: 0;
|
@@ -25310,57 +25306,14 @@ html.v-overlay-scroll-blocked {
|
|
25310
25306
|
.v-tabs--align-tabs-end .v-tab:last-child {
|
25311
25307
|
margin-inline-end: 0;
|
25312
25308
|
}
|
25313
|
-
|
25314
|
-
@media (max-width: 1279.98px) {
|
25315
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25316
|
-
margin-inline-start: 52px;
|
25317
|
-
}
|
25318
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25319
|
-
margin-inline-end: 52px;
|
25320
|
-
}
|
25321
|
-
}.v-system-bar {
|
25322
|
-
align-items: center;
|
25323
|
-
display: flex;
|
25324
|
-
flex: 1 1 auto;
|
25325
|
-
height: 24px;
|
25326
|
-
justify-content: flex-end;
|
25327
|
-
max-width: 100%;
|
25328
|
-
padding-inline: 8px;
|
25329
|
-
position: relative;
|
25330
|
-
text-align: end;
|
25331
|
-
width: 100%;
|
25332
|
-
}
|
25333
|
-
.v-system-bar .v-icon {
|
25334
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25335
|
-
}
|
25336
|
-
.v-system-bar {
|
25337
|
-
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));
|
25338
|
-
}
|
25339
|
-
.v-system-bar--absolute {
|
25340
|
-
position: absolute;
|
25341
|
-
}
|
25342
|
-
.v-system-bar--fixed {
|
25343
|
-
position: fixed;
|
25344
|
-
}
|
25345
|
-
.v-system-bar {
|
25346
|
-
background: rgba(var(--v-theme-surface-light));
|
25347
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25348
|
-
}
|
25349
|
-
.v-system-bar {
|
25350
|
-
font-size: 0.75rem;
|
25351
|
-
font-weight: 400;
|
25352
|
-
letter-spacing: 0.0333333333em;
|
25353
|
-
line-height: 1.667;
|
25354
|
-
text-transform: none;
|
25355
|
-
}
|
25356
|
-
.v-system-bar--rounded {
|
25357
|
-
border-radius: 0;
|
25358
|
-
}
|
25359
|
-
.v-system-bar--window {
|
25360
|
-
height: 32px;
|
25361
|
-
}
|
25362
|
-
.v-system-bar:not(.v-system-bar--absolute) {
|
25363
|
-
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25309
|
+
|
25310
|
+
@media (max-width: 1279.98px) {
|
25311
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25312
|
+
margin-inline-start: 52px;
|
25313
|
+
}
|
25314
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25315
|
+
margin-inline-end: 52px;
|
25316
|
+
}
|
25364
25317
|
}.v-table {
|
25365
25318
|
font-size: 0.875rem;
|
25366
25319
|
transition-duration: 0.28s;
|
@@ -25452,427 +25405,180 @@ html.v-overlay-scroll-blocked {
|
|
25452
25405
|
--v-table-row-height: 52px;
|
25453
25406
|
}
|
25454
25407
|
|
25455
|
-
.v-table--density-comfortable {
|
25456
|
-
--v-table-header-height: 48px;
|
25457
|
-
--v-table-row-height: 44px;
|
25458
|
-
}
|
25459
|
-
|
25460
|
-
.v-table--density-compact {
|
25461
|
-
--v-table-header-height: 40px;
|
25462
|
-
--v-table-row-height: 36px;
|
25463
|
-
}
|
25464
|
-
|
25465
|
-
.v-table__wrapper {
|
25466
|
-
border-radius: inherit;
|
25467
|
-
overflow: auto;
|
25468
|
-
flex: 1 1 auto;
|
25469
|
-
}
|
25470
|
-
|
25471
|
-
.v-table--has-top > .v-table__wrapper {
|
25472
|
-
border-top-left-radius: 0;
|
25473
|
-
border-top-right-radius: 0;
|
25474
|
-
}
|
25475
|
-
|
25476
|
-
.v-table--has-bottom > .v-table__wrapper {
|
25477
|
-
border-bottom-left-radius: 0;
|
25478
|
-
border-bottom-right-radius: 0;
|
25479
|
-
}
|
25480
|
-
|
25481
|
-
.v-table--fixed-height > .v-table__wrapper {
|
25482
|
-
overflow-y: auto;
|
25483
|
-
}
|
25484
|
-
|
25485
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25486
|
-
position: sticky;
|
25487
|
-
top: 0;
|
25488
|
-
z-index: 2;
|
25489
|
-
}
|
25490
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25491
|
-
border-bottom: 0px !important;
|
25492
|
-
}
|
25493
|
-
|
25494
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25495
|
-
position: sticky;
|
25496
|
-
bottom: 0;
|
25497
|
-
z-index: 1;
|
25498
|
-
}
|
25499
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25500
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25501
|
-
border-top: 0px !important;
|
25502
|
-
}/* region BLOCK */
|
25503
|
-
.v-text-field input {
|
25504
|
-
color: inherit;
|
25505
|
-
opacity: 0;
|
25506
|
-
flex: 1;
|
25507
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25508
|
-
min-width: 0;
|
25509
|
-
}
|
25510
|
-
.v-text-field input:focus, .v-text-field input:active {
|
25511
|
-
outline: none;
|
25512
|
-
}
|
25513
|
-
.v-text-field input:invalid {
|
25514
|
-
box-shadow: none;
|
25515
|
-
}
|
25516
|
-
.v-text-field .v-field {
|
25517
|
-
cursor: text;
|
25518
|
-
}
|
25519
|
-
.v-text-field--prefixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25520
|
-
--v-field-padding-start: 6px;
|
25521
|
-
}
|
25522
|
-
|
25523
|
-
.v-text-field--suffixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25524
|
-
--v-field-padding-end: 0;
|
25525
|
-
}
|
25526
|
-
|
25527
|
-
.v-text-field--prefixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25528
|
-
--v-field-padding-end: 6px;
|
25529
|
-
}
|
25530
|
-
|
25531
|
-
.v-text-field--suffixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25532
|
-
--v-field-padding-start: 0;
|
25533
|
-
}
|
25534
|
-
|
25535
|
-
.v-text-field .v-input__details {
|
25536
|
-
padding-inline: 16px;
|
25537
|
-
}
|
25538
|
-
.v-input--plain-underlined.v-text-field .v-input__details {
|
25539
|
-
padding-inline: 0;
|
25540
|
-
}
|
25541
|
-
|
25542
|
-
.v-text-field .v-field--no-label input,
|
25543
|
-
.v-text-field .v-field--active input {
|
25544
|
-
opacity: 1;
|
25545
|
-
}
|
25546
|
-
.v-text-field .v-field--single-line input {
|
25547
|
-
transition: none;
|
25548
|
-
}
|
25549
|
-
|
25550
|
-
/* endregion */
|
25551
|
-
/* region ELEMENTS */
|
25552
|
-
.v-text-field__prefix, .v-text-field__suffix {
|
25553
|
-
align-items: center;
|
25554
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25555
|
-
cursor: default;
|
25556
|
-
display: flex;
|
25557
|
-
opacity: 0;
|
25558
|
-
transition: inherit;
|
25559
|
-
white-space: nowrap;
|
25560
|
-
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25561
|
-
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25562
|
-
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25563
|
-
}
|
25564
|
-
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25565
|
-
opacity: 1;
|
25566
|
-
}
|
25567
|
-
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25568
|
-
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25569
|
-
}
|
25570
|
-
.v-field:not(.v-field--reverse) .v-text-field__prefix {
|
25571
|
-
padding-inline-start: var(--v-field-padding-start);
|
25572
|
-
}
|
25573
|
-
|
25574
|
-
.v-field.v-field--reverse .v-text-field__prefix {
|
25575
|
-
padding-inline-end: var(--v-field-padding-end);
|
25576
|
-
}
|
25577
|
-
|
25578
|
-
.v-field:not(.v-field--reverse) .v-text-field__suffix {
|
25579
|
-
padding-inline-end: var(--v-field-padding-end);
|
25580
|
-
}
|
25581
|
-
|
25582
|
-
.v-field.v-field--reverse .v-text-field__suffix {
|
25583
|
-
padding-inline-start: var(--v-field-padding-start);
|
25584
|
-
}
|
25585
|
-
|
25586
|
-
/* endregion */.v-textarea .v-field {
|
25587
|
-
--v-textarea-control-height: var(--v-input-control-height);
|
25588
|
-
}
|
25589
|
-
.v-textarea .v-field__field {
|
25590
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
25591
|
-
}
|
25592
|
-
.v-textarea .v-field__input {
|
25593
|
-
flex: 1 1 auto;
|
25594
|
-
outline: none;
|
25595
|
-
-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));
|
25596
|
-
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));
|
25597
|
-
}
|
25598
|
-
.v-textarea .v-field__input.v-textarea__sizer {
|
25599
|
-
visibility: hidden;
|
25600
|
-
position: absolute;
|
25601
|
-
top: 0;
|
25602
|
-
left: 0;
|
25603
|
-
height: 0 !important;
|
25604
|
-
min-height: 0 !important;
|
25605
|
-
pointer-events: none;
|
25606
|
-
}
|
25607
|
-
.v-textarea--no-resize .v-field__input {
|
25608
|
-
resize: none;
|
25609
|
-
}
|
25610
|
-
.v-textarea .v-field--no-label textarea,
|
25611
|
-
.v-textarea .v-field--active textarea {
|
25612
|
-
opacity: 1;
|
25613
|
-
}
|
25614
|
-
.v-textarea textarea {
|
25615
|
-
opacity: 0;
|
25616
|
-
flex: 1;
|
25617
|
-
min-width: 0;
|
25618
|
-
height: 100%;
|
25619
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25620
|
-
}
|
25621
|
-
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25622
|
-
outline: none;
|
25623
|
-
}
|
25624
|
-
.v-textarea textarea:invalid {
|
25625
|
-
box-shadow: none;
|
25626
|
-
}.v-theme-provider {
|
25627
|
-
background: rgb(var(--v-theme-background));
|
25628
|
-
color: rgb(var(--v-theme-on-background));
|
25629
|
-
}.v-toolbar {
|
25630
|
-
align-items: flex-start;
|
25631
|
-
display: flex;
|
25632
|
-
flex: none;
|
25633
|
-
flex-direction: column;
|
25634
|
-
justify-content: space-between;
|
25635
|
-
max-width: 100%;
|
25636
|
-
position: relative;
|
25637
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
25638
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
25639
|
-
width: 100%;
|
25640
|
-
}
|
25641
|
-
.v-toolbar {
|
25642
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
25643
|
-
border-style: solid;
|
25644
|
-
border-width: 0;
|
25645
|
-
}
|
25646
|
-
.v-toolbar--border {
|
25647
|
-
border-width: thin;
|
25648
|
-
box-shadow: none;
|
25649
|
-
}
|
25650
|
-
.v-toolbar {
|
25651
|
-
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));
|
25652
|
-
}
|
25653
|
-
.v-toolbar {
|
25654
|
-
border-radius: 0;
|
25655
|
-
}
|
25656
|
-
.v-toolbar {
|
25657
|
-
background: rgb(var(--v-theme-surface-light));
|
25658
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25659
|
-
}
|
25660
|
-
.v-toolbar--absolute {
|
25661
|
-
position: absolute;
|
25662
|
-
}
|
25663
|
-
.v-toolbar--collapse {
|
25664
|
-
max-width: 112px;
|
25665
|
-
overflow: hidden;
|
25666
|
-
border-end-end-radius: 24px;
|
25667
|
-
}
|
25668
|
-
.v-toolbar--collapse .v-toolbar-title {
|
25669
|
-
display: none;
|
25670
|
-
}
|
25671
|
-
.v-toolbar--flat {
|
25672
|
-
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));
|
25673
|
-
}
|
25674
|
-
.v-toolbar--floating {
|
25675
|
-
display: inline-flex;
|
25676
|
-
width: auto;
|
25677
|
-
}
|
25678
|
-
.v-toolbar--rounded {
|
25679
|
-
border-radius: 4px;
|
25680
|
-
}
|
25681
|
-
|
25682
|
-
.v-toolbar__content,
|
25683
|
-
.v-toolbar__extension {
|
25684
|
-
align-items: center;
|
25685
|
-
display: flex;
|
25686
|
-
flex: 0 0 auto;
|
25687
|
-
position: relative;
|
25688
|
-
transition: inherit;
|
25689
|
-
width: 100%;
|
25690
|
-
}
|
25691
|
-
|
25692
|
-
.v-toolbar__content {
|
25693
|
-
overflow: hidden;
|
25694
|
-
}
|
25695
|
-
.v-toolbar__content > .v-btn:first-child {
|
25696
|
-
margin-inline-start: 4px;
|
25697
|
-
}
|
25698
|
-
.v-toolbar__content > .v-btn:last-child {
|
25699
|
-
margin-inline-end: 4px;
|
25700
|
-
}
|
25701
|
-
.v-toolbar__content > .v-toolbar-title {
|
25702
|
-
margin-inline-start: 20px;
|
25408
|
+
.v-table--density-comfortable {
|
25409
|
+
--v-table-header-height: 48px;
|
25410
|
+
--v-table-row-height: 44px;
|
25703
25411
|
}
|
25704
|
-
|
25705
|
-
|
25412
|
+
|
25413
|
+
.v-table--density-compact {
|
25414
|
+
--v-table-header-height: 40px;
|
25415
|
+
--v-table-row-height: 36px;
|
25706
25416
|
}
|
25707
25417
|
|
25708
|
-
.v-
|
25709
|
-
|
25710
|
-
|
25711
|
-
|
25418
|
+
.v-table__wrapper {
|
25419
|
+
border-radius: inherit;
|
25420
|
+
overflow: auto;
|
25421
|
+
flex: 1 1 auto;
|
25712
25422
|
}
|
25713
|
-
|
25714
|
-
|
25715
|
-
top: 0;
|
25716
|
-
|
25717
|
-
width: 100%;
|
25718
|
-
height: 100%;
|
25423
|
+
|
25424
|
+
.v-table--has-top > .v-table__wrapper {
|
25425
|
+
border-top-left-radius: 0;
|
25426
|
+
border-top-right-radius: 0;
|
25719
25427
|
}
|
25720
25428
|
|
25721
|
-
.v-
|
25722
|
-
|
25723
|
-
|
25724
|
-
align-self: stretch;
|
25725
|
-
display: flex;
|
25429
|
+
.v-table--has-bottom > .v-table__wrapper {
|
25430
|
+
border-bottom-left-radius: 0;
|
25431
|
+
border-bottom-right-radius: 0;
|
25726
25432
|
}
|
25727
25433
|
|
25728
|
-
.v-
|
25729
|
-
|
25434
|
+
.v-table--fixed-height > .v-table__wrapper {
|
25435
|
+
overflow-y: auto;
|
25730
25436
|
}
|
25731
25437
|
|
25732
|
-
.v-
|
25733
|
-
|
25438
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25439
|
+
position: sticky;
|
25440
|
+
top: 0;
|
25441
|
+
z-index: 2;
|
25442
|
+
}
|
25443
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25444
|
+
border-bottom: 0px !important;
|
25734
25445
|
}
|
25735
25446
|
|
25736
|
-
.v-
|
25737
|
-
|
25738
|
-
|
25739
|
-
|
25447
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25448
|
+
position: sticky;
|
25449
|
+
bottom: 0;
|
25450
|
+
z-index: 1;
|
25740
25451
|
}
|
25741
|
-
.v-
|
25742
|
-
|
25743
|
-
|
25744
|
-
|
25745
|
-
|
25746
|
-
text-transform: none;
|
25452
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25453
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25454
|
+
border-top: 0px !important;
|
25455
|
+
}.v-textarea .v-field {
|
25456
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
25747
25457
|
}
|
25748
|
-
.v-
|
25749
|
-
|
25750
|
-
padding-bottom: 6px;
|
25458
|
+
.v-textarea .v-field__field {
|
25459
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
25751
25460
|
}
|
25752
|
-
.v-
|
25753
|
-
|
25754
|
-
|
25755
|
-
|
25756
|
-
|
25757
|
-
text-transform: none;
|
25461
|
+
.v-textarea .v-field__input {
|
25462
|
+
flex: 1 1 auto;
|
25463
|
+
outline: none;
|
25464
|
+
-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));
|
25465
|
+
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));
|
25758
25466
|
}
|
25759
|
-
|
25760
|
-
|
25761
|
-
|
25762
|
-
|
25763
|
-
|
25467
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
25468
|
+
visibility: hidden;
|
25469
|
+
position: absolute;
|
25470
|
+
top: 0;
|
25471
|
+
left: 0;
|
25472
|
+
height: 0 !important;
|
25473
|
+
min-height: 0 !important;
|
25474
|
+
pointer-events: none;
|
25764
25475
|
}
|
25765
|
-
|
25766
|
-
|
25767
|
-
display: flex;
|
25768
|
-
height: inherit;
|
25769
|
-
align-self: stretch;
|
25476
|
+
.v-textarea--no-resize .v-field__input {
|
25477
|
+
resize: none;
|
25770
25478
|
}
|
25771
|
-
.v-
|
25772
|
-
|
25773
|
-
}.v-tooltip > .v-overlay__content {
|
25774
|
-
background: rgb(var(--v-theme-surface-variant));
|
25775
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
25776
|
-
border-radius: 4px;
|
25777
|
-
font-size: 0.875rem;
|
25778
|
-
line-height: 1.6;
|
25779
|
-
display: inline-block;
|
25780
|
-
padding: 5px 16px;
|
25781
|
-
text-transform: initial;
|
25782
|
-
width: auto;
|
25479
|
+
.v-textarea .v-field--no-label textarea,
|
25480
|
+
.v-textarea .v-field--active textarea {
|
25783
25481
|
opacity: 1;
|
25784
|
-
transition-property: opacity, transform;
|
25785
|
-
overflow-wrap: break-word;
|
25786
25482
|
}
|
25787
|
-
.v-
|
25788
|
-
|
25789
|
-
|
25483
|
+
.v-textarea textarea {
|
25484
|
+
opacity: 0;
|
25485
|
+
flex: 1;
|
25486
|
+
min-width: 0;
|
25487
|
+
height: 100%;
|
25488
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25790
25489
|
}
|
25791
|
-
.v-
|
25792
|
-
|
25793
|
-
transition-duration: 75ms;
|
25490
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
25491
|
+
outline: none;
|
25794
25492
|
}
|
25795
|
-
.v-
|
25796
|
-
|
25797
|
-
}
|
25798
|
-
|
25799
|
-
|
25800
|
-
|
25801
|
-
|
25802
|
-
|
25493
|
+
.v-textarea textarea:invalid {
|
25494
|
+
box-shadow: none;
|
25495
|
+
}/* region BLOCK */
|
25496
|
+
.v-text-field input {
|
25497
|
+
color: inherit;
|
25498
|
+
opacity: 0;
|
25499
|
+
flex: 1;
|
25500
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25501
|
+
min-width: 0;
|
25803
25502
|
}
|
25804
|
-
.v-
|
25805
|
-
|
25806
|
-
}.v-window {
|
25807
|
-
overflow: hidden;
|
25503
|
+
.v-text-field input:focus, .v-text-field input:active {
|
25504
|
+
outline: none;
|
25808
25505
|
}
|
25809
|
-
.v-
|
25810
|
-
|
25811
|
-
flex-direction: column;
|
25812
|
-
height: inherit;
|
25813
|
-
position: relative;
|
25814
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
25506
|
+
.v-text-field input:invalid {
|
25507
|
+
box-shadow: none;
|
25815
25508
|
}
|
25816
|
-
.v-
|
25817
|
-
|
25818
|
-
left: 0;
|
25819
|
-
top: 0;
|
25820
|
-
width: 100%;
|
25821
|
-
height: 100%;
|
25822
|
-
display: flex;
|
25823
|
-
align-items: center;
|
25824
|
-
justify-content: space-between;
|
25825
|
-
padding: 0 16px;
|
25826
|
-
pointer-events: none;
|
25509
|
+
.v-text-field .v-field {
|
25510
|
+
cursor: text;
|
25827
25511
|
}
|
25828
|
-
.v-
|
25829
|
-
|
25512
|
+
.v-text-field--prefixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25513
|
+
--v-field-padding-start: 6px;
|
25830
25514
|
}
|
25831
|
-
|
25832
|
-
|
25515
|
+
|
25516
|
+
.v-text-field--suffixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25517
|
+
--v-field-padding-end: 0;
|
25833
25518
|
}
|
25834
|
-
|
25835
|
-
|
25519
|
+
|
25520
|
+
.v-text-field--prefixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25521
|
+
--v-field-padding-end: 6px;
|
25836
25522
|
}
|
25837
|
-
|
25838
|
-
|
25523
|
+
|
25524
|
+
.v-text-field--suffixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25525
|
+
--v-field-padding-start: 0;
|
25839
25526
|
}
|
25840
|
-
|
25841
|
-
.v-
|
25842
|
-
|
25527
|
+
|
25528
|
+
.v-text-field .v-input__details {
|
25529
|
+
padding-inline: 16px;
|
25530
|
+
}
|
25531
|
+
.v-input--plain-underlined.v-text-field .v-input__details {
|
25532
|
+
padding-inline: 0;
|
25843
25533
|
}
|
25844
25534
|
|
25845
|
-
.v-
|
25846
|
-
|
25535
|
+
.v-text-field .v-field--no-label input,
|
25536
|
+
.v-text-field .v-field--active input {
|
25537
|
+
opacity: 1;
|
25847
25538
|
}
|
25848
|
-
.v-
|
25849
|
-
|
25850
|
-
top: 0;
|
25851
|
-
width: 100%;
|
25539
|
+
.v-text-field .v-field--single-line input {
|
25540
|
+
transition: none;
|
25852
25541
|
}
|
25853
|
-
|
25854
|
-
|
25542
|
+
|
25543
|
+
/* endregion */
|
25544
|
+
/* region ELEMENTS */
|
25545
|
+
.v-text-field__prefix, .v-text-field__suffix {
|
25546
|
+
align-items: center;
|
25547
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25548
|
+
cursor: default;
|
25549
|
+
display: flex;
|
25550
|
+
opacity: 0;
|
25551
|
+
transition: inherit;
|
25552
|
+
white-space: nowrap;
|
25553
|
+
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25554
|
+
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25555
|
+
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25855
25556
|
}
|
25856
|
-
.v-
|
25857
|
-
|
25557
|
+
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25558
|
+
opacity: 1;
|
25858
25559
|
}
|
25859
|
-
.v-
|
25860
|
-
|
25560
|
+
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25561
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25861
25562
|
}
|
25862
|
-
.v-
|
25863
|
-
|
25563
|
+
.v-field:not(.v-field--reverse) .v-text-field__prefix {
|
25564
|
+
padding-inline-start: var(--v-field-padding-start);
|
25864
25565
|
}
|
25865
|
-
|
25866
|
-
|
25566
|
+
|
25567
|
+
.v-field.v-field--reverse .v-text-field__prefix {
|
25568
|
+
padding-inline-end: var(--v-field-padding-end);
|
25867
25569
|
}
|
25868
|
-
|
25869
|
-
|
25570
|
+
|
25571
|
+
.v-field:not(.v-field--reverse) .v-text-field__suffix {
|
25572
|
+
padding-inline-end: var(--v-field-padding-end);
|
25870
25573
|
}
|
25871
|
-
|
25872
|
-
|
25574
|
+
|
25575
|
+
.v-field.v-field--reverse .v-text-field__suffix {
|
25576
|
+
padding-inline-start: var(--v-field-padding-start);
|
25873
25577
|
}
|
25874
|
-
|
25875
|
-
|
25578
|
+
|
25579
|
+
/* endregion */.v-theme-provider {
|
25580
|
+
background: rgb(var(--v-theme-background));
|
25581
|
+
color: rgb(var(--v-theme-on-background));
|
25876
25582
|
}.v-timeline .v-timeline-divider__dot {
|
25877
25583
|
background: rgb(var(--v-theme-surface-light));
|
25878
25584
|
}
|
@@ -26136,234 +25842,539 @@ html.v-overlay-scroll-blocked {
|
|
26136
25842
|
grid-template-columns: auto min-content min-content;
|
26137
25843
|
}
|
26138
25844
|
|
26139
|
-
.v-timeline--horizontal.v-timeline--density-compact.v-timeline--side-end {
|
26140
|
-
grid-template-rows: 0 min-content auto;
|
25845
|
+
.v-timeline--horizontal.v-timeline--density-compact.v-timeline--side-end {
|
25846
|
+
grid-template-rows: 0 min-content auto;
|
25847
|
+
}
|
25848
|
+
.v-timeline--horizontal.v-timeline--density-compact.v-timeline--side-start {
|
25849
|
+
grid-template-rows: auto min-content 0;
|
25850
|
+
}
|
25851
|
+
.v-timeline--horizontal.v-timeline--density-compact .v-timeline-item__body {
|
25852
|
+
grid-row: 1;
|
25853
|
+
}
|
25854
|
+
|
25855
|
+
.v-timeline--vertical.v-timeline--density-compact.v-timeline--side-end {
|
25856
|
+
grid-template-columns: 0 min-content auto;
|
25857
|
+
}
|
25858
|
+
.v-timeline--vertical.v-timeline--density-compact.v-timeline--side-start {
|
25859
|
+
grid-template-columns: auto min-content 0;
|
25860
|
+
}
|
25861
|
+
.v-timeline--vertical.v-timeline--density-compact .v-timeline-item__body {
|
25862
|
+
grid-column: 3;
|
25863
|
+
}
|
25864
|
+
|
25865
|
+
.v-timeline--horizontal.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__body {
|
25866
|
+
grid-row: 3;
|
25867
|
+
align-self: flex-start;
|
25868
|
+
padding-block-end: initial;
|
25869
|
+
padding-block-start: 24px;
|
25870
|
+
}
|
25871
|
+
.v-timeline--horizontal.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__opposite {
|
25872
|
+
grid-row: 1;
|
25873
|
+
align-self: flex-end;
|
25874
|
+
padding-block-end: 24px;
|
25875
|
+
padding-block-start: initial;
|
25876
|
+
}
|
25877
|
+
|
25878
|
+
.v-timeline--vertical.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__body {
|
25879
|
+
grid-column: 3;
|
25880
|
+
justify-self: flex-start;
|
25881
|
+
padding-inline-start: 24px;
|
25882
|
+
padding-inline-end: initial;
|
25883
|
+
}
|
25884
|
+
.v-timeline--vertical.v-timeline.v-timeline--side-end .v-timeline-item .v-timeline-item__opposite {
|
25885
|
+
grid-column: 1;
|
25886
|
+
justify-self: flex-end;
|
25887
|
+
padding-inline-end: 24px;
|
25888
|
+
padding-inline-start: initial;
|
25889
|
+
}
|
25890
|
+
|
25891
|
+
.v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
|
25892
|
+
grid-row: 1;
|
25893
|
+
align-self: flex-end;
|
25894
|
+
padding-block-end: 24px;
|
25895
|
+
padding-block-start: initial;
|
25896
|
+
}
|
25897
|
+
.v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
|
25898
|
+
grid-row: 3;
|
25899
|
+
align-self: flex-start;
|
25900
|
+
padding-block-end: initial;
|
25901
|
+
padding-block-start: 24px;
|
25902
|
+
}
|
25903
|
+
|
25904
|
+
.v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
|
25905
|
+
grid-column: 1;
|
25906
|
+
justify-self: flex-end;
|
25907
|
+
padding-inline-end: 24px;
|
25908
|
+
}
|
25909
|
+
.v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
|
25910
|
+
grid-column: 3;
|
25911
|
+
justify-self: flex-start;
|
25912
|
+
padding-inline-start: 24px;
|
25913
|
+
}
|
25914
|
+
|
25915
|
+
.v-timeline-divider--fill-dot .v-timeline-divider__inner-dot {
|
25916
|
+
height: inherit;
|
25917
|
+
width: inherit;
|
25918
|
+
}
|
25919
|
+
|
25920
|
+
.v-timeline--align-center {
|
25921
|
+
--v-timeline-line-size-base: 50%;
|
25922
|
+
--v-timeline-line-size-offset: 0px;
|
25923
|
+
}
|
25924
|
+
.v-timeline--horizontal.v-timeline--align-center {
|
25925
|
+
justify-items: center;
|
25926
|
+
}
|
25927
|
+
.v-timeline--horizontal.v-timeline--align-center .v-timeline-item__body {
|
25928
|
+
padding-inline: 12px;
|
25929
|
+
}
|
25930
|
+
.v-timeline--horizontal.v-timeline--align-center .v-timeline-item__opposite {
|
25931
|
+
padding-inline: 12px;
|
25932
|
+
}
|
25933
|
+
.v-timeline--horizontal.v-timeline--align-center .v-timeline-divider {
|
25934
|
+
justify-content: center;
|
25935
|
+
}
|
25936
|
+
|
25937
|
+
.v-timeline--vertical.v-timeline--align-center {
|
25938
|
+
align-items: center;
|
25939
|
+
}
|
25940
|
+
.v-timeline--vertical.v-timeline--align-center .v-timeline-divider {
|
25941
|
+
justify-content: center;
|
25942
|
+
}
|
25943
|
+
|
25944
|
+
.v-timeline--align-start {
|
25945
|
+
--v-timeline-line-size-base: 100%;
|
25946
|
+
--v-timeline-line-size-offset: 12px;
|
25947
|
+
}
|
25948
|
+
.v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__before {
|
25949
|
+
--v-timeline-line-size-offset: 24px;
|
25950
|
+
}
|
25951
|
+
.v-timeline--align-start .v-timeline-item:first-child .v-timeline-divider__after {
|
25952
|
+
--v-timeline-line-size-offset: -12px;
|
25953
|
+
}
|
25954
|
+
.v-timeline--align-start .v-timeline-item:last-child .v-timeline-divider__after {
|
25955
|
+
--v-timeline-line-size-offset: 0px;
|
25956
|
+
}
|
25957
|
+
.v-timeline--horizontal.v-timeline--align-start {
|
25958
|
+
justify-items: flex-start;
|
25959
|
+
}
|
25960
|
+
.v-timeline--horizontal.v-timeline--align-start .v-timeline-divider {
|
25961
|
+
justify-content: flex-start;
|
25962
|
+
}
|
25963
|
+
.v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
|
25964
|
+
width: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
|
25965
|
+
}
|
25966
|
+
.v-timeline--horizontal.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
|
25967
|
+
width: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
|
25968
|
+
}
|
25969
|
+
|
25970
|
+
.v-timeline--vertical.v-timeline--align-start {
|
25971
|
+
align-items: flex-start;
|
25972
|
+
}
|
25973
|
+
.v-timeline--vertical.v-timeline--align-start .v-timeline-divider {
|
25974
|
+
justify-content: flex-start;
|
25975
|
+
}
|
25976
|
+
.v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__before {
|
25977
|
+
height: calc(var(--v-timeline-line-size-offset) + var(--v-timeline-dot-size) / 2 - var(--v-timeline-line-inset));
|
25978
|
+
}
|
25979
|
+
.v-timeline--vertical.v-timeline--align-start .v-timeline-divider .v-timeline-divider__after {
|
25980
|
+
height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
|
25981
|
+
}
|
25982
|
+
|
25983
|
+
.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
|
25984
|
+
display: none;
|
25985
|
+
}
|
25986
|
+
.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
|
25987
|
+
--v-timeline-line-size-offset: 12px;
|
25988
|
+
}
|
25989
|
+
.v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
|
25990
|
+
padding-block-start: 0;
|
25991
|
+
}
|
25992
|
+
|
25993
|
+
.v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
|
25994
|
+
padding-inline-start: 0;
|
25995
|
+
}
|
25996
|
+
|
25997
|
+
.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
|
25998
|
+
display: none;
|
25999
|
+
}
|
26000
|
+
.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
|
26001
|
+
--v-timeline-line-size-offset: 12px;
|
26002
|
+
}
|
26003
|
+
.v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
26004
|
+
padding-block-end: 0;
|
26005
|
+
}
|
26006
|
+
|
26007
|
+
.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 {
|
26008
|
+
padding-inline-end: 0;
|
26009
|
+
}.v-tooltip > .v-overlay__content {
|
26010
|
+
background: rgb(var(--v-theme-surface-variant));
|
26011
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26012
|
+
border-radius: 4px;
|
26013
|
+
font-size: 0.875rem;
|
26014
|
+
line-height: 1.6;
|
26015
|
+
display: inline-block;
|
26016
|
+
padding: 5px 16px;
|
26017
|
+
text-transform: initial;
|
26018
|
+
width: auto;
|
26019
|
+
opacity: 1;
|
26020
|
+
transition-property: opacity, transform;
|
26021
|
+
overflow-wrap: break-word;
|
26022
|
+
}
|
26023
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
26024
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
26025
|
+
transition-duration: 150ms;
|
26026
|
+
}
|
26027
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26028
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26029
|
+
transition-duration: 75ms;
|
26030
|
+
}
|
26031
|
+
.v-tooltip:not(.v-tooltip--interactive) > .v-overlay__content {
|
26032
|
+
pointer-events: none;
|
26033
|
+
}.v-toolbar {
|
26034
|
+
align-items: flex-start;
|
26035
|
+
display: flex;
|
26036
|
+
flex: none;
|
26037
|
+
flex-direction: column;
|
26038
|
+
justify-content: space-between;
|
26039
|
+
max-width: 100%;
|
26040
|
+
position: relative;
|
26041
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
26042
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
26043
|
+
width: 100%;
|
26044
|
+
}
|
26045
|
+
.v-toolbar {
|
26046
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
26047
|
+
border-style: solid;
|
26048
|
+
border-width: 0;
|
26049
|
+
}
|
26050
|
+
.v-toolbar--border {
|
26051
|
+
border-width: thin;
|
26052
|
+
box-shadow: none;
|
26053
|
+
}
|
26054
|
+
.v-toolbar {
|
26055
|
+
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));
|
26056
|
+
}
|
26057
|
+
.v-toolbar {
|
26058
|
+
border-radius: 0;
|
26059
|
+
}
|
26060
|
+
.v-toolbar {
|
26061
|
+
background: rgb(var(--v-theme-surface-light));
|
26062
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
26063
|
+
}
|
26064
|
+
.v-toolbar--absolute {
|
26065
|
+
position: absolute;
|
26066
|
+
}
|
26067
|
+
.v-toolbar--collapse {
|
26068
|
+
max-width: 112px;
|
26069
|
+
overflow: hidden;
|
26070
|
+
border-end-end-radius: 24px;
|
26071
|
+
}
|
26072
|
+
.v-toolbar--collapse .v-toolbar-title {
|
26073
|
+
display: none;
|
26074
|
+
}
|
26075
|
+
.v-toolbar--flat {
|
26076
|
+
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));
|
26077
|
+
}
|
26078
|
+
.v-toolbar--floating {
|
26079
|
+
display: inline-flex;
|
26080
|
+
width: auto;
|
26081
|
+
}
|
26082
|
+
.v-toolbar--rounded {
|
26083
|
+
border-radius: 4px;
|
26084
|
+
}
|
26085
|
+
|
26086
|
+
.v-toolbar__content,
|
26087
|
+
.v-toolbar__extension {
|
26088
|
+
align-items: center;
|
26089
|
+
display: flex;
|
26090
|
+
flex: 0 0 auto;
|
26091
|
+
position: relative;
|
26092
|
+
transition: inherit;
|
26093
|
+
width: 100%;
|
26094
|
+
}
|
26095
|
+
|
26096
|
+
.v-toolbar__content {
|
26097
|
+
overflow: hidden;
|
26141
26098
|
}
|
26142
|
-
.v-
|
26143
|
-
|
26099
|
+
.v-toolbar__content > .v-btn:first-child {
|
26100
|
+
margin-inline-start: 4px;
|
26144
26101
|
}
|
26145
|
-
.v-
|
26146
|
-
|
26102
|
+
.v-toolbar__content > .v-btn:last-child {
|
26103
|
+
margin-inline-end: 4px;
|
26104
|
+
}
|
26105
|
+
.v-toolbar__content > .v-toolbar-title {
|
26106
|
+
margin-inline-start: 20px;
|
26107
|
+
}
|
26108
|
+
.v-toolbar--density-prominent .v-toolbar__content {
|
26109
|
+
align-items: flex-start;
|
26147
26110
|
}
|
26148
26111
|
|
26149
|
-
.v-
|
26150
|
-
|
26112
|
+
.v-toolbar__image {
|
26113
|
+
display: flex;
|
26114
|
+
opacity: var(--v-toolbar-image-opacity, 1);
|
26115
|
+
transition-property: opacity;
|
26151
26116
|
}
|
26152
|
-
.v-
|
26153
|
-
|
26117
|
+
.v-toolbar__image {
|
26118
|
+
position: absolute;
|
26119
|
+
top: 0;
|
26120
|
+
left: 0;
|
26121
|
+
width: 100%;
|
26122
|
+
height: 100%;
|
26154
26123
|
}
|
26155
|
-
|
26156
|
-
|
26124
|
+
|
26125
|
+
.v-toolbar__prepend,
|
26126
|
+
.v-toolbar__append {
|
26127
|
+
align-items: center;
|
26128
|
+
align-self: stretch;
|
26129
|
+
display: flex;
|
26157
26130
|
}
|
26158
26131
|
|
26159
|
-
.v-
|
26160
|
-
|
26161
|
-
align-self: flex-start;
|
26162
|
-
padding-block-end: initial;
|
26163
|
-
padding-block-start: 24px;
|
26132
|
+
.v-toolbar__prepend {
|
26133
|
+
margin-inline: 4px auto;
|
26164
26134
|
}
|
26165
|
-
|
26166
|
-
|
26167
|
-
|
26168
|
-
padding-block-end: 24px;
|
26169
|
-
padding-block-start: initial;
|
26135
|
+
|
26136
|
+
.v-toolbar__append {
|
26137
|
+
margin-inline: auto 4px;
|
26170
26138
|
}
|
26171
26139
|
|
26172
|
-
.v-
|
26173
|
-
|
26174
|
-
|
26175
|
-
|
26176
|
-
padding-inline-end: initial;
|
26140
|
+
.v-toolbar-title {
|
26141
|
+
flex: 1 1;
|
26142
|
+
font-size: 1.25rem;
|
26143
|
+
min-width: 0;
|
26177
26144
|
}
|
26178
|
-
.v-
|
26179
|
-
|
26180
|
-
|
26181
|
-
|
26182
|
-
|
26145
|
+
.v-toolbar-title {
|
26146
|
+
font-size: 1.25rem;
|
26147
|
+
font-weight: 400;
|
26148
|
+
letter-spacing: 0;
|
26149
|
+
line-height: 1.75rem;
|
26150
|
+
text-transform: none;
|
26183
26151
|
}
|
26184
|
-
|
26185
|
-
.v-timeline--horizontal.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__body {
|
26186
|
-
grid-row: 1;
|
26152
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
26187
26153
|
align-self: flex-end;
|
26188
|
-
padding-
|
26189
|
-
padding-block-start: initial;
|
26154
|
+
padding-bottom: 6px;
|
26190
26155
|
}
|
26191
|
-
.v-
|
26192
|
-
|
26193
|
-
|
26194
|
-
|
26195
|
-
|
26156
|
+
.v-toolbar--density-prominent .v-toolbar-title {
|
26157
|
+
font-size: 1.5rem;
|
26158
|
+
font-weight: 400;
|
26159
|
+
letter-spacing: 0;
|
26160
|
+
line-height: 2.25rem;
|
26161
|
+
text-transform: none;
|
26196
26162
|
}
|
26197
26163
|
|
26198
|
-
.v-
|
26199
|
-
|
26200
|
-
|
26201
|
-
|
26202
|
-
}
|
26203
|
-
.v-timeline--vertical.v-timeline.v-timeline--side-start .v-timeline-item .v-timeline-item__opposite {
|
26204
|
-
grid-column: 3;
|
26205
|
-
justify-self: flex-start;
|
26206
|
-
padding-inline-start: 24px;
|
26164
|
+
.v-toolbar-title__placeholder {
|
26165
|
+
overflow: hidden;
|
26166
|
+
text-overflow: ellipsis;
|
26167
|
+
white-space: nowrap;
|
26207
26168
|
}
|
26208
26169
|
|
26209
|
-
.v-
|
26170
|
+
.v-toolbar-items {
|
26171
|
+
display: flex;
|
26210
26172
|
height: inherit;
|
26211
|
-
|
26173
|
+
align-self: stretch;
|
26212
26174
|
}
|
26213
|
-
|
26214
|
-
|
26215
|
-
|
26216
|
-
|
26175
|
+
.v-toolbar-items > .v-btn {
|
26176
|
+
border-radius: 0;
|
26177
|
+
}.v-virtual-scroll {
|
26178
|
+
display: block;
|
26179
|
+
flex: 1 1 auto;
|
26180
|
+
max-width: 100%;
|
26181
|
+
overflow: auto;
|
26182
|
+
position: relative;
|
26217
26183
|
}
|
26218
|
-
.v-
|
26219
|
-
|
26184
|
+
.v-virtual-scroll__container {
|
26185
|
+
display: block;
|
26186
|
+
}.v-window {
|
26187
|
+
overflow: hidden;
|
26220
26188
|
}
|
26221
|
-
.v-
|
26222
|
-
|
26189
|
+
.v-window__container {
|
26190
|
+
display: flex;
|
26191
|
+
flex-direction: column;
|
26192
|
+
height: inherit;
|
26193
|
+
position: relative;
|
26194
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26223
26195
|
}
|
26224
|
-
.v-
|
26225
|
-
|
26196
|
+
.v-window__controls {
|
26197
|
+
position: absolute;
|
26198
|
+
left: 0;
|
26199
|
+
top: 0;
|
26200
|
+
width: 100%;
|
26201
|
+
height: 100%;
|
26202
|
+
display: flex;
|
26203
|
+
align-items: center;
|
26204
|
+
justify-content: space-between;
|
26205
|
+
padding: 0 16px;
|
26206
|
+
pointer-events: none;
|
26226
26207
|
}
|
26227
|
-
.v-
|
26228
|
-
|
26208
|
+
.v-window__controls > * {
|
26209
|
+
pointer-events: auto;
|
26229
26210
|
}
|
26230
|
-
|
26231
|
-
|
26232
|
-
align-items: center;
|
26211
|
+
.v-window--show-arrows-on-hover {
|
26212
|
+
overflow: hidden;
|
26233
26213
|
}
|
26234
|
-
.v-
|
26235
|
-
|
26214
|
+
.v-window--show-arrows-on-hover .v-window__left {
|
26215
|
+
transform: translateX(-200%);
|
26236
26216
|
}
|
26237
|
-
|
26238
|
-
|
26239
|
-
--v-timeline-line-size-base: 100%;
|
26240
|
-
--v-timeline-line-size-offset: 12px;
|
26217
|
+
.v-window--show-arrows-on-hover .v-window__right {
|
26218
|
+
transform: translateX(200%);
|
26241
26219
|
}
|
26242
|
-
.v-
|
26243
|
-
|
26220
|
+
.v-window--show-arrows-on-hover:hover .v-window__left,
|
26221
|
+
.v-window--show-arrows-on-hover:hover .v-window__right {
|
26222
|
+
transform: translateX(0);
|
26244
26223
|
}
|
26245
|
-
|
26246
|
-
|
26224
|
+
|
26225
|
+
.v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
|
26226
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26247
26227
|
}
|
26248
|
-
.v-
|
26249
|
-
|
26228
|
+
.v-window-x-transition-leave-from, .v-window-x-transition-leave-to, .v-window-x-reverse-transition-leave-from, .v-window-x-reverse-transition-leave-to, .v-window-y-transition-leave-from, .v-window-y-transition-leave-to, .v-window-y-reverse-transition-leave-from, .v-window-y-reverse-transition-leave-to {
|
26229
|
+
position: absolute !important;
|
26230
|
+
top: 0;
|
26231
|
+
width: 100%;
|
26250
26232
|
}
|
26251
|
-
.v-
|
26252
|
-
|
26233
|
+
.v-window-x-transition-enter-from {
|
26234
|
+
transform: translateX(100%);
|
26253
26235
|
}
|
26254
|
-
.v-
|
26255
|
-
|
26236
|
+
.v-window-x-transition-leave-to {
|
26237
|
+
transform: translateX(-100%);
|
26256
26238
|
}
|
26257
|
-
.v-
|
26258
|
-
|
26239
|
+
.v-window-x-reverse-transition-enter-from {
|
26240
|
+
transform: translateX(-100%);
|
26259
26241
|
}
|
26260
|
-
.v-
|
26261
|
-
|
26242
|
+
.v-window-x-reverse-transition-leave-to {
|
26243
|
+
transform: translateX(100%);
|
26262
26244
|
}
|
26263
|
-
|
26264
|
-
|
26265
|
-
align-items: flex-start;
|
26245
|
+
.v-window-y-transition-enter-from {
|
26246
|
+
transform: translateY(100%);
|
26266
26247
|
}
|
26267
|
-
.v-
|
26268
|
-
|
26248
|
+
.v-window-y-transition-leave-to {
|
26249
|
+
transform: translateY(-100%);
|
26269
26250
|
}
|
26270
|
-
.v-
|
26271
|
-
|
26251
|
+
.v-window-y-reverse-transition-enter-from {
|
26252
|
+
transform: translateY(-100%);
|
26272
26253
|
}
|
26273
|
-
.v-
|
26274
|
-
|
26254
|
+
.v-window-y-reverse-transition-leave-to {
|
26255
|
+
transform: translateY(100%);
|
26256
|
+
}.v-application {
|
26257
|
+
display: flex;
|
26258
|
+
background: rgb(var(--v-theme-background));
|
26259
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
26275
26260
|
}
|
26276
26261
|
|
26277
|
-
.v-
|
26278
|
-
|
26262
|
+
.v-application__wrap {
|
26263
|
+
-webkit-backface-visibility: hidden;
|
26264
|
+
backface-visibility: hidden;
|
26265
|
+
display: flex;
|
26266
|
+
flex-direction: column;
|
26267
|
+
flex: 1 1 auto;
|
26268
|
+
max-width: 100%;
|
26269
|
+
min-height: 100vh;
|
26270
|
+
min-height: 100dvh;
|
26271
|
+
position: relative;
|
26272
|
+
}.v-slide-group {
|
26273
|
+
display: flex;
|
26274
|
+
overflow: hidden;
|
26279
26275
|
}
|
26280
|
-
|
26281
|
-
|
26276
|
+
|
26277
|
+
.v-slide-group__next,
|
26278
|
+
.v-slide-group__prev {
|
26279
|
+
align-items: center;
|
26280
|
+
display: flex;
|
26281
|
+
flex: 0 1 52px;
|
26282
|
+
justify-content: center;
|
26283
|
+
min-width: 52px;
|
26284
|
+
cursor: pointer;
|
26282
26285
|
}
|
26283
|
-
.v-
|
26284
|
-
|
26286
|
+
.v-slide-group__next--disabled,
|
26287
|
+
.v-slide-group__prev--disabled {
|
26288
|
+
pointer-events: none;
|
26289
|
+
opacity: var(--v-disabled-opacity);
|
26285
26290
|
}
|
26286
26291
|
|
26287
|
-
.v-
|
26288
|
-
|
26292
|
+
.v-slide-group__content {
|
26293
|
+
display: flex;
|
26294
|
+
flex: 1 0 auto;
|
26295
|
+
position: relative;
|
26296
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
26297
|
+
white-space: nowrap;
|
26289
26298
|
}
|
26290
|
-
|
26291
|
-
|
26292
|
-
display: none;
|
26299
|
+
.v-slide-group__content > * {
|
26300
|
+
white-space: initial;
|
26293
26301
|
}
|
26294
|
-
|
26295
|
-
|
26302
|
+
|
26303
|
+
.v-slide-group__container {
|
26304
|
+
contain: content;
|
26305
|
+
display: flex;
|
26306
|
+
flex: 1 1 auto;
|
26307
|
+
overflow-x: auto;
|
26308
|
+
overflow-y: hidden;
|
26309
|
+
scrollbar-width: none;
|
26310
|
+
scrollbar-color: rgba(0, 0, 0, 0);
|
26296
26311
|
}
|
26297
|
-
.v-
|
26298
|
-
|
26312
|
+
.v-slide-group__container::-webkit-scrollbar {
|
26313
|
+
display: none;
|
26299
26314
|
}
|
26300
26315
|
|
26301
|
-
.v-
|
26302
|
-
|
26303
|
-
}.v-bottom-navigation {
|
26304
|
-
display: flex;
|
26305
|
-
max-width: 100%;
|
26306
|
-
overflow: hidden;
|
26307
|
-
position: absolute;
|
26308
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
26316
|
+
.v-slide-group--vertical {
|
26317
|
+
max-height: inherit;
|
26309
26318
|
}
|
26310
|
-
.v-
|
26311
|
-
|
26312
|
-
|
26313
|
-
|
26319
|
+
.v-slide-group--vertical,
|
26320
|
+
.v-slide-group--vertical .v-slide-group__container,
|
26321
|
+
.v-slide-group--vertical .v-slide-group__content {
|
26322
|
+
flex-direction: column;
|
26314
26323
|
}
|
26315
|
-
.v-
|
26316
|
-
|
26317
|
-
|
26324
|
+
.v-slide-group--vertical .v-slide-group__container {
|
26325
|
+
overflow-x: hidden;
|
26326
|
+
overflow-y: auto;
|
26327
|
+
}.v-img {
|
26328
|
+
--v-theme-overlay-multiplier: 3;
|
26329
|
+
z-index: 0;
|
26318
26330
|
}
|
26319
|
-
.v-
|
26320
|
-
|
26331
|
+
.v-img.v-img--absolute {
|
26332
|
+
height: 100%;
|
26333
|
+
left: 0;
|
26334
|
+
overflow: hidden;
|
26335
|
+
position: absolute;
|
26336
|
+
top: 0;
|
26337
|
+
width: 100%;
|
26338
|
+
z-index: -1;
|
26321
26339
|
}
|
26322
|
-
.v-
|
26323
|
-
|
26324
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
26340
|
+
.v-img--booting .v-responsive__sizer {
|
26341
|
+
transition: none;
|
26325
26342
|
}
|
26326
|
-
.v-
|
26327
|
-
|
26343
|
+
.v-img--rounded {
|
26344
|
+
border-radius: 4px;
|
26328
26345
|
}
|
26329
26346
|
|
26330
|
-
.v-
|
26331
|
-
|
26332
|
-
|
26333
|
-
|
26334
|
-
|
26335
|
-
|
26336
|
-
width: 100%;
|
26347
|
+
.v-img__img,
|
26348
|
+
.v-img__picture,
|
26349
|
+
.v-img__gradient,
|
26350
|
+
.v-img__placeholder,
|
26351
|
+
.v-img__error {
|
26352
|
+
z-index: -1;
|
26337
26353
|
}
|
26338
|
-
.v-
|
26339
|
-
|
26354
|
+
.v-img__img,
|
26355
|
+
.v-img__picture,
|
26356
|
+
.v-img__gradient,
|
26357
|
+
.v-img__placeholder,
|
26358
|
+
.v-img__error {
|
26359
|
+
position: absolute;
|
26360
|
+
top: 0;
|
26361
|
+
left: 0;
|
26362
|
+
width: 100%;
|
26340
26363
|
height: 100%;
|
26341
|
-
max-width: 168px;
|
26342
|
-
min-width: 80px;
|
26343
|
-
text-transform: none;
|
26344
|
-
transition: inherit;
|
26345
|
-
width: auto;
|
26346
|
-
}
|
26347
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
26348
|
-
border-radius: 0;
|
26349
|
-
}
|
26350
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
26351
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
26352
|
-
transition: inherit;
|
26353
26364
|
}
|
26354
|
-
|
26355
|
-
|
26365
|
+
|
26366
|
+
.v-img__img--preload {
|
26367
|
+
filter: blur(4px);
|
26356
26368
|
}
|
26357
|
-
.v-
|
26358
|
-
|
26359
|
-
flex-grow: 1;
|
26369
|
+
.v-img__img--contain {
|
26370
|
+
object-fit: contain;
|
26360
26371
|
}
|
26361
|
-
.v-
|
26362
|
-
|
26363
|
-
opacity: 0;
|
26372
|
+
.v-img__img--cover {
|
26373
|
+
object-fit: cover;
|
26364
26374
|
}
|
26365
|
-
|
26366
|
-
|
26375
|
+
|
26376
|
+
.v-img__gradient {
|
26377
|
+
background-repeat: no-repeat;
|
26367
26378
|
}.v-color-picker-canvas {
|
26368
26379
|
display: flex;
|
26369
26380
|
position: relative;
|
@@ -26386,69 +26397,6 @@ html.v-overlay-scroll-blocked {
|
|
26386
26397
|
}
|
26387
26398
|
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26388
26399
|
will-change: transform;
|
26389
|
-
}.v-color-picker-edit {
|
26390
|
-
display: flex;
|
26391
|
-
margin-top: 24px;
|
26392
|
-
}
|
26393
|
-
|
26394
|
-
.v-color-picker-edit__input {
|
26395
|
-
width: 100%;
|
26396
|
-
display: flex;
|
26397
|
-
flex-wrap: wrap;
|
26398
|
-
justify-content: center;
|
26399
|
-
text-align: center;
|
26400
|
-
}
|
26401
|
-
.v-color-picker-edit__input:not(:last-child) {
|
26402
|
-
margin-inline-end: 8px;
|
26403
|
-
}
|
26404
|
-
.v-color-picker-edit__input input {
|
26405
|
-
border-radius: 4px;
|
26406
|
-
margin-bottom: 8px;
|
26407
|
-
min-width: 0;
|
26408
|
-
outline: none;
|
26409
|
-
text-align: center;
|
26410
|
-
width: 100%;
|
26411
|
-
height: 32px;
|
26412
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26413
|
-
color: rgba(var(--v-theme-on-surface));
|
26414
|
-
}
|
26415
|
-
.v-color-picker-edit__input span {
|
26416
|
-
font-size: 0.75rem;
|
26417
|
-
}.v-color-picker-swatches {
|
26418
|
-
overflow-y: auto;
|
26419
|
-
}
|
26420
|
-
.v-color-picker-swatches > div {
|
26421
|
-
display: flex;
|
26422
|
-
flex-wrap: wrap;
|
26423
|
-
justify-content: center;
|
26424
|
-
padding: 8px;
|
26425
|
-
}
|
26426
|
-
|
26427
|
-
.v-color-picker-swatches__swatch {
|
26428
|
-
display: flex;
|
26429
|
-
flex-direction: column;
|
26430
|
-
margin-bottom: 10px;
|
26431
|
-
}
|
26432
|
-
|
26433
|
-
.v-color-picker-swatches__color {
|
26434
|
-
position: relative;
|
26435
|
-
height: 18px;
|
26436
|
-
max-height: 18px;
|
26437
|
-
width: 45px;
|
26438
|
-
margin: 2px 4px;
|
26439
|
-
border-radius: 2px;
|
26440
|
-
-webkit-user-select: none;
|
26441
|
-
user-select: none;
|
26442
|
-
overflow: hidden;
|
26443
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26444
|
-
cursor: pointer;
|
26445
|
-
}
|
26446
|
-
.v-color-picker-swatches__color > div {
|
26447
|
-
display: flex;
|
26448
|
-
align-items: center;
|
26449
|
-
justify-content: center;
|
26450
|
-
width: 100%;
|
26451
|
-
height: 100%;
|
26452
26400
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26453
26401
|
background-color: transparent !important;
|
26454
26402
|
}
|
@@ -26519,6 +26467,69 @@ html.v-overlay-scroll-blocked {
|
|
26519
26467
|
.v-color-picker-preview__eye-dropper {
|
26520
26468
|
position: relative;
|
26521
26469
|
margin-right: 12px;
|
26470
|
+
}.v-color-picker-edit {
|
26471
|
+
display: flex;
|
26472
|
+
margin-top: 24px;
|
26473
|
+
}
|
26474
|
+
|
26475
|
+
.v-color-picker-edit__input {
|
26476
|
+
width: 100%;
|
26477
|
+
display: flex;
|
26478
|
+
flex-wrap: wrap;
|
26479
|
+
justify-content: center;
|
26480
|
+
text-align: center;
|
26481
|
+
}
|
26482
|
+
.v-color-picker-edit__input:not(:last-child) {
|
26483
|
+
margin-inline-end: 8px;
|
26484
|
+
}
|
26485
|
+
.v-color-picker-edit__input input {
|
26486
|
+
border-radius: 4px;
|
26487
|
+
margin-bottom: 8px;
|
26488
|
+
min-width: 0;
|
26489
|
+
outline: none;
|
26490
|
+
text-align: center;
|
26491
|
+
width: 100%;
|
26492
|
+
height: 32px;
|
26493
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26494
|
+
color: rgba(var(--v-theme-on-surface));
|
26495
|
+
}
|
26496
|
+
.v-color-picker-edit__input span {
|
26497
|
+
font-size: 0.75rem;
|
26498
|
+
}.v-color-picker-swatches {
|
26499
|
+
overflow-y: auto;
|
26500
|
+
}
|
26501
|
+
.v-color-picker-swatches > div {
|
26502
|
+
display: flex;
|
26503
|
+
flex-wrap: wrap;
|
26504
|
+
justify-content: center;
|
26505
|
+
padding: 8px;
|
26506
|
+
}
|
26507
|
+
|
26508
|
+
.v-color-picker-swatches__swatch {
|
26509
|
+
display: flex;
|
26510
|
+
flex-direction: column;
|
26511
|
+
margin-bottom: 10px;
|
26512
|
+
}
|
26513
|
+
|
26514
|
+
.v-color-picker-swatches__color {
|
26515
|
+
position: relative;
|
26516
|
+
height: 18px;
|
26517
|
+
max-height: 18px;
|
26518
|
+
width: 45px;
|
26519
|
+
margin: 2px 4px;
|
26520
|
+
border-radius: 2px;
|
26521
|
+
-webkit-user-select: none;
|
26522
|
+
user-select: none;
|
26523
|
+
overflow: hidden;
|
26524
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26525
|
+
cursor: pointer;
|
26526
|
+
}
|
26527
|
+
.v-color-picker-swatches__color > div {
|
26528
|
+
display: flex;
|
26529
|
+
align-items: center;
|
26530
|
+
justify-content: center;
|
26531
|
+
width: 100%;
|
26532
|
+
height: 100%;
|
26522
26533
|
}.v-picker.v-sheet {
|
26523
26534
|
display: grid;
|
26524
26535
|
grid-auto-rows: min-content;
|