@vuetify/nightly 3.8.7-master.2025-06-02 → 3.8.8-master.2025-06-04
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 +5 -16
- package/dist/json/attributes.json +1935 -1935
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +172 -172
- package/dist/json/web-types.json +3629 -3629
- package/dist/vuetify-labs.cjs +29 -11
- package/dist/vuetify-labs.css +3132 -3126
- package/dist/vuetify-labs.d.ts +61 -55
- package/dist/vuetify-labs.esm.js +30 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +29 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +29 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1342 -1336
- package/dist/vuetify.d.ts +61 -55
- package/dist/vuetify.esm.js +30 -12
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +29 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1002 -999
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.sass +3 -9
- package/lib/components/VChip/VChip.js +1 -0
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +6 -6
- package/lib/components/VCombobox/VCombobox.sass +3 -9
- package/lib/components/VSelect/VSelect.css +6 -0
- package/lib/components/VSelect/VSelect.sass +3 -0
- package/lib/components/VSelect/_mixins.scss +14 -0
- package/lib/components/VSlider/VSliderThumb.js +12 -6
- package/lib/components/VSlider/VSliderThumb.js.map +1 -1
- package/lib/components/VSlider/slider.js +4 -1
- package/lib/components/VSlider/slider.js.map +1 -1
- package/lib/composables/icons.d.ts +6 -0
- package/lib/composables/icons.js.map +1 -1
- package/lib/composables/list-items.js +2 -2
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -55
- package/lib/framework.js +1 -1
- package/lib/iconsets/fa.js +3 -1
- package/lib/iconsets/fa.js.map +1 -1
- package/lib/iconsets/fa4.js +3 -1
- package/lib/iconsets/fa4.js.map +1 -1
- package/lib/iconsets/md.js +3 -1
- package/lib/iconsets/md.js.map +1 -1
- package/lib/iconsets/mdi-svg.js +3 -1
- package/lib/iconsets/mdi-svg.js.map +1 -1
- package/lib/util/helpers.d.ts +1 -0
- package/lib/util/helpers.js +9 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.
|
2
|
+
* Vuetify v3.8.8-master.2025-06-04
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -17985,6 +17985,22 @@ html.overflow-y-hidden {
|
|
17985
17985
|
.v-ripple__animation--out {
|
17986
17986
|
transition: opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
|
17987
17987
|
opacity: 0;
|
17988
|
+
}.v-application {
|
17989
|
+
display: flex;
|
17990
|
+
background: rgb(var(--v-theme-background));
|
17991
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
17992
|
+
}
|
17993
|
+
|
17994
|
+
.v-application__wrap {
|
17995
|
+
-webkit-backface-visibility: hidden;
|
17996
|
+
backface-visibility: hidden;
|
17997
|
+
display: flex;
|
17998
|
+
flex-direction: column;
|
17999
|
+
flex: 1 1 auto;
|
18000
|
+
max-width: 100%;
|
18001
|
+
min-height: 100vh;
|
18002
|
+
min-height: 100dvh;
|
18003
|
+
position: relative;
|
17988
18004
|
}.v-app-bar {
|
17989
18005
|
display: flex;
|
17990
18006
|
}
|
@@ -18213,106 +18229,6 @@ html.overflow-y-hidden {
|
|
18213
18229
|
text-transform: none;
|
18214
18230
|
word-break: normal;
|
18215
18231
|
word-wrap: break-word;
|
18216
|
-
}.v-application {
|
18217
|
-
display: flex;
|
18218
|
-
background: rgb(var(--v-theme-background));
|
18219
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
18220
|
-
}
|
18221
|
-
|
18222
|
-
.v-application__wrap {
|
18223
|
-
-webkit-backface-visibility: hidden;
|
18224
|
-
backface-visibility: hidden;
|
18225
|
-
display: flex;
|
18226
|
-
flex-direction: column;
|
18227
|
-
flex: 1 1 auto;
|
18228
|
-
max-width: 100%;
|
18229
|
-
min-height: 100vh;
|
18230
|
-
min-height: 100dvh;
|
18231
|
-
position: relative;
|
18232
|
-
}.v-autocomplete .v-field .v-text-field__prefix,
|
18233
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
18234
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18235
|
-
cursor: text;
|
18236
|
-
}
|
18237
|
-
.v-autocomplete .v-field .v-field__input > input {
|
18238
|
-
flex: 1 1;
|
18239
|
-
}
|
18240
|
-
.v-autocomplete .v-field input {
|
18241
|
-
min-width: 64px;
|
18242
|
-
}
|
18243
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18244
|
-
min-width: 0;
|
18245
|
-
}
|
18246
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18247
|
-
margin-inline-end: 2px;
|
18248
|
-
}
|
18249
|
-
.v-autocomplete .v-autocomplete__selection-text {
|
18250
|
-
overflow: hidden;
|
18251
|
-
text-overflow: ellipsis;
|
18252
|
-
white-space: nowrap;
|
18253
|
-
}
|
18254
|
-
|
18255
|
-
.v-autocomplete__content {
|
18256
|
-
overflow: hidden;
|
18257
|
-
}
|
18258
|
-
.v-autocomplete__content {
|
18259
|
-
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));
|
18260
|
-
}
|
18261
|
-
.v-autocomplete__content {
|
18262
|
-
border-radius: 4px;
|
18263
|
-
}
|
18264
|
-
.v-autocomplete__mask {
|
18265
|
-
background: rgb(var(--v-theme-surface-light));
|
18266
|
-
}
|
18267
|
-
.v-autocomplete__selection {
|
18268
|
-
display: inline-flex;
|
18269
|
-
align-items: center;
|
18270
|
-
height: 1.5rem;
|
18271
|
-
letter-spacing: inherit;
|
18272
|
-
line-height: inherit;
|
18273
|
-
max-width: calc(100% - 2px - 2px);
|
18274
|
-
}
|
18275
|
-
.v-autocomplete__selection:first-child {
|
18276
|
-
margin-inline-start: 0;
|
18277
|
-
}
|
18278
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18279
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18280
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18281
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18282
|
-
top: 0px;
|
18283
|
-
}
|
18284
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18285
|
-
opacity: var(--v-medium-emphasis-opacity);
|
18286
|
-
}
|
18287
|
-
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18288
|
-
opacity: 1;
|
18289
|
-
}
|
18290
|
-
.v-autocomplete--selecting-index .v-field__input > input {
|
18291
|
-
caret-color: transparent;
|
18292
|
-
}
|
18293
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18294
|
-
flex: 1 1;
|
18295
|
-
position: absolute;
|
18296
|
-
left: 0;
|
18297
|
-
right: 0;
|
18298
|
-
width: 100%;
|
18299
|
-
padding-inline: inherit;
|
18300
|
-
}
|
18301
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18302
|
-
transition: none;
|
18303
|
-
}
|
18304
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18305
|
-
opacity: 0;
|
18306
|
-
}
|
18307
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18308
|
-
opacity: 0;
|
18309
|
-
}
|
18310
|
-
.v-autocomplete__menu-icon {
|
18311
|
-
margin-inline-start: 4px;
|
18312
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18313
|
-
}
|
18314
|
-
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18315
|
-
transform: rotate(180deg);
|
18316
18232
|
}.v-avatar {
|
18317
18233
|
flex: none;
|
18318
18234
|
align-items: center;
|
@@ -18496,105 +18412,159 @@ html.overflow-y-hidden {
|
|
18496
18412
|
display: inline-flex;
|
18497
18413
|
justify-content: center;
|
18498
18414
|
margin: 0 4px;
|
18499
|
-
}.v-
|
18500
|
-
|
18501
|
-
|
18502
|
-
|
18503
|
-
|
18504
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18415
|
+
}.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18416
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18417
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18418
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18419
|
+
top: 0px;
|
18505
18420
|
}
|
18506
|
-
.v-
|
18507
|
-
|
18508
|
-
|
18509
|
-
|
18421
|
+
.v-autocomplete .v-field .v-text-field__prefix,
|
18422
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18423
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18424
|
+
cursor: text;
|
18510
18425
|
}
|
18511
|
-
.v-
|
18512
|
-
|
18513
|
-
box-shadow: none;
|
18426
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18427
|
+
flex: 1 1;
|
18514
18428
|
}
|
18515
|
-
.v-
|
18516
|
-
|
18429
|
+
.v-autocomplete .v-field input {
|
18430
|
+
min-width: 64px;
|
18517
18431
|
}
|
18518
|
-
.v-
|
18519
|
-
|
18520
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18432
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18433
|
+
min-width: 0;
|
18521
18434
|
}
|
18522
|
-
.v-
|
18523
|
-
|
18435
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18436
|
+
margin-inline-end: 2px;
|
18437
|
+
}
|
18438
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
18439
|
+
overflow: hidden;
|
18440
|
+
text-overflow: ellipsis;
|
18441
|
+
white-space: nowrap;
|
18524
18442
|
}
|
18525
18443
|
|
18526
|
-
.v-
|
18527
|
-
|
18528
|
-
flex: none;
|
18529
|
-
font-size: 0.75rem;
|
18530
|
-
justify-content: center;
|
18531
|
-
transition: inherit;
|
18532
|
-
width: 100%;
|
18444
|
+
.v-autocomplete__content {
|
18445
|
+
overflow: hidden;
|
18533
18446
|
}
|
18534
|
-
.v-
|
18535
|
-
|
18536
|
-
height: 100%;
|
18537
|
-
max-width: 168px;
|
18538
|
-
min-width: 80px;
|
18539
|
-
text-transform: none;
|
18540
|
-
transition: inherit;
|
18541
|
-
width: auto;
|
18447
|
+
.v-autocomplete__content {
|
18448
|
+
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));
|
18542
18449
|
}
|
18543
|
-
.v-
|
18544
|
-
border-radius:
|
18450
|
+
.v-autocomplete__content {
|
18451
|
+
border-radius: 4px;
|
18545
18452
|
}
|
18546
|
-
.v-
|
18547
|
-
|
18548
|
-
transition: inherit;
|
18453
|
+
.v-autocomplete__mask {
|
18454
|
+
background: rgb(var(--v-theme-surface-light));
|
18549
18455
|
}
|
18550
|
-
.v-
|
18551
|
-
|
18456
|
+
.v-autocomplete__selection {
|
18457
|
+
display: inline-flex;
|
18458
|
+
align-items: center;
|
18459
|
+
height: 1.5rem;
|
18460
|
+
letter-spacing: inherit;
|
18461
|
+
line-height: inherit;
|
18462
|
+
max-width: calc(100% - 2px - 2px);
|
18552
18463
|
}
|
18553
|
-
.v-
|
18554
|
-
|
18555
|
-
flex-grow: 1;
|
18464
|
+
.v-autocomplete__selection:first-child {
|
18465
|
+
margin-inline-start: 0;
|
18556
18466
|
}
|
18557
|
-
.v-
|
18558
|
-
|
18559
|
-
opacity: 0;
|
18467
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18468
|
+
opacity: var(--v-medium-emphasis-opacity);
|
18560
18469
|
}
|
18561
|
-
.v-
|
18562
|
-
|
18563
|
-
}
|
18564
|
-
|
18470
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18471
|
+
opacity: 1;
|
18472
|
+
}
|
18473
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
18474
|
+
caret-color: transparent;
|
18475
|
+
}
|
18476
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18565
18477
|
flex: 1 1;
|
18566
|
-
|
18567
|
-
|
18568
|
-
|
18569
|
-
grid-template-rows: max-content max-content;
|
18570
|
-
line-height: 1.6;
|
18571
|
-
overflow: hidden;
|
18572
|
-
padding-inline: 16px 8px;
|
18573
|
-
padding-top: 16px;
|
18574
|
-
padding-bottom: 16px;
|
18575
|
-
position: relative;
|
18478
|
+
position: absolute;
|
18479
|
+
left: 0;
|
18480
|
+
right: 0;
|
18576
18481
|
width: 100%;
|
18482
|
+
padding-inline: inherit;
|
18577
18483
|
}
|
18578
|
-
.v-
|
18579
|
-
|
18580
|
-
border-style: solid;
|
18581
|
-
border-width: 0 0 thin 0;
|
18484
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18485
|
+
transition: none;
|
18582
18486
|
}
|
18583
|
-
.v-
|
18584
|
-
|
18585
|
-
box-shadow: none;
|
18487
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18488
|
+
opacity: 0;
|
18586
18489
|
}
|
18587
|
-
.v-
|
18588
|
-
|
18490
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18491
|
+
opacity: 0;
|
18589
18492
|
}
|
18590
|
-
.v-
|
18591
|
-
|
18493
|
+
.v-autocomplete__menu-icon {
|
18494
|
+
margin-inline-start: 4px;
|
18495
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18592
18496
|
}
|
18593
|
-
.v-
|
18594
|
-
|
18497
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18498
|
+
transform: rotate(180deg);
|
18499
|
+
}.bottom-sheet-transition-enter-from {
|
18500
|
+
transform: translateY(100%);
|
18595
18501
|
}
|
18596
|
-
.
|
18597
|
-
|
18502
|
+
.bottom-sheet-transition-leave-to {
|
18503
|
+
transform: translateY(100%);
|
18504
|
+
}
|
18505
|
+
|
18506
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18507
|
+
align-self: flex-end;
|
18508
|
+
border-radius: 0;
|
18509
|
+
flex: 0 1 auto;
|
18510
|
+
left: 0;
|
18511
|
+
right: 0;
|
18512
|
+
margin-inline: auto;
|
18513
|
+
margin-bottom: 0;
|
18514
|
+
transition-duration: 0.2s;
|
18515
|
+
width: 100%;
|
18516
|
+
max-width: 100%;
|
18517
|
+
overflow: visible;
|
18518
|
+
}
|
18519
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18520
|
+
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));
|
18521
|
+
}
|
18522
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18523
|
+
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18524
|
+
border-radius: 0;
|
18525
|
+
}
|
18526
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18527
|
+
max-width: none;
|
18528
|
+
}
|
18529
|
+
@media (min-width: 600px) {
|
18530
|
+
.v-bottom-sheet.v-bottom-sheet--inset {
|
18531
|
+
max-width: 70%;
|
18532
|
+
}
|
18533
|
+
}.v-banner {
|
18534
|
+
display: grid;
|
18535
|
+
flex: 1 1;
|
18536
|
+
font-size: 0.875rem;
|
18537
|
+
grid-template-areas: "prepend content actions";
|
18538
|
+
grid-template-columns: max-content auto max-content;
|
18539
|
+
grid-template-rows: max-content max-content;
|
18540
|
+
line-height: 1.6;
|
18541
|
+
overflow: hidden;
|
18542
|
+
padding-inline: 16px 8px;
|
18543
|
+
padding-top: 16px;
|
18544
|
+
padding-bottom: 16px;
|
18545
|
+
position: relative;
|
18546
|
+
width: 100%;
|
18547
|
+
}
|
18548
|
+
.v-banner {
|
18549
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18550
|
+
border-style: solid;
|
18551
|
+
border-width: 0 0 thin 0;
|
18552
|
+
}
|
18553
|
+
.v-banner--border {
|
18554
|
+
border-width: thin;
|
18555
|
+
box-shadow: none;
|
18556
|
+
}
|
18557
|
+
.v-banner {
|
18558
|
+
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));
|
18559
|
+
}
|
18560
|
+
.v-banner--absolute {
|
18561
|
+
position: absolute;
|
18562
|
+
}
|
18563
|
+
.v-banner--fixed {
|
18564
|
+
position: fixed;
|
18565
|
+
}
|
18566
|
+
.v-banner--sticky {
|
18567
|
+
position: sticky;
|
18598
18568
|
}
|
18599
18569
|
.v-banner {
|
18600
18570
|
border-radius: 0;
|
@@ -18726,40 +18696,6 @@ html.overflow-y-hidden {
|
|
18726
18696
|
}
|
18727
18697
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18728
18698
|
align-self: flex-start;
|
18729
|
-
}.bottom-sheet-transition-enter-from {
|
18730
|
-
transform: translateY(100%);
|
18731
|
-
}
|
18732
|
-
.bottom-sheet-transition-leave-to {
|
18733
|
-
transform: translateY(100%);
|
18734
|
-
}
|
18735
|
-
|
18736
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18737
|
-
align-self: flex-end;
|
18738
|
-
border-radius: 0;
|
18739
|
-
flex: 0 1 auto;
|
18740
|
-
left: 0;
|
18741
|
-
right: 0;
|
18742
|
-
margin-inline: auto;
|
18743
|
-
margin-bottom: 0;
|
18744
|
-
transition-duration: 0.2s;
|
18745
|
-
width: 100%;
|
18746
|
-
max-width: 100%;
|
18747
|
-
overflow: visible;
|
18748
|
-
}
|
18749
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content {
|
18750
|
-
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));
|
18751
|
-
}
|
18752
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-card,
|
18753
|
-
.v-bottom-sheet > .v-bottom-sheet__content.v-overlay__content > .v-sheet {
|
18754
|
-
border-radius: 0;
|
18755
|
-
}
|
18756
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18757
|
-
max-width: none;
|
18758
|
-
}
|
18759
|
-
@media (min-width: 600px) {
|
18760
|
-
.v-bottom-sheet.v-bottom-sheet--inset {
|
18761
|
-
max-width: 70%;
|
18762
|
-
}
|
18763
18699
|
}.v-btn {
|
18764
18700
|
align-items: center;
|
18765
18701
|
border-radius: 4px;
|
@@ -19266,6 +19202,150 @@ html.overflow-y-hidden {
|
|
19266
19202
|
display: inline-block;
|
19267
19203
|
padding: 0 8px;
|
19268
19204
|
vertical-align: middle;
|
19205
|
+
}.v-bottom-navigation {
|
19206
|
+
display: flex;
|
19207
|
+
max-width: 100%;
|
19208
|
+
overflow: hidden;
|
19209
|
+
position: absolute;
|
19210
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
19211
|
+
}
|
19212
|
+
.v-bottom-navigation {
|
19213
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19214
|
+
border-style: solid;
|
19215
|
+
border-width: 0;
|
19216
|
+
}
|
19217
|
+
.v-bottom-navigation--border {
|
19218
|
+
border-width: thin;
|
19219
|
+
box-shadow: none;
|
19220
|
+
}
|
19221
|
+
.v-bottom-navigation {
|
19222
|
+
border-radius: 0;
|
19223
|
+
}
|
19224
|
+
.v-bottom-navigation {
|
19225
|
+
background: rgb(var(--v-theme-surface));
|
19226
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19227
|
+
}
|
19228
|
+
.v-bottom-navigation--active {
|
19229
|
+
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));
|
19230
|
+
}
|
19231
|
+
|
19232
|
+
.v-bottom-navigation__content {
|
19233
|
+
display: flex;
|
19234
|
+
flex: none;
|
19235
|
+
font-size: 0.75rem;
|
19236
|
+
justify-content: center;
|
19237
|
+
transition: inherit;
|
19238
|
+
width: 100%;
|
19239
|
+
}
|
19240
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
19241
|
+
font-size: inherit;
|
19242
|
+
height: 100%;
|
19243
|
+
max-width: 168px;
|
19244
|
+
min-width: 80px;
|
19245
|
+
text-transform: none;
|
19246
|
+
transition: inherit;
|
19247
|
+
width: auto;
|
19248
|
+
}
|
19249
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
19250
|
+
border-radius: 0;
|
19251
|
+
}
|
19252
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
19253
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19254
|
+
transition: inherit;
|
19255
|
+
}
|
19256
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
19257
|
+
font-size: 1.5rem;
|
19258
|
+
}
|
19259
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
19260
|
+
flex-basis: 0;
|
19261
|
+
flex-grow: 1;
|
19262
|
+
}
|
19263
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
19264
|
+
transition: inherit;
|
19265
|
+
opacity: 0;
|
19266
|
+
}
|
19267
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
19268
|
+
transform: translateY(0.5rem);
|
19269
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19270
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19271
|
+
}
|
19272
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19273
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19274
|
+
}
|
19275
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19276
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19277
|
+
}
|
19278
|
+
@supports not selector(:focus-visible) {
|
19279
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19280
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19281
|
+
}
|
19282
|
+
}
|
19283
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19284
|
+
opacity: 1;
|
19285
|
+
}.v-btn-group {
|
19286
|
+
display: inline-flex;
|
19287
|
+
flex-wrap: nowrap;
|
19288
|
+
max-width: 100%;
|
19289
|
+
min-width: 0;
|
19290
|
+
overflow: hidden;
|
19291
|
+
vertical-align: middle;
|
19292
|
+
}
|
19293
|
+
.v-btn-group {
|
19294
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19295
|
+
border-style: solid;
|
19296
|
+
border-width: 0;
|
19297
|
+
}
|
19298
|
+
.v-btn-group--border {
|
19299
|
+
border-width: thin;
|
19300
|
+
box-shadow: none;
|
19301
|
+
}
|
19302
|
+
.v-btn-group {
|
19303
|
+
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));
|
19304
|
+
}
|
19305
|
+
.v-btn-group {
|
19306
|
+
border-radius: 4px;
|
19307
|
+
}
|
19308
|
+
.v-btn-group {
|
19309
|
+
background: transparent;
|
19310
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19311
|
+
}
|
19312
|
+
.v-btn-group--density-default.v-btn-group {
|
19313
|
+
height: 48px;
|
19314
|
+
}
|
19315
|
+
|
19316
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
19317
|
+
height: 40px;
|
19318
|
+
}
|
19319
|
+
|
19320
|
+
.v-btn-group--density-compact.v-btn-group {
|
19321
|
+
height: 36px;
|
19322
|
+
}
|
19323
|
+
|
19324
|
+
.v-btn-group .v-btn {
|
19325
|
+
border-radius: 0;
|
19326
|
+
border-color: inherit;
|
19327
|
+
}
|
19328
|
+
.v-btn-group .v-btn:not(:last-child) {
|
19329
|
+
border-inline-end: none;
|
19330
|
+
}
|
19331
|
+
.v-btn-group .v-btn:not(:first-child) {
|
19332
|
+
border-inline-start: none;
|
19333
|
+
}
|
19334
|
+
.v-btn-group .v-btn:first-child {
|
19335
|
+
border-start-start-radius: inherit;
|
19336
|
+
border-end-start-radius: inherit;
|
19337
|
+
}
|
19338
|
+
.v-btn-group .v-btn:last-child {
|
19339
|
+
border-start-end-radius: inherit;
|
19340
|
+
border-end-end-radius: inherit;
|
19341
|
+
}
|
19342
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
19343
|
+
border-inline-end-width: thin;
|
19344
|
+
border-inline-end-style: solid;
|
19345
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19346
|
+
}
|
19347
|
+
.v-btn-group--tile {
|
19348
|
+
border-radius: 0;
|
19269
19349
|
}.v-card {
|
19270
19350
|
display: block;
|
19271
19351
|
overflow: hidden;
|
@@ -19574,90 +19654,10 @@ html.overflow-y-hidden {
|
|
19574
19654
|
pointer-events: none;
|
19575
19655
|
opacity: 0;
|
19576
19656
|
transition: opacity 0.2s ease-in-out;
|
19577
|
-
}.v-
|
19578
|
-
display: inline-flex;
|
19579
|
-
flex-wrap: nowrap;
|
19580
|
-
max-width: 100%;
|
19581
|
-
min-width: 0;
|
19657
|
+
}.v-carousel {
|
19582
19658
|
overflow: hidden;
|
19583
|
-
|
19584
|
-
|
19585
|
-
.v-btn-group {
|
19586
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19587
|
-
border-style: solid;
|
19588
|
-
border-width: 0;
|
19589
|
-
}
|
19590
|
-
.v-btn-group--border {
|
19591
|
-
border-width: thin;
|
19592
|
-
box-shadow: none;
|
19593
|
-
}
|
19594
|
-
.v-btn-group {
|
19595
|
-
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));
|
19596
|
-
}
|
19597
|
-
.v-btn-group {
|
19598
|
-
border-radius: 4px;
|
19599
|
-
}
|
19600
|
-
.v-btn-group {
|
19601
|
-
background: transparent;
|
19602
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19603
|
-
}
|
19604
|
-
.v-btn-group--density-default.v-btn-group {
|
19605
|
-
height: 48px;
|
19606
|
-
}
|
19607
|
-
|
19608
|
-
.v-btn-group--density-comfortable.v-btn-group {
|
19609
|
-
height: 40px;
|
19610
|
-
}
|
19611
|
-
|
19612
|
-
.v-btn-group--density-compact.v-btn-group {
|
19613
|
-
height: 36px;
|
19614
|
-
}
|
19615
|
-
|
19616
|
-
.v-btn-group .v-btn {
|
19617
|
-
border-radius: 0;
|
19618
|
-
border-color: inherit;
|
19619
|
-
}
|
19620
|
-
.v-btn-group .v-btn:not(:last-child) {
|
19621
|
-
border-inline-end: none;
|
19622
|
-
}
|
19623
|
-
.v-btn-group .v-btn:not(:first-child) {
|
19624
|
-
border-inline-start: none;
|
19625
|
-
}
|
19626
|
-
.v-btn-group .v-btn:first-child {
|
19627
|
-
border-start-start-radius: inherit;
|
19628
|
-
border-end-start-radius: inherit;
|
19629
|
-
}
|
19630
|
-
.v-btn-group .v-btn:last-child {
|
19631
|
-
border-start-end-radius: inherit;
|
19632
|
-
border-end-end-radius: inherit;
|
19633
|
-
}
|
19634
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
19635
|
-
border-inline-end-width: thin;
|
19636
|
-
border-inline-end-style: solid;
|
19637
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19638
|
-
}
|
19639
|
-
.v-btn-group--tile {
|
19640
|
-
border-radius: 0;
|
19641
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19642
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19643
|
-
}
|
19644
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19645
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19646
|
-
}
|
19647
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19648
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19649
|
-
}
|
19650
|
-
@supports not selector(:focus-visible) {
|
19651
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19652
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19653
|
-
}
|
19654
|
-
}
|
19655
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19656
|
-
opacity: 1;
|
19657
|
-
}.v-carousel {
|
19658
|
-
overflow: hidden;
|
19659
|
-
position: relative;
|
19660
|
-
width: 100%;
|
19659
|
+
position: relative;
|
19660
|
+
width: 100%;
|
19661
19661
|
}
|
19662
19662
|
.v-carousel__controls {
|
19663
19663
|
align-items: center;
|
@@ -20855,7 +20855,18 @@ html.overflow-y-hidden {
|
|
20855
20855
|
}
|
20856
20856
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20857
20857
|
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));
|
20858
|
-
}.v-
|
20858
|
+
}.v-counter {
|
20859
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20860
|
+
flex: 0 1 auto;
|
20861
|
+
font-size: 12px;
|
20862
|
+
transition-duration: 150ms;
|
20863
|
+
}.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20864
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20865
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20866
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20867
|
+
top: 0px;
|
20868
|
+
}
|
20869
|
+
.v-combobox .v-field .v-text-field__prefix,
|
20859
20870
|
.v-combobox .v-field .v-text-field__suffix,
|
20860
20871
|
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
20861
20872
|
cursor: text;
|
@@ -20901,12 +20912,6 @@ html.overflow-y-hidden {
|
|
20901
20912
|
.v-combobox__selection:first-child {
|
20902
20913
|
margin-inline-start: 0;
|
20903
20914
|
}
|
20904
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
20905
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
20906
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
20907
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
20908
|
-
top: 0px;
|
20909
|
-
}
|
20910
20915
|
.v-combobox--selecting-index .v-combobox__selection {
|
20911
20916
|
opacity: var(--v-medium-emphasis-opacity);
|
20912
20917
|
}
|
@@ -20939,11 +20944,6 @@ html.overflow-y-hidden {
|
|
20939
20944
|
}
|
20940
20945
|
.v-combobox--active-menu .v-combobox__menu-icon {
|
20941
20946
|
transform: rotate(180deg);
|
20942
|
-
}.v-counter {
|
20943
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20944
|
-
flex: 0 1 auto;
|
20945
|
-
font-size: 12px;
|
20946
|
-
transition-duration: 150ms;
|
20947
20947
|
}.v-data-table {
|
20948
20948
|
width: 100%;
|
20949
20949
|
}
|
@@ -21162,6 +21162,12 @@ html.overflow-y-hidden {
|
|
21162
21162
|
}
|
21163
21163
|
.v-data-table-footer__page {
|
21164
21164
|
padding: 0 8px;
|
21165
|
+
}.v-date-picker {
|
21166
|
+
overflow: hidden;
|
21167
|
+
width: 328px;
|
21168
|
+
}
|
21169
|
+
.v-date-picker--show-week {
|
21170
|
+
width: 368px;
|
21165
21171
|
}.v-date-picker-controls {
|
21166
21172
|
display: flex;
|
21167
21173
|
align-items: center;
|
@@ -21349,12 +21355,6 @@ html.overflow-y-hidden {
|
|
21349
21355
|
}
|
21350
21356
|
.v-date-picker-years__content .v-btn {
|
21351
21357
|
padding-inline: 8px;
|
21352
|
-
}.v-date-picker {
|
21353
|
-
overflow: hidden;
|
21354
|
-
width: 328px;
|
21355
|
-
}
|
21356
|
-
.v-date-picker--show-week {
|
21357
|
-
width: 368px;
|
21358
21358
|
}.v-date-picker-months {
|
21359
21359
|
height: 288px;
|
21360
21360
|
}
|
@@ -21592,117 +21592,292 @@ html.overflow-y-hidden {
|
|
21592
21592
|
.v-empty-state__action-btn.v-btn {
|
21593
21593
|
background-color: initial;
|
21594
21594
|
color: initial;
|
21595
|
-
}.v-
|
21596
|
-
|
21597
|
-
|
21598
|
-
flex: 1 1 auto;
|
21599
|
-
pointer-events: none;
|
21600
|
-
position: relative;
|
21601
|
-
transition-duration: 0.2s;
|
21602
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
21603
|
-
vertical-align: middle;
|
21604
|
-
}
|
21605
|
-
.v-fab .v-btn {
|
21606
|
-
pointer-events: auto;
|
21607
|
-
}
|
21608
|
-
.v-fab .v-btn--variant-elevated {
|
21609
|
-
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));
|
21595
|
+
}.v-expansion-panel {
|
21596
|
+
background-color: rgb(var(--v-theme-surface));
|
21597
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21610
21598
|
}
|
21611
|
-
.v-
|
21612
|
-
|
21599
|
+
.v-expansion-panel:not(:first-child)::after {
|
21600
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21613
21601
|
}
|
21614
|
-
.v-
|
21615
|
-
|
21616
|
-
inset: 0;
|
21602
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21603
|
+
color: rgba(var(--v-theme-on-surface), 0.26);
|
21617
21604
|
}
|
21618
|
-
.v-
|
21619
|
-
|
21605
|
+
.v-expansion-panel--disabled .v-expansion-panel-title .v-expansion-panel-title__overlay {
|
21606
|
+
opacity: 0.4615384615;
|
21620
21607
|
}
|
21621
|
-
|
21622
|
-
|
21608
|
+
|
21609
|
+
.v-expansion-panels {
|
21610
|
+
display: flex;
|
21611
|
+
flex-wrap: wrap;
|
21623
21612
|
justify-content: center;
|
21613
|
+
list-style-type: none;
|
21614
|
+
padding: 0;
|
21615
|
+
width: 100%;
|
21616
|
+
position: relative;
|
21617
|
+
z-index: 1;
|
21624
21618
|
}
|
21625
|
-
.v-
|
21626
|
-
|
21627
|
-
|
21628
|
-
.v-fab--bottom {
|
21629
|
-
align-items: flex-end;
|
21619
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21620
|
+
border-bottom-left-radius: 0 !important;
|
21621
|
+
border-bottom-right-radius: 0 !important;
|
21630
21622
|
}
|
21631
|
-
.v-
|
21632
|
-
|
21623
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21624
|
+
border-top-left-radius: 0 !important;
|
21625
|
+
border-top-right-radius: 0 !important;
|
21633
21626
|
}
|
21634
|
-
.v-
|
21635
|
-
border-radius:
|
21627
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
21628
|
+
border-bottom-left-radius: 0 !important;
|
21629
|
+
border-bottom-right-radius: 0 !important;
|
21636
21630
|
}
|
21637
|
-
|
21638
|
-
|
21639
|
-
|
21640
|
-
display: inline-flex;
|
21641
|
-
vertical-align: middle;
|
21631
|
+
.v-expansion-panels:not(.v-expansion-panels--variant-accordion) > :last-child:not(:first-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
21632
|
+
border-top-left-radius: 0 !important;
|
21633
|
+
border-top-right-radius: 0 !important;
|
21642
21634
|
}
|
21643
|
-
.v-
|
21644
|
-
|
21645
|
-
|
21635
|
+
.v-expansion-panels--variant-accordion > :first-child:not(:last-child) {
|
21636
|
+
border-bottom-left-radius: 0 !important;
|
21637
|
+
border-bottom-right-radius: 0 !important;
|
21646
21638
|
}
|
21647
|
-
.v-
|
21648
|
-
|
21649
|
-
|
21639
|
+
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) {
|
21640
|
+
border-top-left-radius: 0 !important;
|
21641
|
+
border-top-right-radius: 0 !important;
|
21650
21642
|
}
|
21651
|
-
.v-
|
21652
|
-
|
21643
|
+
.v-expansion-panels--variant-accordion > :last-child:not(:first-child) .v-expansion-panel-title--active {
|
21644
|
+
border-bottom-left-radius: initial;
|
21645
|
+
border-bottom-right-radius: initial;
|
21653
21646
|
}
|
21654
|
-
.v-
|
21655
|
-
|
21647
|
+
.v-expansion-panels--variant-accordion > :not(:first-child):not(:last-child) {
|
21648
|
+
border-radius: 0 !important;
|
21656
21649
|
}
|
21657
|
-
.v-
|
21658
|
-
|
21650
|
+
.v-expansion-panels--variant-accordion .v-expansion-panel-title__overlay {
|
21651
|
+
transition: 0.3s border-radius cubic-bezier(0.4, 0, 0.2, 1);
|
21659
21652
|
}
|
21660
|
-
|
21661
|
-
|
21653
|
+
|
21654
|
+
.v-expansion-panel {
|
21655
|
+
flex: 1 0 100%;
|
21656
|
+
max-width: 100%;
|
21657
|
+
position: relative;
|
21658
|
+
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
21659
|
+
transition-property: margin-top, border-radius, border, max-width;
|
21660
|
+
border-radius: 4px;
|
21662
21661
|
}
|
21663
|
-
.v-
|
21662
|
+
.v-expansion-panel:not(:first-child)::after {
|
21663
|
+
border-top-style: solid;
|
21664
|
+
border-top-width: thin;
|
21665
|
+
content: "";
|
21664
21666
|
left: 0;
|
21665
|
-
|
21666
|
-
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
21667
|
+
position: absolute;
|
21667
21668
|
right: 0;
|
21668
|
-
|
21669
|
-
.
|
21670
|
-
display: grid;
|
21671
|
-
grid-template-areas: "prepend-inner field clear append-inner";
|
21672
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
|
21673
|
-
font-size: 16px;
|
21674
|
-
letter-spacing: 0.009375em;
|
21675
|
-
max-width: 100%;
|
21676
|
-
border-radius: 4px;
|
21677
|
-
contain: layout;
|
21678
|
-
flex: 1 0;
|
21679
|
-
grid-area: control;
|
21680
|
-
position: relative;
|
21681
|
-
--v-theme-overlay-multiplier: 1;
|
21682
|
-
--v-field-padding-start: 16px;
|
21683
|
-
--v-field-padding-end: 16px;
|
21684
|
-
--v-field-padding-top: 8px;
|
21685
|
-
--v-field-padding-bottom: 4px;
|
21686
|
-
--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0px));
|
21687
|
-
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
|
21669
|
+
top: 0;
|
21670
|
+
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
21688
21671
|
}
|
21689
|
-
.v-
|
21690
|
-
opacity: var(--v-disabled-opacity);
|
21672
|
+
.v-expansion-panel--disabled .v-expansion-panel-title {
|
21691
21673
|
pointer-events: none;
|
21692
21674
|
}
|
21693
|
-
.v-
|
21694
|
-
|
21695
|
-
|
21696
|
-
|
21697
|
-
/* endregion */
|
21698
|
-
/* region MODIFIERS */
|
21699
|
-
.v-field--prepended {
|
21700
|
-
padding-inline-start: 12px;
|
21675
|
+
.v-expansion-panel--active:not(:first-child),
|
21676
|
+
.v-expansion-panel--active + .v-expansion-panel {
|
21677
|
+
margin-top: 16px;
|
21701
21678
|
}
|
21702
|
-
.v-
|
21703
|
-
|
21679
|
+
.v-expansion-panel--active:not(:first-child)::after,
|
21680
|
+
.v-expansion-panel--active + .v-expansion-panel::after {
|
21681
|
+
opacity: 0;
|
21704
21682
|
}
|
21705
|
-
.v-
|
21683
|
+
.v-expansion-panel--active > .v-expansion-panel-title {
|
21684
|
+
border-bottom-left-radius: 0;
|
21685
|
+
border-bottom-right-radius: 0;
|
21686
|
+
}
|
21687
|
+
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
21688
|
+
min-height: 64px;
|
21689
|
+
}
|
21690
|
+
|
21691
|
+
.v-expansion-panel__shadow {
|
21692
|
+
border-radius: inherit;
|
21693
|
+
z-index: -1;
|
21694
|
+
}
|
21695
|
+
.v-expansion-panel__shadow {
|
21696
|
+
position: absolute;
|
21697
|
+
top: 0;
|
21698
|
+
left: 0;
|
21699
|
+
width: 100%;
|
21700
|
+
height: 100%;
|
21701
|
+
}
|
21702
|
+
.v-expansion-panel__shadow {
|
21703
|
+
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));
|
21704
|
+
}
|
21705
|
+
|
21706
|
+
.v-expansion-panel-title {
|
21707
|
+
align-items: center;
|
21708
|
+
text-align: start;
|
21709
|
+
border-radius: inherit;
|
21710
|
+
display: flex;
|
21711
|
+
font-size: 0.9375rem;
|
21712
|
+
line-height: 1;
|
21713
|
+
min-height: 48px;
|
21714
|
+
outline: none;
|
21715
|
+
padding: 16px 24px;
|
21716
|
+
position: relative;
|
21717
|
+
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
21718
|
+
width: 100%;
|
21719
|
+
justify-content: space-between;
|
21720
|
+
}
|
21721
|
+
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
21722
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
21723
|
+
}
|
21724
|
+
.v-expansion-panel-title:focus-visible > .v-expansion-panel-title__overlay {
|
21725
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
21726
|
+
}
|
21727
|
+
@supports not selector(:focus-visible) {
|
21728
|
+
.v-expansion-panel-title:focus > .v-expansion-panel-title__overlay {
|
21729
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
21730
|
+
}
|
21731
|
+
}
|
21732
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
21733
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
21734
|
+
}
|
21735
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
21736
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
21737
|
+
}
|
21738
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
21739
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
21740
|
+
}
|
21741
|
+
@supports not selector(:focus-visible) {
|
21742
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
21743
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
21744
|
+
}
|
21745
|
+
}
|
21746
|
+
|
21747
|
+
.v-expansion-panel-title__overlay {
|
21748
|
+
background-color: currentColor;
|
21749
|
+
border-radius: inherit;
|
21750
|
+
opacity: 0;
|
21751
|
+
}
|
21752
|
+
.v-expansion-panel-title__overlay {
|
21753
|
+
position: absolute;
|
21754
|
+
top: 0;
|
21755
|
+
left: 0;
|
21756
|
+
width: 100%;
|
21757
|
+
height: 100%;
|
21758
|
+
}
|
21759
|
+
|
21760
|
+
.v-expansion-panel-title__icon {
|
21761
|
+
display: inline-flex;
|
21762
|
+
margin-bottom: -4px;
|
21763
|
+
margin-top: -4px;
|
21764
|
+
-webkit-user-select: none;
|
21765
|
+
user-select: none;
|
21766
|
+
margin-inline-start: auto;
|
21767
|
+
}
|
21768
|
+
|
21769
|
+
.v-expansion-panel-text {
|
21770
|
+
display: flex;
|
21771
|
+
}
|
21772
|
+
.v-expansion-panel-text__wrapper {
|
21773
|
+
padding: 8px 24px 16px;
|
21774
|
+
flex: 1 1 auto;
|
21775
|
+
max-width: 100%;
|
21776
|
+
}
|
21777
|
+
|
21778
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
21779
|
+
margin-top: 0;
|
21780
|
+
}
|
21781
|
+
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
21782
|
+
opacity: 1;
|
21783
|
+
}
|
21784
|
+
|
21785
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel {
|
21786
|
+
max-width: calc(100% - 32px);
|
21787
|
+
}
|
21788
|
+
.v-expansion-panels--variant-popout > .v-expansion-panel--active {
|
21789
|
+
max-width: calc(100% + 16px);
|
21790
|
+
}
|
21791
|
+
|
21792
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel {
|
21793
|
+
max-width: 100%;
|
21794
|
+
}
|
21795
|
+
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
21796
|
+
max-width: calc(100% - 32px);
|
21797
|
+
}
|
21798
|
+
|
21799
|
+
.v-expansion-panels--flat > .v-expansion-panel::after {
|
21800
|
+
border-top: none;
|
21801
|
+
}
|
21802
|
+
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
21803
|
+
display: none;
|
21804
|
+
}
|
21805
|
+
|
21806
|
+
.v-expansion-panels--tile {
|
21807
|
+
border-radius: 0;
|
21808
|
+
}
|
21809
|
+
.v-expansion-panels--tile > .v-expansion-panel {
|
21810
|
+
border-radius: 0;
|
21811
|
+
}.v-file-input--hide.v-input .v-field,
|
21812
|
+
.v-file-input--hide.v-input .v-input__control,
|
21813
|
+
.v-file-input--hide.v-input .v-input__details {
|
21814
|
+
display: none;
|
21815
|
+
}
|
21816
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
21817
|
+
grid-area: control;
|
21818
|
+
margin: 0 auto;
|
21819
|
+
}
|
21820
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21821
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21822
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21823
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21824
|
+
top: 0px;
|
21825
|
+
}
|
21826
|
+
.v-file-input input[type=file] {
|
21827
|
+
height: 100%;
|
21828
|
+
left: 0;
|
21829
|
+
opacity: 0;
|
21830
|
+
position: absolute;
|
21831
|
+
top: 0;
|
21832
|
+
width: 100%;
|
21833
|
+
z-index: 0;
|
21834
|
+
}
|
21835
|
+
.v-file-input--dragging input[type=file] {
|
21836
|
+
z-index: 1;
|
21837
|
+
}
|
21838
|
+
.v-file-input .v-input__details {
|
21839
|
+
padding-inline: 16px;
|
21840
|
+
}
|
21841
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
21842
|
+
padding-inline: 0;
|
21843
|
+
}/* region INPUT */
|
21844
|
+
.v-field {
|
21845
|
+
display: grid;
|
21846
|
+
grid-template-areas: "prepend-inner field clear append-inner";
|
21847
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content min-content;
|
21848
|
+
font-size: 16px;
|
21849
|
+
letter-spacing: 0.009375em;
|
21850
|
+
max-width: 100%;
|
21851
|
+
border-radius: 4px;
|
21852
|
+
contain: layout;
|
21853
|
+
flex: 1 0;
|
21854
|
+
grid-area: control;
|
21855
|
+
position: relative;
|
21856
|
+
--v-theme-overlay-multiplier: 1;
|
21857
|
+
--v-field-padding-start: 16px;
|
21858
|
+
--v-field-padding-end: 16px;
|
21859
|
+
--v-field-padding-top: 8px;
|
21860
|
+
--v-field-padding-bottom: 4px;
|
21861
|
+
--v-field-input-padding-top: calc(var(--v-field-padding-top, 8px) + var(--v-input-padding-top, 0px));
|
21862
|
+
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 4px);
|
21863
|
+
}
|
21864
|
+
.v-field--disabled {
|
21865
|
+
opacity: var(--v-disabled-opacity);
|
21866
|
+
pointer-events: none;
|
21867
|
+
}
|
21868
|
+
.v-field .v-chip {
|
21869
|
+
--v-chip-height: 24px;
|
21870
|
+
}
|
21871
|
+
|
21872
|
+
/* endregion */
|
21873
|
+
/* region MODIFIERS */
|
21874
|
+
.v-field--prepended {
|
21875
|
+
padding-inline-start: 12px;
|
21876
|
+
}
|
21877
|
+
.v-field--appended {
|
21878
|
+
padding-inline-end: 12px;
|
21879
|
+
}
|
21880
|
+
.v-field--variant-solo, .v-field--variant-solo-filled {
|
21706
21881
|
background: rgb(var(--v-theme-surface));
|
21707
21882
|
border-color: transparent;
|
21708
21883
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
@@ -22258,60 +22433,101 @@ textarea.v-field__input::placeholder {
|
|
22258
22433
|
opacity: 0;
|
22259
22434
|
}
|
22260
22435
|
|
22261
|
-
/* endregion */.v-
|
22262
|
-
.v-file-input--hide.v-input .v-input__control,
|
22263
|
-
.v-file-input--hide.v-input .v-input__details {
|
22264
|
-
display: none;
|
22265
|
-
}
|
22266
|
-
.v-file-input--hide.v-input .v-input__prepend {
|
22267
|
-
grid-area: control;
|
22268
|
-
margin: 0 auto;
|
22269
|
-
}
|
22270
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
22271
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
22272
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
22273
|
-
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
22274
|
-
top: 0px;
|
22275
|
-
}
|
22276
|
-
.v-file-input input[type=file] {
|
22277
|
-
height: 100%;
|
22278
|
-
left: 0;
|
22279
|
-
opacity: 0;
|
22280
|
-
position: absolute;
|
22281
|
-
top: 0;
|
22282
|
-
width: 100%;
|
22283
|
-
z-index: 0;
|
22284
|
-
}
|
22285
|
-
.v-file-input--dragging input[type=file] {
|
22286
|
-
z-index: 1;
|
22287
|
-
}
|
22288
|
-
.v-file-input .v-input__details {
|
22289
|
-
padding-inline: 16px;
|
22290
|
-
}
|
22291
|
-
.v-input--plain-underlined.v-file-input .v-input__details {
|
22292
|
-
padding-inline: 0;
|
22293
|
-
}.v-footer {
|
22436
|
+
/* endregion */.v-fab {
|
22294
22437
|
align-items: center;
|
22295
|
-
display: flex;
|
22438
|
+
display: inline-flex;
|
22296
22439
|
flex: 1 1 auto;
|
22297
|
-
|
22440
|
+
pointer-events: none;
|
22298
22441
|
position: relative;
|
22299
|
-
transition: 0.2s
|
22300
|
-
transition-
|
22442
|
+
transition-duration: 0.2s;
|
22443
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
22444
|
+
vertical-align: middle;
|
22301
22445
|
}
|
22302
|
-
.v-
|
22303
|
-
|
22304
|
-
border-style: solid;
|
22305
|
-
border-width: 0;
|
22446
|
+
.v-fab .v-btn {
|
22447
|
+
pointer-events: auto;
|
22306
22448
|
}
|
22307
|
-
.v-
|
22308
|
-
|
22309
|
-
box-shadow: none;
|
22449
|
+
.v-fab .v-btn--variant-elevated {
|
22450
|
+
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));
|
22310
22451
|
}
|
22311
|
-
.v-
|
22312
|
-
|
22452
|
+
.v-fab--app, .v-fab--absolute {
|
22453
|
+
display: flex;
|
22313
22454
|
}
|
22314
|
-
.v-
|
22455
|
+
.v-fab--absolute {
|
22456
|
+
position: absolute;
|
22457
|
+
inset: 0;
|
22458
|
+
}
|
22459
|
+
.v-fab--start, .v-fab--left {
|
22460
|
+
justify-content: flex-start;
|
22461
|
+
}
|
22462
|
+
.v-fab--center {
|
22463
|
+
align-items: center;
|
22464
|
+
justify-content: center;
|
22465
|
+
}
|
22466
|
+
.v-fab--end, .v-fab--right {
|
22467
|
+
justify-content: flex-end;
|
22468
|
+
}
|
22469
|
+
.v-fab--bottom {
|
22470
|
+
align-items: flex-end;
|
22471
|
+
}
|
22472
|
+
.v-fab--top {
|
22473
|
+
align-items: flex-start;
|
22474
|
+
}
|
22475
|
+
.v-fab--extended .v-btn {
|
22476
|
+
border-radius: 9999px !important;
|
22477
|
+
}
|
22478
|
+
|
22479
|
+
.v-fab__container {
|
22480
|
+
align-self: center;
|
22481
|
+
display: inline-flex;
|
22482
|
+
vertical-align: middle;
|
22483
|
+
}
|
22484
|
+
.v-fab--app .v-fab__container {
|
22485
|
+
margin: 12px;
|
22486
|
+
position: fixed;
|
22487
|
+
}
|
22488
|
+
.v-fab--absolute .v-fab__container {
|
22489
|
+
position: absolute;
|
22490
|
+
z-index: 4;
|
22491
|
+
}
|
22492
|
+
.v-fab--offset.v-fab--top .v-fab__container {
|
22493
|
+
transform: translateY(-50%);
|
22494
|
+
}
|
22495
|
+
.v-fab--offset.v-fab--bottom .v-fab__container {
|
22496
|
+
transform: translateY(50%);
|
22497
|
+
}
|
22498
|
+
.v-fab--top .v-fab__container {
|
22499
|
+
top: 0;
|
22500
|
+
}
|
22501
|
+
.v-fab--bottom .v-fab__container {
|
22502
|
+
bottom: 0;
|
22503
|
+
}
|
22504
|
+
.v-fab--left .v-fab__container, .v-fab--start .v-fab__container {
|
22505
|
+
left: 0;
|
22506
|
+
}
|
22507
|
+
.v-fab--right .v-fab__container, .v-fab--end .v-fab__container {
|
22508
|
+
right: 0;
|
22509
|
+
}.v-footer {
|
22510
|
+
align-items: center;
|
22511
|
+
display: flex;
|
22512
|
+
flex: 1 1 auto;
|
22513
|
+
padding: 8px 16px;
|
22514
|
+
position: relative;
|
22515
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22516
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22517
|
+
}
|
22518
|
+
.v-footer {
|
22519
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22520
|
+
border-style: solid;
|
22521
|
+
border-width: 0;
|
22522
|
+
}
|
22523
|
+
.v-footer--border {
|
22524
|
+
border-width: thin;
|
22525
|
+
box-shadow: none;
|
22526
|
+
}
|
22527
|
+
.v-footer {
|
22528
|
+
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));
|
22529
|
+
}
|
22530
|
+
.v-footer--absolute {
|
22315
22531
|
position: absolute;
|
22316
22532
|
}
|
22317
22533
|
.v-footer--fixed {
|
@@ -22431,43 +22647,11 @@ textarea.v-field__input::placeholder {
|
|
22431
22647
|
|
22432
22648
|
.v-img__gradient {
|
22433
22649
|
background-repeat: no-repeat;
|
22434
|
-
}.v-
|
22435
|
-
|
22436
|
-
|
22437
|
-
|
22438
|
-
|
22439
|
-
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
22440
|
-
height: 100%;
|
22441
|
-
width: var(--v-infinite-margin-size, 1px);
|
22442
|
-
}
|
22443
|
-
|
22444
|
-
.v-infinite-scroll--vertical {
|
22445
|
-
display: flex;
|
22446
|
-
flex-direction: column;
|
22447
|
-
overflow-y: auto;
|
22448
|
-
}
|
22449
|
-
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
22450
|
-
height: 1px;
|
22451
|
-
width: 100%;
|
22452
|
-
}
|
22453
|
-
|
22454
|
-
.v-infinite-scroll-intersect {
|
22455
|
-
pointer-events: none;
|
22456
|
-
margin-top: var(--v-infinite-margin);
|
22457
|
-
margin-bottom: calc(var(--v-infinite-margin) * -1);
|
22458
|
-
}
|
22459
|
-
.v-infinite-scroll-intersect:nth-child(2) {
|
22460
|
-
--v-infinite-margin: var(--v-infinite-margin-size, 1px);
|
22461
|
-
}
|
22462
|
-
.v-infinite-scroll-intersect:nth-last-child(2) {
|
22463
|
-
--v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
|
22464
|
-
}
|
22465
|
-
|
22466
|
-
.v-infinite-scroll__side {
|
22467
|
-
align-items: center;
|
22468
|
-
display: flex;
|
22469
|
-
justify-content: center;
|
22470
|
-
padding: 8px;
|
22650
|
+
}.v-item-group {
|
22651
|
+
flex: 0 1 auto;
|
22652
|
+
max-width: 100%;
|
22653
|
+
position: relative;
|
22654
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22471
22655
|
}.v-input {
|
22472
22656
|
display: grid;
|
22473
22657
|
flex: 1 1 auto;
|
@@ -22615,26 +22799,6 @@ textarea.v-field__input::placeholder {
|
|
22615
22799
|
|
22616
22800
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22617
22801
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22618
|
-
}.v-item-group {
|
22619
|
-
flex: 0 1 auto;
|
22620
|
-
max-width: 100%;
|
22621
|
-
position: relative;
|
22622
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22623
|
-
}.v-layout {
|
22624
|
-
--v-scrollbar-offset: 0px;
|
22625
|
-
display: flex;
|
22626
|
-
flex: 1 1 auto;
|
22627
|
-
}
|
22628
|
-
.v-layout--full-height {
|
22629
|
-
--v-scrollbar-offset: inherit;
|
22630
|
-
height: 100%;
|
22631
|
-
}.v-layout-item {
|
22632
|
-
position: absolute;
|
22633
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22634
|
-
}
|
22635
|
-
|
22636
|
-
.v-layout-item--absolute {
|
22637
|
-
position: absolute;
|
22638
22802
|
}.v-label {
|
22639
22803
|
align-items: center;
|
22640
22804
|
color: inherit;
|
@@ -23226,8 +23390,43 @@ textarea.v-field__input::placeholder {
|
|
23226
23390
|
}
|
23227
23391
|
.v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23228
23392
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23393
|
+
}.v-messages {
|
23394
|
+
flex: 1 1 auto;
|
23395
|
+
font-size: 12px;
|
23396
|
+
min-height: 14px;
|
23397
|
+
min-width: 1px;
|
23398
|
+
opacity: var(--v-medium-emphasis-opacity);
|
23399
|
+
position: relative;
|
23400
|
+
}
|
23401
|
+
.v-messages__message {
|
23402
|
+
line-height: 12px;
|
23403
|
+
word-break: break-word;
|
23404
|
+
overflow-wrap: break-word;
|
23405
|
+
word-wrap: break-word;
|
23406
|
+
-webkit-hyphens: auto;
|
23407
|
+
hyphens: auto;
|
23408
|
+
transition-duration: 150ms;
|
23229
23409
|
}.v-locale-provider {
|
23230
23410
|
display: contents;
|
23411
|
+
}.v-menu > .v-overlay__content {
|
23412
|
+
display: flex;
|
23413
|
+
flex-direction: column;
|
23414
|
+
}
|
23415
|
+
.v-menu > .v-overlay__content {
|
23416
|
+
border-radius: 4px;
|
23417
|
+
}
|
23418
|
+
.v-menu > .v-overlay__content > .v-card,
|
23419
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
23420
|
+
.v-menu > .v-overlay__content > .v-list {
|
23421
|
+
background: rgb(var(--v-theme-surface));
|
23422
|
+
border-radius: inherit;
|
23423
|
+
overflow: auto;
|
23424
|
+
height: 100%;
|
23425
|
+
}
|
23426
|
+
.v-menu > .v-overlay__content > .v-card,
|
23427
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
23428
|
+
.v-menu > .v-overlay__content > .v-list {
|
23429
|
+
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));
|
23231
23430
|
}.v-main {
|
23232
23431
|
flex: 1 0 auto;
|
23233
23432
|
max-width: 100%;
|
@@ -23258,22 +23457,6 @@ textarea.v-field__input::placeholder {
|
|
23258
23457
|
--v-layout-right: 0px;
|
23259
23458
|
--v-layout-top: 0px;
|
23260
23459
|
--v-layout-bottom: 0px;
|
23261
|
-
}.v-messages {
|
23262
|
-
flex: 1 1 auto;
|
23263
|
-
font-size: 12px;
|
23264
|
-
min-height: 14px;
|
23265
|
-
min-width: 1px;
|
23266
|
-
opacity: var(--v-medium-emphasis-opacity);
|
23267
|
-
position: relative;
|
23268
|
-
}
|
23269
|
-
.v-messages__message {
|
23270
|
-
line-height: 12px;
|
23271
|
-
word-break: break-word;
|
23272
|
-
overflow-wrap: break-word;
|
23273
|
-
word-wrap: break-word;
|
23274
|
-
-webkit-hyphens: auto;
|
23275
|
-
hyphens: auto;
|
23276
|
-
transition-duration: 150ms;
|
23277
23460
|
}.v-navigation-drawer {
|
23278
23461
|
-webkit-overflow-scrolling: touch;
|
23279
23462
|
background: rgb(var(--v-theme-surface));
|
@@ -23435,25 +23618,64 @@ textarea.v-field__input::placeholder {
|
|
23435
23618
|
.v-number-input__control .v-btn {
|
23436
23619
|
background-color: transparent;
|
23437
23620
|
border-radius: 0;
|
23438
|
-
}.v-
|
23621
|
+
}.v-otp-input {
|
23622
|
+
align-items: center;
|
23439
23623
|
display: flex;
|
23440
|
-
|
23624
|
+
justify-content: center;
|
23625
|
+
padding: 0.5rem 0;
|
23626
|
+
position: relative;
|
23441
23627
|
}
|
23442
|
-
.v-
|
23628
|
+
.v-otp-input {
|
23443
23629
|
border-radius: 4px;
|
23444
23630
|
}
|
23445
|
-
.v-
|
23446
|
-
|
23447
|
-
|
23448
|
-
|
23631
|
+
.v-otp-input .v-field {
|
23632
|
+
height: 100%;
|
23633
|
+
}
|
23634
|
+
|
23635
|
+
.v-otp-input__divider {
|
23636
|
+
margin: 0 8px;
|
23637
|
+
}
|
23638
|
+
|
23639
|
+
.v-otp-input__content {
|
23640
|
+
align-items: center;
|
23641
|
+
display: flex;
|
23642
|
+
gap: 0.5rem;
|
23643
|
+
height: 64px;
|
23644
|
+
padding: 0.5rem;
|
23645
|
+
justify-content: center;
|
23646
|
+
max-width: 320px;
|
23647
|
+
position: relative;
|
23449
23648
|
border-radius: inherit;
|
23450
|
-
|
23649
|
+
}
|
23650
|
+
.v-otp-input--divided .v-otp-input__content {
|
23651
|
+
max-width: 360px;
|
23652
|
+
}
|
23653
|
+
|
23654
|
+
.v-otp-input__field {
|
23655
|
+
color: inherit;
|
23656
|
+
font-size: 1.25rem;
|
23451
23657
|
height: 100%;
|
23658
|
+
outline: none;
|
23659
|
+
text-align: center;
|
23660
|
+
width: 100%;
|
23452
23661
|
}
|
23453
|
-
.v-
|
23454
|
-
|
23455
|
-
|
23456
|
-
|
23662
|
+
.v-otp-input__field[type=number]::-webkit-outer-spin-button, .v-otp-input__field[type=number]::-webkit-inner-spin-button {
|
23663
|
+
-webkit-appearance: none;
|
23664
|
+
margin: 0;
|
23665
|
+
}
|
23666
|
+
.v-otp-input__field[type=number] {
|
23667
|
+
-moz-appearance: textfield;
|
23668
|
+
}
|
23669
|
+
|
23670
|
+
.v-otp-input__loader {
|
23671
|
+
align-items: center;
|
23672
|
+
display: flex;
|
23673
|
+
height: 100%;
|
23674
|
+
justify-content: center;
|
23675
|
+
width: 100%;
|
23676
|
+
}
|
23677
|
+
.v-otp-input__loader .v-progress-linear {
|
23678
|
+
position: absolute;
|
23457
23679
|
}.v-overlay-container {
|
23458
23680
|
contain: layout;
|
23459
23681
|
left: 0;
|
@@ -23526,70 +23748,114 @@ html.v-overlay-scroll-blocked {
|
|
23526
23748
|
}
|
23527
23749
|
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23528
23750
|
margin: 0.3rem;
|
23529
|
-
}.v-
|
23530
|
-
align-items: center;
|
23531
|
-
display: flex;
|
23532
|
-
justify-content: center;
|
23533
|
-
padding: 0.5rem 0;
|
23751
|
+
}.v-parallax {
|
23534
23752
|
position: relative;
|
23753
|
+
overflow: hidden;
|
23535
23754
|
}
|
23536
|
-
.v-
|
23537
|
-
|
23755
|
+
.v-parallax--active > .v-img__img {
|
23756
|
+
will-change: transform;
|
23757
|
+
}.v-progress-circular {
|
23758
|
+
align-items: center;
|
23759
|
+
display: inline-flex;
|
23760
|
+
justify-content: center;
|
23761
|
+
position: relative;
|
23762
|
+
vertical-align: middle;
|
23538
23763
|
}
|
23539
|
-
.v-
|
23764
|
+
.v-progress-circular > svg {
|
23765
|
+
width: 100%;
|
23540
23766
|
height: 100%;
|
23767
|
+
margin: auto;
|
23768
|
+
position: absolute;
|
23769
|
+
top: 0;
|
23770
|
+
bottom: 0;
|
23771
|
+
left: 0;
|
23772
|
+
right: 0;
|
23773
|
+
z-index: 0;
|
23541
23774
|
}
|
23542
23775
|
|
23543
|
-
.v-
|
23544
|
-
margin: 0 8px;
|
23545
|
-
}
|
23546
|
-
|
23547
|
-
.v-otp-input__content {
|
23776
|
+
.v-progress-circular__content {
|
23548
23777
|
align-items: center;
|
23549
23778
|
display: flex;
|
23550
|
-
gap: 0.5rem;
|
23551
|
-
height: 64px;
|
23552
|
-
padding: 0.5rem;
|
23553
23779
|
justify-content: center;
|
23554
|
-
max-width: 320px;
|
23555
|
-
position: relative;
|
23556
|
-
border-radius: inherit;
|
23557
23780
|
}
|
23558
|
-
|
23559
|
-
|
23781
|
+
|
23782
|
+
.v-progress-circular__underlay {
|
23783
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23784
|
+
stroke: currentColor;
|
23785
|
+
z-index: 1;
|
23560
23786
|
}
|
23561
23787
|
|
23562
|
-
.v-
|
23563
|
-
|
23564
|
-
|
23565
|
-
|
23566
|
-
outline: none;
|
23567
|
-
text-align: center;
|
23568
|
-
width: 100%;
|
23788
|
+
.v-progress-circular__overlay {
|
23789
|
+
stroke: currentColor;
|
23790
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23791
|
+
z-index: 2;
|
23569
23792
|
}
|
23570
|
-
|
23571
|
-
|
23572
|
-
|
23793
|
+
|
23794
|
+
.v-progress-circular--size-x-small {
|
23795
|
+
height: 16px;
|
23796
|
+
width: 16px;
|
23573
23797
|
}
|
23574
|
-
.v-
|
23575
|
-
|
23798
|
+
.v-progress-circular--size-small {
|
23799
|
+
height: 24px;
|
23800
|
+
width: 24px;
|
23801
|
+
}
|
23802
|
+
.v-progress-circular--size-default {
|
23803
|
+
height: 32px;
|
23804
|
+
width: 32px;
|
23805
|
+
}
|
23806
|
+
.v-progress-circular--size-large {
|
23807
|
+
height: 48px;
|
23808
|
+
width: 48px;
|
23809
|
+
}
|
23810
|
+
.v-progress-circular--size-x-large {
|
23811
|
+
height: 64px;
|
23812
|
+
width: 64px;
|
23576
23813
|
}
|
23577
23814
|
|
23578
|
-
.v-
|
23579
|
-
|
23580
|
-
|
23581
|
-
|
23582
|
-
justify-content: center;
|
23583
|
-
width: 100%;
|
23815
|
+
.v-progress-circular--indeterminate > svg {
|
23816
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
23817
|
+
transform-origin: center center;
|
23818
|
+
transition: all 0.2s ease-in-out;
|
23584
23819
|
}
|
23585
|
-
.v-
|
23586
|
-
|
23587
|
-
|
23588
|
-
|
23589
|
-
|
23820
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23821
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23822
|
+
stroke-dasharray: 25, 200;
|
23823
|
+
stroke-dashoffset: 0;
|
23824
|
+
stroke-linecap: round;
|
23825
|
+
transform-origin: center center;
|
23826
|
+
transform: rotate(-90deg);
|
23590
23827
|
}
|
23591
|
-
|
23592
|
-
|
23828
|
+
|
23829
|
+
.v-progress-circular--disable-shrink > svg {
|
23830
|
+
animation-duration: 0.7s;
|
23831
|
+
}
|
23832
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23833
|
+
animation: none;
|
23834
|
+
}
|
23835
|
+
|
23836
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23837
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23838
|
+
animation-play-state: paused !important;
|
23839
|
+
}
|
23840
|
+
|
23841
|
+
@keyframes progress-circular-dash {
|
23842
|
+
0% {
|
23843
|
+
stroke-dasharray: 1, 200;
|
23844
|
+
stroke-dashoffset: 0px;
|
23845
|
+
}
|
23846
|
+
50% {
|
23847
|
+
stroke-dasharray: 100, 200;
|
23848
|
+
stroke-dashoffset: -15px;
|
23849
|
+
}
|
23850
|
+
100% {
|
23851
|
+
stroke-dasharray: 100, 200;
|
23852
|
+
stroke-dashoffset: -124px;
|
23853
|
+
}
|
23854
|
+
}
|
23855
|
+
@keyframes progress-circular-rotate {
|
23856
|
+
100% {
|
23857
|
+
transform: rotate(270deg);
|
23858
|
+
}
|
23593
23859
|
}.v-progress-linear {
|
23594
23860
|
background: transparent;
|
23595
23861
|
overflow: hidden;
|
@@ -23818,6 +24084,18 @@ html.v-overlay-scroll-blocked {
|
|
23818
24084
|
0% {
|
23819
24085
|
background-position-x: var(--v-progress-linear-height);
|
23820
24086
|
}
|
24087
|
+
}.v-radio-group > .v-input__control {
|
24088
|
+
flex-direction: column;
|
24089
|
+
}
|
24090
|
+
.v-radio-group > .v-input__control > .v-label {
|
24091
|
+
margin-inline-start: 16px;
|
24092
|
+
}
|
24093
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24094
|
+
padding-inline-start: 6px;
|
24095
|
+
margin-top: 8px;
|
24096
|
+
}
|
24097
|
+
.v-radio-group .v-input__details {
|
24098
|
+
padding-inline: 16px;
|
23821
24099
|
}.v-slider .v-slider__container input {
|
23822
24100
|
cursor: default;
|
23823
24101
|
padding: 0;
|
@@ -23928,18 +24206,107 @@ html.v-overlay-scroll-blocked {
|
|
23928
24206
|
opacity: 0;
|
23929
24207
|
position: absolute;
|
23930
24208
|
width: 0;
|
23931
|
-
}.v-
|
23932
|
-
|
24209
|
+
}.v-selection-control {
|
24210
|
+
align-items: center;
|
24211
|
+
contain: layout;
|
24212
|
+
display: flex;
|
24213
|
+
flex: 1 0;
|
24214
|
+
grid-area: control;
|
24215
|
+
position: relative;
|
24216
|
+
-webkit-user-select: none;
|
24217
|
+
user-select: none;
|
23933
24218
|
}
|
23934
|
-
.v-
|
23935
|
-
|
24219
|
+
.v-selection-control .v-label {
|
24220
|
+
white-space: normal;
|
24221
|
+
word-break: break-word;
|
24222
|
+
height: 100%;
|
24223
|
+
opacity: 1;
|
23936
24224
|
}
|
23937
|
-
.v-
|
23938
|
-
|
23939
|
-
|
24225
|
+
.v-selection-control--disabled {
|
24226
|
+
opacity: var(--v-disabled-opacity);
|
24227
|
+
pointer-events: none;
|
23940
24228
|
}
|
23941
|
-
.v-
|
23942
|
-
|
24229
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-label {
|
24230
|
+
color: rgb(var(--v-theme-error));
|
24231
|
+
}
|
24232
|
+
.v-selection-control--inline {
|
24233
|
+
display: inline-flex;
|
24234
|
+
flex: 0 0 auto;
|
24235
|
+
min-width: 0;
|
24236
|
+
max-width: 100%;
|
24237
|
+
}
|
24238
|
+
.v-selection-control--inline .v-label {
|
24239
|
+
width: auto;
|
24240
|
+
}
|
24241
|
+
.v-selection-control--density-default {
|
24242
|
+
--v-selection-control-size: 40px;
|
24243
|
+
}
|
24244
|
+
|
24245
|
+
.v-selection-control--density-comfortable {
|
24246
|
+
--v-selection-control-size: 36px;
|
24247
|
+
}
|
24248
|
+
|
24249
|
+
.v-selection-control--density-compact {
|
24250
|
+
--v-selection-control-size: 28px;
|
24251
|
+
}
|
24252
|
+
|
24253
|
+
.v-selection-control__wrapper {
|
24254
|
+
width: var(--v-selection-control-size);
|
24255
|
+
height: var(--v-selection-control-size);
|
24256
|
+
display: inline-flex;
|
24257
|
+
align-items: center;
|
24258
|
+
position: relative;
|
24259
|
+
justify-content: center;
|
24260
|
+
flex: none;
|
24261
|
+
}
|
24262
|
+
|
24263
|
+
.v-selection-control__input {
|
24264
|
+
width: var(--v-selection-control-size);
|
24265
|
+
height: var(--v-selection-control-size);
|
24266
|
+
align-items: center;
|
24267
|
+
display: flex;
|
24268
|
+
flex: none;
|
24269
|
+
justify-content: center;
|
24270
|
+
position: relative;
|
24271
|
+
border-radius: 50%;
|
24272
|
+
}
|
24273
|
+
.v-selection-control__input input {
|
24274
|
+
cursor: pointer;
|
24275
|
+
position: absolute;
|
24276
|
+
left: 0;
|
24277
|
+
top: 0;
|
24278
|
+
width: 100%;
|
24279
|
+
height: 100%;
|
24280
|
+
opacity: 0;
|
24281
|
+
}
|
24282
|
+
.v-selection-control__input::before {
|
24283
|
+
border-radius: 100%;
|
24284
|
+
background-color: currentColor;
|
24285
|
+
opacity: 0;
|
24286
|
+
pointer-events: none;
|
24287
|
+
}
|
24288
|
+
.v-selection-control__input::before {
|
24289
|
+
content: "";
|
24290
|
+
position: absolute;
|
24291
|
+
top: 0;
|
24292
|
+
left: 0;
|
24293
|
+
width: 100%;
|
24294
|
+
height: 100%;
|
24295
|
+
}
|
24296
|
+
.v-selection-control__input:hover::before {
|
24297
|
+
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
24298
|
+
}
|
24299
|
+
.v-selection-control__input > .v-icon {
|
24300
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24301
|
+
}
|
24302
|
+
.v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
|
24303
|
+
opacity: 1;
|
24304
|
+
}
|
24305
|
+
.v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
|
24306
|
+
color: rgb(var(--v-theme-error));
|
24307
|
+
}
|
24308
|
+
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24309
|
+
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
23943
24310
|
}.v-responsive {
|
23944
24311
|
display: flex;
|
23945
24312
|
flex: 1 0 auto;
|
@@ -23966,7 +24333,13 @@ html.v-overlay-scroll-blocked {
|
|
23966
24333
|
flex: 1 0 0px;
|
23967
24334
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23968
24335
|
pointer-events: none;
|
23969
|
-
}.v-select .v-field .v-
|
24336
|
+
}.v-select--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
24337
|
+
.v-select--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
24338
|
+
.v-select--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
24339
|
+
.v-select--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
24340
|
+
top: 0px;
|
24341
|
+
}
|
24342
|
+
.v-select .v-field .v-text-field__prefix,
|
23970
24343
|
.v-select .v-field .v-text-field__suffix,
|
23971
24344
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
23972
24345
|
cursor: pointer;
|
@@ -24017,11 +24390,19 @@ html.v-overlay-scroll-blocked {
|
|
24017
24390
|
}
|
24018
24391
|
.v-select--active-menu .v-select__menu-icon {
|
24019
24392
|
transform: rotate(180deg);
|
24020
|
-
}.v-
|
24021
|
-
|
24022
|
-
|
24023
|
-
|
24024
|
-
|
24393
|
+
}.v-selection-control-group {
|
24394
|
+
grid-area: control;
|
24395
|
+
display: flex;
|
24396
|
+
flex-direction: column;
|
24397
|
+
}
|
24398
|
+
.v-selection-control-group--inline {
|
24399
|
+
flex-direction: row;
|
24400
|
+
flex-wrap: wrap;
|
24401
|
+
}.v-sheet {
|
24402
|
+
display: block;
|
24403
|
+
}
|
24404
|
+
.v-sheet {
|
24405
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24025
24406
|
border-style: solid;
|
24026
24407
|
border-width: 0;
|
24027
24408
|
}
|
@@ -24053,14 +24434,6 @@ html.v-overlay-scroll-blocked {
|
|
24053
24434
|
}
|
24054
24435
|
.v-sheet--rounded {
|
24055
24436
|
border-radius: 4px;
|
24056
|
-
}.v-selection-control-group {
|
24057
|
-
grid-area: control;
|
24058
|
-
display: flex;
|
24059
|
-
flex-direction: column;
|
24060
|
-
}
|
24061
|
-
.v-selection-control-group--inline {
|
24062
|
-
flex-direction: row;
|
24063
|
-
flex-wrap: wrap;
|
24064
24437
|
}.v-skeleton-loader {
|
24065
24438
|
align-items: center;
|
24066
24439
|
background: rgb(var(--v-theme-surface));
|
@@ -24481,103 +24854,6 @@ html.v-overlay-scroll-blocked {
|
|
24481
24854
|
}
|
24482
24855
|
.v-snackbar-transition-leave-to {
|
24483
24856
|
opacity: 0;
|
24484
|
-
}.v-speed-dial__content {
|
24485
|
-
gap: 8px;
|
24486
|
-
}
|
24487
|
-
.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 {
|
24488
|
-
flex-direction: row;
|
24489
|
-
}
|
24490
|
-
.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 {
|
24491
|
-
flex-direction: row-reverse;
|
24492
|
-
}
|
24493
|
-
.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 {
|
24494
|
-
flex-direction: column-reverse;
|
24495
|
-
}
|
24496
|
-
.v-speed-dial__content > *:nth-child(1) {
|
24497
|
-
transition-delay: 0s;
|
24498
|
-
}
|
24499
|
-
.v-speed-dial__content > *:nth-child(2) {
|
24500
|
-
transition-delay: 0.05s;
|
24501
|
-
}
|
24502
|
-
.v-speed-dial__content > *:nth-child(3) {
|
24503
|
-
transition-delay: 0.1s;
|
24504
|
-
}
|
24505
|
-
.v-speed-dial__content > *:nth-child(4) {
|
24506
|
-
transition-delay: 0.15s;
|
24507
|
-
}
|
24508
|
-
.v-speed-dial__content > *:nth-child(5) {
|
24509
|
-
transition-delay: 0.2s;
|
24510
|
-
}
|
24511
|
-
.v-speed-dial__content > *:nth-child(6) {
|
24512
|
-
transition-delay: 0.25s;
|
24513
|
-
}
|
24514
|
-
.v-speed-dial__content > *:nth-child(7) {
|
24515
|
-
transition-delay: 0.3s;
|
24516
|
-
}
|
24517
|
-
.v-speed-dial__content > *:nth-child(8) {
|
24518
|
-
transition-delay: 0.35s;
|
24519
|
-
}
|
24520
|
-
.v-speed-dial__content > *:nth-child(9) {
|
24521
|
-
transition-delay: 0.4s;
|
24522
|
-
}
|
24523
|
-
.v-speed-dial__content > *:nth-child(10) {
|
24524
|
-
transition-delay: 0.45s;
|
24525
|
-
}.v-stepper.v-sheet {
|
24526
|
-
overflow: hidden;
|
24527
|
-
}
|
24528
|
-
.v-stepper.v-sheet {
|
24529
|
-
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));
|
24530
|
-
}
|
24531
|
-
.v-stepper.v-sheet {
|
24532
|
-
border-radius: 4px;
|
24533
|
-
}
|
24534
|
-
.v-stepper.v-sheet.v-stepper--flat {
|
24535
|
-
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));
|
24536
|
-
}
|
24537
|
-
|
24538
|
-
.v-stepper-header {
|
24539
|
-
align-items: center;
|
24540
|
-
display: flex;
|
24541
|
-
position: relative;
|
24542
|
-
overflow-x: auto;
|
24543
|
-
justify-content: space-between;
|
24544
|
-
z-index: 1;
|
24545
|
-
}
|
24546
|
-
.v-stepper-header {
|
24547
|
-
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));
|
24548
|
-
}
|
24549
|
-
.v-stepper-header .v-divider {
|
24550
|
-
margin: 0 -16px;
|
24551
|
-
}
|
24552
|
-
.v-stepper-header .v-divider:last-child {
|
24553
|
-
margin-inline-end: 0;
|
24554
|
-
}
|
24555
|
-
.v-stepper-header .v-divider:first-child {
|
24556
|
-
margin-inline-start: 0;
|
24557
|
-
}
|
24558
|
-
.v-stepper--alt-labels .v-stepper-header {
|
24559
|
-
height: auto;
|
24560
|
-
}
|
24561
|
-
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
24562
|
-
align-self: flex-start;
|
24563
|
-
margin: 35px -67px 0;
|
24564
|
-
}
|
24565
|
-
|
24566
|
-
.v-stepper-window {
|
24567
|
-
margin: 1.5rem;
|
24568
|
-
}
|
24569
|
-
|
24570
|
-
.v-stepper-actions {
|
24571
|
-
display: flex;
|
24572
|
-
align-items: center;
|
24573
|
-
justify-content: space-between;
|
24574
|
-
padding: 1rem;
|
24575
|
-
}
|
24576
|
-
.v-stepper .v-stepper-actions {
|
24577
|
-
padding: 0 1.5rem 1rem;
|
24578
|
-
}
|
24579
|
-
.v-stepper-window-item .v-stepper-actions {
|
24580
|
-
padding: 1.5rem 0 0;
|
24581
24857
|
}.v-stepper-item {
|
24582
24858
|
align-items: center;
|
24583
24859
|
align-self: stretch;
|
@@ -24697,6 +24973,62 @@ html.v-overlay-scroll-blocked {
|
|
24697
24973
|
left: 0;
|
24698
24974
|
width: 100%;
|
24699
24975
|
height: 100%;
|
24976
|
+
}.v-stepper.v-sheet {
|
24977
|
+
overflow: hidden;
|
24978
|
+
}
|
24979
|
+
.v-stepper.v-sheet {
|
24980
|
+
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));
|
24981
|
+
}
|
24982
|
+
.v-stepper.v-sheet {
|
24983
|
+
border-radius: 4px;
|
24984
|
+
}
|
24985
|
+
.v-stepper.v-sheet.v-stepper--flat {
|
24986
|
+
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));
|
24987
|
+
}
|
24988
|
+
|
24989
|
+
.v-stepper-header {
|
24990
|
+
align-items: center;
|
24991
|
+
display: flex;
|
24992
|
+
position: relative;
|
24993
|
+
overflow-x: auto;
|
24994
|
+
justify-content: space-between;
|
24995
|
+
z-index: 1;
|
24996
|
+
}
|
24997
|
+
.v-stepper-header {
|
24998
|
+
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));
|
24999
|
+
}
|
25000
|
+
.v-stepper-header .v-divider {
|
25001
|
+
margin: 0 -16px;
|
25002
|
+
}
|
25003
|
+
.v-stepper-header .v-divider:last-child {
|
25004
|
+
margin-inline-end: 0;
|
25005
|
+
}
|
25006
|
+
.v-stepper-header .v-divider:first-child {
|
25007
|
+
margin-inline-start: 0;
|
25008
|
+
}
|
25009
|
+
.v-stepper--alt-labels .v-stepper-header {
|
25010
|
+
height: auto;
|
25011
|
+
}
|
25012
|
+
.v-stepper--alt-labels .v-stepper-header .v-divider {
|
25013
|
+
align-self: flex-start;
|
25014
|
+
margin: 35px -67px 0;
|
25015
|
+
}
|
25016
|
+
|
25017
|
+
.v-stepper-window {
|
25018
|
+
margin: 1.5rem;
|
25019
|
+
}
|
25020
|
+
|
25021
|
+
.v-stepper-actions {
|
25022
|
+
display: flex;
|
25023
|
+
align-items: center;
|
25024
|
+
justify-content: space-between;
|
25025
|
+
padding: 1rem;
|
25026
|
+
}
|
25027
|
+
.v-stepper .v-stepper-actions {
|
25028
|
+
padding: 0 1.5rem 1rem;
|
25029
|
+
}
|
25030
|
+
.v-stepper-window-item .v-stepper-actions {
|
25031
|
+
padding: 1.5rem 0 0;
|
24700
25032
|
}.v-switch .v-label {
|
24701
25033
|
padding-inline-start: 10px;
|
24702
25034
|
}
|
@@ -24879,35 +25211,49 @@ html.v-overlay-scroll-blocked {
|
|
24879
25211
|
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
24880
25212
|
border-width: 0;
|
24881
25213
|
}
|
24882
|
-
}.v-
|
24883
|
-
|
24884
|
-
|
24885
|
-
|
25214
|
+
}.v-system-bar {
|
25215
|
+
align-items: center;
|
25216
|
+
display: flex;
|
25217
|
+
flex: 1 1 auto;
|
25218
|
+
height: 24px;
|
25219
|
+
justify-content: flex-end;
|
25220
|
+
max-width: 100%;
|
25221
|
+
padding-inline: 8px;
|
25222
|
+
position: relative;
|
25223
|
+
text-align: end;
|
25224
|
+
width: 100%;
|
24886
25225
|
}
|
24887
|
-
.v-
|
24888
|
-
|
25226
|
+
.v-system-bar .v-icon {
|
25227
|
+
opacity: var(--v-medium-emphasis-opacity);
|
24889
25228
|
}
|
24890
|
-
.v-
|
24891
|
-
|
25229
|
+
.v-system-bar {
|
25230
|
+
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));
|
24892
25231
|
}
|
24893
|
-
|
24894
|
-
.v-tab__slider {
|
25232
|
+
.v-system-bar--absolute {
|
24895
25233
|
position: absolute;
|
24896
|
-
bottom: 0;
|
24897
|
-
left: 0;
|
24898
|
-
height: 2px;
|
24899
|
-
width: 100%;
|
24900
|
-
background: currentColor;
|
24901
|
-
pointer-events: none;
|
24902
|
-
opacity: 0;
|
24903
25234
|
}
|
24904
|
-
.v-
|
24905
|
-
|
25235
|
+
.v-system-bar--fixed {
|
25236
|
+
position: fixed;
|
24906
25237
|
}
|
24907
|
-
.v-
|
24908
|
-
|
24909
|
-
|
24910
|
-
|
25238
|
+
.v-system-bar {
|
25239
|
+
background: rgba(var(--v-theme-surface-light));
|
25240
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25241
|
+
}
|
25242
|
+
.v-system-bar {
|
25243
|
+
font-size: 0.75rem;
|
25244
|
+
font-weight: 400;
|
25245
|
+
letter-spacing: 0.0333333333em;
|
25246
|
+
line-height: 1.667;
|
25247
|
+
text-transform: none;
|
25248
|
+
}
|
25249
|
+
.v-system-bar--rounded {
|
25250
|
+
border-radius: 0;
|
25251
|
+
}
|
25252
|
+
.v-system-bar--window {
|
25253
|
+
height: 32px;
|
25254
|
+
}
|
25255
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25256
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
24911
25257
|
}.v-tabs {
|
24912
25258
|
display: flex;
|
24913
25259
|
height: var(--v-tabs-height);
|
@@ -24974,150 +25320,119 @@ html.v-overlay-scroll-blocked {
|
|
24974
25320
|
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
24975
25321
|
margin-inline-end: 52px;
|
24976
25322
|
}
|
24977
|
-
}
|
24978
|
-
|
24979
|
-
|
24980
|
-
|
24981
|
-
|
24982
|
-
|
24983
|
-
|
24984
|
-
padding-inline: 8px;
|
24985
|
-
position: relative;
|
24986
|
-
text-align: end;
|
24987
|
-
width: 100%;
|
25323
|
+
}/* region BLOCK */
|
25324
|
+
.v-text-field input {
|
25325
|
+
color: inherit;
|
25326
|
+
opacity: 0;
|
25327
|
+
flex: 1;
|
25328
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25329
|
+
min-width: 0;
|
24988
25330
|
}
|
24989
|
-
.v-
|
24990
|
-
|
25331
|
+
.v-text-field input:focus, .v-text-field input:active {
|
25332
|
+
outline: none;
|
24991
25333
|
}
|
24992
|
-
.v-
|
24993
|
-
box-shadow:
|
25334
|
+
.v-text-field input:invalid {
|
25335
|
+
box-shadow: none;
|
24994
25336
|
}
|
24995
|
-
.v-
|
24996
|
-
|
25337
|
+
.v-text-field .v-field {
|
25338
|
+
cursor: text;
|
24997
25339
|
}
|
24998
|
-
.v-
|
24999
|
-
|
25340
|
+
.v-text-field--prefixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25341
|
+
--v-field-padding-start: 6px;
|
25000
25342
|
}
|
25001
|
-
|
25002
|
-
|
25003
|
-
|
25343
|
+
|
25344
|
+
.v-text-field--suffixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25345
|
+
--v-field-padding-end: 0;
|
25004
25346
|
}
|
25005
|
-
|
25006
|
-
|
25007
|
-
|
25008
|
-
letter-spacing: 0.0333333333em;
|
25009
|
-
line-height: 1.667;
|
25010
|
-
text-transform: none;
|
25347
|
+
|
25348
|
+
.v-text-field--prefixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25349
|
+
--v-field-padding-end: 6px;
|
25011
25350
|
}
|
25012
|
-
|
25013
|
-
|
25351
|
+
|
25352
|
+
.v-text-field--suffixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25353
|
+
--v-field-padding-start: 0;
|
25014
25354
|
}
|
25015
|
-
|
25016
|
-
|
25355
|
+
|
25356
|
+
.v-text-field .v-input__details {
|
25357
|
+
padding-inline: 16px;
|
25017
25358
|
}
|
25018
|
-
.v-
|
25019
|
-
padding-inline
|
25020
|
-
}.v-selection-control {
|
25021
|
-
align-items: center;
|
25022
|
-
contain: layout;
|
25023
|
-
display: flex;
|
25024
|
-
flex: 1 0;
|
25025
|
-
grid-area: control;
|
25026
|
-
position: relative;
|
25027
|
-
-webkit-user-select: none;
|
25028
|
-
user-select: none;
|
25359
|
+
.v-input--plain-underlined.v-text-field .v-input__details {
|
25360
|
+
padding-inline: 0;
|
25029
25361
|
}
|
25030
|
-
|
25031
|
-
|
25032
|
-
|
25033
|
-
height: 100%;
|
25362
|
+
|
25363
|
+
.v-text-field .v-field--no-label input,
|
25364
|
+
.v-text-field .v-field--active input {
|
25034
25365
|
opacity: 1;
|
25035
25366
|
}
|
25036
|
-
.v-
|
25037
|
-
|
25038
|
-
pointer-events: none;
|
25367
|
+
.v-text-field .v-field--single-line input {
|
25368
|
+
transition: none;
|
25039
25369
|
}
|
25040
|
-
|
25041
|
-
|
25370
|
+
|
25371
|
+
/* endregion */
|
25372
|
+
/* region ELEMENTS */
|
25373
|
+
.v-text-field__prefix, .v-text-field__suffix {
|
25374
|
+
align-items: center;
|
25375
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25376
|
+
cursor: default;
|
25377
|
+
display: flex;
|
25378
|
+
opacity: 0;
|
25379
|
+
transition: inherit;
|
25380
|
+
white-space: nowrap;
|
25381
|
+
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25382
|
+
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25383
|
+
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25042
25384
|
}
|
25043
|
-
.v-
|
25044
|
-
|
25045
|
-
flex: 0 0 auto;
|
25046
|
-
min-width: 0;
|
25047
|
-
max-width: 100%;
|
25385
|
+
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25386
|
+
opacity: 1;
|
25048
25387
|
}
|
25049
|
-
.v-
|
25050
|
-
|
25388
|
+
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25389
|
+
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25051
25390
|
}
|
25052
|
-
.v-
|
25053
|
-
--v-
|
25391
|
+
.v-field:not(.v-field--reverse) .v-text-field__prefix {
|
25392
|
+
padding-inline-start: var(--v-field-padding-start);
|
25054
25393
|
}
|
25055
25394
|
|
25056
|
-
.v-
|
25057
|
-
--v-
|
25395
|
+
.v-field.v-field--reverse .v-text-field__prefix {
|
25396
|
+
padding-inline-end: var(--v-field-padding-end);
|
25058
25397
|
}
|
25059
25398
|
|
25060
|
-
.v-
|
25061
|
-
--v-
|
25399
|
+
.v-field:not(.v-field--reverse) .v-text-field__suffix {
|
25400
|
+
padding-inline-end: var(--v-field-padding-end);
|
25062
25401
|
}
|
25063
25402
|
|
25064
|
-
.v-
|
25065
|
-
|
25066
|
-
height: var(--v-selection-control-size);
|
25067
|
-
display: inline-flex;
|
25068
|
-
align-items: center;
|
25069
|
-
position: relative;
|
25070
|
-
justify-content: center;
|
25071
|
-
flex: none;
|
25403
|
+
.v-field.v-field--reverse .v-text-field__suffix {
|
25404
|
+
padding-inline-start: var(--v-field-padding-start);
|
25072
25405
|
}
|
25073
25406
|
|
25074
|
-
.v-
|
25075
|
-
|
25076
|
-
|
25077
|
-
|
25078
|
-
display: flex;
|
25079
|
-
flex: none;
|
25080
|
-
justify-content: center;
|
25081
|
-
position: relative;
|
25082
|
-
border-radius: 50%;
|
25407
|
+
/* endregion */.v-tab.v-tab.v-btn {
|
25408
|
+
height: var(--v-tabs-height);
|
25409
|
+
border-radius: 0;
|
25410
|
+
min-width: 90px;
|
25083
25411
|
}
|
25084
|
-
.v-
|
25085
|
-
|
25086
|
-
position: absolute;
|
25087
|
-
left: 0;
|
25088
|
-
top: 0;
|
25089
|
-
width: 100%;
|
25090
|
-
height: 100%;
|
25091
|
-
opacity: 0;
|
25412
|
+
.v-slide-group--horizontal .v-tab {
|
25413
|
+
max-width: 360px;
|
25092
25414
|
}
|
25093
|
-
.v-
|
25094
|
-
|
25095
|
-
background-color: currentColor;
|
25096
|
-
opacity: 0;
|
25097
|
-
pointer-events: none;
|
25415
|
+
.v-slide-group--vertical .v-tab {
|
25416
|
+
justify-content: start;
|
25098
25417
|
}
|
25099
|
-
|
25100
|
-
|
25418
|
+
|
25419
|
+
.v-tab__slider {
|
25101
25420
|
position: absolute;
|
25102
|
-
|
25421
|
+
bottom: 0;
|
25103
25422
|
left: 0;
|
25423
|
+
height: 2px;
|
25104
25424
|
width: 100%;
|
25105
|
-
|
25106
|
-
|
25107
|
-
|
25108
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
25109
|
-
}
|
25110
|
-
.v-selection-control__input > .v-icon {
|
25111
|
-
opacity: var(--v-medium-emphasis-opacity);
|
25425
|
+
background: currentColor;
|
25426
|
+
pointer-events: none;
|
25427
|
+
opacity: 0;
|
25112
25428
|
}
|
25113
|
-
.v-
|
25429
|
+
.v-tab--selected .v-tab__slider {
|
25114
25430
|
opacity: 1;
|
25115
25431
|
}
|
25116
|
-
.v-
|
25117
|
-
|
25118
|
-
|
25119
|
-
|
25120
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
25432
|
+
.v-slide-group--vertical .v-tab__slider {
|
25433
|
+
top: 0;
|
25434
|
+
height: 100%;
|
25435
|
+
width: 2px;
|
25121
25436
|
}.v-table {
|
25122
25437
|
font-size: 0.875rem;
|
25123
25438
|
transition-duration: 0.28s;
|
@@ -25259,181 +25574,57 @@ html.v-overlay-scroll-blocked {
|
|
25259
25574
|
}.v-theme-provider {
|
25260
25575
|
background: rgb(var(--v-theme-background));
|
25261
25576
|
color: rgb(var(--v-theme-on-background));
|
25262
|
-
}.v-
|
25263
|
-
|
25264
|
-
}
|
25265
|
-
.v-textarea .v-field__field {
|
25266
|
-
--v-input-control-height: var(--v-textarea-control-height);
|
25577
|
+
}.v-timeline .v-timeline-divider__dot {
|
25578
|
+
background: rgb(var(--v-theme-surface-light));
|
25267
25579
|
}
|
25268
|
-
.v-
|
25269
|
-
|
25270
|
-
outline: none;
|
25271
|
-
-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));
|
25272
|
-
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));
|
25580
|
+
.v-timeline .v-timeline-divider__inner-dot {
|
25581
|
+
background: rgb(var(--v-theme-on-surface));
|
25273
25582
|
}
|
25274
|
-
|
25275
|
-
|
25276
|
-
|
25277
|
-
|
25278
|
-
|
25279
|
-
height: 0 !important;
|
25280
|
-
min-height: 0 !important;
|
25281
|
-
pointer-events: none;
|
25583
|
+
|
25584
|
+
.v-timeline {
|
25585
|
+
display: grid;
|
25586
|
+
grid-auto-flow: dense;
|
25587
|
+
position: relative;
|
25282
25588
|
}
|
25283
|
-
.v-
|
25284
|
-
|
25589
|
+
.v-timeline--horizontal.v-timeline {
|
25590
|
+
grid-column-gap: 24px;
|
25591
|
+
width: 100%;
|
25285
25592
|
}
|
25286
|
-
.v-
|
25287
|
-
|
25288
|
-
|
25593
|
+
.v-timeline--horizontal.v-timeline .v-timeline--side-end > .v-timeline-item .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item--side-end .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item:nth-child(2n+1):not(.v-timeline-item--side-start) .v-timeline-item__body {
|
25594
|
+
grid-row: 3;
|
25595
|
+
align-self: flex-start;
|
25596
|
+
padding-block-start: 24px;
|
25289
25597
|
}
|
25290
|
-
.v-
|
25291
|
-
|
25292
|
-
|
25293
|
-
|
25294
|
-
height: 100%;
|
25295
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25598
|
+
.v-timeline--horizontal.v-timeline .v-timeline--side-end > .v-timeline-item .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item--side-end .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item:nth-child(2n+1):not(.v-timeline-item--side-start) .v-timeline-item__opposite {
|
25599
|
+
grid-row: 1;
|
25600
|
+
align-self: flex-end;
|
25601
|
+
padding-block-end: 24px;
|
25296
25602
|
}
|
25297
|
-
.v-
|
25298
|
-
|
25603
|
+
.v-timeline--horizontal.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__body {
|
25604
|
+
grid-row: 1;
|
25605
|
+
align-self: flex-end;
|
25606
|
+
padding-block-end: 24px;
|
25299
25607
|
}
|
25300
|
-
.v-
|
25301
|
-
|
25302
|
-
|
25303
|
-
|
25304
|
-
color: inherit;
|
25305
|
-
opacity: 0;
|
25306
|
-
flex: 1;
|
25307
|
-
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25308
|
-
min-width: 0;
|
25608
|
+
.v-timeline--horizontal.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__opposite {
|
25609
|
+
grid-row: 3;
|
25610
|
+
align-self: flex-start;
|
25611
|
+
padding-block-start: 24px;
|
25309
25612
|
}
|
25310
|
-
|
25311
|
-
|
25613
|
+
|
25614
|
+
.v-timeline--vertical.v-timeline {
|
25615
|
+
row-gap: 24px;
|
25616
|
+
height: 100%;
|
25312
25617
|
}
|
25313
|
-
.v-
|
25314
|
-
|
25618
|
+
.v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite {
|
25619
|
+
padding-block-start: 24px;
|
25315
25620
|
}
|
25316
|
-
.v-
|
25317
|
-
|
25621
|
+
.v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite {
|
25622
|
+
padding-block-end: 24px;
|
25318
25623
|
}
|
25319
|
-
.v-
|
25320
|
-
|
25321
|
-
|
25322
|
-
|
25323
|
-
.v-text-field--suffixed.v-text-field .v-field:not(.v-field--reverse) .v-field__input {
|
25324
|
-
--v-field-padding-end: 0;
|
25325
|
-
}
|
25326
|
-
|
25327
|
-
.v-text-field--prefixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25328
|
-
--v-field-padding-end: 6px;
|
25329
|
-
}
|
25330
|
-
|
25331
|
-
.v-text-field--suffixed.v-text-field .v-field.v-field--reverse .v-field__input {
|
25332
|
-
--v-field-padding-start: 0;
|
25333
|
-
}
|
25334
|
-
|
25335
|
-
.v-text-field .v-input__details {
|
25336
|
-
padding-inline: 16px;
|
25337
|
-
}
|
25338
|
-
.v-input--plain-underlined.v-text-field .v-input__details {
|
25339
|
-
padding-inline: 0;
|
25340
|
-
}
|
25341
|
-
|
25342
|
-
.v-text-field .v-field--no-label input,
|
25343
|
-
.v-text-field .v-field--active input {
|
25344
|
-
opacity: 1;
|
25345
|
-
}
|
25346
|
-
.v-text-field .v-field--single-line input {
|
25347
|
-
transition: none;
|
25348
|
-
}
|
25349
|
-
|
25350
|
-
/* endregion */
|
25351
|
-
/* region ELEMENTS */
|
25352
|
-
.v-text-field__prefix, .v-text-field__suffix {
|
25353
|
-
align-items: center;
|
25354
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
25355
|
-
cursor: default;
|
25356
|
-
display: flex;
|
25357
|
-
opacity: 0;
|
25358
|
-
transition: inherit;
|
25359
|
-
white-space: nowrap;
|
25360
|
-
min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
25361
|
-
padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
|
25362
|
-
padding-bottom: var(--v-field-padding-bottom, 6px);
|
25363
|
-
}
|
25364
|
-
.v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
|
25365
|
-
opacity: 1;
|
25366
|
-
}
|
25367
|
-
.v-field--disabled .v-text-field__prefix, .v-field--disabled .v-text-field__suffix {
|
25368
|
-
color: rgba(var(--v-theme-on-surface), var(--v-disabled-opacity));
|
25369
|
-
}
|
25370
|
-
.v-field:not(.v-field--reverse) .v-text-field__prefix {
|
25371
|
-
padding-inline-start: var(--v-field-padding-start);
|
25372
|
-
}
|
25373
|
-
|
25374
|
-
.v-field.v-field--reverse .v-text-field__prefix {
|
25375
|
-
padding-inline-end: var(--v-field-padding-end);
|
25376
|
-
}
|
25377
|
-
|
25378
|
-
.v-field:not(.v-field--reverse) .v-text-field__suffix {
|
25379
|
-
padding-inline-end: var(--v-field-padding-end);
|
25380
|
-
}
|
25381
|
-
|
25382
|
-
.v-field.v-field--reverse .v-text-field__suffix {
|
25383
|
-
padding-inline-start: var(--v-field-padding-start);
|
25384
|
-
}
|
25385
|
-
|
25386
|
-
/* endregion */.v-timeline .v-timeline-divider__dot {
|
25387
|
-
background: rgb(var(--v-theme-surface-light));
|
25388
|
-
}
|
25389
|
-
.v-timeline .v-timeline-divider__inner-dot {
|
25390
|
-
background: rgb(var(--v-theme-on-surface));
|
25391
|
-
}
|
25392
|
-
|
25393
|
-
.v-timeline {
|
25394
|
-
display: grid;
|
25395
|
-
grid-auto-flow: dense;
|
25396
|
-
position: relative;
|
25397
|
-
}
|
25398
|
-
.v-timeline--horizontal.v-timeline {
|
25399
|
-
grid-column-gap: 24px;
|
25400
|
-
width: 100%;
|
25401
|
-
}
|
25402
|
-
.v-timeline--horizontal.v-timeline .v-timeline--side-end > .v-timeline-item .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item--side-end .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item:nth-child(2n+1):not(.v-timeline-item--side-start) .v-timeline-item__body {
|
25403
|
-
grid-row: 3;
|
25404
|
-
align-self: flex-start;
|
25405
|
-
padding-block-start: 24px;
|
25406
|
-
}
|
25407
|
-
.v-timeline--horizontal.v-timeline .v-timeline--side-end > .v-timeline-item .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item--side-end .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-start) > .v-timeline-item:nth-child(2n+1):not(.v-timeline-item--side-start) .v-timeline-item__opposite {
|
25408
|
-
grid-row: 1;
|
25409
|
-
align-self: flex-end;
|
25410
|
-
padding-block-end: 24px;
|
25411
|
-
}
|
25412
|
-
.v-timeline--horizontal.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__body, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__body {
|
25413
|
-
grid-row: 1;
|
25414
|
-
align-self: flex-end;
|
25415
|
-
padding-block-end: 24px;
|
25416
|
-
}
|
25417
|
-
.v-timeline--horizontal.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__opposite, .v-timeline--horizontal.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__opposite {
|
25418
|
-
grid-row: 3;
|
25419
|
-
align-self: flex-start;
|
25420
|
-
padding-block-start: 24px;
|
25421
|
-
}
|
25422
|
-
|
25423
|
-
.v-timeline--vertical.v-timeline {
|
25424
|
-
row-gap: 24px;
|
25425
|
-
height: 100%;
|
25426
|
-
}
|
25427
|
-
.v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite {
|
25428
|
-
padding-block-start: 24px;
|
25429
|
-
}
|
25430
|
-
.v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite {
|
25431
|
-
padding-block-end: 24px;
|
25432
|
-
}
|
25433
|
-
.v-timeline--vertical.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__body, .v-timeline--vertical.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__body, .v-timeline--vertical.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__body {
|
25434
|
-
grid-column: 1;
|
25435
|
-
justify-self: flex-end;
|
25436
|
-
padding-inline-end: 24px;
|
25624
|
+
.v-timeline--vertical.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__body, .v-timeline--vertical.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__body, .v-timeline--vertical.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__body {
|
25625
|
+
grid-column: 1;
|
25626
|
+
justify-self: flex-end;
|
25627
|
+
padding-inline-end: 24px;
|
25437
25628
|
}
|
25438
25629
|
.v-timeline--vertical.v-timeline .v-timeline--side-start > .v-timeline-item .v-timeline-item__opposite, .v-timeline--vertical.v-timeline:not(.v-timeline--side-end) > .v-timeline-item--side-start .v-timeline-item__opposite, .v-timeline--vertical.v-timeline:not(.v-timeline--side-end) > .v-timeline-item:nth-child(2n):not(.v-timeline-item--side-end) .v-timeline-item__opposite {
|
25439
25630
|
grid-column: 3;
|
@@ -25954,6 +26145,15 @@ html.v-overlay-scroll-blocked {
|
|
25954
26145
|
}
|
25955
26146
|
.v-toolbar-items > .v-btn {
|
25956
26147
|
border-radius: 0;
|
26148
|
+
}.v-virtual-scroll {
|
26149
|
+
display: block;
|
26150
|
+
flex: 1 1 auto;
|
26151
|
+
max-width: 100%;
|
26152
|
+
overflow: auto;
|
26153
|
+
position: relative;
|
26154
|
+
}
|
26155
|
+
.v-virtual-scroll__container {
|
26156
|
+
display: block;
|
25957
26157
|
}.v-tooltip > .v-overlay__content {
|
25958
26158
|
background: rgb(var(--v-theme-surface-variant));
|
25959
26159
|
color: rgb(var(--v-theme-on-surface-variant));
|
@@ -25978,15 +26178,46 @@ html.v-overlay-scroll-blocked {
|
|
25978
26178
|
}
|
25979
26179
|
.v-tooltip:not(.v-tooltip--interactive) > .v-overlay__content {
|
25980
26180
|
pointer-events: none;
|
25981
|
-
}.v-
|
25982
|
-
|
26181
|
+
}.v-textarea .v-field {
|
26182
|
+
--v-textarea-control-height: var(--v-input-control-height);
|
26183
|
+
}
|
26184
|
+
.v-textarea .v-field__field {
|
26185
|
+
--v-input-control-height: var(--v-textarea-control-height);
|
26186
|
+
}
|
26187
|
+
.v-textarea .v-field__input {
|
25983
26188
|
flex: 1 1 auto;
|
25984
|
-
|
25985
|
-
|
25986
|
-
|
26189
|
+
outline: none;
|
26190
|
+
-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));
|
26191
|
+
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));
|
25987
26192
|
}
|
25988
|
-
.v-
|
25989
|
-
|
26193
|
+
.v-textarea .v-field__input.v-textarea__sizer {
|
26194
|
+
visibility: hidden;
|
26195
|
+
position: absolute;
|
26196
|
+
top: 0;
|
26197
|
+
left: 0;
|
26198
|
+
height: 0 !important;
|
26199
|
+
min-height: 0 !important;
|
26200
|
+
pointer-events: none;
|
26201
|
+
}
|
26202
|
+
.v-textarea--no-resize .v-field__input {
|
26203
|
+
resize: none;
|
26204
|
+
}
|
26205
|
+
.v-textarea .v-field--no-label textarea,
|
26206
|
+
.v-textarea .v-field--active textarea {
|
26207
|
+
opacity: 1;
|
26208
|
+
}
|
26209
|
+
.v-textarea textarea {
|
26210
|
+
opacity: 0;
|
26211
|
+
flex: 1;
|
26212
|
+
min-width: 0;
|
26213
|
+
height: 100%;
|
26214
|
+
transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
26215
|
+
}
|
26216
|
+
.v-textarea textarea:focus, .v-textarea textarea:active {
|
26217
|
+
outline: none;
|
26218
|
+
}
|
26219
|
+
.v-textarea textarea:invalid {
|
26220
|
+
box-shadow: none;
|
25990
26221
|
}.v-window {
|
25991
26222
|
overflow: hidden;
|
25992
26223
|
}
|
@@ -26057,352 +26288,121 @@ html.v-overlay-scroll-blocked {
|
|
26057
26288
|
}
|
26058
26289
|
.v-window-y-reverse-transition-leave-to {
|
26059
26290
|
transform: translateY(100%);
|
26060
|
-
}.v-
|
26061
|
-
|
26062
|
-
|
26063
|
-
|
26064
|
-
.v-expansion-panel:not(:first-child)::after {
|
26065
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
26066
|
-
}
|
26067
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
26068
|
-
color: rgba(var(--v-theme-on-surface), 0.26);
|
26291
|
+
}.v-infinite-scroll--horizontal {
|
26292
|
+
display: flex;
|
26293
|
+
flex-direction: row;
|
26294
|
+
overflow-x: auto;
|
26069
26295
|
}
|
26070
|
-
.v-
|
26071
|
-
|
26296
|
+
.v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
|
26297
|
+
height: 100%;
|
26298
|
+
width: var(--v-infinite-margin-size, 1px);
|
26072
26299
|
}
|
26073
26300
|
|
26074
|
-
.v-
|
26301
|
+
.v-infinite-scroll--vertical {
|
26075
26302
|
display: flex;
|
26076
|
-
flex-
|
26077
|
-
|
26078
|
-
|
26079
|
-
|
26303
|
+
flex-direction: column;
|
26304
|
+
overflow-y: auto;
|
26305
|
+
}
|
26306
|
+
.v-infinite-scroll--vertical .v-infinite-scroll-intersect {
|
26307
|
+
height: 1px;
|
26080
26308
|
width: 100%;
|
26081
|
-
position: relative;
|
26082
|
-
z-index: 1;
|
26083
26309
|
}
|
26084
|
-
|
26085
|
-
|
26086
|
-
|
26310
|
+
|
26311
|
+
.v-infinite-scroll-intersect {
|
26312
|
+
pointer-events: none;
|
26313
|
+
margin-top: var(--v-infinite-margin);
|
26314
|
+
margin-bottom: calc(var(--v-infinite-margin) * -1);
|
26087
26315
|
}
|
26088
|
-
.v-
|
26089
|
-
|
26090
|
-
border-top-right-radius: 0 !important;
|
26316
|
+
.v-infinite-scroll-intersect:nth-child(2) {
|
26317
|
+
--v-infinite-margin: var(--v-infinite-margin-size, 1px);
|
26091
26318
|
}
|
26092
|
-
.v-
|
26093
|
-
|
26094
|
-
border-bottom-right-radius: 0 !important;
|
26319
|
+
.v-infinite-scroll-intersect:nth-last-child(2) {
|
26320
|
+
--v-infinite-margin: calc(var(--v-infinite-margin-size, 1px) * -1);
|
26095
26321
|
}
|
26096
|
-
|
26097
|
-
|
26098
|
-
|
26322
|
+
|
26323
|
+
.v-infinite-scroll__side {
|
26324
|
+
align-items: center;
|
26325
|
+
display: flex;
|
26326
|
+
justify-content: center;
|
26327
|
+
padding: 8px;
|
26328
|
+
}.v-layout-item {
|
26329
|
+
position: absolute;
|
26330
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
26099
26331
|
}
|
26100
|
-
|
26101
|
-
|
26102
|
-
|
26332
|
+
|
26333
|
+
.v-layout-item--absolute {
|
26334
|
+
position: absolute;
|
26335
|
+
}.v-layout {
|
26336
|
+
--v-scrollbar-offset: 0px;
|
26337
|
+
display: flex;
|
26338
|
+
flex: 1 1 auto;
|
26103
26339
|
}
|
26104
|
-
.v-
|
26105
|
-
|
26106
|
-
|
26340
|
+
.v-layout--full-height {
|
26341
|
+
--v-scrollbar-offset: inherit;
|
26342
|
+
height: 100%;
|
26343
|
+
}.v-speed-dial__content {
|
26344
|
+
gap: 8px;
|
26107
26345
|
}
|
26108
|
-
.v-
|
26109
|
-
|
26110
|
-
border-bottom-right-radius: initial;
|
26346
|
+
.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 {
|
26347
|
+
flex-direction: row;
|
26111
26348
|
}
|
26112
|
-
.v-
|
26113
|
-
|
26349
|
+
.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 {
|
26350
|
+
flex-direction: row-reverse;
|
26114
26351
|
}
|
26115
|
-
.v-
|
26116
|
-
|
26117
|
-
}
|
26118
|
-
|
26119
|
-
.v-expansion-panel {
|
26120
|
-
flex: 1 0 100%;
|
26121
|
-
max-width: 100%;
|
26122
|
-
position: relative;
|
26123
|
-
transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
|
26124
|
-
transition-property: margin-top, border-radius, border, max-width;
|
26125
|
-
border-radius: 4px;
|
26126
|
-
}
|
26127
|
-
.v-expansion-panel:not(:first-child)::after {
|
26128
|
-
border-top-style: solid;
|
26129
|
-
border-top-width: thin;
|
26130
|
-
content: "";
|
26131
|
-
left: 0;
|
26132
|
-
position: absolute;
|
26133
|
-
right: 0;
|
26134
|
-
top: 0;
|
26135
|
-
transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
26136
|
-
}
|
26137
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
26138
|
-
pointer-events: none;
|
26139
|
-
}
|
26140
|
-
.v-expansion-panel--active:not(:first-child),
|
26141
|
-
.v-expansion-panel--active + .v-expansion-panel {
|
26142
|
-
margin-top: 16px;
|
26143
|
-
}
|
26144
|
-
.v-expansion-panel--active:not(:first-child)::after,
|
26145
|
-
.v-expansion-panel--active + .v-expansion-panel::after {
|
26146
|
-
opacity: 0;
|
26147
|
-
}
|
26148
|
-
.v-expansion-panel--active > .v-expansion-panel-title {
|
26149
|
-
border-bottom-left-radius: 0;
|
26150
|
-
border-bottom-right-radius: 0;
|
26151
|
-
}
|
26152
|
-
.v-expansion-panel--active > .v-expansion-panel-title:not(.v-expansion-panel-title--static) {
|
26153
|
-
min-height: 64px;
|
26154
|
-
}
|
26155
|
-
|
26156
|
-
.v-expansion-panel__shadow {
|
26157
|
-
border-radius: inherit;
|
26158
|
-
z-index: -1;
|
26159
|
-
}
|
26160
|
-
.v-expansion-panel__shadow {
|
26161
|
-
position: absolute;
|
26162
|
-
top: 0;
|
26163
|
-
left: 0;
|
26164
|
-
width: 100%;
|
26165
|
-
height: 100%;
|
26166
|
-
}
|
26167
|
-
.v-expansion-panel__shadow {
|
26168
|
-
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));
|
26169
|
-
}
|
26170
|
-
|
26171
|
-
.v-expansion-panel-title {
|
26172
|
-
align-items: center;
|
26173
|
-
text-align: start;
|
26174
|
-
border-radius: inherit;
|
26175
|
-
display: flex;
|
26176
|
-
font-size: 0.9375rem;
|
26177
|
-
line-height: 1;
|
26178
|
-
min-height: 48px;
|
26179
|
-
outline: none;
|
26180
|
-
padding: 16px 24px;
|
26181
|
-
position: relative;
|
26182
|
-
transition: 0.3s min-height cubic-bezier(0.4, 0, 0.2, 1);
|
26183
|
-
width: 100%;
|
26184
|
-
justify-content: space-between;
|
26185
|
-
}
|
26186
|
-
.v-expansion-panel-title:hover > .v-expansion-panel-title__overlay {
|
26187
|
-
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
26352
|
+
.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 {
|
26353
|
+
flex-direction: column-reverse;
|
26188
26354
|
}
|
26189
|
-
.v-
|
26190
|
-
|
26355
|
+
.v-speed-dial__content > *:nth-child(1) {
|
26356
|
+
transition-delay: 0s;
|
26191
26357
|
}
|
26192
|
-
|
26193
|
-
|
26194
|
-
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
26195
|
-
}
|
26358
|
+
.v-speed-dial__content > *:nth-child(2) {
|
26359
|
+
transition-delay: 0.05s;
|
26196
26360
|
}
|
26197
|
-
.v-
|
26198
|
-
|
26361
|
+
.v-speed-dial__content > *:nth-child(3) {
|
26362
|
+
transition-delay: 0.1s;
|
26199
26363
|
}
|
26200
|
-
.v-
|
26201
|
-
|
26364
|
+
.v-speed-dial__content > *:nth-child(4) {
|
26365
|
+
transition-delay: 0.15s;
|
26202
26366
|
}
|
26203
|
-
.v-
|
26204
|
-
|
26367
|
+
.v-speed-dial__content > *:nth-child(5) {
|
26368
|
+
transition-delay: 0.2s;
|
26205
26369
|
}
|
26206
|
-
|
26207
|
-
|
26208
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
26209
|
-
}
|
26370
|
+
.v-speed-dial__content > *:nth-child(6) {
|
26371
|
+
transition-delay: 0.25s;
|
26210
26372
|
}
|
26211
|
-
|
26212
|
-
|
26213
|
-
background-color: currentColor;
|
26214
|
-
border-radius: inherit;
|
26215
|
-
opacity: 0;
|
26373
|
+
.v-speed-dial__content > *:nth-child(7) {
|
26374
|
+
transition-delay: 0.3s;
|
26216
26375
|
}
|
26217
|
-
.v-
|
26218
|
-
|
26219
|
-
top: 0;
|
26220
|
-
left: 0;
|
26221
|
-
width: 100%;
|
26222
|
-
height: 100%;
|
26376
|
+
.v-speed-dial__content > *:nth-child(8) {
|
26377
|
+
transition-delay: 0.35s;
|
26223
26378
|
}
|
26224
|
-
|
26225
|
-
|
26226
|
-
display: inline-flex;
|
26227
|
-
margin-bottom: -4px;
|
26228
|
-
margin-top: -4px;
|
26229
|
-
-webkit-user-select: none;
|
26230
|
-
user-select: none;
|
26231
|
-
margin-inline-start: auto;
|
26379
|
+
.v-speed-dial__content > *:nth-child(9) {
|
26380
|
+
transition-delay: 0.4s;
|
26232
26381
|
}
|
26233
|
-
|
26234
|
-
|
26382
|
+
.v-speed-dial__content > *:nth-child(10) {
|
26383
|
+
transition-delay: 0.45s;
|
26384
|
+
}.v-color-picker-canvas {
|
26235
26385
|
display: flex;
|
26236
|
-
}
|
26237
|
-
.v-expansion-panel-text__wrapper {
|
26238
|
-
padding: 8px 24px 16px;
|
26239
|
-
flex: 1 1 auto;
|
26240
|
-
max-width: 100%;
|
26241
|
-
}
|
26242
|
-
|
26243
|
-
.v-expansion-panels--variant-accordion > .v-expansion-panel {
|
26244
|
-
margin-top: 0;
|
26245
|
-
}
|
26246
|
-
.v-expansion-panels--variant-accordion > .v-expansion-panel::after {
|
26247
|
-
opacity: 1;
|
26248
|
-
}
|
26249
|
-
|
26250
|
-
.v-expansion-panels--variant-popout > .v-expansion-panel {
|
26251
|
-
max-width: calc(100% - 32px);
|
26252
|
-
}
|
26253
|
-
.v-expansion-panels--variant-popout > .v-expansion-panel--active {
|
26254
|
-
max-width: calc(100% + 16px);
|
26255
|
-
}
|
26256
|
-
|
26257
|
-
.v-expansion-panels--variant-inset > .v-expansion-panel {
|
26258
|
-
max-width: 100%;
|
26259
|
-
}
|
26260
|
-
.v-expansion-panels--variant-inset > .v-expansion-panel--active {
|
26261
|
-
max-width: calc(100% - 32px);
|
26262
|
-
}
|
26263
|
-
|
26264
|
-
.v-expansion-panels--flat > .v-expansion-panel::after {
|
26265
|
-
border-top: none;
|
26266
|
-
}
|
26267
|
-
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
26268
|
-
display: none;
|
26269
|
-
}
|
26270
|
-
|
26271
|
-
.v-expansion-panels--tile {
|
26272
|
-
border-radius: 0;
|
26273
|
-
}
|
26274
|
-
.v-expansion-panels--tile > .v-expansion-panel {
|
26275
|
-
border-radius: 0;
|
26276
|
-
}.v-progress-circular {
|
26277
|
-
align-items: center;
|
26278
|
-
display: inline-flex;
|
26279
|
-
justify-content: center;
|
26280
26386
|
position: relative;
|
26281
|
-
|
26387
|
+
overflow: hidden;
|
26388
|
+
contain: content;
|
26389
|
+
touch-action: none;
|
26282
26390
|
}
|
26283
|
-
.v-
|
26284
|
-
width: 100%;
|
26285
|
-
height: 100%;
|
26286
|
-
margin: auto;
|
26391
|
+
.v-color-picker-canvas__dot {
|
26287
26392
|
position: absolute;
|
26288
26393
|
top: 0;
|
26289
|
-
bottom: 0;
|
26290
26394
|
left: 0;
|
26291
|
-
|
26292
|
-
|
26293
|
-
|
26294
|
-
|
26295
|
-
|
26296
|
-
align-items: center;
|
26297
|
-
display: flex;
|
26298
|
-
justify-content: center;
|
26299
|
-
}
|
26300
|
-
|
26301
|
-
.v-progress-circular__underlay {
|
26302
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
26303
|
-
stroke: currentColor;
|
26304
|
-
z-index: 1;
|
26305
|
-
}
|
26306
|
-
|
26307
|
-
.v-progress-circular__overlay {
|
26308
|
-
stroke: currentColor;
|
26309
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
26310
|
-
z-index: 2;
|
26311
|
-
}
|
26312
|
-
|
26313
|
-
.v-progress-circular--size-x-small {
|
26314
|
-
height: 16px;
|
26315
|
-
width: 16px;
|
26316
|
-
}
|
26317
|
-
.v-progress-circular--size-small {
|
26318
|
-
height: 24px;
|
26319
|
-
width: 24px;
|
26320
|
-
}
|
26321
|
-
.v-progress-circular--size-default {
|
26322
|
-
height: 32px;
|
26323
|
-
width: 32px;
|
26324
|
-
}
|
26325
|
-
.v-progress-circular--size-large {
|
26326
|
-
height: 48px;
|
26327
|
-
width: 48px;
|
26328
|
-
}
|
26329
|
-
.v-progress-circular--size-x-large {
|
26330
|
-
height: 64px;
|
26331
|
-
width: 64px;
|
26332
|
-
}
|
26333
|
-
|
26334
|
-
.v-progress-circular--indeterminate > svg {
|
26335
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
26336
|
-
transform-origin: center center;
|
26337
|
-
transition: all 0.2s ease-in-out;
|
26338
|
-
}
|
26339
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
26340
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
26341
|
-
stroke-dasharray: 25, 200;
|
26342
|
-
stroke-dashoffset: 0;
|
26343
|
-
stroke-linecap: round;
|
26344
|
-
transform-origin: center center;
|
26345
|
-
transform: rotate(-90deg);
|
26346
|
-
}
|
26347
|
-
|
26348
|
-
.v-progress-circular--disable-shrink > svg {
|
26349
|
-
animation-duration: 0.7s;
|
26350
|
-
}
|
26351
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
26352
|
-
animation: none;
|
26353
|
-
}
|
26354
|
-
|
26355
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
26356
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
26357
|
-
animation-play-state: paused !important;
|
26358
|
-
}
|
26359
|
-
|
26360
|
-
@keyframes progress-circular-dash {
|
26361
|
-
0% {
|
26362
|
-
stroke-dasharray: 1, 200;
|
26363
|
-
stroke-dashoffset: 0px;
|
26364
|
-
}
|
26365
|
-
50% {
|
26366
|
-
stroke-dasharray: 100, 200;
|
26367
|
-
stroke-dashoffset: -15px;
|
26368
|
-
}
|
26369
|
-
100% {
|
26370
|
-
stroke-dasharray: 100, 200;
|
26371
|
-
stroke-dashoffset: -124px;
|
26372
|
-
}
|
26373
|
-
}
|
26374
|
-
@keyframes progress-circular-rotate {
|
26375
|
-
100% {
|
26376
|
-
transform: rotate(270deg);
|
26377
|
-
}
|
26378
|
-
}.v-color-picker-edit {
|
26379
|
-
display: flex;
|
26380
|
-
margin-top: 24px;
|
26381
|
-
}
|
26382
|
-
|
26383
|
-
.v-color-picker-edit__input {
|
26384
|
-
width: 100%;
|
26385
|
-
display: flex;
|
26386
|
-
flex-wrap: wrap;
|
26387
|
-
justify-content: center;
|
26388
|
-
text-align: center;
|
26389
|
-
}
|
26390
|
-
.v-color-picker-edit__input:not(:last-child) {
|
26391
|
-
margin-inline-end: 8px;
|
26395
|
+
width: 15px;
|
26396
|
+
height: 15px;
|
26397
|
+
background: transparent;
|
26398
|
+
border-radius: 50%;
|
26399
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26392
26400
|
}
|
26393
|
-
.v-color-picker-
|
26394
|
-
|
26395
|
-
margin-bottom: 8px;
|
26396
|
-
min-width: 0;
|
26397
|
-
outline: none;
|
26398
|
-
text-align: center;
|
26399
|
-
width: 100%;
|
26400
|
-
height: 32px;
|
26401
|
-
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26402
|
-
color: rgba(var(--v-theme-on-surface));
|
26401
|
+
.v-color-picker-canvas__dot--disabled {
|
26402
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26403
26403
|
}
|
26404
|
-
.v-color-picker-
|
26405
|
-
|
26404
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26405
|
+
will-change: transform;
|
26406
26406
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26407
26407
|
background-color: transparent !important;
|
26408
26408
|
}
|
@@ -26473,28 +26473,34 @@ html.v-overlay-scroll-blocked {
|
|
26473
26473
|
.v-color-picker-preview__eye-dropper {
|
26474
26474
|
position: relative;
|
26475
26475
|
margin-right: 12px;
|
26476
|
-
}.v-color-picker-
|
26476
|
+
}.v-color-picker-edit {
|
26477
26477
|
display: flex;
|
26478
|
-
|
26479
|
-
overflow: hidden;
|
26480
|
-
contain: content;
|
26481
|
-
touch-action: none;
|
26478
|
+
margin-top: 24px;
|
26482
26479
|
}
|
26483
|
-
|
26484
|
-
|
26485
|
-
|
26486
|
-
|
26487
|
-
|
26488
|
-
|
26489
|
-
|
26490
|
-
border-radius: 50%;
|
26491
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26480
|
+
|
26481
|
+
.v-color-picker-edit__input {
|
26482
|
+
width: 100%;
|
26483
|
+
display: flex;
|
26484
|
+
flex-wrap: wrap;
|
26485
|
+
justify-content: center;
|
26486
|
+
text-align: center;
|
26492
26487
|
}
|
26493
|
-
.v-color-picker-
|
26494
|
-
|
26488
|
+
.v-color-picker-edit__input:not(:last-child) {
|
26489
|
+
margin-inline-end: 8px;
|
26495
26490
|
}
|
26496
|
-
.v-color-picker-
|
26497
|
-
|
26491
|
+
.v-color-picker-edit__input input {
|
26492
|
+
border-radius: 4px;
|
26493
|
+
margin-bottom: 8px;
|
26494
|
+
min-width: 0;
|
26495
|
+
outline: none;
|
26496
|
+
text-align: center;
|
26497
|
+
width: 100%;
|
26498
|
+
height: 32px;
|
26499
|
+
background: rgba(var(--v-theme-surface-variant), 0.2);
|
26500
|
+
color: rgba(var(--v-theme-on-surface));
|
26501
|
+
}
|
26502
|
+
.v-color-picker-edit__input span {
|
26503
|
+
font-size: 0.75rem;
|
26498
26504
|
}.v-color-picker-swatches {
|
26499
26505
|
overflow-y: auto;
|
26500
26506
|
}
|