@vuetify/nightly 3.7.18-master.2025-03-22 → 3.7.18-master.2025-03-25
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 +22 -3
- package/dist/json/attributes.json +3634 -3622
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +146 -146
- package/dist/json/tags.json +3 -0
- package/dist/json/web-types.json +6658 -6608
- package/dist/vuetify-labs.css +2562 -2562
- package/dist/vuetify-labs.d.ts +39 -0
- package/dist/vuetify-labs.esm.js +77 -21
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +77 -21
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1734 -1734
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +4 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/lib/labs/VDateInput/VDateInput.mjs +75 -18
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +43 -0
- package/lib/labs/components.d.mts +43 -4
- package/lib/util/helpers.mjs +1 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.18-master.2025-03-
|
2
|
+
* Vuetify v3.7.18-master.2025-03-25
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -18222,6 +18222,168 @@ html.overflow-y-hidden {
|
|
18222
18222
|
}
|
18223
18223
|
.v-app-bar:not(.v-toolbar--absolute) {
|
18224
18224
|
padding-inline-end: var(--v-scrollbar-offset);
|
18225
|
+
}.v-badge {
|
18226
|
+
display: inline-block;
|
18227
|
+
line-height: 1;
|
18228
|
+
}
|
18229
|
+
|
18230
|
+
.v-badge__badge {
|
18231
|
+
align-items: center;
|
18232
|
+
display: inline-flex;
|
18233
|
+
border-radius: 10px;
|
18234
|
+
font-family: "Roboto", sans-serif;
|
18235
|
+
font-size: 0.75rem;
|
18236
|
+
font-weight: 500;
|
18237
|
+
height: 1.25rem;
|
18238
|
+
justify-content: center;
|
18239
|
+
min-width: 20px;
|
18240
|
+
padding: 4px 6px;
|
18241
|
+
pointer-events: auto;
|
18242
|
+
position: absolute;
|
18243
|
+
text-align: center;
|
18244
|
+
text-indent: 0;
|
18245
|
+
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18246
|
+
white-space: nowrap;
|
18247
|
+
}
|
18248
|
+
.v-badge__badge {
|
18249
|
+
background: rgb(var(--v-theme-surface-variant));
|
18250
|
+
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18251
|
+
}
|
18252
|
+
.v-badge__badge:has(.v-icon) {
|
18253
|
+
padding: 4px 6px;
|
18254
|
+
}
|
18255
|
+
.v-badge--bordered .v-badge__badge::after {
|
18256
|
+
border-radius: inherit;
|
18257
|
+
border-style: solid;
|
18258
|
+
border-width: 2px;
|
18259
|
+
bottom: 0;
|
18260
|
+
color: rgb(var(--v-theme-background));
|
18261
|
+
content: "";
|
18262
|
+
left: 0;
|
18263
|
+
position: absolute;
|
18264
|
+
right: 0;
|
18265
|
+
top: 0;
|
18266
|
+
transform: scale(1.05);
|
18267
|
+
}
|
18268
|
+
.v-badge--dot .v-badge__badge {
|
18269
|
+
border-radius: 4.5px;
|
18270
|
+
height: 9px;
|
18271
|
+
min-width: 0;
|
18272
|
+
padding: 0;
|
18273
|
+
width: 9px;
|
18274
|
+
}
|
18275
|
+
.v-badge--dot .v-badge__badge::after {
|
18276
|
+
border-width: 1.5px;
|
18277
|
+
}
|
18278
|
+
.v-badge--inline .v-badge__badge {
|
18279
|
+
position: relative;
|
18280
|
+
vertical-align: middle;
|
18281
|
+
}
|
18282
|
+
.v-badge__badge .v-icon {
|
18283
|
+
color: inherit;
|
18284
|
+
font-size: 0.75rem;
|
18285
|
+
margin: 0 -2px;
|
18286
|
+
}
|
18287
|
+
.v-badge__badge img,
|
18288
|
+
.v-badge__badge .v-img {
|
18289
|
+
height: 100%;
|
18290
|
+
width: 100%;
|
18291
|
+
}
|
18292
|
+
|
18293
|
+
.v-badge__wrapper {
|
18294
|
+
display: flex;
|
18295
|
+
position: relative;
|
18296
|
+
}
|
18297
|
+
.v-badge--inline .v-badge__wrapper {
|
18298
|
+
align-items: center;
|
18299
|
+
display: inline-flex;
|
18300
|
+
justify-content: center;
|
18301
|
+
margin: 0 4px;
|
18302
|
+
}.v-autocomplete .v-field .v-text-field__prefix,
|
18303
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
18304
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
18305
|
+
cursor: text;
|
18306
|
+
}
|
18307
|
+
.v-autocomplete .v-field .v-field__input > input {
|
18308
|
+
flex: 1 1;
|
18309
|
+
}
|
18310
|
+
.v-autocomplete .v-field input {
|
18311
|
+
min-width: 64px;
|
18312
|
+
}
|
18313
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
18314
|
+
min-width: 0;
|
18315
|
+
}
|
18316
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
18317
|
+
margin-inline-end: 2px;
|
18318
|
+
}
|
18319
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
18320
|
+
overflow: hidden;
|
18321
|
+
text-overflow: ellipsis;
|
18322
|
+
white-space: nowrap;
|
18323
|
+
}
|
18324
|
+
|
18325
|
+
.v-autocomplete__content {
|
18326
|
+
overflow: hidden;
|
18327
|
+
}
|
18328
|
+
.v-autocomplete__content {
|
18329
|
+
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));
|
18330
|
+
}
|
18331
|
+
.v-autocomplete__content {
|
18332
|
+
border-radius: 4px;
|
18333
|
+
}
|
18334
|
+
.v-autocomplete__mask {
|
18335
|
+
background: rgb(var(--v-theme-surface-light));
|
18336
|
+
}
|
18337
|
+
.v-autocomplete__selection {
|
18338
|
+
display: inline-flex;
|
18339
|
+
align-items: center;
|
18340
|
+
height: 1.5rem;
|
18341
|
+
letter-spacing: inherit;
|
18342
|
+
line-height: inherit;
|
18343
|
+
max-width: calc(100% - 2px - 2px);
|
18344
|
+
}
|
18345
|
+
.v-autocomplete__selection:first-child {
|
18346
|
+
margin-inline-start: 0;
|
18347
|
+
}
|
18348
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
18349
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
18350
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18351
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18352
|
+
top: 0px;
|
18353
|
+
}
|
18354
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
18355
|
+
opacity: var(--v-medium-emphasis-opacity);
|
18356
|
+
}
|
18357
|
+
.v-autocomplete--selecting-index .v-autocomplete__selection--selected {
|
18358
|
+
opacity: 1;
|
18359
|
+
}
|
18360
|
+
.v-autocomplete--selecting-index .v-field__input > input {
|
18361
|
+
caret-color: transparent;
|
18362
|
+
}
|
18363
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field input {
|
18364
|
+
flex: 1 1;
|
18365
|
+
position: absolute;
|
18366
|
+
left: 0;
|
18367
|
+
right: 0;
|
18368
|
+
width: 100%;
|
18369
|
+
padding-inline: inherit;
|
18370
|
+
}
|
18371
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18372
|
+
transition: none;
|
18373
|
+
}
|
18374
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
18375
|
+
opacity: 0;
|
18376
|
+
}
|
18377
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
18378
|
+
opacity: 0;
|
18379
|
+
}
|
18380
|
+
.v-autocomplete__menu-icon {
|
18381
|
+
margin-inline-start: 4px;
|
18382
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
18383
|
+
}
|
18384
|
+
.v-autocomplete--active-menu .v-autocomplete__menu-icon {
|
18385
|
+
opacity: var(--v-high-emphasis-opacity);
|
18386
|
+
transform: rotate(180deg);
|
18225
18387
|
}.v-avatar {
|
18226
18388
|
flex: none;
|
18227
18389
|
align-items: center;
|
@@ -18328,168 +18490,127 @@ html.overflow-y-hidden {
|
|
18328
18490
|
.v-avatar .v-img {
|
18329
18491
|
height: 100%;
|
18330
18492
|
width: 100%;
|
18331
|
-
}.v-
|
18332
|
-
|
18333
|
-
|
18334
|
-
|
18335
|
-
|
18336
|
-
.
|
18337
|
-
flex: 1 1;
|
18338
|
-
}
|
18339
|
-
.v-autocomplete .v-field input {
|
18340
|
-
min-width: 64px;
|
18493
|
+
}.v-bottom-navigation {
|
18494
|
+
display: flex;
|
18495
|
+
max-width: 100%;
|
18496
|
+
overflow: hidden;
|
18497
|
+
position: absolute;
|
18498
|
+
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18341
18499
|
}
|
18342
|
-
.v-
|
18343
|
-
|
18500
|
+
.v-bottom-navigation {
|
18501
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18502
|
+
border-style: solid;
|
18503
|
+
border-width: 0;
|
18344
18504
|
}
|
18345
|
-
.v-
|
18346
|
-
|
18505
|
+
.v-bottom-navigation--border {
|
18506
|
+
border-width: thin;
|
18507
|
+
box-shadow: none;
|
18347
18508
|
}
|
18348
|
-
.v-
|
18349
|
-
|
18350
|
-
text-overflow: ellipsis;
|
18351
|
-
white-space: nowrap;
|
18509
|
+
.v-bottom-navigation {
|
18510
|
+
border-radius: 0;
|
18352
18511
|
}
|
18353
|
-
|
18354
|
-
|
18355
|
-
|
18512
|
+
.v-bottom-navigation {
|
18513
|
+
background: rgb(var(--v-theme-surface));
|
18514
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18356
18515
|
}
|
18357
|
-
.v-
|
18516
|
+
.v-bottom-navigation--active {
|
18358
18517
|
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));
|
18359
18518
|
}
|
18360
|
-
|
18361
|
-
|
18519
|
+
|
18520
|
+
.v-bottom-navigation__content {
|
18521
|
+
display: flex;
|
18522
|
+
flex: none;
|
18523
|
+
font-size: 0.75rem;
|
18524
|
+
justify-content: center;
|
18525
|
+
transition: inherit;
|
18526
|
+
width: 100%;
|
18362
18527
|
}
|
18363
|
-
.v-
|
18364
|
-
|
18528
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18529
|
+
font-size: inherit;
|
18530
|
+
height: 100%;
|
18531
|
+
max-width: 168px;
|
18532
|
+
min-width: 80px;
|
18533
|
+
text-transform: none;
|
18534
|
+
transition: inherit;
|
18535
|
+
width: auto;
|
18365
18536
|
}
|
18366
|
-
.v-
|
18367
|
-
|
18368
|
-
align-items: center;
|
18369
|
-
height: 1.5rem;
|
18370
|
-
letter-spacing: inherit;
|
18371
|
-
line-height: inherit;
|
18372
|
-
max-width: calc(100% - 2px - 2px);
|
18537
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18538
|
+
border-radius: 0;
|
18373
18539
|
}
|
18374
|
-
.v-
|
18375
|
-
|
18540
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
18541
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18542
|
+
transition: inherit;
|
18376
18543
|
}
|
18377
|
-
.v-
|
18378
|
-
|
18379
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
18380
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
18381
|
-
top: 0px;
|
18544
|
+
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18545
|
+
font-size: 1.5rem;
|
18382
18546
|
}
|
18383
|
-
.v-
|
18384
|
-
|
18547
|
+
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
18548
|
+
flex-basis: 0;
|
18549
|
+
flex-grow: 1;
|
18385
18550
|
}
|
18386
|
-
.v-
|
18387
|
-
|
18551
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
18552
|
+
transition: inherit;
|
18553
|
+
opacity: 0;
|
18388
18554
|
}
|
18389
|
-
.v-
|
18390
|
-
|
18391
|
-
}
|
18392
|
-
|
18393
|
-
|
18394
|
-
|
18395
|
-
|
18396
|
-
right: 0;
|
18397
|
-
width: 100%;
|
18398
|
-
padding-inline: inherit;
|
18399
|
-
}
|
18400
|
-
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
18401
|
-
transition: none;
|
18555
|
+
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18556
|
+
transform: translateY(0.5rem);
|
18557
|
+
}.v-breadcrumbs {
|
18558
|
+
display: flex;
|
18559
|
+
align-items: center;
|
18560
|
+
line-height: 1.6;
|
18561
|
+
padding: 16px 12px;
|
18402
18562
|
}
|
18403
|
-
.v-
|
18404
|
-
|
18563
|
+
.v-breadcrumbs--rounded {
|
18564
|
+
border-radius: 4px;
|
18405
18565
|
}
|
18406
|
-
.v-
|
18407
|
-
|
18566
|
+
.v-breadcrumbs--density-default {
|
18567
|
+
padding-top: 16px;
|
18568
|
+
padding-bottom: 16px;
|
18408
18569
|
}
|
18409
|
-
|
18410
|
-
|
18411
|
-
|
18570
|
+
|
18571
|
+
.v-breadcrumbs--density-comfortable {
|
18572
|
+
padding-top: 12px;
|
18573
|
+
padding-bottom: 12px;
|
18412
18574
|
}
|
18413
|
-
|
18414
|
-
|
18415
|
-
|
18416
|
-
|
18417
|
-
display: inline-block;
|
18418
|
-
line-height: 1;
|
18575
|
+
|
18576
|
+
.v-breadcrumbs--density-compact {
|
18577
|
+
padding-top: 8px;
|
18578
|
+
padding-bottom: 8px;
|
18419
18579
|
}
|
18420
18580
|
|
18421
|
-
.v-
|
18581
|
+
.v-breadcrumbs__prepend {
|
18422
18582
|
align-items: center;
|
18423
18583
|
display: inline-flex;
|
18424
|
-
border-radius: 10px;
|
18425
|
-
font-family: "Roboto", sans-serif;
|
18426
|
-
font-size: 0.75rem;
|
18427
|
-
font-weight: 500;
|
18428
|
-
height: 1.25rem;
|
18429
|
-
justify-content: center;
|
18430
|
-
min-width: 20px;
|
18431
|
-
padding: 4px 6px;
|
18432
|
-
pointer-events: auto;
|
18433
|
-
position: absolute;
|
18434
|
-
text-align: center;
|
18435
|
-
text-indent: 0;
|
18436
|
-
transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
|
18437
|
-
white-space: nowrap;
|
18438
|
-
}
|
18439
|
-
.v-badge__badge {
|
18440
|
-
background: rgb(var(--v-theme-surface-variant));
|
18441
|
-
color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
|
18442
18584
|
}
|
18443
|
-
|
18444
|
-
|
18445
|
-
|
18446
|
-
|
18447
|
-
|
18448
|
-
|
18449
|
-
|
18450
|
-
bottom: 0;
|
18451
|
-
color: rgb(var(--v-theme-background));
|
18452
|
-
content: "";
|
18453
|
-
left: 0;
|
18454
|
-
position: absolute;
|
18455
|
-
right: 0;
|
18456
|
-
top: 0;
|
18457
|
-
transform: scale(1.05);
|
18458
|
-
}
|
18459
|
-
.v-badge--dot .v-badge__badge {
|
18460
|
-
border-radius: 4.5px;
|
18461
|
-
height: 9px;
|
18462
|
-
min-width: 0;
|
18463
|
-
padding: 0;
|
18464
|
-
width: 9px;
|
18465
|
-
}
|
18466
|
-
.v-badge--dot .v-badge__badge::after {
|
18467
|
-
border-width: 1.5px;
|
18468
|
-
}
|
18469
|
-
.v-badge--inline .v-badge__badge {
|
18470
|
-
position: relative;
|
18585
|
+
|
18586
|
+
.v-breadcrumbs-item {
|
18587
|
+
align-items: center;
|
18588
|
+
color: inherit;
|
18589
|
+
display: inline-flex;
|
18590
|
+
padding: 0 4px;
|
18591
|
+
text-decoration: none;
|
18471
18592
|
vertical-align: middle;
|
18472
18593
|
}
|
18473
|
-
.v-
|
18594
|
+
.v-breadcrumbs-item--disabled {
|
18595
|
+
opacity: var(--v-disabled-opacity);
|
18596
|
+
pointer-events: none;
|
18597
|
+
}
|
18598
|
+
.v-breadcrumbs-item--link {
|
18474
18599
|
color: inherit;
|
18475
|
-
|
18476
|
-
margin: 0 -2px;
|
18600
|
+
text-decoration: none;
|
18477
18601
|
}
|
18478
|
-
.v-
|
18479
|
-
|
18480
|
-
height: 100%;
|
18481
|
-
width: 100%;
|
18602
|
+
.v-breadcrumbs-item--link:hover {
|
18603
|
+
text-decoration: underline;
|
18482
18604
|
}
|
18483
|
-
|
18484
|
-
|
18485
|
-
|
18486
|
-
position: relative;
|
18605
|
+
.v-breadcrumbs-item .v-icon {
|
18606
|
+
font-size: 1rem;
|
18607
|
+
margin-inline: -4px 2px;
|
18487
18608
|
}
|
18488
|
-
|
18489
|
-
|
18490
|
-
display: inline-
|
18491
|
-
|
18492
|
-
|
18609
|
+
|
18610
|
+
.v-breadcrumbs-divider {
|
18611
|
+
display: inline-block;
|
18612
|
+
padding: 0 8px;
|
18613
|
+
vertical-align: middle;
|
18493
18614
|
}.v-banner {
|
18494
18615
|
display: grid;
|
18495
18616
|
flex: 1 1;
|
@@ -18656,70 +18777,6 @@ html.overflow-y-hidden {
|
|
18656
18777
|
}
|
18657
18778
|
.v-banner--two-line .v-banner-text, .v-banner--three-line .v-banner-text {
|
18658
18779
|
align-self: flex-start;
|
18659
|
-
}.v-bottom-navigation {
|
18660
|
-
display: flex;
|
18661
|
-
max-width: 100%;
|
18662
|
-
overflow: hidden;
|
18663
|
-
position: absolute;
|
18664
|
-
transition: transform, color, 0.2s, 0.1s cubic-bezier(0.4, 0, 0.2, 1);
|
18665
|
-
}
|
18666
|
-
.v-bottom-navigation {
|
18667
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18668
|
-
border-style: solid;
|
18669
|
-
border-width: 0;
|
18670
|
-
}
|
18671
|
-
.v-bottom-navigation--border {
|
18672
|
-
border-width: thin;
|
18673
|
-
box-shadow: none;
|
18674
|
-
}
|
18675
|
-
.v-bottom-navigation {
|
18676
|
-
border-radius: 0;
|
18677
|
-
}
|
18678
|
-
.v-bottom-navigation {
|
18679
|
-
background: rgb(var(--v-theme-surface));
|
18680
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18681
|
-
}
|
18682
|
-
.v-bottom-navigation--active {
|
18683
|
-
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));
|
18684
|
-
}
|
18685
|
-
|
18686
|
-
.v-bottom-navigation__content {
|
18687
|
-
display: flex;
|
18688
|
-
flex: none;
|
18689
|
-
font-size: 0.75rem;
|
18690
|
-
justify-content: center;
|
18691
|
-
transition: inherit;
|
18692
|
-
width: 100%;
|
18693
|
-
}
|
18694
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18695
|
-
font-size: inherit;
|
18696
|
-
height: 100%;
|
18697
|
-
max-width: 168px;
|
18698
|
-
min-width: 80px;
|
18699
|
-
text-transform: none;
|
18700
|
-
transition: inherit;
|
18701
|
-
width: auto;
|
18702
|
-
}
|
18703
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn {
|
18704
|
-
border-radius: 0;
|
18705
|
-
}
|
18706
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__content,
|
18707
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18708
|
-
transition: inherit;
|
18709
|
-
}
|
18710
|
-
.v-bottom-navigation .v-bottom-navigation__content > .v-btn .v-btn__icon {
|
18711
|
-
font-size: 1.5rem;
|
18712
|
-
}
|
18713
|
-
.v-bottom-navigation--grow .v-bottom-navigation__content > .v-btn {
|
18714
|
-
flex-basis: 0;
|
18715
|
-
flex-grow: 1;
|
18716
|
-
}
|
18717
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
|
18718
|
-
transition: inherit;
|
18719
|
-
opacity: 0;
|
18720
|
-
}
|
18721
|
-
.v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
|
18722
|
-
transform: translateY(0.5rem);
|
18723
18780
|
}.bottom-sheet-transition-enter-from {
|
18724
18781
|
transform: translateY(100%);
|
18725
18782
|
}
|
@@ -18754,63 +18811,86 @@ html.overflow-y-hidden {
|
|
18754
18811
|
.v-bottom-sheet.v-bottom-sheet--inset {
|
18755
18812
|
max-width: 70%;
|
18756
18813
|
}
|
18757
|
-
}.v-
|
18758
|
-
display: flex;
|
18759
|
-
|
18760
|
-
|
18761
|
-
|
18814
|
+
}.v-btn-group {
|
18815
|
+
display: inline-flex;
|
18816
|
+
flex-wrap: nowrap;
|
18817
|
+
max-width: 100%;
|
18818
|
+
min-width: 0;
|
18819
|
+
overflow: hidden;
|
18820
|
+
vertical-align: middle;
|
18762
18821
|
}
|
18763
|
-
.v-
|
18822
|
+
.v-btn-group {
|
18823
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18824
|
+
border-style: solid;
|
18825
|
+
border-width: 0;
|
18826
|
+
}
|
18827
|
+
.v-btn-group--border {
|
18828
|
+
border-width: thin;
|
18829
|
+
box-shadow: none;
|
18830
|
+
}
|
18831
|
+
.v-btn-group {
|
18832
|
+
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));
|
18833
|
+
}
|
18834
|
+
.v-btn-group {
|
18764
18835
|
border-radius: 4px;
|
18765
18836
|
}
|
18766
|
-
.v-
|
18767
|
-
|
18768
|
-
|
18837
|
+
.v-btn-group {
|
18838
|
+
background: transparent;
|
18839
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
18769
18840
|
}
|
18770
|
-
|
18771
|
-
|
18772
|
-
padding-top: 12px;
|
18773
|
-
padding-bottom: 12px;
|
18841
|
+
.v-btn-group--density-default.v-btn-group {
|
18842
|
+
height: 48px;
|
18774
18843
|
}
|
18775
18844
|
|
18776
|
-
.v-
|
18777
|
-
|
18778
|
-
padding-bottom: 8px;
|
18845
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
18846
|
+
height: 40px;
|
18779
18847
|
}
|
18780
18848
|
|
18781
|
-
.v-
|
18782
|
-
|
18783
|
-
display: inline-flex;
|
18849
|
+
.v-btn-group--density-compact.v-btn-group {
|
18850
|
+
height: 36px;
|
18784
18851
|
}
|
18785
18852
|
|
18786
|
-
.v-
|
18787
|
-
|
18788
|
-
color: inherit;
|
18789
|
-
display: inline-flex;
|
18790
|
-
padding: 0 4px;
|
18791
|
-
text-decoration: none;
|
18792
|
-
vertical-align: middle;
|
18853
|
+
.v-btn-group .v-btn {
|
18854
|
+
border-radius: 0;
|
18855
|
+
border-color: inherit;
|
18793
18856
|
}
|
18794
|
-
.v-
|
18795
|
-
|
18796
|
-
pointer-events: none;
|
18857
|
+
.v-btn-group .v-btn:not(:last-child) {
|
18858
|
+
border-inline-end: none;
|
18797
18859
|
}
|
18798
|
-
.v-
|
18799
|
-
|
18800
|
-
text-decoration: none;
|
18860
|
+
.v-btn-group .v-btn:not(:first-child) {
|
18861
|
+
border-inline-start: none;
|
18801
18862
|
}
|
18802
|
-
.v-
|
18803
|
-
|
18863
|
+
.v-btn-group .v-btn:first-child {
|
18864
|
+
border-start-start-radius: inherit;
|
18865
|
+
border-end-start-radius: inherit;
|
18804
18866
|
}
|
18805
|
-
.v-
|
18806
|
-
|
18807
|
-
|
18867
|
+
.v-btn-group .v-btn:last-child {
|
18868
|
+
border-start-end-radius: inherit;
|
18869
|
+
border-end-end-radius: inherit;
|
18808
18870
|
}
|
18809
|
-
|
18810
|
-
|
18811
|
-
|
18812
|
-
|
18813
|
-
|
18871
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
18872
|
+
border-inline-end-width: thin;
|
18873
|
+
border-inline-end-style: solid;
|
18874
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
18875
|
+
}
|
18876
|
+
.v-btn-group--tile {
|
18877
|
+
border-radius: 0;
|
18878
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
18879
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
18880
|
+
}
|
18881
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
18882
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
18883
|
+
}
|
18884
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
18885
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18886
|
+
}
|
18887
|
+
@supports not selector(:focus-visible) {
|
18888
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
18889
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
18890
|
+
}
|
18891
|
+
}
|
18892
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
18893
|
+
opacity: 1;
|
18814
18894
|
}.v-btn {
|
18815
18895
|
align-items: center;
|
18816
18896
|
border-radius: 4px;
|
@@ -19235,86 +19315,6 @@ html.overflow-y-hidden {
|
|
19235
19315
|
}
|
19236
19316
|
.v-pagination .v-pagination__item--is-active .v-btn__overlay {
|
19237
19317
|
opacity: var(--v-border-opacity);
|
19238
|
-
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
19239
|
-
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
19240
|
-
}
|
19241
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
19242
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
19243
|
-
}
|
19244
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
19245
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19246
|
-
}
|
19247
|
-
@supports not selector(:focus-visible) {
|
19248
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
19249
|
-
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
19250
|
-
}
|
19251
|
-
}
|
19252
|
-
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled).v-btn--variant-plain {
|
19253
|
-
opacity: 1;
|
19254
|
-
}.v-btn-group {
|
19255
|
-
display: inline-flex;
|
19256
|
-
flex-wrap: nowrap;
|
19257
|
-
max-width: 100%;
|
19258
|
-
min-width: 0;
|
19259
|
-
overflow: hidden;
|
19260
|
-
vertical-align: middle;
|
19261
|
-
}
|
19262
|
-
.v-btn-group {
|
19263
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19264
|
-
border-style: solid;
|
19265
|
-
border-width: 0;
|
19266
|
-
}
|
19267
|
-
.v-btn-group--border {
|
19268
|
-
border-width: thin;
|
19269
|
-
box-shadow: none;
|
19270
|
-
}
|
19271
|
-
.v-btn-group {
|
19272
|
-
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));
|
19273
|
-
}
|
19274
|
-
.v-btn-group {
|
19275
|
-
border-radius: 4px;
|
19276
|
-
}
|
19277
|
-
.v-btn-group {
|
19278
|
-
background: transparent;
|
19279
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
19280
|
-
}
|
19281
|
-
.v-btn-group--density-default.v-btn-group {
|
19282
|
-
height: 48px;
|
19283
|
-
}
|
19284
|
-
|
19285
|
-
.v-btn-group--density-comfortable.v-btn-group {
|
19286
|
-
height: 40px;
|
19287
|
-
}
|
19288
|
-
|
19289
|
-
.v-btn-group--density-compact.v-btn-group {
|
19290
|
-
height: 36px;
|
19291
|
-
}
|
19292
|
-
|
19293
|
-
.v-btn-group .v-btn {
|
19294
|
-
border-radius: 0;
|
19295
|
-
border-color: inherit;
|
19296
|
-
}
|
19297
|
-
.v-btn-group .v-btn:not(:last-child) {
|
19298
|
-
border-inline-end: none;
|
19299
|
-
}
|
19300
|
-
.v-btn-group .v-btn:not(:first-child) {
|
19301
|
-
border-inline-start: none;
|
19302
|
-
}
|
19303
|
-
.v-btn-group .v-btn:first-child {
|
19304
|
-
border-start-start-radius: inherit;
|
19305
|
-
border-end-start-radius: inherit;
|
19306
|
-
}
|
19307
|
-
.v-btn-group .v-btn:last-child {
|
19308
|
-
border-start-end-radius: inherit;
|
19309
|
-
border-end-end-radius: inherit;
|
19310
|
-
}
|
19311
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
19312
|
-
border-inline-end-width: thin;
|
19313
|
-
border-inline-end-style: solid;
|
19314
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
19315
|
-
}
|
19316
|
-
.v-btn-group--tile {
|
19317
|
-
border-radius: 0;
|
19318
19318
|
}.v-carousel {
|
19319
19319
|
overflow: hidden;
|
19320
19320
|
position: relative;
|
@@ -19688,6 +19688,11 @@ html.overflow-y-hidden {
|
|
19688
19688
|
pointer-events: none;
|
19689
19689
|
opacity: 0;
|
19690
19690
|
transition: opacity 0.2s ease-in-out;
|
19691
|
+
}.v-checkbox.v-input {
|
19692
|
+
flex: 0 1 auto;
|
19693
|
+
}
|
19694
|
+
.v-checkbox .v-selection-control {
|
19695
|
+
min-height: var(--v-input-control-height);
|
19691
19696
|
}.v-chip {
|
19692
19697
|
align-items: center;
|
19693
19698
|
display: inline-flex;
|
@@ -20124,11 +20129,6 @@ html.overflow-y-hidden {
|
|
20124
20129
|
white-space: normal;
|
20125
20130
|
flex-wrap: wrap;
|
20126
20131
|
max-width: 100%;
|
20127
|
-
}.v-checkbox.v-input {
|
20128
|
-
flex: 0 1 auto;
|
20129
|
-
}
|
20130
|
-
.v-checkbox .v-selection-control {
|
20131
|
-
min-height: var(--v-input-control-height);
|
20132
20132
|
}.v-color-picker {
|
20133
20133
|
align-self: flex-start;
|
20134
20134
|
contain: content;
|
@@ -20151,11 +20151,6 @@ html.overflow-y-hidden {
|
|
20151
20151
|
}
|
20152
20152
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
20153
20153
|
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));
|
20154
|
-
}.v-counter {
|
20155
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20156
|
-
flex: 0 1 auto;
|
20157
|
-
font-size: 12px;
|
20158
|
-
transition-duration: 150ms;
|
20159
20154
|
}.v-combobox .v-field .v-text-field__prefix,
|
20160
20155
|
.v-combobox .v-field .v-text-field__suffix,
|
20161
20156
|
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
@@ -20241,277 +20236,71 @@ html.overflow-y-hidden {
|
|
20241
20236
|
.v-combobox--active-menu .v-combobox__menu-icon {
|
20242
20237
|
opacity: var(--v-high-emphasis-opacity);
|
20243
20238
|
transform: rotate(180deg);
|
20244
|
-
}.v-
|
20245
|
-
|
20246
|
-
|
20247
|
-
|
20248
|
-
|
20249
|
-
|
20250
|
-
|
20251
|
-
display: flex;
|
20252
|
-
align-items: center;
|
20253
|
-
justify-content: space-between;
|
20254
|
-
font-size: 0.875rem;
|
20255
|
-
padding-top: 4px;
|
20256
|
-
padding-bottom: 4px;
|
20257
|
-
padding-inline-start: 6px;
|
20258
|
-
padding-inline-end: 12px;
|
20259
|
-
}
|
20260
|
-
.v-date-picker-controls > .v-btn:first-child {
|
20261
|
-
text-transform: none;
|
20262
|
-
font-weight: 400;
|
20263
|
-
line-height: initial;
|
20264
|
-
letter-spacing: initial;
|
20239
|
+
}.v-counter {
|
20240
|
+
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
20241
|
+
flex: 0 1 auto;
|
20242
|
+
font-size: 12px;
|
20243
|
+
transition-duration: 150ms;
|
20244
|
+
}.v-data-table {
|
20245
|
+
width: 100%;
|
20265
20246
|
}
|
20266
|
-
|
20267
|
-
|
20247
|
+
|
20248
|
+
.v-data-table__table {
|
20249
|
+
width: 100%;
|
20250
|
+
border-collapse: separate;
|
20251
|
+
border-spacing: 0;
|
20268
20252
|
}
|
20269
|
-
|
20270
|
-
|
20253
|
+
|
20254
|
+
.v-data-table__tr--focus {
|
20255
|
+
border: 1px dotted black;
|
20271
20256
|
}
|
20272
|
-
.v-
|
20257
|
+
.v-data-table__tr--clickable {
|
20273
20258
|
cursor: pointer;
|
20274
20259
|
}
|
20275
|
-
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20276
|
-
opacity: 1;
|
20277
|
-
}
|
20278
|
-
.v-date-picker-controls .v-btn:last-child {
|
20279
|
-
margin-inline-start: 4px;
|
20280
|
-
}
|
20281
|
-
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
20282
|
-
transform: rotate(180deg);
|
20283
|
-
}
|
20284
20260
|
|
20285
|
-
.v-
|
20286
|
-
|
20261
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
|
20262
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
|
20263
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
|
20264
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
|
20265
|
+
text-align: end;
|
20287
20266
|
}
|
20288
|
-
.v-
|
20289
|
-
|
20290
|
-
|
20267
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
20268
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
|
20269
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
20270
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
20271
|
+
flex-direction: row-reverse;
|
20291
20272
|
}
|
20292
|
-
|
20293
|
-
.v-
|
20294
|
-
|
20273
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
|
20274
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
|
20275
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
|
20276
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
20277
|
+
text-align: center;
|
20295
20278
|
}
|
20296
|
-
.v-
|
20297
|
-
|
20279
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
20280
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
|
20281
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
20282
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
|
20283
|
+
justify-content: center;
|
20298
20284
|
}
|
20299
|
-
|
20300
|
-
.v-
|
20301
|
-
|
20285
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
|
20286
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
|
20287
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
|
20288
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
|
20289
|
+
padding: 0 8px;
|
20302
20290
|
}
|
20303
|
-
|
20304
|
-
.v-
|
20305
|
-
|
20306
|
-
|
20307
|
-
|
20308
|
-
|
20309
|
-
display: grid;
|
20310
|
-
grid-template-areas: "prepend content append";
|
20311
|
-
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
20291
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
|
20292
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
|
20293
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
|
20294
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
|
20295
|
+
text-overflow: ellipsis;
|
20296
|
+
text-wrap: nowrap;
|
20312
20297
|
overflow: hidden;
|
20313
|
-
padding-inline: 24px 12px;
|
20314
|
-
padding-bottom: 12px;
|
20315
20298
|
}
|
20316
|
-
|
20317
|
-
.v-
|
20318
|
-
|
20319
|
-
|
20320
|
-
|
20321
|
-
.v-date-picker-header__prepend {
|
20322
|
-
grid-area: prepend;
|
20323
|
-
padding-inline-start: 8px;
|
20324
|
-
}
|
20325
|
-
|
20326
|
-
.v-date-picker-header__content {
|
20327
|
-
align-items: center;
|
20328
|
-
display: inline-flex;
|
20329
|
-
font-size: 32px;
|
20330
|
-
line-height: 40px;
|
20331
|
-
grid-area: content;
|
20332
|
-
justify-content: space-between;
|
20333
|
-
}
|
20334
|
-
.v-date-picker-header--clickable .v-date-picker-header__content {
|
20335
|
-
cursor: pointer;
|
20336
|
-
}
|
20337
|
-
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
20338
|
-
opacity: 0.7;
|
20339
|
-
}
|
20340
|
-
|
20341
|
-
.date-picker-header-transition-enter-active,
|
20342
|
-
.date-picker-header-reverse-transition-enter-active {
|
20343
|
-
transition-duration: 0.3s;
|
20344
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20345
|
-
}
|
20346
|
-
.date-picker-header-transition-leave-active,
|
20347
|
-
.date-picker-header-reverse-transition-leave-active {
|
20348
|
-
transition-duration: 0.3s;
|
20349
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20350
|
-
}
|
20351
|
-
|
20352
|
-
.date-picker-header-transition-enter-from {
|
20353
|
-
transform: translate(0, 100%);
|
20354
|
-
}
|
20355
|
-
.date-picker-header-transition-leave-to {
|
20356
|
-
opacity: 0;
|
20357
|
-
transform: translate(0, -100%);
|
20358
|
-
}
|
20359
|
-
|
20360
|
-
.date-picker-header-reverse-transition-enter-from {
|
20361
|
-
transform: translate(0, -100%);
|
20362
|
-
}
|
20363
|
-
.date-picker-header-reverse-transition-leave-to {
|
20364
|
-
opacity: 0;
|
20365
|
-
transform: translate(0, 100%);
|
20366
|
-
}.v-date-picker-month {
|
20367
|
-
display: flex;
|
20368
|
-
justify-content: center;
|
20369
|
-
padding: 0 12px 8px;
|
20370
|
-
--v-date-picker-month-day-diff: 4px;
|
20371
|
-
}
|
20372
|
-
|
20373
|
-
.v-date-picker-month__weeks {
|
20374
|
-
display: grid;
|
20375
|
-
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
20376
|
-
column-gap: 4px;
|
20377
|
-
font-size: 0.85rem;
|
20378
|
-
}
|
20379
|
-
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
20380
|
-
grid-row-gap: 0;
|
20381
|
-
}
|
20382
|
-
|
20383
|
-
.v-date-picker-month__weekday {
|
20384
|
-
font-size: 0.85rem;
|
20385
|
-
}
|
20386
|
-
|
20387
|
-
.v-date-picker-month__days {
|
20388
|
-
display: grid;
|
20389
|
-
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
20390
|
-
column-gap: 4px;
|
20391
|
-
flex: 1 1;
|
20392
|
-
justify-content: space-around;
|
20393
|
-
}
|
20394
|
-
|
20395
|
-
.v-date-picker-month__day {
|
20396
|
-
align-items: center;
|
20397
|
-
display: flex;
|
20398
|
-
justify-content: center;
|
20399
|
-
position: relative;
|
20400
|
-
height: 40px;
|
20401
|
-
width: 40px;
|
20402
|
-
}
|
20403
|
-
.v-date-picker-month__day--selected .v-btn {
|
20404
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
20405
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
20406
|
-
}
|
20407
|
-
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
20408
|
-
--v-btn-height: 24px;
|
20409
|
-
--v-btn-size: 0.85rem;
|
20410
|
-
}
|
20411
|
-
.v-date-picker-month__day--week {
|
20412
|
-
font-size: var(--v-btn-size);
|
20413
|
-
}
|
20414
|
-
|
20415
|
-
.v-date-picker-month__day--adjacent {
|
20416
|
-
opacity: 0.5;
|
20417
|
-
}
|
20418
|
-
|
20419
|
-
.v-date-picker-month__day--hide-adjacent {
|
20420
|
-
opacity: 0;
|
20421
|
-
}.v-date-picker-months {
|
20422
|
-
height: 288px;
|
20423
|
-
}
|
20424
|
-
|
20425
|
-
.v-date-picker-months__content {
|
20426
|
-
align-items: center;
|
20427
|
-
display: grid;
|
20428
|
-
flex: 1 1;
|
20429
|
-
height: inherit;
|
20430
|
-
justify-content: space-around;
|
20431
|
-
grid-template-columns: repeat(2, 1fr);
|
20432
|
-
grid-gap: 0px 24px;
|
20433
|
-
padding-inline-start: 36px;
|
20434
|
-
padding-inline-end: 36px;
|
20435
|
-
}
|
20436
|
-
.v-date-picker-months__content .v-btn {
|
20437
|
-
text-transform: none;
|
20438
|
-
padding-inline-start: 8px;
|
20439
|
-
padding-inline-end: 8px;
|
20440
|
-
}.v-date-picker-years {
|
20441
|
-
height: 288px;
|
20442
|
-
overflow-y: scroll;
|
20443
|
-
}
|
20444
|
-
|
20445
|
-
.v-date-picker-years__content {
|
20446
|
-
display: grid;
|
20447
|
-
flex: 1 1;
|
20448
|
-
justify-content: space-around;
|
20449
|
-
grid-template-columns: repeat(3, 1fr);
|
20450
|
-
gap: 8px 24px;
|
20451
|
-
padding-inline: 32px;
|
20452
|
-
}
|
20453
|
-
.v-date-picker-years__content .v-btn {
|
20454
|
-
padding-inline: 8px;
|
20455
|
-
}.v-data-table {
|
20456
|
-
width: 100%;
|
20457
|
-
}
|
20458
|
-
|
20459
|
-
.v-data-table__table {
|
20460
|
-
width: 100%;
|
20461
|
-
border-collapse: separate;
|
20462
|
-
border-spacing: 0;
|
20463
|
-
}
|
20464
|
-
|
20465
|
-
.v-data-table__tr--focus {
|
20466
|
-
border: 1px dotted black;
|
20467
|
-
}
|
20468
|
-
.v-data-table__tr--clickable {
|
20469
|
-
cursor: pointer;
|
20470
|
-
}
|
20471
|
-
|
20472
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end,
|
20473
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end,
|
20474
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end,
|
20475
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end {
|
20476
|
-
text-align: end;
|
20477
|
-
}
|
20478
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
20479
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-end .v-data-table-header__content,
|
20480
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-end .v-data-table-header__content,
|
20481
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
20482
|
-
flex-direction: row-reverse;
|
20483
|
-
}
|
20484
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
|
20485
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
|
20486
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
|
20487
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
20488
|
-
text-align: center;
|
20489
|
-
}
|
20490
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
20491
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
|
20492
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
20493
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
|
20494
|
-
justify-content: center;
|
20495
|
-
}
|
20496
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
|
20497
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
|
20498
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
|
20499
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--no-padding {
|
20500
|
-
padding: 0 8px;
|
20501
|
-
}
|
20502
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap,
|
20503
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap,
|
20504
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap,
|
20505
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap {
|
20506
|
-
text-overflow: ellipsis;
|
20507
|
-
text-wrap: nowrap;
|
20508
|
-
overflow: hidden;
|
20509
|
-
}
|
20510
|
-
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
|
20511
|
-
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
|
20512
|
-
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
|
20513
|
-
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
|
20514
|
-
display: contents;
|
20299
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
|
20300
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--nowrap .v-data-table-header__content,
|
20301
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--nowrap .v-data-table-header__content,
|
20302
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--nowrap .v-data-table-header__content {
|
20303
|
+
display: contents;
|
20515
20304
|
}
|
20516
20305
|
.v-data-table .v-table__wrapper > table > thead > tr > th,
|
20517
20306
|
.v-data-table .v-table__wrapper > table tbody > tr > th {
|
@@ -20670,50 +20459,298 @@ html.overflow-y-hidden {
|
|
20670
20459
|
}
|
20671
20460
|
.v-data-table-footer__page {
|
20672
20461
|
padding: 0 8px;
|
20673
|
-
}.v-
|
20674
|
-
|
20675
|
-
justify-content: center;
|
20676
|
-
margin: auto;
|
20677
|
-
}
|
20678
|
-
.v-dialog > .v-overlay__content {
|
20679
|
-
max-height: calc(100% - 48px);
|
20680
|
-
width: calc(100% - 48px);
|
20681
|
-
max-width: calc(100% - 48px);
|
20682
|
-
margin: 24px;
|
20683
|
-
}
|
20684
|
-
.v-dialog > .v-overlay__content,
|
20685
|
-
.v-dialog > .v-overlay__content > form {
|
20686
|
-
display: flex;
|
20687
|
-
flex-direction: column;
|
20688
|
-
min-height: 0;
|
20689
|
-
}
|
20690
|
-
.v-dialog > .v-overlay__content > .v-card,
|
20691
|
-
.v-dialog > .v-overlay__content > .v-sheet,
|
20692
|
-
.v-dialog > .v-overlay__content > form > .v-card,
|
20693
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20694
|
-
--v-scrollbar-offset: 0px;
|
20695
|
-
border-radius: 4px;
|
20696
|
-
overflow-y: auto;
|
20462
|
+
}.v-divider {
|
20463
|
+
display: block;
|
20697
20464
|
flex: 1 1 100%;
|
20465
|
+
height: 0px;
|
20466
|
+
max-height: 0px;
|
20467
|
+
opacity: var(--v-border-opacity);
|
20468
|
+
transition: inherit;
|
20698
20469
|
}
|
20699
|
-
.v-
|
20700
|
-
|
20701
|
-
|
20702
|
-
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20703
|
-
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20470
|
+
.v-divider {
|
20471
|
+
border-style: solid;
|
20472
|
+
border-width: thin 0 0 0;
|
20704
20473
|
}
|
20705
|
-
.v-
|
20706
|
-
|
20707
|
-
|
20708
|
-
|
20474
|
+
.v-divider--vertical {
|
20475
|
+
align-self: stretch;
|
20476
|
+
border-width: 0 thin 0 0;
|
20477
|
+
display: inline-flex;
|
20478
|
+
height: auto;
|
20479
|
+
margin-left: -1px;
|
20480
|
+
max-height: 100%;
|
20481
|
+
max-width: 0px;
|
20482
|
+
vertical-align: text-bottom;
|
20483
|
+
width: 0px;
|
20709
20484
|
}
|
20710
|
-
.v-
|
20711
|
-
|
20712
|
-
|
20485
|
+
.v-divider--inset:not(.v-divider--vertical) {
|
20486
|
+
max-width: calc(100% - 72px);
|
20487
|
+
margin-inline-start: 72px;
|
20713
20488
|
}
|
20714
|
-
.v-
|
20715
|
-
|
20716
|
-
|
20489
|
+
.v-divider--inset.v-divider--vertical {
|
20490
|
+
margin-bottom: 8px;
|
20491
|
+
margin-top: 8px;
|
20492
|
+
max-height: calc(100% - 16px);
|
20493
|
+
}
|
20494
|
+
|
20495
|
+
.v-divider__content {
|
20496
|
+
padding: 0 16px;
|
20497
|
+
text-wrap: nowrap;
|
20498
|
+
}
|
20499
|
+
.v-divider__wrapper--vertical .v-divider__content {
|
20500
|
+
padding: 4px 0;
|
20501
|
+
}
|
20502
|
+
|
20503
|
+
.v-divider__wrapper {
|
20504
|
+
display: flex;
|
20505
|
+
align-items: center;
|
20506
|
+
justify-content: center;
|
20507
|
+
}
|
20508
|
+
.v-divider__wrapper--vertical {
|
20509
|
+
flex-direction: column;
|
20510
|
+
height: 100%;
|
20511
|
+
}
|
20512
|
+
.v-divider__wrapper--vertical .v-divider {
|
20513
|
+
margin: 0 auto;
|
20514
|
+
}.v-date-picker-controls {
|
20515
|
+
display: flex;
|
20516
|
+
align-items: center;
|
20517
|
+
justify-content: space-between;
|
20518
|
+
font-size: 0.875rem;
|
20519
|
+
padding-top: 4px;
|
20520
|
+
padding-bottom: 4px;
|
20521
|
+
padding-inline-start: 6px;
|
20522
|
+
padding-inline-end: 12px;
|
20523
|
+
}
|
20524
|
+
.v-date-picker-controls > .v-btn:first-child {
|
20525
|
+
text-transform: none;
|
20526
|
+
font-weight: 400;
|
20527
|
+
line-height: initial;
|
20528
|
+
letter-spacing: initial;
|
20529
|
+
}
|
20530
|
+
.v-date-picker-controls--variant-classic {
|
20531
|
+
padding-inline-start: 12px;
|
20532
|
+
}
|
20533
|
+
.v-date-picker-controls--variant-modern .v-date-picker__title:not(:hover) {
|
20534
|
+
opacity: 0.7;
|
20535
|
+
}
|
20536
|
+
.v-date-picker--month .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20537
|
+
cursor: pointer;
|
20538
|
+
}
|
20539
|
+
.v-date-picker--year .v-date-picker-controls--variant-modern .v-date-picker__title {
|
20540
|
+
opacity: 1;
|
20541
|
+
}
|
20542
|
+
.v-date-picker-controls .v-btn:last-child {
|
20543
|
+
margin-inline-start: 4px;
|
20544
|
+
}
|
20545
|
+
.v-date-picker--year .v-date-picker-controls .v-date-picker-controls__mode-btn {
|
20546
|
+
transform: rotate(180deg);
|
20547
|
+
}
|
20548
|
+
|
20549
|
+
.v-date-picker-controls__date {
|
20550
|
+
margin-inline-end: 4px;
|
20551
|
+
}
|
20552
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__date {
|
20553
|
+
margin: auto;
|
20554
|
+
text-align: center;
|
20555
|
+
}
|
20556
|
+
|
20557
|
+
.v-date-picker-controls__month {
|
20558
|
+
display: flex;
|
20559
|
+
}
|
20560
|
+
.v-locale--is-rtl.v-date-picker-controls__month, .v-locale--is-rtl .v-date-picker-controls__month {
|
20561
|
+
flex-direction: row-reverse;
|
20562
|
+
}
|
20563
|
+
|
20564
|
+
.v-date-picker-controls--variant-classic .v-date-picker-controls__month {
|
20565
|
+
flex: 1 0 auto;
|
20566
|
+
}
|
20567
|
+
|
20568
|
+
.v-date-picker__title {
|
20569
|
+
display: inline-block;
|
20570
|
+
}.v-date-picker {
|
20571
|
+
overflow: hidden;
|
20572
|
+
width: 328px;
|
20573
|
+
}
|
20574
|
+
.v-date-picker--show-week {
|
20575
|
+
width: 368px;
|
20576
|
+
}.v-date-picker-header {
|
20577
|
+
align-items: flex-end;
|
20578
|
+
height: 70px;
|
20579
|
+
display: grid;
|
20580
|
+
grid-template-areas: "prepend content append";
|
20581
|
+
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
20582
|
+
overflow: hidden;
|
20583
|
+
padding-inline: 24px 12px;
|
20584
|
+
padding-bottom: 12px;
|
20585
|
+
}
|
20586
|
+
|
20587
|
+
.v-date-picker-header__append {
|
20588
|
+
grid-area: append;
|
20589
|
+
}
|
20590
|
+
|
20591
|
+
.v-date-picker-header__prepend {
|
20592
|
+
grid-area: prepend;
|
20593
|
+
padding-inline-start: 8px;
|
20594
|
+
}
|
20595
|
+
|
20596
|
+
.v-date-picker-header__content {
|
20597
|
+
align-items: center;
|
20598
|
+
display: inline-flex;
|
20599
|
+
font-size: 32px;
|
20600
|
+
line-height: 40px;
|
20601
|
+
grid-area: content;
|
20602
|
+
justify-content: space-between;
|
20603
|
+
}
|
20604
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
20605
|
+
cursor: pointer;
|
20606
|
+
}
|
20607
|
+
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
20608
|
+
opacity: 0.7;
|
20609
|
+
}
|
20610
|
+
|
20611
|
+
.date-picker-header-transition-enter-active,
|
20612
|
+
.date-picker-header-reverse-transition-enter-active {
|
20613
|
+
transition-duration: 0.3s;
|
20614
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20615
|
+
}
|
20616
|
+
.date-picker-header-transition-leave-active,
|
20617
|
+
.date-picker-header-reverse-transition-leave-active {
|
20618
|
+
transition-duration: 0.3s;
|
20619
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
20620
|
+
}
|
20621
|
+
|
20622
|
+
.date-picker-header-transition-enter-from {
|
20623
|
+
transform: translate(0, 100%);
|
20624
|
+
}
|
20625
|
+
.date-picker-header-transition-leave-to {
|
20626
|
+
opacity: 0;
|
20627
|
+
transform: translate(0, -100%);
|
20628
|
+
}
|
20629
|
+
|
20630
|
+
.date-picker-header-reverse-transition-enter-from {
|
20631
|
+
transform: translate(0, -100%);
|
20632
|
+
}
|
20633
|
+
.date-picker-header-reverse-transition-leave-to {
|
20634
|
+
opacity: 0;
|
20635
|
+
transform: translate(0, 100%);
|
20636
|
+
}.v-date-picker-month {
|
20637
|
+
display: flex;
|
20638
|
+
justify-content: center;
|
20639
|
+
padding: 0 12px 8px;
|
20640
|
+
--v-date-picker-month-day-diff: 4px;
|
20641
|
+
}
|
20642
|
+
|
20643
|
+
.v-date-picker-month__weeks {
|
20644
|
+
display: grid;
|
20645
|
+
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
20646
|
+
column-gap: 4px;
|
20647
|
+
font-size: 0.85rem;
|
20648
|
+
}
|
20649
|
+
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
20650
|
+
grid-row-gap: 0;
|
20651
|
+
}
|
20652
|
+
|
20653
|
+
.v-date-picker-month__weekday {
|
20654
|
+
font-size: 0.85rem;
|
20655
|
+
}
|
20656
|
+
|
20657
|
+
.v-date-picker-month__days {
|
20658
|
+
display: grid;
|
20659
|
+
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
20660
|
+
column-gap: 4px;
|
20661
|
+
flex: 1 1;
|
20662
|
+
justify-content: space-around;
|
20663
|
+
}
|
20664
|
+
|
20665
|
+
.v-date-picker-month__day {
|
20666
|
+
align-items: center;
|
20667
|
+
display: flex;
|
20668
|
+
justify-content: center;
|
20669
|
+
position: relative;
|
20670
|
+
height: 40px;
|
20671
|
+
width: 40px;
|
20672
|
+
}
|
20673
|
+
.v-date-picker-month__day--selected .v-btn {
|
20674
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
20675
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
20676
|
+
}
|
20677
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
20678
|
+
--v-btn-height: 24px;
|
20679
|
+
--v-btn-size: 0.85rem;
|
20680
|
+
}
|
20681
|
+
.v-date-picker-month__day--week {
|
20682
|
+
font-size: var(--v-btn-size);
|
20683
|
+
}
|
20684
|
+
|
20685
|
+
.v-date-picker-month__day--adjacent {
|
20686
|
+
opacity: 0.5;
|
20687
|
+
}
|
20688
|
+
|
20689
|
+
.v-date-picker-month__day--hide-adjacent {
|
20690
|
+
opacity: 0;
|
20691
|
+
}.v-date-picker-months {
|
20692
|
+
height: 288px;
|
20693
|
+
}
|
20694
|
+
|
20695
|
+
.v-date-picker-months__content {
|
20696
|
+
align-items: center;
|
20697
|
+
display: grid;
|
20698
|
+
flex: 1 1;
|
20699
|
+
height: inherit;
|
20700
|
+
justify-content: space-around;
|
20701
|
+
grid-template-columns: repeat(2, 1fr);
|
20702
|
+
grid-gap: 0px 24px;
|
20703
|
+
padding-inline-start: 36px;
|
20704
|
+
padding-inline-end: 36px;
|
20705
|
+
}
|
20706
|
+
.v-date-picker-months__content .v-btn {
|
20707
|
+
text-transform: none;
|
20708
|
+
padding-inline-start: 8px;
|
20709
|
+
padding-inline-end: 8px;
|
20710
|
+
}.v-dialog {
|
20711
|
+
align-items: center;
|
20712
|
+
justify-content: center;
|
20713
|
+
margin: auto;
|
20714
|
+
}
|
20715
|
+
.v-dialog > .v-overlay__content {
|
20716
|
+
max-height: calc(100% - 48px);
|
20717
|
+
width: calc(100% - 48px);
|
20718
|
+
max-width: calc(100% - 48px);
|
20719
|
+
margin: 24px;
|
20720
|
+
}
|
20721
|
+
.v-dialog > .v-overlay__content,
|
20722
|
+
.v-dialog > .v-overlay__content > form {
|
20723
|
+
display: flex;
|
20724
|
+
flex-direction: column;
|
20725
|
+
min-height: 0;
|
20726
|
+
}
|
20727
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20728
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
20729
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
20730
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20731
|
+
--v-scrollbar-offset: 0px;
|
20732
|
+
border-radius: 4px;
|
20733
|
+
overflow-y: auto;
|
20734
|
+
flex: 1 1 100%;
|
20735
|
+
}
|
20736
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20737
|
+
.v-dialog > .v-overlay__content > .v-sheet,
|
20738
|
+
.v-dialog > .v-overlay__content > form > .v-card,
|
20739
|
+
.v-dialog > .v-overlay__content > form > .v-sheet {
|
20740
|
+
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
20741
|
+
}
|
20742
|
+
.v-dialog > .v-overlay__content > .v-card,
|
20743
|
+
.v-dialog > .v-overlay__content > form > .v-card {
|
20744
|
+
display: flex;
|
20745
|
+
flex-direction: column;
|
20746
|
+
}
|
20747
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item,
|
20748
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item {
|
20749
|
+
padding: 16px 24px;
|
20750
|
+
}
|
20751
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text,
|
20752
|
+
.v-dialog > .v-overlay__content > form > .v-card > .v-card-item + .v-card-text {
|
20753
|
+
padding-top: 0;
|
20717
20754
|
}
|
20718
20755
|
.v-dialog > .v-overlay__content > .v-card > .v-card-text,
|
20719
20756
|
.v-dialog > .v-overlay__content > form > .v-card > .v-card-text {
|
@@ -20769,6 +20806,21 @@ html.overflow-y-hidden {
|
|
20769
20806
|
-webkit-backface-visibility: hidden;
|
20770
20807
|
backface-visibility: hidden;
|
20771
20808
|
overflow-y: auto;
|
20809
|
+
}.v-date-picker-years {
|
20810
|
+
height: 288px;
|
20811
|
+
overflow-y: scroll;
|
20812
|
+
}
|
20813
|
+
|
20814
|
+
.v-date-picker-years__content {
|
20815
|
+
display: grid;
|
20816
|
+
flex: 1 1;
|
20817
|
+
justify-content: space-around;
|
20818
|
+
grid-template-columns: repeat(3, 1fr);
|
20819
|
+
gap: 8px 24px;
|
20820
|
+
padding-inline: 32px;
|
20821
|
+
}
|
20822
|
+
.v-date-picker-years__content .v-btn {
|
20823
|
+
padding-inline: 8px;
|
20772
20824
|
}.v-empty-state {
|
20773
20825
|
align-items: center;
|
20774
20826
|
display: flex;
|
@@ -20836,58 +20888,6 @@ html.overflow-y-hidden {
|
|
20836
20888
|
.v-empty-state__action-btn.v-btn {
|
20837
20889
|
background-color: initial;
|
20838
20890
|
color: initial;
|
20839
|
-
}.v-divider {
|
20840
|
-
display: block;
|
20841
|
-
flex: 1 1 100%;
|
20842
|
-
height: 0px;
|
20843
|
-
max-height: 0px;
|
20844
|
-
opacity: var(--v-border-opacity);
|
20845
|
-
transition: inherit;
|
20846
|
-
}
|
20847
|
-
.v-divider {
|
20848
|
-
border-style: solid;
|
20849
|
-
border-width: thin 0 0 0;
|
20850
|
-
}
|
20851
|
-
.v-divider--vertical {
|
20852
|
-
align-self: stretch;
|
20853
|
-
border-width: 0 thin 0 0;
|
20854
|
-
display: inline-flex;
|
20855
|
-
height: auto;
|
20856
|
-
margin-left: -1px;
|
20857
|
-
max-height: 100%;
|
20858
|
-
max-width: 0px;
|
20859
|
-
vertical-align: text-bottom;
|
20860
|
-
width: 0px;
|
20861
|
-
}
|
20862
|
-
.v-divider--inset:not(.v-divider--vertical) {
|
20863
|
-
max-width: calc(100% - 72px);
|
20864
|
-
margin-inline-start: 72px;
|
20865
|
-
}
|
20866
|
-
.v-divider--inset.v-divider--vertical {
|
20867
|
-
margin-bottom: 8px;
|
20868
|
-
margin-top: 8px;
|
20869
|
-
max-height: calc(100% - 16px);
|
20870
|
-
}
|
20871
|
-
|
20872
|
-
.v-divider__content {
|
20873
|
-
padding: 0 16px;
|
20874
|
-
text-wrap: nowrap;
|
20875
|
-
}
|
20876
|
-
.v-divider__wrapper--vertical .v-divider__content {
|
20877
|
-
padding: 4px 0;
|
20878
|
-
}
|
20879
|
-
|
20880
|
-
.v-divider__wrapper {
|
20881
|
-
display: flex;
|
20882
|
-
align-items: center;
|
20883
|
-
justify-content: center;
|
20884
|
-
}
|
20885
|
-
.v-divider__wrapper--vertical {
|
20886
|
-
flex-direction: column;
|
20887
|
-
height: 100%;
|
20888
|
-
}
|
20889
|
-
.v-divider__wrapper--vertical .v-divider {
|
20890
|
-
margin: 0 auto;
|
20891
20891
|
}.v-fab {
|
20892
20892
|
align-items: center;
|
20893
20893
|
display: inline-flex;
|
@@ -21849,6 +21849,70 @@ html.overflow-y-hidden {
|
|
21849
21849
|
.offset-xxl-11 {
|
21850
21850
|
margin-inline-start: 91.6666666667%;
|
21851
21851
|
}
|
21852
|
+
}.v-file-input--hide.v-input .v-field,
|
21853
|
+
.v-file-input--hide.v-input .v-input__control,
|
21854
|
+
.v-file-input--hide.v-input .v-input__details {
|
21855
|
+
display: none;
|
21856
|
+
}
|
21857
|
+
.v-file-input--hide.v-input .v-input__prepend {
|
21858
|
+
grid-area: control;
|
21859
|
+
margin: 0 auto;
|
21860
|
+
}
|
21861
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
21862
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
21863
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
21864
|
+
.v-file-input--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
21865
|
+
top: 0px;
|
21866
|
+
}
|
21867
|
+
.v-file-input input[type=file] {
|
21868
|
+
height: 100%;
|
21869
|
+
left: 0;
|
21870
|
+
opacity: 0;
|
21871
|
+
position: absolute;
|
21872
|
+
top: 0;
|
21873
|
+
width: 100%;
|
21874
|
+
}
|
21875
|
+
.v-file-input .v-input__details {
|
21876
|
+
padding-inline: 16px;
|
21877
|
+
}
|
21878
|
+
.v-input--plain-underlined.v-file-input .v-input__details {
|
21879
|
+
padding-inline: 0;
|
21880
|
+
}.v-footer {
|
21881
|
+
align-items: center;
|
21882
|
+
display: flex;
|
21883
|
+
flex: 1 1 auto;
|
21884
|
+
padding: 8px 16px;
|
21885
|
+
position: relative;
|
21886
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
21887
|
+
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
21888
|
+
}
|
21889
|
+
.v-footer {
|
21890
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
21891
|
+
border-style: solid;
|
21892
|
+
border-width: 0;
|
21893
|
+
}
|
21894
|
+
.v-footer--border {
|
21895
|
+
border-width: thin;
|
21896
|
+
box-shadow: none;
|
21897
|
+
}
|
21898
|
+
.v-footer {
|
21899
|
+
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));
|
21900
|
+
}
|
21901
|
+
.v-footer--absolute {
|
21902
|
+
position: absolute;
|
21903
|
+
}
|
21904
|
+
.v-footer--fixed {
|
21905
|
+
position: fixed;
|
21906
|
+
}
|
21907
|
+
.v-footer {
|
21908
|
+
border-radius: 0;
|
21909
|
+
}
|
21910
|
+
.v-footer {
|
21911
|
+
background: rgb(var(--v-theme-surface));
|
21912
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
21913
|
+
}
|
21914
|
+
.v-footer--rounded {
|
21915
|
+
border-radius: 4px;
|
21852
21916
|
}/* region INPUT */
|
21853
21917
|
.v-field {
|
21854
21918
|
display: grid;
|
@@ -22440,96 +22504,7 @@ textarea.v-field__input::placeholder {
|
|
22440
22504
|
opacity: 0;
|
22441
22505
|
}
|
22442
22506
|
|
22443
|
-
/* endregion */.v-
|
22444
|
-
align-items: center;
|
22445
|
-
display: flex;
|
22446
|
-
flex: 1 1 auto;
|
22447
|
-
padding: 8px 16px;
|
22448
|
-
position: relative;
|
22449
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22450
|
-
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
22451
|
-
}
|
22452
|
-
.v-footer {
|
22453
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
22454
|
-
border-style: solid;
|
22455
|
-
border-width: 0;
|
22456
|
-
}
|
22457
|
-
.v-footer--border {
|
22458
|
-
border-width: thin;
|
22459
|
-
box-shadow: none;
|
22460
|
-
}
|
22461
|
-
.v-footer {
|
22462
|
-
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));
|
22463
|
-
}
|
22464
|
-
.v-footer--absolute {
|
22465
|
-
position: absolute;
|
22466
|
-
}
|
22467
|
-
.v-footer--fixed {
|
22468
|
-
position: fixed;
|
22469
|
-
}
|
22470
|
-
.v-footer {
|
22471
|
-
border-radius: 0;
|
22472
|
-
}
|
22473
|
-
.v-footer {
|
22474
|
-
background: rgb(var(--v-theme-surface));
|
22475
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
22476
|
-
}
|
22477
|
-
.v-footer--rounded {
|
22478
|
-
border-radius: 4px;
|
22479
|
-
}.v-icon {
|
22480
|
-
--v-icon-size-multiplier: 1;
|
22481
|
-
align-items: center;
|
22482
|
-
display: inline-flex;
|
22483
|
-
font-feature-settings: "liga";
|
22484
|
-
height: 1em;
|
22485
|
-
justify-content: center;
|
22486
|
-
letter-spacing: normal;
|
22487
|
-
line-height: 1;
|
22488
|
-
position: relative;
|
22489
|
-
text-indent: 0;
|
22490
|
-
text-align: center;
|
22491
|
-
-webkit-user-select: none;
|
22492
|
-
user-select: none;
|
22493
|
-
vertical-align: middle;
|
22494
|
-
width: 1em;
|
22495
|
-
min-width: 1em;
|
22496
|
-
}
|
22497
|
-
.v-icon--clickable {
|
22498
|
-
cursor: pointer;
|
22499
|
-
}
|
22500
|
-
.v-icon--disabled {
|
22501
|
-
pointer-events: none;
|
22502
|
-
opacity: 0.38;
|
22503
|
-
}
|
22504
|
-
.v-icon--size-x-small {
|
22505
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22506
|
-
}
|
22507
|
-
.v-icon--size-small {
|
22508
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22509
|
-
}
|
22510
|
-
.v-icon--size-default {
|
22511
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22512
|
-
}
|
22513
|
-
.v-icon--size-large {
|
22514
|
-
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22515
|
-
}
|
22516
|
-
.v-icon--size-x-large {
|
22517
|
-
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22518
|
-
}
|
22519
|
-
|
22520
|
-
.v-icon__svg {
|
22521
|
-
fill: currentColor;
|
22522
|
-
width: 100%;
|
22523
|
-
height: 100%;
|
22524
|
-
}
|
22525
|
-
|
22526
|
-
.v-icon--start {
|
22527
|
-
margin-inline-end: 8px;
|
22528
|
-
}
|
22529
|
-
|
22530
|
-
.v-icon--end {
|
22531
|
-
margin-inline-start: 8px;
|
22532
|
-
}.v-img {
|
22507
|
+
/* endregion */.v-img {
|
22533
22508
|
--v-theme-overlay-multiplier: 3;
|
22534
22509
|
z-index: 0;
|
22535
22510
|
}
|
@@ -22759,11 +22734,81 @@ textarea.v-field__input::placeholder {
|
|
22759
22734
|
|
22760
22735
|
.v-input--density-compact.v-input--plain-underlined .v-input__prepend, .v-input--density-compact.v-input--plain-underlined .v-input__append {
|
22761
22736
|
padding-top: calc(var(--v-input-padding-top) + 0px);
|
22762
|
-
}.v-
|
22763
|
-
|
22764
|
-
|
22737
|
+
}.v-icon {
|
22738
|
+
--v-icon-size-multiplier: 1;
|
22739
|
+
align-items: center;
|
22740
|
+
display: inline-flex;
|
22741
|
+
font-feature-settings: "liga";
|
22742
|
+
height: 1em;
|
22743
|
+
justify-content: center;
|
22744
|
+
letter-spacing: normal;
|
22745
|
+
line-height: 1;
|
22765
22746
|
position: relative;
|
22747
|
+
text-indent: 0;
|
22748
|
+
text-align: center;
|
22749
|
+
-webkit-user-select: none;
|
22750
|
+
user-select: none;
|
22751
|
+
vertical-align: middle;
|
22752
|
+
width: 1em;
|
22753
|
+
min-width: 1em;
|
22754
|
+
}
|
22755
|
+
.v-icon--clickable {
|
22756
|
+
cursor: pointer;
|
22757
|
+
}
|
22758
|
+
.v-icon--disabled {
|
22759
|
+
pointer-events: none;
|
22760
|
+
opacity: 0.38;
|
22761
|
+
}
|
22762
|
+
.v-icon--size-x-small {
|
22763
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1em);
|
22764
|
+
}
|
22765
|
+
.v-icon--size-small {
|
22766
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.25em);
|
22767
|
+
}
|
22768
|
+
.v-icon--size-default {
|
22769
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.5em);
|
22770
|
+
}
|
22771
|
+
.v-icon--size-large {
|
22772
|
+
font-size: calc(var(--v-icon-size-multiplier) * 1.75em);
|
22773
|
+
}
|
22774
|
+
.v-icon--size-x-large {
|
22775
|
+
font-size: calc(var(--v-icon-size-multiplier) * 2em);
|
22776
|
+
}
|
22777
|
+
|
22778
|
+
.v-icon__svg {
|
22779
|
+
fill: currentColor;
|
22780
|
+
width: 100%;
|
22781
|
+
height: 100%;
|
22782
|
+
}
|
22783
|
+
|
22784
|
+
.v-icon--start {
|
22785
|
+
margin-inline-end: 8px;
|
22786
|
+
}
|
22787
|
+
|
22788
|
+
.v-icon--end {
|
22789
|
+
margin-inline-start: 8px;
|
22790
|
+
}.v-label {
|
22791
|
+
align-items: center;
|
22792
|
+
color: inherit;
|
22793
|
+
display: inline-flex;
|
22794
|
+
font-size: 1rem;
|
22795
|
+
letter-spacing: 0.009375em;
|
22796
|
+
min-width: 0;
|
22797
|
+
opacity: var(--v-medium-emphasis-opacity);
|
22798
|
+
overflow: hidden;
|
22799
|
+
text-overflow: ellipsis;
|
22800
|
+
white-space: nowrap;
|
22801
|
+
}
|
22802
|
+
|
22803
|
+
.v-label--clickable {
|
22804
|
+
cursor: pointer;
|
22805
|
+
}.v-layout-item {
|
22806
|
+
position: absolute;
|
22766
22807
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22808
|
+
}
|
22809
|
+
|
22810
|
+
.v-layout-item--absolute {
|
22811
|
+
position: absolute;
|
22767
22812
|
}.v-layout {
|
22768
22813
|
--v-scrollbar-offset: 0px;
|
22769
22814
|
display: flex;
|
@@ -22772,13 +22817,11 @@ textarea.v-field__input::placeholder {
|
|
22772
22817
|
.v-layout--full-height {
|
22773
22818
|
--v-scrollbar-offset: inherit;
|
22774
22819
|
height: 100%;
|
22775
|
-
}.v-
|
22776
|
-
|
22820
|
+
}.v-item-group {
|
22821
|
+
flex: 0 1 auto;
|
22822
|
+
max-width: 100%;
|
22823
|
+
position: relative;
|
22777
22824
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
22778
|
-
}
|
22779
|
-
|
22780
|
-
.v-layout-item--absolute {
|
22781
|
-
position: absolute;
|
22782
22825
|
}.v-list {
|
22783
22826
|
overflow: auto;
|
22784
22827
|
padding: 8px 0;
|
@@ -23355,38 +23398,24 @@ textarea.v-field__input::placeholder {
|
|
23355
23398
|
}
|
23356
23399
|
.v-list-group__header:not(.v-treeview-item--activatable-group-activator).v-list-item--active:hover .v-list-item__overlay {
|
23357
23400
|
opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
|
23358
|
-
}.v-main {
|
23359
|
-
flex: 1 0 auto;
|
23360
|
-
max-width: 100%;
|
23361
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23362
|
-
padding-left: var(--v-layout-left);
|
23363
|
-
padding-right: var(--v-layout-right);
|
23364
|
-
padding-top: var(--v-layout-top);
|
23365
|
-
padding-bottom: var(--v-layout-bottom);
|
23366
|
-
}
|
23367
|
-
.v-main__scroller {
|
23368
|
-
max-width: 100%;
|
23369
|
-
position: relative;
|
23370
|
-
}
|
23371
|
-
.v-main--scrollable {
|
23372
|
-
display: flex;
|
23373
|
-
}
|
23374
|
-
.v-main--scrollable {
|
23375
|
-
position: absolute;
|
23376
|
-
top: 0;
|
23377
|
-
left: 0;
|
23378
|
-
width: 100%;
|
23379
|
-
height: 100%;
|
23380
|
-
}
|
23381
|
-
.v-main--scrollable > .v-main__scroller {
|
23382
|
-
flex: 1 1 auto;
|
23383
|
-
overflow-y: auto;
|
23384
|
-
--v-layout-left: 0px;
|
23385
|
-
--v-layout-right: 0px;
|
23386
|
-
--v-layout-top: 0px;
|
23387
|
-
--v-layout-bottom: 0px;
|
23388
23401
|
}.v-locale-provider {
|
23389
23402
|
display: contents;
|
23403
|
+
}.v-messages {
|
23404
|
+
flex: 1 1 auto;
|
23405
|
+
font-size: 12px;
|
23406
|
+
min-height: 14px;
|
23407
|
+
min-width: 1px;
|
23408
|
+
opacity: var(--v-medium-emphasis-opacity);
|
23409
|
+
position: relative;
|
23410
|
+
}
|
23411
|
+
.v-messages__message {
|
23412
|
+
line-height: 12px;
|
23413
|
+
word-break: break-word;
|
23414
|
+
overflow-wrap: break-word;
|
23415
|
+
word-wrap: break-word;
|
23416
|
+
-webkit-hyphens: auto;
|
23417
|
+
hyphens: auto;
|
23418
|
+
transition-duration: 150ms;
|
23390
23419
|
}.v-menu > .v-overlay__content {
|
23391
23420
|
display: flex;
|
23392
23421
|
flex-direction: column;
|
@@ -23406,22 +23435,42 @@ textarea.v-field__input::placeholder {
|
|
23406
23435
|
.v-menu > .v-overlay__content > .v-sheet,
|
23407
23436
|
.v-menu > .v-overlay__content > .v-list {
|
23408
23437
|
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));
|
23409
|
-
}.v-
|
23410
|
-
|
23411
|
-
|
23412
|
-
|
23413
|
-
|
23414
|
-
|
23438
|
+
}.v-parallax {
|
23439
|
+
position: relative;
|
23440
|
+
overflow: hidden;
|
23441
|
+
}
|
23442
|
+
.v-parallax--active > .v-img__img {
|
23443
|
+
will-change: transform;
|
23444
|
+
}.v-main {
|
23445
|
+
flex: 1 0 auto;
|
23446
|
+
max-width: 100%;
|
23447
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
23448
|
+
padding-left: var(--v-layout-left);
|
23449
|
+
padding-right: var(--v-layout-right);
|
23450
|
+
padding-top: var(--v-layout-top);
|
23451
|
+
padding-bottom: var(--v-layout-bottom);
|
23452
|
+
}
|
23453
|
+
.v-main__scroller {
|
23454
|
+
max-width: 100%;
|
23415
23455
|
position: relative;
|
23416
23456
|
}
|
23417
|
-
.v-
|
23418
|
-
|
23419
|
-
|
23420
|
-
|
23421
|
-
|
23422
|
-
|
23423
|
-
|
23424
|
-
|
23457
|
+
.v-main--scrollable {
|
23458
|
+
display: flex;
|
23459
|
+
}
|
23460
|
+
.v-main--scrollable {
|
23461
|
+
position: absolute;
|
23462
|
+
top: 0;
|
23463
|
+
left: 0;
|
23464
|
+
width: 100%;
|
23465
|
+
height: 100%;
|
23466
|
+
}
|
23467
|
+
.v-main--scrollable > .v-main__scroller {
|
23468
|
+
flex: 1 1 auto;
|
23469
|
+
overflow-y: auto;
|
23470
|
+
--v-layout-left: 0px;
|
23471
|
+
--v-layout-right: 0px;
|
23472
|
+
--v-layout-top: 0px;
|
23473
|
+
--v-layout-bottom: 0px;
|
23425
23474
|
}.v-navigation-drawer {
|
23426
23475
|
-webkit-overflow-scrolling: touch;
|
23427
23476
|
background: rgb(var(--v-theme-surface));
|
@@ -23526,6 +23575,14 @@ textarea.v-field__input::placeholder {
|
|
23526
23575
|
.v-navigation-drawer__append {
|
23527
23576
|
flex: none;
|
23528
23577
|
overflow: hidden;
|
23578
|
+
}.v-pagination__list {
|
23579
|
+
display: inline-flex;
|
23580
|
+
list-style-type: none;
|
23581
|
+
justify-content: center;
|
23582
|
+
width: 100%;
|
23583
|
+
}
|
23584
|
+
.v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
|
23585
|
+
margin: 0.3rem;
|
23529
23586
|
}.v-otp-input {
|
23530
23587
|
align-items: center;
|
23531
23588
|
display: flex;
|
@@ -23648,20 +23705,108 @@ html.v-overlay-scroll-blocked {
|
|
23648
23705
|
|
23649
23706
|
.v-overlay--scroll-blocked {
|
23650
23707
|
padding-inline-end: var(--v-scrollbar-offset);
|
23651
|
-
}.v-
|
23652
|
-
|
23653
|
-
overflow: hidden;
|
23654
|
-
}
|
23655
|
-
.v-parallax--active > .v-img__img {
|
23656
|
-
will-change: transform;
|
23657
|
-
}.v-pagination__list {
|
23708
|
+
}.v-progress-circular {
|
23709
|
+
align-items: center;
|
23658
23710
|
display: inline-flex;
|
23659
|
-
list-style-type: none;
|
23660
23711
|
justify-content: center;
|
23712
|
+
position: relative;
|
23713
|
+
vertical-align: middle;
|
23714
|
+
}
|
23715
|
+
.v-progress-circular > svg {
|
23661
23716
|
width: 100%;
|
23717
|
+
height: 100%;
|
23718
|
+
margin: auto;
|
23719
|
+
position: absolute;
|
23720
|
+
top: 0;
|
23721
|
+
bottom: 0;
|
23722
|
+
left: 0;
|
23723
|
+
right: 0;
|
23724
|
+
z-index: 0;
|
23662
23725
|
}
|
23663
|
-
|
23664
|
-
|
23726
|
+
|
23727
|
+
.v-progress-circular__content {
|
23728
|
+
align-items: center;
|
23729
|
+
display: flex;
|
23730
|
+
justify-content: center;
|
23731
|
+
}
|
23732
|
+
|
23733
|
+
.v-progress-circular__underlay {
|
23734
|
+
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23735
|
+
stroke: currentColor;
|
23736
|
+
z-index: 1;
|
23737
|
+
}
|
23738
|
+
|
23739
|
+
.v-progress-circular__overlay {
|
23740
|
+
stroke: currentColor;
|
23741
|
+
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23742
|
+
z-index: 2;
|
23743
|
+
}
|
23744
|
+
|
23745
|
+
.v-progress-circular--size-x-small {
|
23746
|
+
height: 16px;
|
23747
|
+
width: 16px;
|
23748
|
+
}
|
23749
|
+
.v-progress-circular--size-small {
|
23750
|
+
height: 24px;
|
23751
|
+
width: 24px;
|
23752
|
+
}
|
23753
|
+
.v-progress-circular--size-default {
|
23754
|
+
height: 32px;
|
23755
|
+
width: 32px;
|
23756
|
+
}
|
23757
|
+
.v-progress-circular--size-large {
|
23758
|
+
height: 48px;
|
23759
|
+
width: 48px;
|
23760
|
+
}
|
23761
|
+
.v-progress-circular--size-x-large {
|
23762
|
+
height: 64px;
|
23763
|
+
width: 64px;
|
23764
|
+
}
|
23765
|
+
|
23766
|
+
.v-progress-circular--indeterminate > svg {
|
23767
|
+
animation: progress-circular-rotate 1.4s linear infinite;
|
23768
|
+
transform-origin: center center;
|
23769
|
+
transition: all 0.2s ease-in-out;
|
23770
|
+
}
|
23771
|
+
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23772
|
+
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23773
|
+
stroke-dasharray: 25, 200;
|
23774
|
+
stroke-dashoffset: 0;
|
23775
|
+
stroke-linecap: round;
|
23776
|
+
transform-origin: center center;
|
23777
|
+
transform: rotate(-90deg);
|
23778
|
+
}
|
23779
|
+
|
23780
|
+
.v-progress-circular--disable-shrink > svg {
|
23781
|
+
animation-duration: 0.7s;
|
23782
|
+
}
|
23783
|
+
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23784
|
+
animation: none;
|
23785
|
+
}
|
23786
|
+
|
23787
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23788
|
+
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23789
|
+
animation-play-state: paused !important;
|
23790
|
+
}
|
23791
|
+
|
23792
|
+
@keyframes progress-circular-dash {
|
23793
|
+
0% {
|
23794
|
+
stroke-dasharray: 1, 200;
|
23795
|
+
stroke-dashoffset: 0px;
|
23796
|
+
}
|
23797
|
+
50% {
|
23798
|
+
stroke-dasharray: 100, 200;
|
23799
|
+
stroke-dashoffset: -15px;
|
23800
|
+
}
|
23801
|
+
100% {
|
23802
|
+
stroke-dasharray: 100, 200;
|
23803
|
+
stroke-dashoffset: -124px;
|
23804
|
+
}
|
23805
|
+
}
|
23806
|
+
@keyframes progress-circular-rotate {
|
23807
|
+
100% {
|
23808
|
+
transform: rotate(270deg);
|
23809
|
+
}
|
23665
23810
|
}.v-progress-linear {
|
23666
23811
|
background: transparent;
|
23667
23812
|
overflow: hidden;
|
@@ -23849,161 +23994,47 @@ html.v-overlay-scroll-blocked {
|
|
23849
23994
|
right: -90%;
|
23850
23995
|
}
|
23851
23996
|
100% {
|
23852
|
-
left: -35%;
|
23853
|
-
right: 100%;
|
23854
|
-
}
|
23855
|
-
}
|
23856
|
-
@keyframes indeterminate-short-ltr {
|
23857
|
-
0% {
|
23858
|
-
left: -200%;
|
23859
|
-
right: 100%;
|
23860
|
-
}
|
23861
|
-
60% {
|
23862
|
-
left: 107%;
|
23863
|
-
right: -8%;
|
23864
|
-
}
|
23865
|
-
100% {
|
23866
|
-
left: 107%;
|
23867
|
-
right: -8%;
|
23868
|
-
}
|
23869
|
-
}
|
23870
|
-
@keyframes indeterminate-short-rtl {
|
23871
|
-
0% {
|
23872
|
-
left: 100%;
|
23873
|
-
right: -200%;
|
23874
|
-
}
|
23875
|
-
60% {
|
23876
|
-
left: -8%;
|
23877
|
-
right: 107%;
|
23878
|
-
}
|
23879
|
-
100% {
|
23880
|
-
left: -8%;
|
23881
|
-
right: 107%;
|
23882
|
-
}
|
23883
|
-
}
|
23884
|
-
@keyframes stream {
|
23885
|
-
to {
|
23886
|
-
transform: translateX(var(--v-progress-linear-stream-to));
|
23887
|
-
}
|
23888
|
-
}
|
23889
|
-
@keyframes progress-linear-stripes {
|
23890
|
-
0% {
|
23891
|
-
background-position-x: var(--v-progress-linear-height);
|
23892
|
-
}
|
23893
|
-
}.v-progress-circular {
|
23894
|
-
align-items: center;
|
23895
|
-
display: inline-flex;
|
23896
|
-
justify-content: center;
|
23897
|
-
position: relative;
|
23898
|
-
vertical-align: middle;
|
23899
|
-
}
|
23900
|
-
.v-progress-circular > svg {
|
23901
|
-
width: 100%;
|
23902
|
-
height: 100%;
|
23903
|
-
margin: auto;
|
23904
|
-
position: absolute;
|
23905
|
-
top: 0;
|
23906
|
-
bottom: 0;
|
23907
|
-
left: 0;
|
23908
|
-
right: 0;
|
23909
|
-
z-index: 0;
|
23910
|
-
}
|
23911
|
-
|
23912
|
-
.v-progress-circular__content {
|
23913
|
-
align-items: center;
|
23914
|
-
display: flex;
|
23915
|
-
justify-content: center;
|
23916
|
-
}
|
23917
|
-
|
23918
|
-
.v-progress-circular__underlay {
|
23919
|
-
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
23920
|
-
stroke: currentColor;
|
23921
|
-
z-index: 1;
|
23922
|
-
}
|
23923
|
-
|
23924
|
-
.v-progress-circular__overlay {
|
23925
|
-
stroke: currentColor;
|
23926
|
-
transition: all 0.2s ease-in-out, stroke-width 0s;
|
23927
|
-
z-index: 2;
|
23928
|
-
}
|
23929
|
-
|
23930
|
-
.v-progress-circular--size-x-small {
|
23931
|
-
height: 16px;
|
23932
|
-
width: 16px;
|
23933
|
-
}
|
23934
|
-
.v-progress-circular--size-small {
|
23935
|
-
height: 24px;
|
23936
|
-
width: 24px;
|
23937
|
-
}
|
23938
|
-
.v-progress-circular--size-default {
|
23939
|
-
height: 32px;
|
23940
|
-
width: 32px;
|
23941
|
-
}
|
23942
|
-
.v-progress-circular--size-large {
|
23943
|
-
height: 48px;
|
23944
|
-
width: 48px;
|
23945
|
-
}
|
23946
|
-
.v-progress-circular--size-x-large {
|
23947
|
-
height: 64px;
|
23948
|
-
width: 64px;
|
23949
|
-
}
|
23950
|
-
|
23951
|
-
.v-progress-circular--indeterminate > svg {
|
23952
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
23953
|
-
transform-origin: center center;
|
23954
|
-
transition: all 0.2s ease-in-out;
|
23955
|
-
}
|
23956
|
-
.v-progress-circular--indeterminate .v-progress-circular__overlay {
|
23957
|
-
animation: progress-circular-dash 1.4s ease-in-out infinite, progress-circular-rotate 1.4s linear infinite;
|
23958
|
-
stroke-dasharray: 25, 200;
|
23959
|
-
stroke-dashoffset: 0;
|
23960
|
-
stroke-linecap: round;
|
23961
|
-
transform-origin: center center;
|
23962
|
-
transform: rotate(-90deg);
|
23963
|
-
}
|
23964
|
-
|
23965
|
-
.v-progress-circular--disable-shrink > svg {
|
23966
|
-
animation-duration: 0.7s;
|
23967
|
-
}
|
23968
|
-
.v-progress-circular--disable-shrink .v-progress-circular__overlay {
|
23969
|
-
animation: none;
|
23970
|
-
}
|
23971
|
-
|
23972
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) > svg,
|
23973
|
-
.v-progress-circular--indeterminate:not(.v-progress-circular--visible) .v-progress-circular__overlay {
|
23974
|
-
animation-play-state: paused !important;
|
23997
|
+
left: -35%;
|
23998
|
+
right: 100%;
|
23999
|
+
}
|
23975
24000
|
}
|
23976
|
-
|
23977
|
-
@keyframes progress-circular-dash {
|
24001
|
+
@keyframes indeterminate-short-ltr {
|
23978
24002
|
0% {
|
23979
|
-
|
23980
|
-
|
24003
|
+
left: -200%;
|
24004
|
+
right: 100%;
|
23981
24005
|
}
|
23982
|
-
|
23983
|
-
|
23984
|
-
|
24006
|
+
60% {
|
24007
|
+
left: 107%;
|
24008
|
+
right: -8%;
|
23985
24009
|
}
|
23986
24010
|
100% {
|
23987
|
-
|
23988
|
-
|
24011
|
+
left: 107%;
|
24012
|
+
right: -8%;
|
23989
24013
|
}
|
23990
24014
|
}
|
23991
|
-
@keyframes
|
24015
|
+
@keyframes indeterminate-short-rtl {
|
24016
|
+
0% {
|
24017
|
+
left: 100%;
|
24018
|
+
right: -200%;
|
24019
|
+
}
|
24020
|
+
60% {
|
24021
|
+
left: -8%;
|
24022
|
+
right: 107%;
|
24023
|
+
}
|
23992
24024
|
100% {
|
23993
|
-
|
24025
|
+
left: -8%;
|
24026
|
+
right: 107%;
|
23994
24027
|
}
|
23995
|
-
}.v-radio-group > .v-input__control {
|
23996
|
-
flex-direction: column;
|
23997
|
-
}
|
23998
|
-
.v-radio-group > .v-input__control > .v-label {
|
23999
|
-
margin-inline-start: 16px;
|
24000
24028
|
}
|
24001
|
-
|
24002
|
-
|
24003
|
-
|
24029
|
+
@keyframes stream {
|
24030
|
+
to {
|
24031
|
+
transform: translateX(var(--v-progress-linear-stream-to));
|
24032
|
+
}
|
24004
24033
|
}
|
24005
|
-
|
24006
|
-
|
24034
|
+
@keyframes progress-linear-stripes {
|
24035
|
+
0% {
|
24036
|
+
background-position-x: var(--v-progress-linear-height);
|
24037
|
+
}
|
24007
24038
|
}.v-slider .v-slider__container input {
|
24008
24039
|
cursor: default;
|
24009
24040
|
padding: 0;
|
@@ -24114,58 +24145,18 @@ html.v-overlay-scroll-blocked {
|
|
24114
24145
|
opacity: 0;
|
24115
24146
|
position: absolute;
|
24116
24147
|
width: 0;
|
24117
|
-
}.v-
|
24118
|
-
|
24119
|
-
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24120
|
-
cursor: pointer;
|
24121
|
-
}
|
24122
|
-
.v-select .v-field .v-field__input > input {
|
24123
|
-
align-self: flex-start;
|
24124
|
-
opacity: 1;
|
24125
|
-
flex: 0 0;
|
24126
|
-
position: absolute;
|
24127
|
-
width: 100%;
|
24128
|
-
transition: none;
|
24129
|
-
pointer-events: none;
|
24130
|
-
caret-color: transparent;
|
24131
|
-
}
|
24132
|
-
.v-select .v-field--dirty .v-select__selection {
|
24133
|
-
margin-inline-end: 2px;
|
24134
|
-
}
|
24135
|
-
.v-select .v-select__selection-text {
|
24136
|
-
overflow: hidden;
|
24137
|
-
text-overflow: ellipsis;
|
24138
|
-
white-space: nowrap;
|
24139
|
-
}
|
24140
|
-
.v-select__content {
|
24141
|
-
overflow: hidden;
|
24142
|
-
}
|
24143
|
-
.v-select__content {
|
24144
|
-
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));
|
24145
|
-
}
|
24146
|
-
.v-select__content {
|
24147
|
-
border-radius: 4px;
|
24148
|
-
}
|
24149
|
-
.v-select__selection {
|
24150
|
-
display: inline-flex;
|
24151
|
-
align-items: center;
|
24152
|
-
letter-spacing: inherit;
|
24153
|
-
line-height: inherit;
|
24154
|
-
max-width: 100%;
|
24155
|
-
}
|
24156
|
-
.v-select .v-select__selection:first-child {
|
24157
|
-
margin-inline-start: 0;
|
24148
|
+
}.v-radio-group > .v-input__control {
|
24149
|
+
flex-direction: column;
|
24158
24150
|
}
|
24159
|
-
.v-
|
24160
|
-
|
24151
|
+
.v-radio-group > .v-input__control > .v-label {
|
24152
|
+
margin-inline-start: 16px;
|
24161
24153
|
}
|
24162
|
-
.v-
|
24163
|
-
|
24164
|
-
|
24154
|
+
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
24155
|
+
padding-inline-start: 6px;
|
24156
|
+
margin-top: 8px;
|
24165
24157
|
}
|
24166
|
-
.v-
|
24167
|
-
|
24168
|
-
transform: rotate(180deg);
|
24158
|
+
.v-radio-group .v-input__details {
|
24159
|
+
padding-inline: 16px;
|
24169
24160
|
}.v-responsive {
|
24170
24161
|
display: flex;
|
24171
24162
|
flex: 1 0 auto;
|
@@ -24293,42 +24284,66 @@ html.v-overlay-scroll-blocked {
|
|
24293
24284
|
}
|
24294
24285
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
24295
24286
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
24296
|
-
}.v-
|
24297
|
-
|
24287
|
+
}.v-select .v-field .v-text-field__prefix,
|
24288
|
+
.v-select .v-field .v-text-field__suffix,
|
24289
|
+
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|
24290
|
+
cursor: pointer;
|
24298
24291
|
}
|
24299
|
-
.v-
|
24300
|
-
|
24301
|
-
|
24302
|
-
|
24292
|
+
.v-select .v-field .v-field__input > input {
|
24293
|
+
align-self: flex-start;
|
24294
|
+
opacity: 1;
|
24295
|
+
flex: 0 0;
|
24296
|
+
position: absolute;
|
24297
|
+
width: 100%;
|
24298
|
+
transition: none;
|
24299
|
+
pointer-events: none;
|
24300
|
+
caret-color: transparent;
|
24303
24301
|
}
|
24304
|
-
.v-
|
24305
|
-
|
24306
|
-
box-shadow: none;
|
24302
|
+
.v-select .v-field--dirty .v-select__selection {
|
24303
|
+
margin-inline-end: 2px;
|
24307
24304
|
}
|
24308
|
-
.v-
|
24309
|
-
|
24305
|
+
.v-select .v-select__selection-text {
|
24306
|
+
overflow: hidden;
|
24307
|
+
text-overflow: ellipsis;
|
24308
|
+
white-space: nowrap;
|
24310
24309
|
}
|
24311
|
-
.v-
|
24312
|
-
|
24310
|
+
.v-select__content {
|
24311
|
+
overflow: hidden;
|
24313
24312
|
}
|
24314
|
-
.v-
|
24315
|
-
|
24313
|
+
.v-select__content {
|
24314
|
+
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));
|
24316
24315
|
}
|
24317
|
-
.v-
|
24318
|
-
|
24316
|
+
.v-select__content {
|
24317
|
+
border-radius: 4px;
|
24319
24318
|
}
|
24320
|
-
.v-
|
24321
|
-
|
24319
|
+
.v-select__selection {
|
24320
|
+
display: inline-flex;
|
24321
|
+
align-items: center;
|
24322
|
+
letter-spacing: inherit;
|
24323
|
+
line-height: inherit;
|
24324
|
+
max-width: 100%;
|
24322
24325
|
}
|
24323
|
-
.v-
|
24324
|
-
|
24326
|
+
.v-select .v-select__selection:first-child {
|
24327
|
+
margin-inline-start: 0;
|
24325
24328
|
}
|
24326
|
-
.v-
|
24327
|
-
|
24328
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24329
|
+
.v-select--selected .v-field .v-field__input > input {
|
24330
|
+
opacity: 0;
|
24329
24331
|
}
|
24330
|
-
.v-
|
24331
|
-
|
24332
|
+
.v-select__menu-icon {
|
24333
|
+
margin-inline-start: 4px;
|
24334
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
24335
|
+
}
|
24336
|
+
.v-select--active-menu .v-select__menu-icon {
|
24337
|
+
opacity: var(--v-high-emphasis-opacity);
|
24338
|
+
transform: rotate(180deg);
|
24339
|
+
}.v-selection-control-group {
|
24340
|
+
grid-area: control;
|
24341
|
+
display: flex;
|
24342
|
+
flex-direction: column;
|
24343
|
+
}
|
24344
|
+
.v-selection-control-group--inline {
|
24345
|
+
flex-direction: row;
|
24346
|
+
flex-wrap: wrap;
|
24332
24347
|
}.v-skeleton-loader {
|
24333
24348
|
align-items: center;
|
24334
24349
|
background: rgb(var(--v-theme-surface));
|
@@ -24554,69 +24569,42 @@ html.v-overlay-scroll-blocked {
|
|
24554
24569
|
100% {
|
24555
24570
|
transform: translateX(100%);
|
24556
24571
|
}
|
24557
|
-
}.v-
|
24558
|
-
|
24559
|
-
display: flex;
|
24560
|
-
flex-direction: column;
|
24572
|
+
}.v-sheet {
|
24573
|
+
display: block;
|
24561
24574
|
}
|
24562
|
-
.v-
|
24563
|
-
|
24564
|
-
|
24565
|
-
|
24566
|
-
display: flex;
|
24567
|
-
overflow: hidden;
|
24575
|
+
.v-sheet {
|
24576
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
24577
|
+
border-style: solid;
|
24578
|
+
border-width: 0;
|
24568
24579
|
}
|
24569
|
-
|
24570
|
-
|
24571
|
-
|
24572
|
-
align-items: center;
|
24573
|
-
display: flex;
|
24574
|
-
flex: 0 1 52px;
|
24575
|
-
justify-content: center;
|
24576
|
-
min-width: 52px;
|
24577
|
-
cursor: pointer;
|
24580
|
+
.v-sheet--border {
|
24581
|
+
border-width: thin;
|
24582
|
+
box-shadow: none;
|
24578
24583
|
}
|
24579
|
-
.v-
|
24580
|
-
.v-
|
24581
|
-
pointer-events: none;
|
24582
|
-
opacity: var(--v-disabled-opacity);
|
24584
|
+
.v-sheet {
|
24585
|
+
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));
|
24583
24586
|
}
|
24584
|
-
|
24585
|
-
|
24586
|
-
display: flex;
|
24587
|
-
flex: 1 0 auto;
|
24588
|
-
position: relative;
|
24589
|
-
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
24590
|
-
white-space: nowrap;
|
24587
|
+
.v-sheet--absolute {
|
24588
|
+
position: absolute;
|
24591
24589
|
}
|
24592
|
-
.v-
|
24593
|
-
|
24590
|
+
.v-sheet--fixed {
|
24591
|
+
position: fixed;
|
24594
24592
|
}
|
24595
|
-
|
24596
|
-
|
24597
|
-
contain: content;
|
24598
|
-
display: flex;
|
24599
|
-
flex: 1 1 auto;
|
24600
|
-
overflow-x: auto;
|
24601
|
-
overflow-y: hidden;
|
24602
|
-
scrollbar-width: none;
|
24603
|
-
scrollbar-color: rgba(0, 0, 0, 0);
|
24593
|
+
.v-sheet--relative {
|
24594
|
+
position: relative;
|
24604
24595
|
}
|
24605
|
-
.v-
|
24606
|
-
|
24596
|
+
.v-sheet--sticky {
|
24597
|
+
position: sticky;
|
24607
24598
|
}
|
24608
|
-
|
24609
|
-
|
24610
|
-
max-height: inherit;
|
24599
|
+
.v-sheet {
|
24600
|
+
border-radius: 0;
|
24611
24601
|
}
|
24612
|
-
.v-
|
24613
|
-
|
24614
|
-
|
24615
|
-
flex-direction: column;
|
24602
|
+
.v-sheet {
|
24603
|
+
background: rgb(var(--v-theme-surface));
|
24604
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
24616
24605
|
}
|
24617
|
-
.v-
|
24618
|
-
|
24619
|
-
overflow-y: auto;
|
24606
|
+
.v-sheet--rounded {
|
24607
|
+
border-radius: 4px;
|
24620
24608
|
}.v-snackbar {
|
24621
24609
|
justify-content: center;
|
24622
24610
|
z-index: 10000;
|
@@ -24757,34 +24745,102 @@ html.v-overlay-scroll-blocked {
|
|
24757
24745
|
}
|
24758
24746
|
.v-snackbar-transition-leave-to {
|
24759
24747
|
opacity: 0;
|
24760
|
-
}.v-
|
24761
|
-
|
24762
|
-
|
24748
|
+
}.v-slide-group {
|
24749
|
+
display: flex;
|
24750
|
+
overflow: hidden;
|
24751
|
+
}
|
24752
|
+
|
24753
|
+
.v-slide-group__next,
|
24754
|
+
.v-slide-group__prev {
|
24755
|
+
align-items: center;
|
24756
|
+
display: flex;
|
24757
|
+
flex: 0 1 52px;
|
24758
|
+
justify-content: center;
|
24759
|
+
min-width: 52px;
|
24760
|
+
cursor: pointer;
|
24761
|
+
}
|
24762
|
+
.v-slide-group__next--disabled,
|
24763
|
+
.v-slide-group__prev--disabled {
|
24764
|
+
pointer-events: none;
|
24765
|
+
opacity: var(--v-disabled-opacity);
|
24766
|
+
}
|
24767
|
+
|
24768
|
+
.v-slide-group__content {
|
24769
|
+
display: flex;
|
24770
|
+
flex: 1 0 auto;
|
24771
|
+
position: relative;
|
24772
|
+
transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
|
24773
|
+
white-space: nowrap;
|
24774
|
+
}
|
24775
|
+
.v-slide-group__content > * {
|
24776
|
+
white-space: initial;
|
24777
|
+
}
|
24778
|
+
|
24779
|
+
.v-slide-group__container {
|
24780
|
+
contain: content;
|
24781
|
+
display: flex;
|
24782
|
+
flex: 1 1 auto;
|
24783
|
+
overflow-x: auto;
|
24784
|
+
overflow-y: hidden;
|
24785
|
+
scrollbar-width: none;
|
24786
|
+
scrollbar-color: rgba(0, 0, 0, 0);
|
24787
|
+
}
|
24788
|
+
.v-slide-group__container::-webkit-scrollbar {
|
24763
24789
|
display: none;
|
24764
24790
|
}
|
24765
|
-
|
24766
|
-
|
24767
|
-
|
24791
|
+
|
24792
|
+
.v-slide-group--vertical {
|
24793
|
+
max-height: inherit;
|
24768
24794
|
}
|
24769
|
-
.v-
|
24770
|
-
.v-
|
24771
|
-
.v-
|
24772
|
-
|
24773
|
-
top: 0px;
|
24795
|
+
.v-slide-group--vertical,
|
24796
|
+
.v-slide-group--vertical .v-slide-group__container,
|
24797
|
+
.v-slide-group--vertical .v-slide-group__content {
|
24798
|
+
flex-direction: column;
|
24774
24799
|
}
|
24775
|
-
.v-
|
24776
|
-
|
24777
|
-
|
24778
|
-
|
24779
|
-
|
24780
|
-
top: 0;
|
24781
|
-
width: 100%;
|
24800
|
+
.v-slide-group--vertical .v-slide-group__container {
|
24801
|
+
overflow-x: hidden;
|
24802
|
+
overflow-y: auto;
|
24803
|
+
}.v-speed-dial__content {
|
24804
|
+
gap: 8px;
|
24782
24805
|
}
|
24783
|
-
.v-
|
24784
|
-
|
24806
|
+
.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 {
|
24807
|
+
flex-direction: row;
|
24785
24808
|
}
|
24786
|
-
.v-
|
24787
|
-
|
24809
|
+
.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 {
|
24810
|
+
flex-direction: row-reverse;
|
24811
|
+
}
|
24812
|
+
.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 {
|
24813
|
+
flex-direction: column-reverse;
|
24814
|
+
}
|
24815
|
+
.v-speed-dial__content > *:nth-child(1) {
|
24816
|
+
transition-delay: 0s;
|
24817
|
+
}
|
24818
|
+
.v-speed-dial__content > *:nth-child(2) {
|
24819
|
+
transition-delay: 0.05s;
|
24820
|
+
}
|
24821
|
+
.v-speed-dial__content > *:nth-child(3) {
|
24822
|
+
transition-delay: 0.1s;
|
24823
|
+
}
|
24824
|
+
.v-speed-dial__content > *:nth-child(4) {
|
24825
|
+
transition-delay: 0.15s;
|
24826
|
+
}
|
24827
|
+
.v-speed-dial__content > *:nth-child(5) {
|
24828
|
+
transition-delay: 0.2s;
|
24829
|
+
}
|
24830
|
+
.v-speed-dial__content > *:nth-child(6) {
|
24831
|
+
transition-delay: 0.25s;
|
24832
|
+
}
|
24833
|
+
.v-speed-dial__content > *:nth-child(7) {
|
24834
|
+
transition-delay: 0.3s;
|
24835
|
+
}
|
24836
|
+
.v-speed-dial__content > *:nth-child(8) {
|
24837
|
+
transition-delay: 0.35s;
|
24838
|
+
}
|
24839
|
+
.v-speed-dial__content > *:nth-child(9) {
|
24840
|
+
transition-delay: 0.4s;
|
24841
|
+
}
|
24842
|
+
.v-speed-dial__content > *:nth-child(10) {
|
24843
|
+
transition-delay: 0.45s;
|
24788
24844
|
}.v-stepper-item {
|
24789
24845
|
align-items: center;
|
24790
24846
|
align-self: stretch;
|
@@ -24960,47 +25016,6 @@ html.v-overlay-scroll-blocked {
|
|
24960
25016
|
}
|
24961
25017
|
.v-stepper-window-item .v-stepper-actions {
|
24962
25018
|
padding: 1.5rem 0 0;
|
24963
|
-
}.v-speed-dial__content {
|
24964
|
-
gap: 8px;
|
24965
|
-
}
|
24966
|
-
.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 {
|
24967
|
-
flex-direction: row;
|
24968
|
-
}
|
24969
|
-
.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 {
|
24970
|
-
flex-direction: row-reverse;
|
24971
|
-
}
|
24972
|
-
.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 {
|
24973
|
-
flex-direction: column-reverse;
|
24974
|
-
}
|
24975
|
-
.v-speed-dial__content > *:nth-child(1) {
|
24976
|
-
transition-delay: 0s;
|
24977
|
-
}
|
24978
|
-
.v-speed-dial__content > *:nth-child(2) {
|
24979
|
-
transition-delay: 0.05s;
|
24980
|
-
}
|
24981
|
-
.v-speed-dial__content > *:nth-child(3) {
|
24982
|
-
transition-delay: 0.1s;
|
24983
|
-
}
|
24984
|
-
.v-speed-dial__content > *:nth-child(4) {
|
24985
|
-
transition-delay: 0.15s;
|
24986
|
-
}
|
24987
|
-
.v-speed-dial__content > *:nth-child(5) {
|
24988
|
-
transition-delay: 0.2s;
|
24989
|
-
}
|
24990
|
-
.v-speed-dial__content > *:nth-child(6) {
|
24991
|
-
transition-delay: 0.25s;
|
24992
|
-
}
|
24993
|
-
.v-speed-dial__content > *:nth-child(7) {
|
24994
|
-
transition-delay: 0.3s;
|
24995
|
-
}
|
24996
|
-
.v-speed-dial__content > *:nth-child(8) {
|
24997
|
-
transition-delay: 0.35s;
|
24998
|
-
}
|
24999
|
-
.v-speed-dial__content > *:nth-child(9) {
|
25000
|
-
transition-delay: 0.4s;
|
25001
|
-
}
|
25002
|
-
.v-speed-dial__content > *:nth-child(10) {
|
25003
|
-
transition-delay: 0.45s;
|
25004
25019
|
}.v-system-bar {
|
25005
25020
|
align-items: center;
|
25006
25021
|
display: flex;
|
@@ -25016,129 +25031,34 @@ html.v-overlay-scroll-blocked {
|
|
25016
25031
|
.v-system-bar .v-icon {
|
25017
25032
|
opacity: var(--v-medium-emphasis-opacity);
|
25018
25033
|
}
|
25019
|
-
.v-system-bar {
|
25020
|
-
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));
|
25021
|
-
}
|
25022
|
-
.v-system-bar--absolute {
|
25023
|
-
position: absolute;
|
25024
|
-
}
|
25025
|
-
.v-system-bar--fixed {
|
25026
|
-
position: fixed;
|
25027
|
-
}
|
25028
|
-
.v-system-bar {
|
25029
|
-
background: rgba(var(--v-theme-surface-light));
|
25030
|
-
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25031
|
-
}
|
25032
|
-
.v-system-bar {
|
25033
|
-
font-size: 0.75rem;
|
25034
|
-
font-weight: 400;
|
25035
|
-
letter-spacing: 0.0333333333em;
|
25036
|
-
line-height: 1.667;
|
25037
|
-
text-transform: none;
|
25038
|
-
}
|
25039
|
-
.v-system-bar--rounded {
|
25040
|
-
border-radius: 0;
|
25041
|
-
}
|
25042
|
-
.v-system-bar--window {
|
25043
|
-
height: 32px;
|
25044
|
-
}
|
25045
|
-
.v-system-bar:not(.v-system-bar--absolute) {
|
25046
|
-
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25047
|
-
}.v-tab.v-tab.v-btn {
|
25048
|
-
height: var(--v-tabs-height);
|
25049
|
-
border-radius: 0;
|
25050
|
-
min-width: 90px;
|
25051
|
-
}
|
25052
|
-
.v-slide-group--horizontal .v-tab {
|
25053
|
-
max-width: 360px;
|
25054
|
-
}
|
25055
|
-
.v-slide-group--vertical .v-tab {
|
25056
|
-
justify-content: start;
|
25057
|
-
}
|
25058
|
-
|
25059
|
-
.v-tab__slider {
|
25060
|
-
position: absolute;
|
25061
|
-
bottom: 0;
|
25062
|
-
left: 0;
|
25063
|
-
height: 2px;
|
25064
|
-
width: 100%;
|
25065
|
-
background: currentColor;
|
25066
|
-
pointer-events: none;
|
25067
|
-
opacity: 0;
|
25068
|
-
}
|
25069
|
-
.v-tab--selected .v-tab__slider {
|
25070
|
-
opacity: 1;
|
25071
|
-
}
|
25072
|
-
.v-slide-group--vertical .v-tab__slider {
|
25073
|
-
top: 0;
|
25074
|
-
height: 100%;
|
25075
|
-
width: 2px;
|
25076
|
-
}.v-tabs {
|
25077
|
-
display: flex;
|
25078
|
-
height: var(--v-tabs-height);
|
25079
|
-
}
|
25080
|
-
.v-tabs--density-default {
|
25081
|
-
--v-tabs-height: 48px;
|
25082
|
-
}
|
25083
|
-
.v-tabs--density-default.v-tabs--stacked {
|
25084
|
-
--v-tabs-height: 72px;
|
25085
|
-
}
|
25086
|
-
|
25087
|
-
.v-tabs--density-comfortable {
|
25088
|
-
--v-tabs-height: 44px;
|
25089
|
-
}
|
25090
|
-
.v-tabs--density-comfortable.v-tabs--stacked {
|
25091
|
-
--v-tabs-height: 68px;
|
25092
|
-
}
|
25093
|
-
|
25094
|
-
.v-tabs--density-compact {
|
25095
|
-
--v-tabs-height: 36px;
|
25096
|
-
}
|
25097
|
-
.v-tabs--density-compact.v-tabs--stacked {
|
25098
|
-
--v-tabs-height: 60px;
|
25099
|
-
}
|
25100
|
-
|
25101
|
-
.v-tabs.v-slide-group--vertical {
|
25102
|
-
height: auto;
|
25103
|
-
flex: none;
|
25104
|
-
--v-tabs-height: 48px;
|
25105
|
-
}
|
25106
|
-
|
25107
|
-
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25108
|
-
margin-inline-start: 42px;
|
25109
|
-
}
|
25110
|
-
|
25111
|
-
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
25112
|
-
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
25113
|
-
margin-inline-end: auto;
|
25034
|
+
.v-system-bar {
|
25035
|
+
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));
|
25114
25036
|
}
|
25115
|
-
.v-
|
25116
|
-
|
25117
|
-
margin-inline-start: auto;
|
25037
|
+
.v-system-bar--absolute {
|
25038
|
+
position: absolute;
|
25118
25039
|
}
|
25119
|
-
|
25120
|
-
|
25121
|
-
flex-grow: 1;
|
25040
|
+
.v-system-bar--fixed {
|
25041
|
+
position: fixed;
|
25122
25042
|
}
|
25123
|
-
.v-
|
25124
|
-
|
25125
|
-
|
25043
|
+
.v-system-bar {
|
25044
|
+
background: rgba(var(--v-theme-surface-light));
|
25045
|
+
color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
|
25126
25046
|
}
|
25127
|
-
|
25128
|
-
|
25129
|
-
|
25047
|
+
.v-system-bar {
|
25048
|
+
font-size: 0.75rem;
|
25049
|
+
font-weight: 400;
|
25050
|
+
letter-spacing: 0.0333333333em;
|
25051
|
+
line-height: 1.667;
|
25052
|
+
text-transform: none;
|
25130
25053
|
}
|
25131
|
-
.v-
|
25132
|
-
|
25054
|
+
.v-system-bar--rounded {
|
25055
|
+
border-radius: 0;
|
25133
25056
|
}
|
25134
|
-
|
25135
|
-
|
25136
|
-
|
25137
|
-
|
25138
|
-
|
25139
|
-
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25140
|
-
margin-inline-end: 52px;
|
25141
|
-
}
|
25057
|
+
.v-system-bar--window {
|
25058
|
+
height: 32px;
|
25059
|
+
}
|
25060
|
+
.v-system-bar:not(.v-system-bar--absolute) {
|
25061
|
+
padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
|
25142
25062
|
}.v-switch .v-label {
|
25143
25063
|
padding-inline-start: 10px;
|
25144
25064
|
}
|
@@ -25321,148 +25241,6 @@ html.v-overlay-scroll-blocked {
|
|
25321
25241
|
.v-switch.v-switch--loading.v-switch--inset .v-switch__thumb, .v-switch.v-switch--loading.v-switch--indeterminate .v-switch__thumb {
|
25322
25242
|
border-width: 0;
|
25323
25243
|
}
|
25324
|
-
}.v-table {
|
25325
|
-
font-size: 0.875rem;
|
25326
|
-
transition-duration: 0.28s;
|
25327
|
-
transition-property: box-shadow, opacity, background, height;
|
25328
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25329
|
-
}
|
25330
|
-
.v-table {
|
25331
|
-
background: rgb(var(--v-theme-surface));
|
25332
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
25333
|
-
}
|
25334
|
-
.v-table .v-table-divider {
|
25335
|
-
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25336
|
-
}
|
25337
|
-
.v-table .v-table__wrapper > table > thead > tr > th {
|
25338
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25339
|
-
}
|
25340
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
25341
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
25342
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25343
|
-
}
|
25344
|
-
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
25345
|
-
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
25346
|
-
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
25347
|
-
}
|
25348
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
25349
|
-
position: relative;
|
25350
|
-
}
|
25351
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25352
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
25353
|
-
pointer-events: none;
|
25354
|
-
}
|
25355
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
25356
|
-
content: "";
|
25357
|
-
position: absolute;
|
25358
|
-
top: 0;
|
25359
|
-
left: 0;
|
25360
|
-
width: 100%;
|
25361
|
-
height: 100%;
|
25362
|
-
}
|
25363
|
-
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25364
|
-
background: rgb(var(--v-theme-surface));
|
25365
|
-
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25366
|
-
z-index: 1;
|
25367
|
-
}
|
25368
|
-
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
25369
|
-
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
25370
|
-
background: rgb(var(--v-theme-surface));
|
25371
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
25372
|
-
}
|
25373
|
-
|
25374
|
-
.v-table {
|
25375
|
-
border-radius: inherit;
|
25376
|
-
line-height: 1.5;
|
25377
|
-
max-width: 100%;
|
25378
|
-
display: flex;
|
25379
|
-
flex-direction: column;
|
25380
|
-
}
|
25381
|
-
.v-table > .v-table__wrapper > table {
|
25382
|
-
width: 100%;
|
25383
|
-
border-spacing: 0;
|
25384
|
-
}
|
25385
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25386
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25387
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25388
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25389
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
25390
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25391
|
-
padding: 0 16px;
|
25392
|
-
transition-duration: 0.28s;
|
25393
|
-
transition-property: box-shadow, opacity, background, height;
|
25394
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
25395
|
-
}
|
25396
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
25397
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
25398
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
25399
|
-
height: var(--v-table-row-height);
|
25400
|
-
}
|
25401
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
25402
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
25403
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
25404
|
-
height: var(--v-table-header-height);
|
25405
|
-
font-weight: 500;
|
25406
|
-
-webkit-user-select: none;
|
25407
|
-
user-select: none;
|
25408
|
-
text-align: start;
|
25409
|
-
}
|
25410
|
-
.v-table--density-default {
|
25411
|
-
--v-table-header-height: 56px;
|
25412
|
-
--v-table-row-height: 52px;
|
25413
|
-
}
|
25414
|
-
|
25415
|
-
.v-table--density-comfortable {
|
25416
|
-
--v-table-header-height: 48px;
|
25417
|
-
--v-table-row-height: 44px;
|
25418
|
-
}
|
25419
|
-
|
25420
|
-
.v-table--density-compact {
|
25421
|
-
--v-table-header-height: 40px;
|
25422
|
-
--v-table-row-height: 36px;
|
25423
|
-
}
|
25424
|
-
|
25425
|
-
.v-table__wrapper {
|
25426
|
-
border-radius: inherit;
|
25427
|
-
overflow: auto;
|
25428
|
-
flex: 1 1 auto;
|
25429
|
-
}
|
25430
|
-
|
25431
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
25432
|
-
border-top-left-radius: 0;
|
25433
|
-
}
|
25434
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
25435
|
-
border-top-right-radius: 0;
|
25436
|
-
}
|
25437
|
-
|
25438
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
25439
|
-
border-bottom-left-radius: 0;
|
25440
|
-
}
|
25441
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
25442
|
-
border-bottom-right-radius: 0;
|
25443
|
-
}
|
25444
|
-
|
25445
|
-
.v-table--fixed-height > .v-table__wrapper {
|
25446
|
-
overflow-y: auto;
|
25447
|
-
}
|
25448
|
-
|
25449
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
25450
|
-
position: sticky;
|
25451
|
-
top: 0;
|
25452
|
-
z-index: 2;
|
25453
|
-
}
|
25454
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
25455
|
-
border-bottom: 0px !important;
|
25456
|
-
}
|
25457
|
-
|
25458
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
25459
|
-
position: sticky;
|
25460
|
-
bottom: 0;
|
25461
|
-
z-index: 1;
|
25462
|
-
}
|
25463
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
25464
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
25465
|
-
border-top: 0px !important;
|
25466
25244
|
}/* region BLOCK */
|
25467
25245
|
.v-text-field input {
|
25468
25246
|
color: inherit;
|
@@ -25570,6 +25348,9 @@ html.v-overlay-scroll-blocked {
|
|
25570
25348
|
}
|
25571
25349
|
.v-textarea textarea:invalid {
|
25572
25350
|
box-shadow: none;
|
25351
|
+
}.v-theme-provider {
|
25352
|
+
background: rgb(var(--v-theme-background));
|
25353
|
+
color: rgb(var(--v-theme-on-background));
|
25573
25354
|
}.v-timeline .v-timeline-divider__dot {
|
25574
25355
|
background: rgb(var(--v-theme-surface-light));
|
25575
25356
|
}
|
@@ -25962,32 +25743,127 @@ html.v-overlay-scroll-blocked {
|
|
25962
25743
|
height: calc(var(--v-timeline-line-size-base) - var(--v-timeline-dot-size) / 2 + var(--v-timeline-line-size-offset) - var(--v-timeline-line-inset));
|
25963
25744
|
}
|
25964
25745
|
|
25965
|
-
.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
|
25966
|
-
display: none;
|
25967
|
-
}
|
25968
|
-
.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
|
25969
|
-
--v-timeline-line-size-offset: 12px;
|
25746
|
+
.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__before {
|
25747
|
+
display: none;
|
25748
|
+
}
|
25749
|
+
.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider__after {
|
25750
|
+
--v-timeline-line-size-offset: 12px;
|
25751
|
+
}
|
25752
|
+
.v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
|
25753
|
+
padding-block-start: 0;
|
25754
|
+
}
|
25755
|
+
|
25756
|
+
.v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-start .v-timeline-item:first-child .v-timeline-item__opposite {
|
25757
|
+
padding-inline-start: 0;
|
25758
|
+
}
|
25759
|
+
|
25760
|
+
.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__after {
|
25761
|
+
display: none;
|
25762
|
+
}
|
25763
|
+
.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider__before {
|
25764
|
+
--v-timeline-line-size-offset: 12px;
|
25765
|
+
}
|
25766
|
+
.v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--vertical.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
25767
|
+
padding-block-end: 0;
|
25768
|
+
}
|
25769
|
+
|
25770
|
+
.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
25771
|
+
padding-inline-end: 0;
|
25772
|
+
}.v-tabs {
|
25773
|
+
display: flex;
|
25774
|
+
height: var(--v-tabs-height);
|
25775
|
+
}
|
25776
|
+
.v-tabs--density-default {
|
25777
|
+
--v-tabs-height: 48px;
|
25778
|
+
}
|
25779
|
+
.v-tabs--density-default.v-tabs--stacked {
|
25780
|
+
--v-tabs-height: 72px;
|
25781
|
+
}
|
25782
|
+
|
25783
|
+
.v-tabs--density-comfortable {
|
25784
|
+
--v-tabs-height: 44px;
|
25785
|
+
}
|
25786
|
+
.v-tabs--density-comfortable.v-tabs--stacked {
|
25787
|
+
--v-tabs-height: 68px;
|
25788
|
+
}
|
25789
|
+
|
25790
|
+
.v-tabs--density-compact {
|
25791
|
+
--v-tabs-height: 36px;
|
25792
|
+
}
|
25793
|
+
.v-tabs--density-compact.v-tabs--stacked {
|
25794
|
+
--v-tabs-height: 60px;
|
25795
|
+
}
|
25796
|
+
|
25797
|
+
.v-tabs.v-slide-group--vertical {
|
25798
|
+
height: auto;
|
25799
|
+
flex: none;
|
25800
|
+
--v-tabs-height: 48px;
|
25801
|
+
}
|
25802
|
+
|
25803
|
+
.v-tabs--align-tabs-title:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25804
|
+
margin-inline-start: 42px;
|
25805
|
+
}
|
25806
|
+
|
25807
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:last-child,
|
25808
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:last-child {
|
25809
|
+
margin-inline-end: auto;
|
25810
|
+
}
|
25811
|
+
.v-tabs--fixed-tabs .v-slide-group__content > *:first-child,
|
25812
|
+
.v-tabs--align-tabs-center .v-slide-group__content > *:first-child {
|
25813
|
+
margin-inline-start: auto;
|
25814
|
+
}
|
25815
|
+
|
25816
|
+
.v-tabs--grow {
|
25817
|
+
flex-grow: 1;
|
25970
25818
|
}
|
25971
|
-
.v-
|
25972
|
-
|
25819
|
+
.v-tabs--grow .v-tab {
|
25820
|
+
flex: 1 0 auto;
|
25821
|
+
max-width: none;
|
25973
25822
|
}
|
25974
25823
|
|
25975
|
-
.v-
|
25976
|
-
|
25824
|
+
.v-tabs--align-tabs-end .v-tab:first-child {
|
25825
|
+
margin-inline-start: auto;
|
25826
|
+
}
|
25827
|
+
.v-tabs--align-tabs-end .v-tab:last-child {
|
25828
|
+
margin-inline-end: 0;
|
25977
25829
|
}
|
25978
25830
|
|
25979
|
-
|
25980
|
-
|
25831
|
+
@media (max-width: 1279.98px) {
|
25832
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:first-child {
|
25833
|
+
margin-inline-start: 52px;
|
25834
|
+
}
|
25835
|
+
.v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
|
25836
|
+
margin-inline-end: 52px;
|
25837
|
+
}
|
25838
|
+
}.v-tab.v-tab.v-btn {
|
25839
|
+
height: var(--v-tabs-height);
|
25840
|
+
border-radius: 0;
|
25841
|
+
min-width: 90px;
|
25981
25842
|
}
|
25982
|
-
.v-
|
25983
|
-
|
25843
|
+
.v-slide-group--horizontal .v-tab {
|
25844
|
+
max-width: 360px;
|
25984
25845
|
}
|
25985
|
-
.v-
|
25986
|
-
|
25846
|
+
.v-slide-group--vertical .v-tab {
|
25847
|
+
justify-content: start;
|
25987
25848
|
}
|
25988
25849
|
|
25989
|
-
.v-
|
25990
|
-
|
25850
|
+
.v-tab__slider {
|
25851
|
+
position: absolute;
|
25852
|
+
bottom: 0;
|
25853
|
+
left: 0;
|
25854
|
+
height: 2px;
|
25855
|
+
width: 100%;
|
25856
|
+
background: currentColor;
|
25857
|
+
pointer-events: none;
|
25858
|
+
opacity: 0;
|
25859
|
+
}
|
25860
|
+
.v-tab--selected .v-tab__slider {
|
25861
|
+
opacity: 1;
|
25862
|
+
}
|
25863
|
+
.v-slide-group--vertical .v-tab__slider {
|
25864
|
+
top: 0;
|
25865
|
+
height: 100%;
|
25866
|
+
width: 2px;
|
25991
25867
|
}.v-toolbar {
|
25992
25868
|
align-items: flex-start;
|
25993
25869
|
display: flex;
|
@@ -26132,15 +26008,28 @@ html.v-overlay-scroll-blocked {
|
|
26132
26008
|
}
|
26133
26009
|
.v-toolbar-items > .v-btn {
|
26134
26010
|
border-radius: 0;
|
26135
|
-
}.v-
|
26136
|
-
|
26137
|
-
|
26138
|
-
|
26139
|
-
|
26140
|
-
|
26011
|
+
}.v-tooltip > .v-overlay__content {
|
26012
|
+
background: rgb(var(--v-theme-surface-variant));
|
26013
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26014
|
+
border-radius: 4px;
|
26015
|
+
font-size: 0.875rem;
|
26016
|
+
line-height: 1.6;
|
26017
|
+
display: inline-block;
|
26018
|
+
padding: 5px 16px;
|
26019
|
+
text-transform: initial;
|
26020
|
+
width: auto;
|
26021
|
+
opacity: 1;
|
26022
|
+
pointer-events: none;
|
26023
|
+
transition-property: opacity, transform;
|
26024
|
+
overflow-wrap: break-word;
|
26141
26025
|
}
|
26142
|
-
.v-
|
26143
|
-
|
26026
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
26027
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
26028
|
+
transition-duration: 150ms;
|
26029
|
+
}
|
26030
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
26031
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
26032
|
+
transition-duration: 75ms;
|
26144
26033
|
}.v-window {
|
26145
26034
|
overflow: hidden;
|
26146
26035
|
}
|
@@ -26211,46 +26100,179 @@ html.v-overlay-scroll-blocked {
|
|
26211
26100
|
}
|
26212
26101
|
.v-window-y-reverse-transition-leave-to {
|
26213
26102
|
transform: translateY(100%);
|
26214
|
-
}.v-
|
26215
|
-
|
26216
|
-
|
26217
|
-
|
26218
|
-
|
26219
|
-
|
26220
|
-
|
26221
|
-
|
26222
|
-
|
26223
|
-
|
26224
|
-
|
26103
|
+
}.v-virtual-scroll {
|
26104
|
+
display: block;
|
26105
|
+
flex: 1 1 auto;
|
26106
|
+
max-width: 100%;
|
26107
|
+
overflow: auto;
|
26108
|
+
position: relative;
|
26109
|
+
}
|
26110
|
+
.v-virtual-scroll__container {
|
26111
|
+
display: block;
|
26112
|
+
}.v-table {
|
26113
|
+
font-size: 0.875rem;
|
26114
|
+
transition-duration: 0.28s;
|
26115
|
+
transition-property: box-shadow, opacity, background, height;
|
26116
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
26117
|
+
}
|
26118
|
+
.v-table {
|
26119
|
+
background: rgb(var(--v-theme-surface));
|
26120
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
26121
|
+
}
|
26122
|
+
.v-table .v-table-divider {
|
26123
|
+
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
26124
|
+
}
|
26125
|
+
.v-table .v-table__wrapper > table > thead > tr > th {
|
26126
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
26127
|
+
}
|
26128
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
26129
|
+
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
26130
|
+
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
26131
|
+
}
|
26132
|
+
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
26133
|
+
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
26134
|
+
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
26135
|
+
}
|
26136
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr > td {
|
26137
|
+
position: relative;
|
26138
|
+
}
|
26139
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
26140
|
+
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
26141
|
+
pointer-events: none;
|
26142
|
+
}
|
26143
|
+
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover > td::after {
|
26144
|
+
content: "";
|
26145
|
+
position: absolute;
|
26146
|
+
top: 0;
|
26147
|
+
left: 0;
|
26148
|
+
width: 100%;
|
26149
|
+
height: 100%;
|
26150
|
+
}
|
26151
|
+
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
26152
|
+
background: rgb(var(--v-theme-surface));
|
26153
|
+
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
26154
|
+
z-index: 1;
|
26155
|
+
}
|
26156
|
+
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
26157
|
+
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
26158
|
+
background: rgb(var(--v-theme-surface));
|
26159
|
+
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
26160
|
+
}
|
26161
|
+
|
26162
|
+
.v-table {
|
26163
|
+
border-radius: inherit;
|
26164
|
+
line-height: 1.5;
|
26165
|
+
max-width: 100%;
|
26166
|
+
display: flex;
|
26167
|
+
flex-direction: column;
|
26168
|
+
}
|
26169
|
+
.v-table > .v-table__wrapper > table {
|
26170
|
+
width: 100%;
|
26171
|
+
border-spacing: 0;
|
26172
|
+
}
|
26173
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
26174
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
26175
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
26176
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
26177
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
26178
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
26179
|
+
padding: 0 16px;
|
26180
|
+
transition-duration: 0.28s;
|
26181
|
+
transition-property: box-shadow, opacity, background, height;
|
26182
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
26183
|
+
}
|
26184
|
+
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
26185
|
+
.v-table > .v-table__wrapper > table > thead > tr > td,
|
26186
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > td {
|
26187
|
+
height: var(--v-table-row-height);
|
26188
|
+
}
|
26189
|
+
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
26190
|
+
.v-table > .v-table__wrapper > table > thead > tr > th,
|
26191
|
+
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
26192
|
+
height: var(--v-table-header-height);
|
26193
|
+
font-weight: 500;
|
26194
|
+
-webkit-user-select: none;
|
26195
|
+
user-select: none;
|
26196
|
+
text-align: start;
|
26197
|
+
}
|
26198
|
+
.v-table--density-default {
|
26199
|
+
--v-table-header-height: 56px;
|
26200
|
+
--v-table-row-height: 52px;
|
26201
|
+
}
|
26202
|
+
|
26203
|
+
.v-table--density-comfortable {
|
26204
|
+
--v-table-header-height: 48px;
|
26205
|
+
--v-table-row-height: 44px;
|
26206
|
+
}
|
26207
|
+
|
26208
|
+
.v-table--density-compact {
|
26209
|
+
--v-table-header-height: 40px;
|
26210
|
+
--v-table-row-height: 36px;
|
26211
|
+
}
|
26212
|
+
|
26213
|
+
.v-table__wrapper {
|
26214
|
+
border-radius: inherit;
|
26215
|
+
overflow: auto;
|
26216
|
+
flex: 1 1 auto;
|
26217
|
+
}
|
26218
|
+
|
26219
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
26220
|
+
border-top-left-radius: 0;
|
26221
|
+
}
|
26222
|
+
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
26223
|
+
border-top-right-radius: 0;
|
26224
|
+
}
|
26225
|
+
|
26226
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
26227
|
+
border-bottom-left-radius: 0;
|
26228
|
+
}
|
26229
|
+
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
26230
|
+
border-bottom-right-radius: 0;
|
26231
|
+
}
|
26232
|
+
|
26233
|
+
.v-table--fixed-height > .v-table__wrapper {
|
26234
|
+
overflow-y: auto;
|
26235
|
+
}
|
26236
|
+
|
26237
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead {
|
26238
|
+
position: sticky;
|
26239
|
+
top: 0;
|
26240
|
+
z-index: 2;
|
26241
|
+
}
|
26242
|
+
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
26243
|
+
border-bottom: 0px !important;
|
26244
|
+
}
|
26245
|
+
|
26246
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
|
26247
|
+
position: sticky;
|
26248
|
+
bottom: 0;
|
26249
|
+
z-index: 1;
|
26250
|
+
}
|
26251
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
26252
|
+
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
26253
|
+
border-top: 0px !important;
|
26254
|
+
}.v-color-picker-canvas {
|
26255
|
+
display: flex;
|
26256
|
+
position: relative;
|
26225
26257
|
overflow: hidden;
|
26226
|
-
|
26227
|
-
|
26258
|
+
contain: content;
|
26259
|
+
touch-action: none;
|
26228
26260
|
}
|
26229
|
-
|
26230
|
-
|
26231
|
-
|
26232
|
-
|
26233
|
-
|
26234
|
-
|
26235
|
-
|
26236
|
-
|
26237
|
-
|
26238
|
-
display: inline-block;
|
26239
|
-
padding: 5px 16px;
|
26240
|
-
text-transform: initial;
|
26241
|
-
width: auto;
|
26242
|
-
opacity: 1;
|
26243
|
-
pointer-events: none;
|
26244
|
-
transition-property: opacity, transform;
|
26245
|
-
overflow-wrap: break-word;
|
26261
|
+
.v-color-picker-canvas__dot {
|
26262
|
+
position: absolute;
|
26263
|
+
top: 0;
|
26264
|
+
left: 0;
|
26265
|
+
width: 15px;
|
26266
|
+
height: 15px;
|
26267
|
+
background: transparent;
|
26268
|
+
border-radius: 50%;
|
26269
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26246
26270
|
}
|
26247
|
-
.v-
|
26248
|
-
|
26249
|
-
transition-duration: 150ms;
|
26271
|
+
.v-color-picker-canvas__dot--disabled {
|
26272
|
+
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);
|
26250
26273
|
}
|
26251
|
-
.v-
|
26252
|
-
|
26253
|
-
transition-duration: 75ms;
|
26274
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26275
|
+
will-change: transform;
|
26254
26276
|
}.v-color-picker-edit {
|
26255
26277
|
display: flex;
|
26256
26278
|
margin-top: 24px;
|
@@ -26279,63 +26301,6 @@ html.v-overlay-scroll-blocked {
|
|
26279
26301
|
}
|
26280
26302
|
.v-color-picker-edit__input span {
|
26281
26303
|
font-size: 0.75rem;
|
26282
|
-
}.v-color-picker-swatches {
|
26283
|
-
overflow-y: auto;
|
26284
|
-
}
|
26285
|
-
.v-color-picker-swatches > div {
|
26286
|
-
display: flex;
|
26287
|
-
flex-wrap: wrap;
|
26288
|
-
justify-content: center;
|
26289
|
-
padding: 8px;
|
26290
|
-
}
|
26291
|
-
|
26292
|
-
.v-color-picker-swatches__swatch {
|
26293
|
-
display: flex;
|
26294
|
-
flex-direction: column;
|
26295
|
-
margin-bottom: 10px;
|
26296
|
-
}
|
26297
|
-
|
26298
|
-
.v-color-picker-swatches__color {
|
26299
|
-
position: relative;
|
26300
|
-
height: 18px;
|
26301
|
-
max-height: 18px;
|
26302
|
-
width: 45px;
|
26303
|
-
margin: 2px 4px;
|
26304
|
-
border-radius: 2px;
|
26305
|
-
-webkit-user-select: none;
|
26306
|
-
user-select: none;
|
26307
|
-
overflow: hidden;
|
26308
|
-
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26309
|
-
cursor: pointer;
|
26310
|
-
}
|
26311
|
-
.v-color-picker-swatches__color > div {
|
26312
|
-
display: flex;
|
26313
|
-
align-items: center;
|
26314
|
-
justify-content: center;
|
26315
|
-
width: 100%;
|
26316
|
-
height: 100%;
|
26317
|
-
}.v-color-picker-canvas {
|
26318
|
-
display: flex;
|
26319
|
-
position: relative;
|
26320
|
-
overflow: hidden;
|
26321
|
-
contain: content;
|
26322
|
-
touch-action: none;
|
26323
|
-
}
|
26324
|
-
.v-color-picker-canvas__dot {
|
26325
|
-
position: absolute;
|
26326
|
-
top: 0;
|
26327
|
-
left: 0;
|
26328
|
-
width: 15px;
|
26329
|
-
height: 15px;
|
26330
|
-
background: transparent;
|
26331
|
-
border-radius: 50%;
|
26332
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
26333
|
-
}
|
26334
|
-
.v-color-picker-canvas__dot--disabled {
|
26335
|
-
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);
|
26336
|
-
}
|
26337
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
26338
|
-
will-change: transform;
|
26339
26304
|
}.v-color-picker-preview__alpha .v-slider-track__background {
|
26340
26305
|
background-color: transparent !important;
|
26341
26306
|
}
|
@@ -26406,222 +26371,98 @@ html.v-overlay-scroll-blocked {
|
|
26406
26371
|
.v-color-picker-preview__eye-dropper {
|
26407
26372
|
position: relative;
|
26408
26373
|
margin-right: 12px;
|
26409
|
-
}.v-picker
|
26410
|
-
|
26411
|
-
grid-auto-rows: min-content;
|
26412
|
-
grid-template-areas: "title" "header" "body";
|
26413
|
-
overflow: hidden;
|
26414
|
-
}
|
26415
|
-
.v-picker.v-sheet {
|
26416
|
-
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));
|
26417
|
-
}
|
26418
|
-
.v-picker.v-sheet {
|
26419
|
-
border-radius: 4px;
|
26420
|
-
}
|
26421
|
-
.v-picker.v-sheet.v-picker--with-actions {
|
26422
|
-
grid-template-areas: "title" "header" "body" "actions";
|
26423
|
-
}
|
26424
|
-
|
26425
|
-
.v-picker__body {
|
26426
|
-
grid-area: body;
|
26427
|
-
overflow: hidden;
|
26428
|
-
position: relative;
|
26429
|
-
}
|
26430
|
-
|
26431
|
-
.v-picker__header {
|
26432
|
-
grid-area: header;
|
26374
|
+
}.v-color-picker-swatches {
|
26375
|
+
overflow-y: auto;
|
26433
26376
|
}
|
26434
|
-
|
26435
|
-
.v-picker__actions {
|
26436
|
-
grid-area: actions;
|
26437
|
-
padding: 0 12px 12px;
|
26377
|
+
.v-color-picker-swatches > div {
|
26438
26378
|
display: flex;
|
26439
|
-
|
26440
|
-
justify-content:
|
26441
|
-
|
26442
|
-
.v-picker__actions .v-btn {
|
26443
|
-
min-width: 48px;
|
26444
|
-
}
|
26445
|
-
.v-picker__actions .v-btn:not(:last-child) {
|
26446
|
-
margin-inline-end: 8px;
|
26447
|
-
}
|
26448
|
-
|
26449
|
-
.v-picker--landscape {
|
26450
|
-
grid-template-areas: "title" "header body" "header body";
|
26451
|
-
}
|
26452
|
-
|
26453
|
-
.v-picker--landscape.v-picker--with-actions {
|
26454
|
-
grid-template-areas: "title" "header body" "header actions";
|
26455
|
-
}
|
26456
|
-
|
26457
|
-
.v-picker-title {
|
26458
|
-
text-transform: uppercase;
|
26459
|
-
font-size: 0.75rem;
|
26460
|
-
grid-area: title;
|
26461
|
-
padding-inline: 24px 12px;
|
26462
|
-
padding-top: 16px;
|
26463
|
-
padding-bottom: 16px;
|
26464
|
-
font-weight: 400;
|
26465
|
-
letter-spacing: 0.1666666667em;
|
26466
|
-
}.v-slider-thumb {
|
26467
|
-
touch-action: none;
|
26468
|
-
color: rgb(var(--v-theme-surface-variant));
|
26469
|
-
}
|
26470
|
-
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26471
|
-
color: inherit;
|
26472
|
-
}
|
26473
|
-
|
26474
|
-
.v-slider-thumb__label {
|
26475
|
-
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26476
|
-
color: rgb(var(--v-theme-on-surface-variant));
|
26477
|
-
}
|
26478
|
-
.v-slider-thumb__label::before {
|
26479
|
-
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26480
|
-
}
|
26481
|
-
|
26482
|
-
.v-slider-thumb {
|
26483
|
-
outline: none;
|
26484
|
-
position: absolute;
|
26485
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26486
|
-
}
|
26487
|
-
|
26488
|
-
.v-slider-thumb__surface {
|
26489
|
-
cursor: pointer;
|
26490
|
-
width: var(--v-slider-thumb-size);
|
26491
|
-
height: var(--v-slider-thumb-size);
|
26492
|
-
border-radius: 50%;
|
26493
|
-
-webkit-user-select: none;
|
26494
|
-
user-select: none;
|
26495
|
-
background-color: currentColor;
|
26496
|
-
}
|
26497
|
-
@media (forced-colors: active) {
|
26498
|
-
.v-slider-thumb__surface {
|
26499
|
-
background-color: highlight;
|
26500
|
-
}
|
26501
|
-
}
|
26502
|
-
.v-slider-thumb__surface::before {
|
26503
|
-
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26504
|
-
content: "";
|
26505
|
-
color: inherit;
|
26506
|
-
top: 0;
|
26507
|
-
left: 0;
|
26508
|
-
width: 100%;
|
26509
|
-
height: 100%;
|
26510
|
-
border-radius: 50%;
|
26511
|
-
background: currentColor;
|
26512
|
-
position: absolute;
|
26513
|
-
pointer-events: none;
|
26514
|
-
opacity: 0;
|
26515
|
-
}
|
26516
|
-
.v-slider-thumb__surface::after {
|
26517
|
-
content: "";
|
26518
|
-
width: 42px;
|
26519
|
-
height: 42px;
|
26520
|
-
position: absolute;
|
26521
|
-
top: 50%;
|
26522
|
-
left: 50%;
|
26523
|
-
transform: translate(-50%, -50%);
|
26379
|
+
flex-wrap: wrap;
|
26380
|
+
justify-content: center;
|
26381
|
+
padding: 8px;
|
26524
26382
|
}
|
26525
26383
|
|
26526
|
-
.v-
|
26527
|
-
|
26528
|
-
|
26384
|
+
.v-color-picker-swatches__swatch {
|
26385
|
+
display: flex;
|
26386
|
+
flex-direction: column;
|
26387
|
+
margin-bottom: 10px;
|
26529
26388
|
}
|
26530
26389
|
|
26531
|
-
.v-
|
26532
|
-
|
26533
|
-
|
26534
|
-
|
26535
|
-
|
26536
|
-
|
26537
|
-
|
26538
|
-
border-radius: 4px;
|
26539
|
-
padding: 6px;
|
26540
|
-
position: absolute;
|
26390
|
+
.v-color-picker-swatches__color {
|
26391
|
+
position: relative;
|
26392
|
+
height: 18px;
|
26393
|
+
max-height: 18px;
|
26394
|
+
width: 45px;
|
26395
|
+
margin: 2px 4px;
|
26396
|
+
border-radius: 2px;
|
26541
26397
|
-webkit-user-select: none;
|
26542
26398
|
user-select: none;
|
26543
|
-
|
26544
|
-
|
26545
|
-
|
26546
|
-
content: "";
|
26547
|
-
width: 0;
|
26548
|
-
height: 0;
|
26549
|
-
position: absolute;
|
26550
|
-
}
|
26551
|
-
|
26552
|
-
.v-slider-thumb__ripple {
|
26553
|
-
position: absolute;
|
26554
|
-
left: calc(var(--v-slider-thumb-size) / -2);
|
26555
|
-
top: calc(var(--v-slider-thumb-size) / -2);
|
26556
|
-
width: calc(var(--v-slider-thumb-size) * 2);
|
26557
|
-
height: calc(var(--v-slider-thumb-size) * 2);
|
26558
|
-
background: inherit;
|
26399
|
+
overflow: hidden;
|
26400
|
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAACRJREFUKFNjPHTo0H8GJGBnZ8eIzGekgwJk+0BsdCtRHEQbBQBbbh0dIGKknQAAAABJRU5ErkJggg==) repeat;
|
26401
|
+
cursor: pointer;
|
26559
26402
|
}
|
26560
|
-
|
26561
|
-
|
26562
|
-
|
26563
|
-
|
26564
|
-
|
26403
|
+
.v-color-picker-swatches__color > div {
|
26404
|
+
display: flex;
|
26405
|
+
align-items: center;
|
26406
|
+
justify-content: center;
|
26407
|
+
width: 100%;
|
26408
|
+
height: 100%;
|
26409
|
+
}.v-picker.v-sheet {
|
26410
|
+
display: grid;
|
26411
|
+
grid-auto-rows: min-content;
|
26412
|
+
grid-template-areas: "title" "header" "body";
|
26413
|
+
overflow: hidden;
|
26565
26414
|
}
|
26566
|
-
.v-
|
26567
|
-
|
26568
|
-
top: 0;
|
26415
|
+
.v-picker.v-sheet {
|
26416
|
+
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));
|
26569
26417
|
}
|
26570
|
-
.v-
|
26571
|
-
|
26418
|
+
.v-picker.v-sheet {
|
26419
|
+
border-radius: 4px;
|
26572
26420
|
}
|
26573
|
-
.v-
|
26574
|
-
|
26421
|
+
.v-picker.v-sheet.v-picker--with-actions {
|
26422
|
+
grid-template-areas: "title" "header" "body" "actions";
|
26575
26423
|
}
|
26576
26424
|
|
26577
|
-
.v-
|
26578
|
-
|
26425
|
+
.v-picker__body {
|
26426
|
+
grid-area: body;
|
26427
|
+
overflow: hidden;
|
26428
|
+
position: relative;
|
26579
26429
|
}
|
26580
26430
|
|
26581
|
-
.v-
|
26582
|
-
|
26583
|
-
border-right: 6px solid transparent;
|
26584
|
-
border-top: 6px solid currentColor;
|
26585
|
-
bottom: -6px;
|
26431
|
+
.v-picker__header {
|
26432
|
+
grid-area: header;
|
26586
26433
|
}
|
26587
26434
|
|
26588
|
-
.v-
|
26589
|
-
|
26590
|
-
|
26591
|
-
|
26592
|
-
|
26593
|
-
|
26435
|
+
.v-picker__actions {
|
26436
|
+
grid-area: actions;
|
26437
|
+
padding: 0 12px 12px;
|
26438
|
+
display: flex;
|
26439
|
+
align-items: center;
|
26440
|
+
justify-content: flex-end;
|
26594
26441
|
}
|
26595
|
-
.v-
|
26596
|
-
|
26597
|
-
left: calc(var(--v-slider-thumb-size) / 2);
|
26442
|
+
.v-picker__actions .v-btn {
|
26443
|
+
min-width: 48px;
|
26598
26444
|
}
|
26599
|
-
.v-
|
26600
|
-
|
26601
|
-
border-top: 6px solid transparent;
|
26602
|
-
border-bottom: 6px solid transparent;
|
26603
|
-
left: -6px;
|
26445
|
+
.v-picker__actions .v-btn:not(:last-child) {
|
26446
|
+
margin-inline-end: 8px;
|
26604
26447
|
}
|
26605
26448
|
|
26606
|
-
.v-
|
26607
|
-
|
26608
|
-
opacity: var(--v-focus-opacity);
|
26449
|
+
.v-picker--landscape {
|
26450
|
+
grid-template-areas: "title" "header body" "header body";
|
26609
26451
|
}
|
26610
26452
|
|
26611
|
-
.v-
|
26612
|
-
|
26613
|
-
}
|
26614
|
-
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26615
|
-
opacity: var(--v-pressed-opacity);
|
26453
|
+
.v-picker--landscape.v-picker--with-actions {
|
26454
|
+
grid-template-areas: "title" "header body" "header actions";
|
26616
26455
|
}
|
26617
26456
|
|
26618
|
-
|
26619
|
-
|
26620
|
-
|
26621
|
-
|
26622
|
-
|
26623
|
-
|
26624
|
-
|
26457
|
+
.v-picker-title {
|
26458
|
+
text-transform: uppercase;
|
26459
|
+
font-size: 0.75rem;
|
26460
|
+
grid-area: title;
|
26461
|
+
padding-inline: 24px 12px;
|
26462
|
+
padding-top: 16px;
|
26463
|
+
padding-bottom: 16px;
|
26464
|
+
font-weight: 400;
|
26465
|
+
letter-spacing: 0.1666666667em;
|
26625
26466
|
}.v-slider-track__background {
|
26626
26467
|
background-color: rgb(var(--v-theme-surface-variant));
|
26627
26468
|
}
|
@@ -26800,4 +26641,163 @@ html.v-overlay-scroll-blocked {
|
|
26800
26641
|
|
26801
26642
|
.v-slider-track__background--opacity {
|
26802
26643
|
opacity: 0.38;
|
26644
|
+
}.v-slider-thumb {
|
26645
|
+
touch-action: none;
|
26646
|
+
color: rgb(var(--v-theme-surface-variant));
|
26647
|
+
}
|
26648
|
+
.v-input--error:not(.v-input--disabled) .v-slider-thumb {
|
26649
|
+
color: inherit;
|
26650
|
+
}
|
26651
|
+
|
26652
|
+
.v-slider-thumb__label {
|
26653
|
+
background: rgba(var(--v-theme-surface-variant), 0.7);
|
26654
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
26655
|
+
}
|
26656
|
+
.v-slider-thumb__label::before {
|
26657
|
+
color: rgba(var(--v-theme-surface-variant), 0.7);
|
26658
|
+
}
|
26659
|
+
|
26660
|
+
.v-slider-thumb {
|
26661
|
+
outline: none;
|
26662
|
+
position: absolute;
|
26663
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
26664
|
+
}
|
26665
|
+
|
26666
|
+
.v-slider-thumb__surface {
|
26667
|
+
cursor: pointer;
|
26668
|
+
width: var(--v-slider-thumb-size);
|
26669
|
+
height: var(--v-slider-thumb-size);
|
26670
|
+
border-radius: 50%;
|
26671
|
+
-webkit-user-select: none;
|
26672
|
+
user-select: none;
|
26673
|
+
background-color: currentColor;
|
26674
|
+
}
|
26675
|
+
@media (forced-colors: active) {
|
26676
|
+
.v-slider-thumb__surface {
|
26677
|
+
background-color: highlight;
|
26678
|
+
}
|
26679
|
+
}
|
26680
|
+
.v-slider-thumb__surface::before {
|
26681
|
+
transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
26682
|
+
content: "";
|
26683
|
+
color: inherit;
|
26684
|
+
top: 0;
|
26685
|
+
left: 0;
|
26686
|
+
width: 100%;
|
26687
|
+
height: 100%;
|
26688
|
+
border-radius: 50%;
|
26689
|
+
background: currentColor;
|
26690
|
+
position: absolute;
|
26691
|
+
pointer-events: none;
|
26692
|
+
opacity: 0;
|
26693
|
+
}
|
26694
|
+
.v-slider-thumb__surface::after {
|
26695
|
+
content: "";
|
26696
|
+
width: 42px;
|
26697
|
+
height: 42px;
|
26698
|
+
position: absolute;
|
26699
|
+
top: 50%;
|
26700
|
+
left: 50%;
|
26701
|
+
transform: translate(-50%, -50%);
|
26702
|
+
}
|
26703
|
+
|
26704
|
+
.v-slider-thumb__label-container {
|
26705
|
+
position: absolute;
|
26706
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26707
|
+
}
|
26708
|
+
|
26709
|
+
.v-slider-thumb__label {
|
26710
|
+
display: flex;
|
26711
|
+
align-items: center;
|
26712
|
+
justify-content: center;
|
26713
|
+
font-size: 0.75rem;
|
26714
|
+
min-width: 35px;
|
26715
|
+
height: 25px;
|
26716
|
+
border-radius: 4px;
|
26717
|
+
padding: 6px;
|
26718
|
+
position: absolute;
|
26719
|
+
-webkit-user-select: none;
|
26720
|
+
user-select: none;
|
26721
|
+
transition: 0.2s cubic-bezier(0.4, 0, 1, 1);
|
26722
|
+
}
|
26723
|
+
.v-slider-thumb__label::before {
|
26724
|
+
content: "";
|
26725
|
+
width: 0;
|
26726
|
+
height: 0;
|
26727
|
+
position: absolute;
|
26728
|
+
}
|
26729
|
+
|
26730
|
+
.v-slider-thumb__ripple {
|
26731
|
+
position: absolute;
|
26732
|
+
left: calc(var(--v-slider-thumb-size) / -2);
|
26733
|
+
top: calc(var(--v-slider-thumb-size) / -2);
|
26734
|
+
width: calc(var(--v-slider-thumb-size) * 2);
|
26735
|
+
height: calc(var(--v-slider-thumb-size) * 2);
|
26736
|
+
background: inherit;
|
26737
|
+
}
|
26738
|
+
|
26739
|
+
.v-slider.v-input--horizontal .v-slider-thumb {
|
26740
|
+
top: 50%;
|
26741
|
+
transform: translateY(-50%);
|
26742
|
+
inset-inline-start: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26743
|
+
}
|
26744
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label-container {
|
26745
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26746
|
+
top: 0;
|
26747
|
+
}
|
26748
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label {
|
26749
|
+
bottom: calc(var(--v-slider-thumb-size) / 2);
|
26750
|
+
}
|
26751
|
+
.v-locale--is-ltr.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26752
|
+
transform: translateX(-50%);
|
26753
|
+
}
|
26754
|
+
|
26755
|
+
.v-locale--is-rtl.v-slider.v-input--horizontal .v-slider-thumb__label, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb__label {
|
26756
|
+
transform: translateX(50%);
|
26757
|
+
}
|
26758
|
+
|
26759
|
+
.v-slider.v-input--horizontal .v-slider-thumb__label::before {
|
26760
|
+
border-left: 6px solid transparent;
|
26761
|
+
border-right: 6px solid transparent;
|
26762
|
+
border-top: 6px solid currentColor;
|
26763
|
+
bottom: -6px;
|
26764
|
+
}
|
26765
|
+
|
26766
|
+
.v-slider.v-input--vertical .v-slider-thumb {
|
26767
|
+
top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
|
26768
|
+
}
|
26769
|
+
.v-slider.v-input--vertical .v-slider-thumb__label-container {
|
26770
|
+
top: calc(var(--v-slider-thumb-size) / 2);
|
26771
|
+
right: 0;
|
26772
|
+
}
|
26773
|
+
.v-slider.v-input--vertical .v-slider-thumb__label {
|
26774
|
+
top: -12.5px;
|
26775
|
+
left: calc(var(--v-slider-thumb-size) / 2);
|
26776
|
+
}
|
26777
|
+
.v-slider.v-input--vertical .v-slider-thumb__label::before {
|
26778
|
+
border-right: 6px solid currentColor;
|
26779
|
+
border-top: 6px solid transparent;
|
26780
|
+
border-bottom: 6px solid transparent;
|
26781
|
+
left: -6px;
|
26782
|
+
}
|
26783
|
+
|
26784
|
+
.v-slider-thumb--focused .v-slider-thumb__surface::before {
|
26785
|
+
transform: scale(2);
|
26786
|
+
opacity: var(--v-focus-opacity);
|
26787
|
+
}
|
26788
|
+
|
26789
|
+
.v-slider-thumb--pressed {
|
26790
|
+
transition: none;
|
26791
|
+
}
|
26792
|
+
.v-slider-thumb--pressed .v-slider-thumb__surface::before {
|
26793
|
+
opacity: var(--v-pressed-opacity);
|
26794
|
+
}
|
26795
|
+
|
26796
|
+
@media (hover: hover) {
|
26797
|
+
.v-slider-thumb:hover .v-slider-thumb__surface::before {
|
26798
|
+
transform: scale(2);
|
26799
|
+
}
|
26800
|
+
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
26801
|
+
opacity: var(--v-hover-opacity);
|
26802
|
+
}
|
26803
26803
|
}
|